From 94f0b15bec9269de958bfd3cdb5ebac5d1adf96f Mon Sep 17 00:00:00 2001 From: JDCodes Date: Thu, 15 Jan 2026 17:34:46 +0100 Subject: [PATCH 01/10] Make logo_url optional in members model --- src/iracingdataapi/models/members.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/iracingdataapi/models/members.py b/src/iracingdataapi/models/members.py index 6b1ccf0..c144957 100644 --- a/src/iracingdataapi/models/members.py +++ b/src/iracingdataapi/models/members.py @@ -208,7 +208,7 @@ class MemberRecentEvent(BaseModel): event_name: str event_type: str finish_position: int - logo_url: str + logo_url: Optional[str] = None percent_rank: int simsession_type: int start_time: str From 5c7b4c60bfe7be8b3525b6bd38e23548611de5e7 Mon Sep 17 00:00:00 2001 From: JDCodes Date: Thu, 15 Jan 2026 17:37:46 +0100 Subject: [PATCH 02/10] Add Optional import to members.py --- src/iracingdataapi/models/members.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/iracingdataapi/models/members.py b/src/iracingdataapi/models/members.py index c144957..409b717 100644 --- a/src/iracingdataapi/models/members.py +++ b/src/iracingdataapi/models/members.py @@ -1,4 +1,4 @@ -from typing import Any +from typing import Any, Optional from pydantic import BaseModel, Field from typing_extensions import Literal From 35e1823c5958f8330a41311cfda1718beca35190 Mon Sep 17 00:00:00 2001 From: JDCodes Date: Fri, 16 Jan 2026 08:09:41 +0100 Subject: [PATCH 03/10] Change driver_results to a list of SessionResultDetailDriver --- src/iracingdataapi/models/results.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/iracingdataapi/models/results.py b/src/iracingdataapi/models/results.py index 02a05ff..3488411 100644 --- a/src/iracingdataapi/models/results.py +++ b/src/iracingdataapi/models/results.py @@ -141,7 +141,7 @@ class SessionResultDetailDriver(SessionResultDetailBase): class SessionResultDetail(SessionResultDetailBase): cust_id: int | None = None division_name: str | None = None - driver_results: SessionResultDetailDriver | None = None + driver_results: list[SessionResultDetailDriver] | None = None flair_shortname: str | None = None helmet: Helmet | None = None team_id: int | None = None From 5c1dacc0882bca057f6242b442402ef0dcbef7d0 Mon Sep 17 00:00:00 2001 From: JDCodes Date: Fri, 16 Jan 2026 08:17:29 +0100 Subject: [PATCH 04/10] Allow flair_shortname to be optional --- src/iracingdataapi/models/results.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/iracingdataapi/models/results.py b/src/iracingdataapi/models/results.py index 3488411..3c271de 100644 --- a/src/iracingdataapi/models/results.py +++ b/src/iracingdataapi/models/results.py @@ -133,7 +133,7 @@ class SessionResultDetailBase(BaseModel): class SessionResultDetailDriver(SessionResultDetailBase): cust_id: int - flair_shortname: str + flair_shortname: str | None = None helmet: Helmet team_id: int From d0cda0408d3b8cbaa7aba420455d000998da0631 Mon Sep 17 00:00:00 2001 From: JDCodes Date: Fri, 16 Jan 2026 10:27:30 +0100 Subject: [PATCH 05/10] Change logo_url type to support None value --- src/iracingdataapi/models/members.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/iracingdataapi/models/members.py b/src/iracingdataapi/models/members.py index 409b717..5b0abe3 100644 --- a/src/iracingdataapi/models/members.py +++ b/src/iracingdataapi/models/members.py @@ -1,4 +1,4 @@ -from typing import Any, Optional +from typing import Any from pydantic import BaseModel, Field from typing_extensions import Literal @@ -208,7 +208,7 @@ class MemberRecentEvent(BaseModel): event_name: str event_type: str finish_position: int - logo_url: Optional[str] = None + logo_url: str | None = None percent_rank: int simsession_type: int start_time: str From 48d118bf6220891775e7882f6fb28c43e36eeab4 Mon Sep 17 00:00:00 2001 From: JDCodes Date: Fri, 16 Jan 2026 10:50:33 +0100 Subject: [PATCH 06/10] Update responses.py MemberProfileResponse activity optional None --- src/iracingdataapi/models/responses.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/iracingdataapi/models/responses.py b/src/iracingdataapi/models/responses.py index d1a1eed..91d80ce 100644 --- a/src/iracingdataapi/models/responses.py +++ b/src/iracingdataapi/models/responses.py @@ -213,7 +213,7 @@ class MemberGetResponse(BaseModel): class MemberProfileResponse(BaseModel): - activity: MemberActivity + activity: MemberActivity | None = None cust_id: int disabled: bool follow_counts: MemberFollowCounts From 79c17f79438290ca4db52a61f689b8046a011644 Mon Sep 17 00:00:00 2001 From: Joachim Doh Date: Thu, 22 Jan 2026 10:06:48 +0100 Subject: [PATCH 07/10] updated newer api responses which resultet in an pydantic error --- tests/mock_return_data/lookup_drivers.json | 1417 +- tests/mock_return_data/member.json | 48 +- tests/mock_return_data/result.json | 59366 ++++++++++++++++--- 3 files changed, 51105 insertions(+), 9726 deletions(-) diff --git a/tests/mock_return_data/lookup_drivers.json b/tests/mock_return_data/lookup_drivers.json index 2fc50e7..904b40a 100644 --- a/tests/mock_return_data/lookup_drivers.json +++ b/tests/mock_return_data/lookup_drivers.json @@ -1,1302 +1,119 @@ [ - { - "cust_id": 737570, - "display_name": "A. Will Smith", - "helmet": { - "pattern": 1, - "color1": "391c83", - "color2": "111111", - "color3": "ccff00", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 155008, - "display_name": "A.J. Smith", - "helmet": { - "pattern": 58, - "color1": "595959", - "color2": "636363", - "color3": "636363", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 1406718, - "display_name": "Aaron Crowley Smith", - "helmet": { - "pattern": 1, - "color1": "2e358f", - "color2": "ec232d", - "color3": "0a0a0a", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 360200, - "display_name": "Aaron H. Smith", - "helmet": { - "pattern": 17, - "color1": "232323", - "color2": "3279d0", - "color3": "ffffff", - "face_type": 4, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 453160, - "display_name": "Aaron J Smith", - "helmet": { - "pattern": 28, - "color1": "ff0000", - "color2": "000000", - "color3": "ffffff", - "face_type": 4, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 555965, - "display_name": "Aaron K Smith", - "helmet": { - "pattern": 32, - "color1": "000000", - "color2": "f90202", - "color3": "fffdfd", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 973409, - "display_name": "Aaron M Smith", - "helmet": { - "pattern": 23, - "color1": "1e1b1b", - "color2": "ff0000", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 82605, - "display_name": "Aaron Smith", - "helmet": { - "pattern": 58, - "color1": "00c1d0", - "color2": "c40100", - "color3": "fd7704", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 212706, - "display_name": "Aaron Smith II", - "helmet": { - "pattern": 0, - "color1": "feef01", - "color2": "feef01", - "color3": "feef01", - "face_type": 4, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 404097, - "display_name": "Aaron Smith10", - "helmet": { - "pattern": 1, - "color1": "111111", - "color2": "d7162d", - "color3": "efd600", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 409290, - "display_name": "Aaron Smith11", - "helmet": { - "pattern": 2, - "color1": "000000", - "color2": "37982A", - "color3": "131853", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 412622, - "display_name": "Aaron Smith12", - "helmet": { - "pattern": 2, - "color1": "f5f4f5", - "color2": "000000", - "color3": "2247f2", - "face_type": 4, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 442109, - "display_name": "Aaron Smith13", - "helmet": { - "pattern": 19, - "color1": "F34444", - "color2": "3E2AF8", - "color3": "FFFFFF", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 470917, - "display_name": "Aaron Smith15", - "helmet": { - "pattern": 35, - "color1": "000000", - "color2": "ED2129", - "color3": "E1142C", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 475927, - "display_name": "Aaron Smith16", - "helmet": { - "pattern": 42, - "color1": "ffffff", - "color2": "000000", - "color3": "ff0000", - "face_type": 8, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 484494, - "display_name": "Aaron Smith17", - "helmet": { - "pattern": 20, - "color1": "fdfdfd", - "color2": "25478c", - "color3": "070707", - "face_type": 8, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 501759, - "display_name": "Aaron Smith18", - "helmet": { - "pattern": 28, - "color1": "FFFFFF", - "color2": "99FF00", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 528323, - "display_name": "Aaron Smith19", - "helmet": { - "pattern": 8, - "color1": "020206", - "color2": "e2d0d0", - "color3": "040101", - "face_type": 8, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 113804, - "display_name": "Aaron Smith2", - "helmet": { - "pattern": 5, - "color1": "4bd3fd", - "color2": "013990", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 529513, - "display_name": "Aaron Smith20", - "helmet": { - "pattern": 1, - "color1": "f26522", - "color2": "0a0a0a", - "color3": "00aeef", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 587381, - "display_name": "Aaron Smith21", - "helmet": { - "pattern": 35, - "color1": "c5ff00", - "color2": "7600ff", - "color3": "ff0000", - "face_type": 4, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 649484, - "display_name": "Aaron Smith22", - "helmet": { - "pattern": 19, - "color1": "9fe63c", - "color2": "2f91bd", - "color3": "9813b0", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 668118, - "display_name": "Aaron Smith23", - "helmet": { - "pattern": 33, - "color1": "cfcfcf", - "color2": "111111", - "color3": "ffffff", - "face_type": 8, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 744776, - "display_name": "Aaron Smith24", - "helmet": { - "pattern": 1, - "color1": "135324", - "color2": "111111", - "color3": "5e5e5e", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 749599, - "display_name": "Aaron Smith25", - "helmet": { - "pattern": 1, - "color1": "111111", - "color2": "000000", - "color3": "000000", - "face_type": 8, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 868696, - "display_name": "Aaron Smith26", - "helmet": { - "pattern": 1, - "color1": "ffffff", - "color2": "447ac0", - "color3": "ee3442", - "face_type": 2, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 874436, - "display_name": "Aaron Smith27", - "helmet": { - "pattern": 28, - "color1": "ff5c00", - "color2": "000000", - "color3": "ffffff", - "face_type": 8, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 880491, - "display_name": "Aaron Smith28", - "helmet": { - "pattern": 1, - "color1": "fc0706", - "color2": "ffffff", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 908521, - "display_name": "Aaron Smith29", - "helmet": { - "pattern": 9, - "color1": "42ff00", - "color2": "ff0000", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 167874, - "display_name": "Aaron Smith3", - "helmet": { - "pattern": 57, - "color1": "111111", - "color2": "dded21", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 923091, - "display_name": "Aaron Smith30", - "helmet": { - "pattern": 1, - "color1": "111111", - "color2": "ffffff", - "color3": "0ada00", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 929366, - "display_name": "Aaron Smith31", - "helmet": { - "pattern": 1, - "color1": "ffffff", - "color2": "ed2129", - "color3": "2a3795", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 964221, - "display_name": "Aaron Smith32", - "helmet": { - "pattern": 68, - "color1": "000000", - "color2": "000000", - "color3": "000000", - "face_type": 4, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 1102525, - "display_name": "Aaron Smith34", - "helmet": { - "pattern": 35, - "color1": "fc15de", - "color2": "000000", - "color3": "dbff00", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 1126461, - "display_name": "Aaron Smith35", - "helmet": { - "pattern": 1, - "color1": "111111", - "color2": "ed1c24", - "color3": "cccccc", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 1134990, - "display_name": "Aaron Smith36", - "helmet": { - "pattern": 1, - "color1": "0300c2", - "color2": "ffee47", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 1146085, - "display_name": "Aaron Smith37", - "helmet": { - "pattern": 1, - "color1": "0300c2", - "color2": "ffee47", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 1152407, - "display_name": "Aaron Smith38", - "helmet": { - "pattern": 12, - "color1": "fcf903", - "color2": "4c2383", - "color3": "4c2383", - "face_type": 8, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 1208320, - "display_name": "Aaron Smith39", - "helmet": { - "pattern": 8, - "color1": "0a0a0a", - "color2": "e5b208", - "color3": "f5f6f6", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 171239, - "display_name": "Aaron Smith4", - "helmet": { - "pattern": 1, - "color1": "111111", - "color2": "d7162d", - "color3": "efd600", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 1249168, - "display_name": "Aaron Smith40", - "helmet": { - "pattern": 1, - "color1": "001386", - "color2": "001386", - "color3": "0a0a0a", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 1259421, - "display_name": "Aaron Smith41", - "helmet": { - "pattern": 1, - "color1": "60b69b", - "color2": "312783", - "color3": "312783", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 1269062, - "display_name": "Aaron Smith42", - "helmet": { - "pattern": 7, - "color1": "e0e6ee", - "color2": "47dd21", - "color3": "bec200", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 1375115, - "display_name": "Aaron Smith43", - "helmet": { - "pattern": 64, - "color1": "ffb800", - "color2": "000000", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 1379940, - "display_name": "Aaron Smith44", - "helmet": { - "pattern": 1, - "color1": "ec232d", - "color2": "ffffff", - "color3": "2e358f", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 1387919, - "display_name": "Aaron Smith45", - "helmet": { - "pattern": 1, - "color1": "2e358f", - "color2": "ec232d", - "color3": "0a0a0a", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 1400353, - "display_name": "Aaron Smith46", - "helmet": { - "pattern": 1, - "color1": "2e358f", - "color2": "ec232d", - "color3": "0a0a0a", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 176075, - "display_name": "Aaron Smith5", - "helmet": { - "pattern": 5, - "color1": "f06e34", - "color2": "ffffff", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 192246, - "display_name": "Aaron Smith6", - "helmet": { - "pattern": 7, - "color1": "df1111", - "color2": "e1a809", - "color3": "100f0f", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 261303, - "display_name": "Aaron Smith7", - "helmet": { - "pattern": 4, - "color1": "efd600", - "color2": "d7162d", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 366478, - "display_name": "Aaron Smith9", - "helmet": { - "pattern": 19, - "color1": "111111", - "color2": "cccccc", - "color3": "ed1c24", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 618208, - "display_name": "Aaron W Smith", - "helmet": { - "pattern": 57, - "color1": "040405", - "color2": "41b629", - "color3": "0a0b0b", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 1199993, - "display_name": "Aaron Wazza Smith", - "helmet": { - "pattern": 1, - "color1": "313237", - "color2": "f6d325", - "color3": "e1532b", - "face_type": 4, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 311978, - "display_name": "Abbott Smith", - "helmet": { - "pattern": 31, - "color1": "263EED", - "color2": "1F2551", - "color3": "C2C7F0", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 1046358, - "display_name": "Abby Goldsmith", - "helmet": { - "pattern": 54, - "color1": "6200f0", - "color2": "000000", - "color3": "dbff00", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 600930, - "display_name": "Abby Smith", - "helmet": { - "pattern": 1, - "color1": "013990", - "color2": "4bd3fd", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 160271, - "display_name": "Abigail Smith", - "helmet": { - "pattern": 3, - "color1": "5e5e5e", - "color2": "135324", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 452768, - "display_name": "Abraham Smith", - "helmet": { - "pattern": 7, - "color1": "111111", - "color2": "ffffff", - "color3": "5481fc", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 901084, - "display_name": "AC Smith", - "helmet": { - "pattern": 38, - "color1": "1f4f19", - "color2": "000000", - "color3": "ffffff", - "face_type": 4, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 372788, - "display_name": "Adam B Smith", - "helmet": { - "pattern": 14, - "color1": "000000", - "color2": "09a6fb", - "color3": "ffffff", - "face_type": 4, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 621832, - "display_name": "Adam Brooke-Smith", - "helmet": { - "pattern": 1, - "color1": "000000", - "color2": "000000", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 716308, - "display_name": "Adam DeSmith", - "helmet": { - "pattern": 12, - "color1": "ffffff", - "color2": "ffffff", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 266979, - "display_name": "Adam Hamilton-Smith", - "helmet": { - "pattern": 2, - "color1": "ed2129", - "color2": "ffffff", - "color3": "2a3795", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 371562, - "display_name": "Adam Hurford-smith", - "helmet": { - "pattern": 1, - "color1": "ee3442", - "color2": "447ac0", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 529993, - "display_name": "Adam J Smith", - "helmet": { - "pattern": 42, - "color1": "ffffff", - "color2": "000000", - "color3": "41ff00", - "face_type": 6, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 601561, - "display_name": "Adam J. Smith", - "helmet": { - "pattern": 2, - "color1": "d30000", - "color2": "ffffff", - "color3": "ffffff", - "face_type": 4, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 130210, - "display_name": "Adam P Smith", - "helmet": { - "pattern": 2, - "color1": "fff500", - "color2": "fff738", - "color3": "ffd200", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 750873, - "display_name": "Adam R Smith", - "helmet": { - "pattern": 57, - "color1": "000000", - "color2": "1ec9bf", - "color3": "ec0007", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 1002110, - "display_name": "Adam Robert Smith", - "helmet": { - "pattern": 1, - "color1": "111111", - "color2": "284a94", - "color3": "b82f37", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 40449, - "display_name": "Adam Smith", - "helmet": { - "pattern": 3, - "color1": "a57141", - "color2": "000000", - "color3": "f5f5f5", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 125073, - "display_name": "Adam Smith10", - "helmet": { - "pattern": 4, - "color1": "130fc7", - "color2": "ffffff", - "color3": "f91c1a", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 139830, - "display_name": "Adam Smith12", - "helmet": { - "pattern": 2, - "color1": "013990", - "color2": "ffffff", - "color3": "4bd3fd", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 210488, - "display_name": "Adam Smith13", - "helmet": { - "pattern": 11, - "color1": "000000", - "color2": "1ff718", - "color3": "ec7609", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 276495, - "display_name": "Adam Smith15", - "helmet": { - "pattern": 1, - "color1": "ffffff", - "color2": "111111", - "color3": "f06e34", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 277782, - "display_name": "Adam Smith16", - "helmet": { - "pattern": 48, - "color1": "02501A", - "color2": "1A3F0E", - "color3": "020303", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 298958, - "display_name": "Adam Smith17", - "helmet": { - "pattern": 1, - "color1": "0016bd", - "color2": "000000", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 313702, - "display_name": "Adam Smith18", - "helmet": { - "pattern": 1, - "color1": "111111", - "color2": "0ada00", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 336577, - "display_name": "Adam Smith19", - "helmet": { - "pattern": 59, - "color1": "DBD6DB", - "color2": "2A3795", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 54965, - "display_name": "Adam Smith2", - "helmet": { - "pattern": 28, - "color1": "FCF406", - "color2": "000000", - "color3": "4125FE", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 349832, - "display_name": "Adam Smith20", - "helmet": { - "pattern": 68, - "color1": "b1abab", - "color2": "000000", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 365395, - "display_name": "Adam Smith21", - "helmet": { - "pattern": 1, - "color1": "391c83", - "color2": "ccff00", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 383520, - "display_name": "Adam Smith22", - "helmet": { - "pattern": 1, - "color1": "ee3442", - "color2": "ffffff", - "color3": "447ac0", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 396868, - "display_name": "Adam Smith23", - "helmet": { - "pattern": 1, - "color1": "ffffff", - "color2": "f1732e", - "color3": "372a75", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 422550, - "display_name": "Adam Smith24", - "helmet": { - "pattern": 63, - "color1": "000000", - "color2": "181967", - "color3": "2f1dfc", - "face_type": 11, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 435325, - "display_name": "Adam Smith25", - "helmet": { - "pattern": 19, - "color1": "000000", - "color2": "001fff", - "color3": "6d6e71", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 442110, - "display_name": "Adam Smith26", - "helmet": { - "pattern": 13, - "color1": "24DBCD", - "color2": "F12EE3", - "color3": "8531B9", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 503870, - "display_name": "Adam Smith27", - "helmet": { - "pattern": 22, - "color1": "000000", - "color2": "ffffff", - "color3": "ffffff", - "face_type": 4, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 519711, - "display_name": "Adam Smith29", - "helmet": { - "pattern": 1, - "color1": "b82f37", - "color2": "111111", - "color3": "284a94", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 65463, - "display_name": "Adam Smith3", - "helmet": { - "pattern": 25, - "color1": "000000", - "color2": "67C300", - "color3": "151414", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 579524, - "display_name": "Adam Smith30", - "helmet": { - "pattern": 51, - "color1": "000000", - "color2": "00ff17", - "color3": "ffffff", - "face_type": 8, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 584336, - "display_name": "Adam Smith31", - "helmet": { - "pattern": 1, - "color1": "ffffff", - "color2": "447ac0", - "color3": "ee3442", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 590058, - "display_name": "Adam Smith32", - "helmet": { - "pattern": 1, - "color1": "4bd3fd", - "color2": "013990", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 639936, - "display_name": "Adam Smith34", - "helmet": { - "pattern": 1, - "color1": "000000", - "color2": "cccccc", - "color3": "0029ff", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 642606, - "display_name": "Adam Smith35", - "helmet": { - "pattern": 65, - "color1": "030303", - "color2": "ed5227", - "color3": "ed5227", - "face_type": 4, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 642915, - "display_name": "Adam Smith36", - "helmet": { - "pattern": 1, - "color1": "111111", - "color2": "ccff00", - "color3": "391c83", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 643059, - "display_name": "Adam Smith37", - "helmet": { - "pattern": 57, - "color1": "000000", - "color2": "1cff00", - "color3": "017502", - "face_type": 4, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 643676, - "display_name": "Adam Smith38", - "helmet": { - "pattern": 32, - "color1": "000000", - "color2": "00ff0a", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 682432, - "display_name": "Adam Smith39", - "helmet": { - "pattern": 1, - "color1": "135324", - "color2": "111111", - "color3": "5e5e5e", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 75349, - "display_name": "Adam Smith4", - "helmet": { - "pattern": 17, - "color1": "fe2725", - "color2": "ffffff", - "color3": "270000", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - }, - { - "cust_id": 700468, - "display_name": "Adam Smith41", - "helmet": { - "pattern": 1, - "color1": "111111", - "color2": "5e5e5e", - "color3": "135324", - "face_type": 0, - "helmet_type": 0 - }, - "profile_disabled": false - } + { + "cust_id": 168966, + "display_name": "Max Verstappen", + "helmet": { + "pattern": 59, + "color1": "ffffff", + "color2": "ff8029", + "color3": "000000", + "face_type": 8, + "helmet_type": 0 + }, + "profile_disabled": false + }, + { + "cust_id": 1345083, + "display_name": "Max Verstappen10", + "helmet": { + "pattern": 1, + "color1": "2e358f", + "color2": "ec232d", + "color3": "0a0a0a", + "face_type": 0, + "helmet_type": 0 + }, + "profile_disabled": false + }, + { + "cust_id": 1350135, + "display_name": "Max Verstappen11", + "helmet": { + "pattern": 1, + "color1": "ffffff", + "color2": "2e358f", + "color3": "ec232d", + "face_type": 0, + "helmet_type": 0 + }, + "profile_disabled": false + }, + { + "cust_id": 1372736, + "display_name": "Max Verstappen12", + "helmet": { + "pattern": 1, + "color1": "ec232d", + "color2": "ffffff", + "color3": "2e358f", + "face_type": 0, + "helmet_type": 0 + }, + "profile_disabled": false + }, + { + "cust_id": 1378610, + "display_name": "Max Verstappen13", + "helmet": { + "pattern": 1, + "color1": "2e358f", + "color2": "ec232d", + "color3": "0a0a0a", + "face_type": 0, + "helmet_type": 0 + }, + "profile_disabled": false + }, + { + "cust_id": 1390527, + "display_name": "Max Verstappen14", + "helmet": { + "pattern": 1, + "color1": "ec232d", + "color2": "ffffff", + "color3": "2e358f", + "face_type": 0, + "helmet_type": 0 + }, + "profile_disabled": false + }, + { + "cust_id": 1395474, + "display_name": "Max Verstappen15", + "helmet": { + "pattern": 59, + "color1": "ffffff", + "color2": "ffffff", + "color3": "ff0000", + "face_type": 0, + "helmet_type": 0 + }, + "profile_disabled": false + }, + { + "cust_id": 738148, + "display_name": "Max Verstappen6", + "helmet": { + "pattern": 13, + "color1": "ffffff", + "color2": "111111", + "color3": "ff0000", + "face_type": 4, + "helmet_type": 0 + }, + "profile_disabled": false + }, + { + "cust_id": 1084367, + "display_name": "Max Verstappen7", + "helmet": { + "pattern": 1, + "color1": "f26522", + "color2": "0a0a0a", + "color3": "00aeef", + "face_type": 0, + "helmet_type": 0 + }, + "profile_disabled": false + } ] \ No newline at end of file diff --git a/tests/mock_return_data/member.json b/tests/mock_return_data/member.json index 8e6ab5d..e087025 100644 --- a/tests/mock_return_data/member.json +++ b/tests/mock_return_data/member.json @@ -1,26 +1,26 @@ { - "success": true, - "cust_ids": [ - 473030 - ], - "members": [ - { - "cust_id": 473030, - "display_name": "Lukas Schwenk", - "helmet": { - "pattern": 57, - "color1": "002bff", - "color2": "f7f7f7", - "color3": "33ff00", - "face_type": 0, - "helmet_type": 0 - }, - "last_login": "2025-12-30T14:42:17.88734704Z", - "member_since": "2020-04-10", - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "ai": false - } - ] + "success": true, + "cust_ids": [ + 168966 + ], + "members": [ + { + "cust_id": 168966, + "display_name": "Max Verstappen", + "helmet": { + "pattern": 59, + "color1": "ffffff", + "color2": "ff8029", + "color3": "000000", + "face_type": 8, + "helmet_type": 0 + }, + "last_login": "2026-01-21T19:59:05.80965059Z", + "member_since": "2014-09-25", + "flair_id": 146, + "flair_name": "Netherlands", + "flair_shortname": "NLD", + "ai": false + } + ] } \ No newline at end of file diff --git a/tests/mock_return_data/result.json b/tests/mock_return_data/result.json index c8e829d..e9af085 100644 --- a/tests/mock_return_data/result.json +++ b/tests/mock_return_data/result.json @@ -1,8517 +1,51079 @@ { - "subsession_id": 82263872, - "allowed_licenses": [ - { - "group_name": "Rookie", - "license_group": 1, - "max_license_level": 4, - "min_license_level": 4, - "parent_id": 491 - }, - { - "group_name": "Class D", - "license_group": 2, - "max_license_level": 8, - "min_license_level": 5, - "parent_id": 491 - }, - { - "group_name": "Class C", - "license_group": 3, - "max_license_level": 12, - "min_license_level": 9, - "parent_id": 491 - }, - { - "group_name": "Class B", - "license_group": 4, - "max_license_level": 16, - "min_license_level": 13, - "parent_id": 491 - }, - { - "group_name": "Class A", - "license_group": 5, - "max_license_level": 20, - "min_license_level": 17, - "parent_id": 491 - }, - { - "group_name": "Pro", - "license_group": 6, - "max_license_level": 24, - "min_license_level": 21, - "parent_id": 491 - }, - { - "group_name": "Pro/WC", - "license_group": 7, - "max_license_level": 28, - "min_license_level": 25, - "parent_id": 491 - } - ], - "associated_subsession_ids": [ - 82263872, - 82263873, - 82263874, - 82263875, - 82263876, - 82263877, - 82263878, - 82263879, - 82263880, - 82263881 - ], - "can_protest": true, - "car_classes": [ - { - "car_class_id": 2268, - "short_name": "GT4 Class", - "name": "GT4 Class", - "strength_of_field": 2961, - "num_entries": 30, - "cars_in_class": [ + "subsession_id": 82799850, + "allowed_licenses": [ { - "car_id": 150 + "group_name": "Class D", + "license_group": 2, + "max_license_level": 8, + "min_license_level": 8, + "parent_id": 298 }, { - "car_id": 119 + "group_name": "Class C", + "license_group": 3, + "max_license_level": 12, + "min_license_level": 9, + "parent_id": 298 }, { - "car_id": 135 + "group_name": "Class B", + "license_group": 4, + "max_license_level": 16, + "min_license_level": 13, + "parent_id": 298 }, { - "car_id": 204 + "group_name": "Class A", + "license_group": 5, + "max_license_level": 20, + "min_license_level": 17, + "parent_id": 298 }, { - "car_id": 189 + "group_name": "Pro", + "license_group": 6, + "max_license_level": 24, + "min_license_level": 21, + "parent_id": 298 }, { - "car_id": 157 + "group_name": "Pro/WC", + "license_group": 7, + "max_license_level": 28, + "min_license_level": 25, + "parent_id": 298 } - ] - } - ], - "caution_type": 2, - "cooldown_minutes": 30, - "corners_per_lap": 16, - "damage_model": 0, - "driver_change_param1": -1, - "driver_change_param2": -1, - "driver_change_rule": 0, - "driver_changes": false, - "end_time": "2025-12-28T21:09:28Z", - "event_average_lap": 1319436, - "event_best_lap_time": 1317601, - "event_laps_complete": 10, - "event_strength_of_field": 2965, - "event_type": 5, - "event_type_name": "Race", - "heat_info_id": -1, - "license_category": "Sports_Car", - "license_category_id": 5, - "limit_minutes": 10080, - "max_team_drivers": 1, - "max_weeks": 12, - "min_team_drivers": 1, - "num_caution_laps": 0, - "num_cautions": 0, - "num_drivers": 30, - "num_laps_for_qual_average": 2, - "num_laps_for_solo_average": 5, - "num_lead_changes": 0, - "official_session": true, - "points_type": "race", - "private_session_id": -1, - "race_summary": { - "subsession_id": 82263872, - "average_lap": 1319436, - "laps_complete": 10, - "num_cautions": 0, - "num_caution_laps": 0, - "num_lead_changes": 0, - "field_strength": 2965, - "num_opt_laps": 0, - "has_opt_path": false, - "special_event_type": 0, - "special_event_type_text": "Not a special event" - }, - "race_week_num": 1, - "results_restricted": false, - "season_id": 5910, - "season_name": "GT4 Falken Tyre Challenge - 2026 Season 1", - "season_quarter": 1, - "season_short_name": "2026 Season 1", - "season_year": 2026, - "series_id": 491, - "series_logo": "gt4falkentirechallenge-logo.png", - "series_name": "GT4 Challenge by Falken Tyre", - "series_short_name": "GT4 Challenge by Falken Tyre", - "session_id": 295895065, - "session_results": [ - { - "simsession_number": -2, - "simsession_name": "PRACTICE", - "simsession_type": 3, - "simsession_type_name": "Open Practice", - "simsession_subtype": 0, - "weather_result": { - "avg_skies": 2, - "avg_cloud_cover_pct": 77.64741, - "min_cloud_cover_pct": 77.64741, - "max_cloud_cover_pct": 77.64741, - "temp_units": 1, - "avg_temp": 18.445652, - "min_temp": 18.445652, - "max_temp": 18.445652, - "avg_rel_humidity": 95.075, - "wind_units": 1, - "avg_wind_speed": 12.777357, - "min_wind_speed": 12.777358, - "max_wind_speed": 12.777358, - "avg_wind_dir": 1, - "max_fog": 0, - "fog_time_pct": 0, - "precip_time_pct": 100, - "precip_mm": 0, - "precip_mm2hr_before_session": 0, - "simulated_start_time": "2026-04-01T18:20:00" - }, - "results": [ + ], + "associated_subsession_ids": [ + 82799828, + 82799829, + 82799830, + 82799831, + 82799832, + 82799833, + 82799834, + 82799835, + 82799836, + 82799837, + 82799838, + 82799839, + 82799840, + 82799841, + 82799842, + 82799843, + 82799844, + 82799845, + 82799846, + 82799847, + 82799848, + 82799849, + 82799850, + 82799851, + 82799852, + 82799853, + 82799854, + 82799855, + 82799856, + 82799857, + 82799858, + 82799859, + 82799860, + 82799861, + 82799862, + 82799863, + 82799864, + 82799865, + 82799866, + 82799867, + 82799868, + 82799869, + 82799870 + ], + "can_protest": true, + "car_classes": [ { - "cust_id": 432652, - "display_name": "Valentin Kluss", - "aggregate_champ_points": 177, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 204, - "car_name": "Ford Mustang GT4", - "carcfg": -1, - "champ_points": 0, - "class_interval": 0, - "country_code": "DE", - "division": 0, - "division_name": "Division 1", - "drop_race": false, - "finish_position": 0, - "finish_position_in_class": 0, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 65, - "color1": "000000", - "color2": "000000", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 0, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 204, - "pattern": 0, - "color1": "000000", - "color2": "000000", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "1", - "wheel_color": "b3b3b3", - "rim_type": 2 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 32.966415, - "new_license_level": 17, - "new_sub_level": 155, - "new_ttrating": 1350, - "newi_rating": 7102, - "old_cpi": 29.836252, - "old_license_level": 17, - "old_sub_level": 140, - "old_ttrating": 1350, - "oldi_rating": 7082, - "opt_laps_complete": 0, - "position": 0, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 32, - "color1": "000000", - "color2": "000000", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1.2 + "car_class_id": 4029, + "short_name": "GTP", + "name": "GTP", + "strength_of_field": 2373, + "num_entries": 14, + "cars_in_class": [ + { + "car_id": 196 + }, + { + "car_id": 168 + }, + { + "car_id": 174 + } + ] }, { - "cust_id": 1009174, - "display_name": "Diego Fern\u00e1ndez5", - "aggregate_champ_points": 171, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 189, - "car_name": "BMW M4 G82 GT4 Evo", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "ES", - "division": 0, - "division_name": "Division 1", - "drop_race": false, - "finish_position": 1, - "finish_position_in_class": 1, - "flair_id": 198, - "flair_name": "Spain", - "flair_shortname": "ESP", - "friend": false, - "helmet": { - "pattern": 14, - "color1": "0021ff", - "color2": "000000", - "color3": "0021ff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 189, - "pattern": 0, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 0, - "number_color1": "000000", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "2", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 79.03055, - "new_license_level": 20, - "new_sub_level": 416, - "new_ttrating": 1295, - "newi_rating": 7084, - "old_cpi": 82.93489, - "old_license_level": 20, - "old_sub_level": 423, - "old_ttrating": 1295, - "oldi_rating": 7070, - "opt_laps_complete": 0, - "position": 1, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 31, - "color1": "ff8a00", - "color2": "ffffff", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 + "car_class_id": 2523, + "short_name": "Dallara P217", + "name": "Dallara P217", + "strength_of_field": 2390, + "num_entries": 12, + "cars_in_class": [ + { + "car_id": 128 + } + ] }, { - "cust_id": 473030, - "display_name": "Lukas Schwenk", - "aggregate_champ_points": 184, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 204, - "car_name": "Ford Mustang GT4", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "DE", - "division": 0, - "division_name": "Division 1", - "drop_race": false, - "finish_position": 2, - "finish_position_in_class": 2, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 57, - "color1": "002bff", - "color2": "f7f7f7", - "color3": "33ff00", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 204, - "pattern": 24, - "color1": "002BFF", - "color2": "F7F7F7", - "color3": "33FF00", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "3", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 42.273064, - "new_license_level": 15, - "new_sub_level": 337, - "new_ttrating": 1350, - "newi_rating": 6260, - "old_cpi": 40.27555, - "old_license_level": 15, - "old_sub_level": 330, - "old_ttrating": 1350, - "oldi_rating": 6223, - "opt_laps_complete": 0, - "position": 2, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 21, - "color1": "0e0044", - "color2": "0139ff", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "cust_id": 733441, - "display_name": "Christian Menezes", - "aggregate_champ_points": 95, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 119, - "car_name": "Porsche 718 Cayman GT4 Clubsport MR", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "CA", - "division": 0, - "division_name": "Division 1", - "drop_race": false, - "finish_position": 3, - "finish_position_in_class": 3, - "flair_id": 39, - "flair_name": "Canada", - "flair_shortname": "CAN", - "friend": false, - "helmet": { - "pattern": 44, - "color1": "b82f37", - "color2": "284a94", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 119, - "pattern": 23, - "color1": "000dff", - "color2": "9b95b5", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "4", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 30.262087, - "new_license_level": 17, - "new_sub_level": 142, - "new_ttrating": 1350, - "newi_rating": 6158, - "old_cpi": 34.74223, - "old_license_level": 18, - "old_sub_level": 207, - "old_ttrating": 1350, - "oldi_rating": 6213, - "opt_laps_complete": 0, - "position": 3, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "b82f37", - "color2": "284a94", - "color3": "111111" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "cust_id": 412200, - "display_name": "Connor Clubine", - "aggregate_champ_points": 120, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 157, - "car_name": "Mercedes-AMG GT4", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "CA", - "division": 0, - "division_name": "Division 1", - "drop_race": false, - "finish_position": 4, - "finish_position_in_class": 4, - "flair_id": 39, - "flair_name": "Canada", - "flair_shortname": "CAN", - "friend": false, - "helmet": { - "pattern": 10, - "color1": "389aff", - "color2": "ff0000", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 1, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 157, - "pattern": 23, - "color1": "00237d", - "color2": "f2f3fc", - "color3": "d6050e", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "d60500", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "5", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 52.611485, - "new_license_level": 18, - "new_sub_level": 270, - "new_ttrating": 1350, - "newi_rating": 4348, - "old_cpi": 50.59205, - "old_license_level": 18, - "old_sub_level": 264, - "old_ttrating": 1350, - "oldi_rating": 4347, - "opt_laps_complete": 0, - "position": 4, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 21, - "color1": "001f6e", - "color2": "ffffff", - "color3": "d60500" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "cust_id": 1253123, - "display_name": "Finley Jones", - "aggregate_champ_points": 158, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 119, - "car_name": "Porsche 718 Cayman GT4 Clubsport MR", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "GB", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 5, - "finish_position_in_class": 5, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 60, - "color1": "eb00ff", - "color2": "03ff05", - "color3": "0643f9", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 119, - "pattern": 0, - "color1": "eb00ff", - "color2": "03ff05", - "color3": "0643f9", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "6", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 37.344536, - "new_license_level": 18, - "new_sub_level": 218, - "new_ttrating": 1300, - "newi_rating": 4087, - "old_cpi": 38.45716, - "old_license_level": 18, - "old_sub_level": 223, - "old_ttrating": 1300, - "oldi_rating": 4039, - "opt_laps_complete": 0, - "position": 5, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "4ba6db", - "color2": "61520", - "color3": "f08f00" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "cust_id": 956892, - "display_name": "Oliver Holt", - "aggregate_champ_points": 145, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 119, - "car_name": "Porsche 718 Cayman GT4 Clubsport MR", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "GB", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 6, - "finish_position_in_class": 6, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 60, - "color1": "212121", - "color2": "ff2d2d", - "color3": "ffd033", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 119, - "pattern": 0, - "color1": "ffffff", - "color2": "3897ff", - "color3": "1f1f1f", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "7", - "wheel_color": "daa764", - "rim_type": 2 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 40.849358, - "new_license_level": 18, - "new_sub_level": 232, - "new_ttrating": 1350, - "newi_rating": 3969, - "old_cpi": 43.049812, - "old_license_level": 18, - "old_sub_level": 240, - "old_ttrating": 1350, - "oldi_rating": 3932, - "opt_laps_complete": 0, - "position": 6, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "dedede", - "color2": "fbaf01", - "color3": "5a5a5a" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "cust_id": 571733, - "display_name": "Eder Incera Tristan", - "aggregate_champ_points": 82, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 157, - "car_name": "Mercedes-AMG GT4", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "ES", - "division": 1, - "division_name": "Division 2", - "drop_race": true, - "finish_position": 7, - "finish_position_in_class": 7, - "flair_id": 198, - "flair_name": "Spain", - "flair_shortname": "ESP", - "friend": false, - "helmet": { - "pattern": 54, - "color1": "13050e", - "color2": "e7ff21", - "color3": "335e91", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 1, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 157, - "pattern": 10, - "color1": "d32811", - "color2": "f7f2f2", - "color3": "124bb9", - "number_font": 0, - "number_color1": "db1a1a", - "number_color2": "1682da", - "number_color3": "f7f1f1", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "8", - "wheel_color": "000000", - "rim_type": 3 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 39.171627, - "new_license_level": 17, - "new_sub_level": 182, - "new_ttrating": 1350, - "newi_rating": 3709, - "old_cpi": 43.90397, - "old_license_level": 17, - "old_sub_level": 199, - "old_ttrating": 1350, - "oldi_rating": 3733, - "opt_laps_complete": 0, - "position": 7, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 22, - "color1": "212021", - "color2": "cf3b21", - "color3": "4c4341" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "cust_id": 447143, - "display_name": "Alex Mohr", - "aggregate_champ_points": 164, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 119, - "car_name": "Porsche 718 Cayman GT4 Clubsport MR", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "DE", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 8, - "finish_position_in_class": 8, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 28, - "color1": "4b2f01", - "color2": "68a117", - "color3": "a600ff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 119, - "pattern": 1, - "color1": "FF0000", - "color2": "00FF00", - "color3": "0000FF", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "9", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 19.493876, - "new_license_level": 6, - "new_sub_level": 295, - "new_ttrating": 1350, - "newi_rating": 3792, - "old_cpi": 17.379528, - "old_license_level": 6, - "old_sub_level": 276, - "old_ttrating": 1350, - "oldi_rating": 3731, - "opt_laps_complete": 0, - "position": 8, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 22, - "color1": "000000", - "color2": "ff3324", - "color3": "b82f37" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "cust_id": 567617, - "display_name": "David Lourd", - "aggregate_champ_points": 139, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 157, - "car_name": "Mercedes-AMG GT4", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "US", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 9, - "finish_position_in_class": 9, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 22, - "color1": "111111", - "color2": "f904de", - "color3": "47ffd4", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 157, - "pattern": 24, - "color1": "ebe1e1", - "color2": "3b9cda", - "color3": "f2f977", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "10", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 22.579052, - "new_license_level": 10, - "new_sub_level": 254, - "new_ttrating": 1350, - "newi_rating": 3699, - "old_cpi": 22.207924, - "old_license_level": 10, - "old_sub_level": 252, - "old_ttrating": 1350, - "oldi_rating": 3663, - "opt_laps_complete": 0, - "position": 9, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 15, - "color1": "7e7e7e", - "color2": "ff00f5", - "color3": "ececec" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "cust_id": 166182, - "display_name": "Joe Aguilar", - "aggregate_champ_points": 152, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 204, - "car_name": "Ford Mustang GT4", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "US", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 10, - "finish_position_in_class": 10, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 36, - "color1": "ffffff", - "color2": "1400ff", - "color3": "00a3ff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 204, - "pattern": 0, - "color1": "ffffff", - "color2": "ffffff", - "color3": "ffffff", - "number_font": 0, - "number_color1": "000000", - "number_color2": "ffffff", - "number_color3": "777777", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "11", - "wheel_color": "d8804f", - "rim_type": 2 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 53.745346, - "new_license_level": 19, - "new_sub_level": 317, - "new_ttrating": 1318, - "newi_rating": 3616, - "old_cpi": 51.80095, - "old_license_level": 19, - "old_sub_level": 311, - "old_ttrating": 1318, - "oldi_rating": 3564, - "opt_laps_complete": 0, - "position": 10, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 32, - "color1": "eeeff0", - "color2": "202020", - "color3": "534741" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "cust_id": 282380, - "display_name": "Andr\u00e9s Bertoni", - "aggregate_champ_points": 31, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 119, - "car_name": "Porsche 718 Cayman GT4 Clubsport MR", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "UY", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 11, - "finish_position_in_class": 11, - "flair_id": 224, - "flair_name": "Uruguay", - "flair_shortname": "URY", - "friend": false, - "helmet": { - "pattern": 4, - "color1": "FFFF1F", - "color2": "FFFFFF", - "color3": "214C9C", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 119, - "pattern": 0, - "color1": "a3a919", - "color2": "33d190", - "color3": "dc22ec", - "number_font": 0, - "number_color1": "000000", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 97, - "car_number": "12", - "wheel_color": "4a4c51", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 18.475933, - "new_license_level": 6, - "new_sub_level": 286, - "new_ttrating": 1350, - "newi_rating": 3323, - "old_cpi": 17.965443, - "old_license_level": 6, - "old_sub_level": 282, - "old_ttrating": 1350, - "oldi_rating": 3392, - "opt_laps_complete": 0, - "position": 11, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 25, - "color1": "FFFFFF", - "color2": "6D6E71", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "cust_id": 68540, - "display_name": "Erik Tveit", - "aggregate_champ_points": 12, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 157, - "car_name": "Mercedes-AMG GT4", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "NO", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 12, - "finish_position_in_class": 12, - "flair_id": 156, - "flair_name": "Norway", - "flair_shortname": "NOR", - "friend": false, - "helmet": { - "pattern": 49, - "color1": "222222", - "color2": "031adc", - "color3": "0075ff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 157, - "pattern": 16, - "color1": "222222", - "color2": "031ADC", - "color3": "0075FF", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "13", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 38.142296, - "new_license_level": 15, - "new_sub_level": 321, - "new_ttrating": 1350, - "newi_rating": 2759, - "old_cpi": 39.981483, - "old_license_level": 15, - "old_sub_level": 328, - "old_ttrating": 1350, - "oldi_rating": 2834, - "opt_laps_complete": 0, - "position": 12, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 17, - "color1": "2a3ef7", - "color2": "222222", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "cust_id": 404356, - "display_name": "Alexis Montesdeoca", - "aggregate_champ_points": 69, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 189, - "car_name": "BMW M4 G82 GT4 Evo", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "EC", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 13, - "finish_position_in_class": 13, - "flair_id": 60, - "flair_name": "Ecuador", - "flair_shortname": "ECU", - "friend": false, - "helmet": { - "pattern": 22, - "color1": "2400ff", - "color2": "f2ff00", - "color3": "ff0036", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 189, - "pattern": 2, - "color1": "FF0000", - "color2": "00FF00", - "color3": "0000FF", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "14", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 21.141125, - "new_license_level": 7, - "new_sub_level": 344, - "new_ttrating": 1350, - "newi_rating": 2770, - "old_cpi": 18.475237, - "old_license_level": 6, - "old_sub_level": 286, - "old_ttrating": 1350, - "oldi_rating": 2784, - "opt_laps_complete": 0, - "position": 13, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 27, - "color1": "e5ff13", - "color2": "0a0dff", - "color3": "ec1305" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "cust_id": 1308876, - "display_name": "Kirill Dronkin", - "aggregate_champ_points": 38, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 189, - "car_name": "BMW M4 G82 GT4 Evo", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "DE", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 14, - "finish_position_in_class": 14, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 22, - "color1": "000000", - "color2": "45768d", - "color3": "45768d", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 189, - "pattern": 0, - "color1": "45768d", - "color2": "45768d", - "color3": "45768d", - "number_font": 0, - "number_color1": "45768d", - "number_color2": "45768d", - "number_color3": "45768d", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "15", - "wheel_color": "000000", - "rim_type": 2 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 32.477016, - "new_license_level": 14, - "new_sub_level": 253, - "new_ttrating": 1350, - "newi_rating": 2611, - "old_cpi": 37.53504, - "old_license_level": 14, - "old_sub_level": 275, - "old_ttrating": 1350, - "oldi_rating": 2654, - "opt_laps_complete": 0, - "position": 14, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "231f20", - "color2": "e41e26", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "cust_id": 170870, - "display_name": "Jonas Sandstede", - "aggregate_champ_points": 126, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 157, - "car_name": "Mercedes-AMG GT4", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "DE", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 15, - "finish_position_in_class": 15, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 45, - "color1": "000000", - "color2": "43462f", - "color3": "b4ba53", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 157, - "pattern": 0, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "16", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 30.390991, - "new_license_level": 17, - "new_sub_level": 142, - "new_ttrating": 1350, - "newi_rating": 2662, - "old_cpi": 29.790945, - "old_license_level": 17, - "old_sub_level": 139, - "old_ttrating": 1350, - "oldi_rating": 2612, - "opt_laps_complete": 0, - "position": 15, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 8, - "color1": "000000", - "color2": "ebed21", - "color3": "21291f" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "cust_id": 1004165, - "display_name": "Th\u00e9o Barchino", - "aggregate_champ_points": 88, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 157, - "car_name": "Mercedes-AMG GT4", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "FR", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 16, - "finish_position_in_class": 16, - "flair_id": 71, - "flair_name": "France", - "flair_shortname": "FRA", - "friend": false, - "helmet": { - "pattern": 60, - "color1": "1100d7", - "color2": "ffffff", - "color3": "ff0000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 157, - "pattern": 14, - "color1": "1100d7", - "color2": "ffffff", - "color3": "ff0000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "17", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 38.19449, - "new_license_level": 11, - "new_sub_level": 378, - "new_ttrating": 1350, - "newi_rating": 2555, - "old_cpi": 38.746334, - "old_license_level": 11, - "old_sub_level": 380, - "old_ttrating": 1350, - "oldi_rating": 2543, - "opt_laps_complete": 0, - "position": 16, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 21, - "color1": "da000f", - "color2": "3521b0", - "color3": "eeeeee" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "cust_id": 1197334, - "display_name": "Francisco Cores", - "aggregate_champ_points": 57, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 189, - "car_name": "BMW M4 G82 GT4 Evo", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "AR", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 17, - "finish_position_in_class": 17, - "flair_id": 13, - "flair_name": "Argentina", - "flair_shortname": "ARG", - "friend": false, - "helmet": { - "pattern": 6, - "color1": "1a1a1a", - "color2": "268d19", - "color3": "1a1a1a", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 189, - "pattern": 12, - "color1": "00c1ff", - "color2": "ffffff", - "color3": "00d9ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "1c00ff", - "number_color3": "ff0000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "18", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 27.755468, - "new_license_level": 17, - "new_sub_level": 128, - "new_ttrating": 1350, - "newi_rating": 2476, - "old_cpi": 29.861366, - "old_license_level": 17, - "old_sub_level": 140, - "old_ttrating": 1350, - "oldi_rating": 2495, - "opt_laps_complete": 0, - "position": 17, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 2, - "color1": "000000", - "color2": "000000", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "cust_id": 500287, - "display_name": "Adam Collin", - "aggregate_champ_points": 133, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 135, - "car_name": "McLaren 570S GT4", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "GB", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 18, - "finish_position_in_class": 18, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 67, - "color1": "000000", - "color2": "00ffb0", - "color3": "b8ff00", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 135, - "pattern": 18, - "color1": "ffffff", - "color2": "d2ff00", - "color3": "5e00ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 106, - "sponsor2": 188, - "car_number": "19", - "wheel_color": "d2ff00", - "rim_type": 3 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 35.164497, - "new_license_level": 11, - "new_sub_level": 365, - "new_ttrating": 1350, - "newi_rating": 2507, - "old_cpi": 32.45349, - "old_license_level": 11, - "old_sub_level": 353, - "old_ttrating": 1350, - "oldi_rating": 2445, - "opt_laps_complete": 0, - "position": 18, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 33, - "color1": "000000", - "color2": "000000", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "cust_id": 389959, - "display_name": "William Leblond", - "aggregate_champ_points": 50, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 150, - "car_name": "Aston Martin Vantage GT4", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "CA", - "division": 5, - "division_name": "Division 6", - "drop_race": false, - "finish_position": 19, - "finish_position_in_class": 19, - "flair_id": 39, - "flair_name": "Canada", - "flair_shortname": "CAN", - "friend": false, - "helmet": { - "pattern": 42, - "color1": "053363", - "color2": "ffffff", - "color3": "c61c2b", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 150, - "pattern": 24, - "color1": "0092ca", - "color2": "222831", - "color3": "eeeeee", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "012845", - "number_color3": "009fe3", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "20", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 33.43521, - "new_license_level": 18, - "new_sub_level": 201, - "new_ttrating": 1350, - "newi_rating": 2296, - "old_cpi": 34.73366, - "old_license_level": 18, - "old_sub_level": 207, - "old_ttrating": 1350, - "oldi_rating": 2316, - "opt_laps_complete": 0, - "position": 19, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 33, - "color1": "053363", - "color2": "ffffff", - "color3": "c61c2b" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "cust_id": 1258349, - "display_name": "Sebastian Bignasca", - "aggregate_champ_points": 44, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 119, - "car_name": "Porsche 718 Cayman GT4 Clubsport MR", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "CH", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 20, - "finish_position_in_class": 20, - "flair_id": 204, - "flair_name": "Switzerland", - "flair_shortname": "CHE", - "friend": false, - "helmet": { - "pattern": 66, - "color1": "bd0904", - "color2": "184252", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 2, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 119, - "pattern": 10, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "e12424", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "21", - "wheel_color": "000000", - "rim_type": 1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 35.977398, - "new_license_level": 14, - "new_sub_level": 268, - "new_ttrating": 1284, - "newi_rating": 2226, - "old_cpi": 36.12372, - "old_license_level": 14, - "old_sub_level": 269, - "old_ttrating": 1284, - "oldi_rating": 2251, - "opt_laps_complete": 0, - "position": 20, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "161717", - "color2": "da3727", - "color3": "111111" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "cust_id": 745711, - "display_name": "Raul Lopez Gimenez", - "aggregate_champ_points": 107, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 189, - "car_name": "BMW M4 G82 GT4 Evo", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "ES", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 21, - "finish_position_in_class": 21, - "flair_id": 198, - "flair_name": "Spain", - "flair_shortname": "ESP", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "0ada00", - "color2": "ffffff", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 189, - "pattern": 8, - "color1": "0ADA00", - "color2": "FFFFFF", - "color3": "111111", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "22", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 43.376335, - "new_license_level": 15, - "new_sub_level": 341, - "new_ttrating": 1350, - "newi_rating": 2286, - "old_cpi": 44.127274, - "old_license_level": 15, - "old_sub_level": 343, - "old_ttrating": 1350, - "oldi_rating": 2245, - "opt_laps_complete": 0, - "position": 21, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "0ada00", - "color2": "ffffff", - "color3": "111111" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "cust_id": 1180318, - "display_name": "Cedric Fuchs", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 157, - "car_name": "Mercedes-AMG GT4", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "DE", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 22, - "finish_position_in_class": 22, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 14, - "color1": "000000", - "color2": "0070ff", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 157, - "pattern": 3, - "color1": "ff0000", - "color2": "00ff00", - "color3": "0000ff", - "number_font": 0, - "number_color1": "000000", - "number_color2": "f50000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "23", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 20.959383, - "new_license_level": 10, - "new_sub_level": 242, - "new_ttrating": 1350, - "newi_rating": 2121, - "old_cpi": 20.959383, - "old_license_level": 10, - "old_sub_level": 242, - "old_ttrating": 1350, - "oldi_rating": 2187, - "opt_laps_complete": 0, - "position": 22, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "0dff00", - "color2": "000000", - "color3": "00ff0a" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "cust_id": 1326283, - "display_name": "Willian Schilling", - "aggregate_champ_points": 63, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 189, - "car_name": "BMW M4 G82 GT4 Evo", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "BR", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 23, - "finish_position_in_class": 23, - "flair_id": 31, - "flair_name": "Brazil", - "flair_shortname": "BRA", - "friend": false, - "helmet": { - "pattern": 59, - "color1": "9720c8", - "color2": "ffffff", - "color3": "171717", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 189, - "pattern": 14, - "color1": "9720C8", - "color2": "FFFFFF", - "color3": "171717", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "24", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 36.86136, - "new_license_level": 11, - "new_sub_level": 372, - "new_ttrating": 1311, - "newi_rating": 2177, - "old_cpi": 39.81942, - "old_license_level": 11, - "old_sub_level": 384, - "old_ttrating": 1311, - "oldi_rating": 2180, - "opt_laps_complete": 0, - "position": 23, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "b226fd", - "color2": "9a22ff", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "cust_id": 890016, - "display_name": "Hank Belane", - "aggregate_champ_points": 101, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 157, - "car_name": "Mercedes-AMG GT4", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "DE", - "division": 4, - "division_name": "Division 5", - "drop_race": false, - "finish_position": 24, - "finish_position_in_class": 24, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "111111", - "color2": "020059", - "color3": "050062", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 1, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 157, - "pattern": 0, - "color1": "ff0000", - "color2": "135324", - "color3": "5e5e5e", - "number_font": 56, - "number_color1": "ff0000", - "number_color2": "000000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "25", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 31.316628, - "new_license_level": 14, - "new_sub_level": 247, - "new_ttrating": 1350, - "newi_rating": 2209, - "old_cpi": 36.14177, - "old_license_level": 15, - "old_sub_level": 313, - "old_ttrating": 1350, - "oldi_rating": 2173, - "opt_laps_complete": 0, - "position": 24, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "111111", - "color2": "135324", - "color3": "5e5e5e" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "cust_id": 399652, - "display_name": "Victor Hansen", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 189, - "car_name": "BMW M4 G82 GT4 Evo", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "DK", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 25, - "finish_position_in_class": 25, - "flair_id": 56, - "flair_name": "Denmark", - "flair_shortname": "DNK", - "friend": false, - "helmet": { - "pattern": 28, - "color1": "a9790e", - "color2": "013e62", - "color3": "0093ff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 189, - "pattern": 2, - "color1": "ff0000", - "color2": "00ff00", - "color3": "0000ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "26", - "wheel_color": "a9790e", - "rim_type": 2 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 21.767754, - "new_license_level": 13, - "new_sub_level": 148, - "new_ttrating": 1350, - "newi_rating": 2105, - "old_cpi": 21.767754, - "old_license_level": 13, - "old_sub_level": 148, - "old_ttrating": 1350, - "oldi_rating": 2171, - "opt_laps_complete": 0, - "position": 25, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 22, - "color1": "013e62", - "color2": "0093ff", - "color3": "a9790e" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "cust_id": 1041380, - "display_name": "Markus Buttliger", - "aggregate_champ_points": 19, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 157, - "car_name": "Mercedes-AMG GT4", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "CH", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 26, - "finish_position_in_class": 26, - "flair_id": 204, - "flair_name": "Switzerland", - "flair_shortname": "CHE", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "ffffff", - "color2": "0ada00", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 157, - "pattern": 12, - "color1": "0f0f14", - "color2": "860d0d", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "27", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 31.577557, - "new_license_level": 14, - "new_sub_level": 248, - "new_ttrating": 1350, - "newi_rating": 2114, - "old_cpi": 32.20318, - "old_license_level": 14, - "old_sub_level": 251, - "old_ttrating": 1350, - "oldi_rating": 2163, - "opt_laps_complete": 0, - "position": 26, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "ffffff", - "color2": "0ada00", - "color3": "111111" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "cust_id": 354144, - "display_name": "Xavier Abellan", - "aggregate_champ_points": 25, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 157, - "car_name": "Mercedes-AMG GT4", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "ES", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 27, - "finish_position_in_class": 27, - "flair_id": 198, - "flair_name": "Spain", - "flair_shortname": "ESP", - "friend": false, - "helmet": { - "pattern": 42, - "color1": "e4380c", - "color2": "070808", - "color3": "4100da", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 157, - "pattern": 2, - "color1": "e4380c", - "color2": "070808", - "color3": "4100da", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "28", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 30.233068, - "new_license_level": 14, - "new_sub_level": 242, - "new_ttrating": 1350, - "newi_rating": 2095, - "old_cpi": 32.681377, - "old_license_level": 14, - "old_sub_level": 254, - "old_ttrating": 1350, - "oldi_rating": 2137, - "opt_laps_complete": 0, - "position": 27, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 27, - "color1": "2610BC", - "color2": "030202", - "color3": "B91B13" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "cust_id": 1379179, - "display_name": "Christopher Bruchmann", - "aggregate_champ_points": 76, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 150, - "car_name": "Aston Martin Vantage GT4", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "DE", - "division": 4, - "division_name": "Division 5", - "drop_race": false, - "finish_position": 28, - "finish_position_in_class": 28, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 68, - "color1": "000000", - "color2": "ffffff", - "color3": "0011ff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 150, - "pattern": 10, - "color1": "0500ff", - "color2": "a3d3ff", - "color3": "242424", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "29", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 25.648657, - "new_license_level": 11, - "new_sub_level": 316, - "new_ttrating": 1350, - "newi_rating": 2130, - "old_cpi": 23.869007, - "old_license_level": 11, - "old_sub_level": 305, - "old_ttrating": 1350, - "oldi_rating": 2119, - "opt_laps_complete": 0, - "position": 28, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "ec232d", - "color2": "ffffff", - "color3": "2e358f" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "cust_id": 1386334, - "display_name": "Vili Tero", - "aggregate_champ_points": 114, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 157, - "car_name": "Mercedes-AMG GT4", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "FI", - "division": 4, - "division_name": "Division 5", - "drop_race": false, - "finish_position": 29, - "finish_position_in_class": 29, - "flair_id": 70, - "flair_name": "Finland", - "flair_shortname": "FIN", - "friend": false, - "helmet": { - "pattern": 20, - "color1": "00fff0", - "color2": "00e0ff", - "color3": "00e0ff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 157, - "pattern": 15, - "color1": "000000", - "color2": "f1e700", - "color3": "000000", - "number_font": 0, - "number_color1": "f7ee0a", - "number_color2": "ffffff", - "number_color3": "ff0000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "30", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 26.440548, - "new_license_level": 7, - "new_sub_level": 379, - "new_ttrating": 1350, - "newi_rating": 2141, - "old_cpi": 24.163597, - "old_license_level": 7, - "old_sub_level": 365, - "old_ttrating": 1350, - "oldi_rating": 2089, - "opt_laps_complete": 0, - "position": 29, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 15, - "color1": "00fff7", - "color2": "00fff7", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1 + "car_class_id": 4011, + "short_name": "IMSA23", + "name": "IMSA23", + "strength_of_field": 2259, + "num_entries": 33, + "cars_in_class": [ + { + "car_id": 184 + }, + { + "car_id": 169 + }, + { + "car_id": 185 + }, + { + "car_id": 156 + }, + { + "car_id": 188 + }, + { + "car_id": 173 + }, + { + "car_id": 206 + } + ] } - ] + ], + "caution_type": 2, + "cooldown_minutes": 30, + "corners_per_lap": 12, + "damage_model": 0, + "driver_change_param1": -1, + "driver_change_param2": -1, + "driver_change_rule": 2, + "driver_changes": true, + "end_time": "2026-01-18T12:54:24Z", + "event_average_lap": 978772, + "event_best_lap_time": 934669, + "event_laps_complete": 883, + "event_strength_of_field": 2259, + "event_type": 5, + "event_type_name": "Race", + "heat_info_id": -1, + "license_category": "Sports_Car", + "license_category_id": 5, + "limit_minutes": 10080, + "max_team_drivers": 16, + "max_weeks": 1, + "min_team_drivers": 2, + "num_caution_laps": 0, + "num_cautions": 0, + "num_drivers": 231, + "num_laps_for_qual_average": 2, + "num_laps_for_solo_average": 5, + "num_lead_changes": 39, + "official_session": true, + "points_type": "race", + "private_session_id": -1, + "race_summary": { + "subsession_id": 82799850, + "average_lap": 978772, + "laps_complete": 883, + "num_cautions": 0, + "num_caution_laps": 0, + "num_lead_changes": 39, + "field_strength": 2259, + "num_opt_laps": 0, + "has_opt_path": false, + "special_event_type": 0, + "special_event_type_text": "Not a special event" }, - { - "simsession_number": -1, - "simsession_name": "QUALIFY", - "simsession_type": 4, - "simsession_type_name": "Lone Qualifying", - "simsession_subtype": 0, - "weather_result": { - "avg_skies": 2, - "avg_cloud_cover_pct": 78.08961, - "min_cloud_cover_pct": 78.08961, - "max_cloud_cover_pct": 78.08961, - "temp_units": 1, - "avg_temp": 18.448698, - "min_temp": 18.448698, - "max_temp": 18.448698, - "avg_rel_humidity": 95.08445, - "wind_units": 1, - "avg_wind_speed": 12.588857, - "min_wind_speed": 12.588857, - "max_wind_speed": 12.588857, - "avg_wind_dir": 1, - "max_fog": 0, - "fog_time_pct": 0, - "precip_time_pct": 100, - "precip_mm": 0, - "precip_mm2hr_before_session": 0, - "simulated_start_time": "2026-04-01T18:35:00" - }, - "results": [ - { - "cust_id": 473030, - "display_name": "Lukas Schwenk", - "aggregate_champ_points": 184, - "ai": false, - "average_lap": 1319967, - "best_lap_num": 2, - "best_lap_time": 1318950, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2025-12-28T20:37:22Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1318950, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 204, - "car_name": "Ford Mustang GT4", - "carcfg": -1, - "champ_points": 0, - "class_interval": 0, - "country_code": "DE", - "division": 0, - "division_name": "Division 1", - "drop_race": false, - "finish_position": 0, - "finish_position_in_class": 0, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 57, - "color1": "002bff", - "color2": "f7f7f7", - "color3": "33ff00", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 0, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 204, - "pattern": 24, - "color1": "002BFF", - "color2": "F7F7F7", - "color3": "33FF00", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "3", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 42.273064, - "new_license_level": 15, - "new_sub_level": 337, - "new_ttrating": 1350, - "newi_rating": 6260, - "old_cpi": 40.27555, - "old_license_level": 15, - "old_sub_level": 330, - "old_ttrating": 1350, - "oldi_rating": 6223, - "opt_laps_complete": 0, - "position": 0, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 21, - "color1": "0e0044", - "color2": "0139ff", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "cust_id": 432652, - "display_name": "Valentin Kluss", - "aggregate_champ_points": 177, - "ai": false, - "average_lap": 1326327, - "best_lap_num": 2, - "best_lap_time": 1326327, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2025-12-28T20:37:25Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1326327, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 204, - "car_name": "Ford Mustang GT4", - "carcfg": -1, - "champ_points": 0, - "class_interval": 7377, - "country_code": "DE", - "division": 0, - "division_name": "Division 1", - "drop_race": false, - "finish_position": 1, - "finish_position_in_class": 1, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 65, - "color1": "000000", - "color2": "000000", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 1, - "interval": 7377, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 204, - "pattern": 0, - "color1": "000000", - "color2": "000000", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "1", - "wheel_color": "b3b3b3", - "rim_type": 2 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 32.966415, - "new_license_level": 17, - "new_sub_level": 155, - "new_ttrating": 1350, - "newi_rating": 7102, - "old_cpi": 29.836252, - "old_license_level": 17, - "old_sub_level": 140, - "old_ttrating": 1350, - "oldi_rating": 7082, - "opt_laps_complete": 0, - "position": 1, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 32, - "color1": "000000", - "color2": "000000", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "cust_id": 1009174, - "display_name": "Diego Fern\u00e1ndez5", - "aggregate_champ_points": 171, - "ai": false, - "average_lap": 1328990, - "best_lap_num": 1, - "best_lap_time": 1328791, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2025-12-28T20:35:25Z", - "best_qual_lap_num": 1, - "best_qual_lap_time": 1328791, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 189, - "car_name": "BMW M4 G82 GT4 Evo", - "carcfg": -1, - "champ_points": 0, - "class_interval": 9841, - "country_code": "ES", - "division": 0, - "division_name": "Division 1", - "drop_race": false, - "finish_position": 2, - "finish_position_in_class": 2, - "flair_id": 198, - "flair_name": "Spain", - "flair_shortname": "ESP", - "friend": false, - "helmet": { - "pattern": 14, - "color1": "0021ff", - "color2": "000000", - "color3": "0021ff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 9841, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 189, - "pattern": 0, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 0, - "number_color1": "000000", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "2", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 79.03055, - "new_license_level": 20, - "new_sub_level": 416, - "new_ttrating": 1295, - "newi_rating": 7084, - "old_cpi": 82.93489, - "old_license_level": 20, - "old_sub_level": 423, - "old_ttrating": 1295, - "oldi_rating": 7070, - "opt_laps_complete": 0, - "position": 2, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 31, - "color1": "ff8a00", - "color2": "ffffff", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "cust_id": 1253123, - "display_name": "Finley Jones", - "aggregate_champ_points": 158, - "ai": false, - "average_lap": 1336010, - "best_lap_num": 2, - "best_lap_time": 1333056, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2025-12-28T20:37:33Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1333056, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 119, - "car_name": "Porsche 718 Cayman GT4 Clubsport MR", - "carcfg": -1, - "champ_points": 0, - "class_interval": 14106, - "country_code": "GB", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 3, - "finish_position_in_class": 3, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 60, - "color1": "eb00ff", - "color2": "03ff05", - "color3": "0643f9", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 14106, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 119, - "pattern": 0, - "color1": "eb00ff", - "color2": "03ff05", - "color3": "0643f9", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "6", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 37.344536, - "new_license_level": 18, - "new_sub_level": 218, - "new_ttrating": 1300, - "newi_rating": 4087, - "old_cpi": 38.45716, - "old_license_level": 18, - "old_sub_level": 223, - "old_ttrating": 1300, - "oldi_rating": 4039, - "opt_laps_complete": 0, - "position": 3, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "4ba6db", - "color2": "61520", - "color3": "f08f00" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "cust_id": 447143, - "display_name": "Alex Mohr", - "aggregate_champ_points": 164, - "ai": false, - "average_lap": 1360306, - "best_lap_num": 1, - "best_lap_time": 1333971, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2025-12-28T20:35:16Z", - "best_qual_lap_num": 1, - "best_qual_lap_time": 1333971, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 119, - "car_name": "Porsche 718 Cayman GT4 Clubsport MR", - "carcfg": -1, - "champ_points": 0, - "class_interval": 15021, - "country_code": "DE", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 4, - "finish_position_in_class": 4, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 28, - "color1": "4b2f01", - "color2": "68a117", - "color3": "a600ff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 15021, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 119, - "pattern": 1, - "color1": "FF0000", - "color2": "00FF00", - "color3": "0000FF", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "9", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 19.493876, - "new_license_level": 6, - "new_sub_level": 295, - "new_ttrating": 1350, - "newi_rating": 3792, - "old_cpi": 17.379528, - "old_license_level": 6, - "old_sub_level": 276, - "old_ttrating": 1350, - "oldi_rating": 3731, - "opt_laps_complete": 0, - "position": 4, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 22, - "color1": "000000", - "color2": "ff3324", - "color3": "b82f37" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "cust_id": 68540, - "display_name": "Erik Tveit", - "aggregate_champ_points": 12, - "ai": false, - "average_lap": 1342071, - "best_lap_num": 2, - "best_lap_time": 1336744, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2025-12-28T20:37:35Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1336744, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 157, - "car_name": "Mercedes-AMG GT4", - "carcfg": -1, - "champ_points": 0, - "class_interval": 17794, - "country_code": "NO", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 5, - "finish_position_in_class": 5, - "flair_id": 156, - "flair_name": "Norway", - "flair_shortname": "NOR", - "friend": false, - "helmet": { - "pattern": 49, - "color1": "222222", - "color2": "031adc", - "color3": "0075ff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 17794, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 157, - "pattern": 16, - "color1": "222222", - "color2": "031ADC", - "color3": "0075FF", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "13", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 38.142296, - "new_license_level": 15, - "new_sub_level": 321, - "new_ttrating": 1350, - "newi_rating": 2759, - "old_cpi": 39.981483, - "old_license_level": 15, - "old_sub_level": 328, - "old_ttrating": 1350, - "oldi_rating": 2834, - "opt_laps_complete": 0, - "position": 5, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 17, - "color1": "2a3ef7", - "color2": "222222", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "cust_id": 567617, - "display_name": "David Lourd", - "aggregate_champ_points": 139, - "ai": false, - "average_lap": 1349374, - "best_lap_num": 2, - "best_lap_time": 1337915, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2025-12-28T20:37:39Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1337915, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 157, - "car_name": "Mercedes-AMG GT4", - "carcfg": -1, - "champ_points": 0, - "class_interval": 18965, - "country_code": "US", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 6, - "finish_position_in_class": 6, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 22, - "color1": "111111", - "color2": "f904de", - "color3": "47ffd4", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 18965, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 157, - "pattern": 24, - "color1": "ebe1e1", - "color2": "3b9cda", - "color3": "f2f977", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "10", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 22.579052, - "new_license_level": 10, - "new_sub_level": 254, - "new_ttrating": 1350, - "newi_rating": 3699, - "old_cpi": 22.207924, - "old_license_level": 10, - "old_sub_level": 252, - "old_ttrating": 1350, - "oldi_rating": 3663, - "opt_laps_complete": 0, - "position": 6, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 15, - "color1": "7e7e7e", - "color2": "ff00f5", - "color3": "ececec" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "cust_id": 733441, - "display_name": "Christian Menezes", - "aggregate_champ_points": 95, - "ai": false, - "average_lap": 1343019, - "best_lap_num": 2, - "best_lap_time": 1338345, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2025-12-28T20:37:33Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1338345, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 119, - "car_name": "Porsche 718 Cayman GT4 Clubsport MR", - "carcfg": -1, - "champ_points": 0, - "class_interval": 19395, - "country_code": "CA", - "division": 0, - "division_name": "Division 1", - "drop_race": false, - "finish_position": 7, - "finish_position_in_class": 7, - "flair_id": 39, - "flair_name": "Canada", - "flair_shortname": "CAN", - "friend": false, - "helmet": { - "pattern": 44, - "color1": "b82f37", - "color2": "284a94", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 19395, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 119, - "pattern": 23, - "color1": "000dff", - "color2": "9b95b5", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "4", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 30.262087, - "new_license_level": 17, - "new_sub_level": 142, - "new_ttrating": 1350, - "newi_rating": 6158, - "old_cpi": 34.74223, - "old_license_level": 18, - "old_sub_level": 207, - "old_ttrating": 1350, - "oldi_rating": 6213, - "opt_laps_complete": 0, - "position": 7, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "b82f37", - "color2": "284a94", - "color3": "111111" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "cust_id": 1308876, - "display_name": "Kirill Dronkin", - "aggregate_champ_points": 38, - "ai": false, - "average_lap": 1338956, - "best_lap_num": 1, - "best_lap_time": 1338956, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2025-12-28T20:35:17Z", - "best_qual_lap_num": 1, - "best_qual_lap_time": 1338956, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 189, - "car_name": "BMW M4 G82 GT4 Evo", - "carcfg": -1, - "champ_points": 0, - "class_interval": 20006, - "country_code": "DE", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 8, - "finish_position_in_class": 8, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 22, - "color1": "000000", - "color2": "45768d", - "color3": "45768d", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 1, - "interval": 20006, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 189, - "pattern": 0, - "color1": "45768d", - "color2": "45768d", - "color3": "45768d", - "number_font": 0, - "number_color1": "45768d", - "number_color2": "45768d", - "number_color3": "45768d", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "15", - "wheel_color": "000000", - "rim_type": 2 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 32.477016, - "new_license_level": 14, - "new_sub_level": 253, - "new_ttrating": 1350, - "newi_rating": 2611, - "old_cpi": 37.53504, - "old_license_level": 14, - "old_sub_level": 275, - "old_ttrating": 1350, - "oldi_rating": 2654, - "opt_laps_complete": 0, - "position": 8, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "231f20", - "color2": "e41e26", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "cust_id": 500287, - "display_name": "Adam Collin", - "aggregate_champ_points": 133, - "ai": false, - "average_lap": 1340908, - "best_lap_num": 2, - "best_lap_time": 1340908, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2025-12-28T20:38:19Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1340908, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 135, - "car_name": "McLaren 570S GT4", - "carcfg": -1, - "champ_points": 0, - "class_interval": 21958, - "country_code": "GB", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 9, - "finish_position_in_class": 9, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 67, - "color1": "000000", - "color2": "00ffb0", - "color3": "b8ff00", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 1, - "interval": 21958, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 135, - "pattern": 18, - "color1": "ffffff", - "color2": "d2ff00", - "color3": "5e00ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 106, - "sponsor2": 188, - "car_number": "19", - "wheel_color": "d2ff00", - "rim_type": 3 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 35.164497, - "new_license_level": 11, - "new_sub_level": 365, - "new_ttrating": 1350, - "newi_rating": 2507, - "old_cpi": 32.45349, - "old_license_level": 11, - "old_sub_level": 353, - "old_ttrating": 1350, - "oldi_rating": 2445, - "opt_laps_complete": 0, - "position": 9, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 33, - "color1": "000000", - "color2": "000000", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "cust_id": 890016, - "display_name": "Hank Belane", - "aggregate_champ_points": 101, - "ai": false, - "average_lap": 1349668, - "best_lap_num": 2, - "best_lap_time": 1343459, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2025-12-28T20:37:48Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1343459, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 157, - "car_name": "Mercedes-AMG GT4", - "carcfg": -1, - "champ_points": 0, - "class_interval": 24509, - "country_code": "DE", - "division": 4, - "division_name": "Division 5", - "drop_race": false, - "finish_position": 10, - "finish_position_in_class": 10, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "111111", - "color2": "020059", - "color3": "050062", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 24509, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 157, - "pattern": 0, - "color1": "ff0000", - "color2": "135324", - "color3": "5e5e5e", - "number_font": 56, - "number_color1": "ff0000", - "number_color2": "000000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "25", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 31.316628, - "new_license_level": 14, - "new_sub_level": 247, - "new_ttrating": 1350, - "newi_rating": 2209, - "old_cpi": 36.14177, - "old_license_level": 15, - "old_sub_level": 313, - "old_ttrating": 1350, - "oldi_rating": 2173, - "opt_laps_complete": 0, - "position": 10, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "111111", - "color2": "135324", - "color3": "5e5e5e" - }, - "watched": false, - "weight_penalty_kg": -1 - }, + "race_week_num": 0, + "results_restricted": false, + "season_id": 6072, + "season_name": "2026 24 Hours of Daytona Presented by VCO", + "season_quarter": 1, + "season_short_name": "2026 24 Hours of Daytona", + "season_year": 2026, + "series_id": 298, + "series_logo": "seriesid_298.png", + "series_name": "Daytona 24", + "series_short_name": "Daytona 24", + "session_id": 297959922, + "session_results": [ { - "cust_id": 956892, - "display_name": "Oliver Holt", - "aggregate_champ_points": 145, - "ai": false, - "average_lap": 1350308, - "best_lap_num": 2, - "best_lap_time": 1344179, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2025-12-28T20:37:40Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1344179, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 119, - "car_name": "Porsche 718 Cayman GT4 Clubsport MR", - "carcfg": -1, - "champ_points": 0, - "class_interval": 25229, - "country_code": "GB", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 11, - "finish_position_in_class": 11, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 60, - "color1": "212121", - "color2": "ff2d2d", - "color3": "ffd033", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 1, - "interval": 25229, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 119, - "pattern": 0, - "color1": "ffffff", - "color2": "3897ff", - "color3": "1f1f1f", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "7", - "wheel_color": "daa764", - "rim_type": 2 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 40.849358, - "new_license_level": 18, - "new_sub_level": 232, - "new_ttrating": 1350, - "newi_rating": 3969, - "old_cpi": 43.049812, - "old_license_level": 18, - "old_sub_level": 240, - "old_ttrating": 1350, - "oldi_rating": 3932, - "opt_laps_complete": 0, - "position": 11, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "dedede", - "color2": "fbaf01", - "color3": "5a5a5a" - }, - "watched": false, - "weight_penalty_kg": -1 + "simsession_number": -2, + "simsession_name": "PRACTICE", + "simsession_type": 3, + "simsession_type_name": "Open Practice", + "simsession_subtype": 0, + "weather_result": { + "avg_skies": 3, + "avg_cloud_cover_pct": 99.99993, + "min_cloud_cover_pct": 99.980774, + "max_cloud_cover_pct": 100, + "temp_units": 1, + "avg_temp": 21.189583, + "min_temp": 21.136753, + "max_temp": 21.229076, + "avg_rel_humidity": 63.929794, + "wind_units": 1, + "avg_wind_speed": 10.637684, + "min_wind_speed": 9.83317, + "max_wind_speed": 11.340757, + "avg_wind_dir": 7, + "max_fog": 0, + "fog_time_pct": 0, + "precip_time_pct": 0, + "precip_mm": 0, + "precip_mm2hr_before_session": 0, + "simulated_start_time": "2026-01-24T13:00:00" + }, + "results": [ + { + "team_id": -361961, + "display_name": "Inside Curb Racing", + "aggregate_champ_points": 43, + "ai": false, + "average_lap": 959043, + "best_lap_num": 12, + "best_lap_time": 934875, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 0, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -361961, + "cust_id": 326217, + "display_name": "Wouter M Merks", + "aggregate_champ_points": 43, + "ai": false, + "average_lap": 952224, + "best_lap_num": 12, + "best_lap_time": 934875, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 0, + "country_code": "NL", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 0, + "finish_position_in_class": 0, + "flair_id": 146, + "flair_name": "Netherlands", + "flair_shortname": "NLD", + "friend": false, + "helmet": { + "pattern": 65, + "color1": "14fff8", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 10, + "interval": 0, + "laps_complete": 7, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 10, + "color1": "ffffff", + "color2": "ffffff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "1", + "wheel_color": "878787", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 139.78241, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 3051, + "old_cpi": 53.386677, + "old_license_level": 19, + "old_sub_level": 316, + "old_ttrating": 1350, + "oldi_rating": 3062, + "opt_laps_complete": 0, + "position": 0, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 2, + "color1": "000000", + "color2": "ffffff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -361961, + "cust_id": 1049323, + "display_name": "Thijn De Jong", + "aggregate_champ_points": 43, + "ai": false, + "average_lap": 964499, + "best_lap_num": 4, + "best_lap_time": 939916, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 5041, + "country_code": "NL", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 3, + "finish_position_in_class": 3, + "flair_id": 146, + "flair_name": "Netherlands", + "flair_shortname": "NLD", + "friend": false, + "helmet": { + "pattern": 0, + "color1": "ffffff", + "color2": "ffffff", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 4, + "interval": 5041, + "laps_complete": 5, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 10, + "color1": "ffffff", + "color2": "ffffff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "1", + "wheel_color": "878787", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 56.54951, + "new_license_level": 18, + "new_sub_level": 281, + "new_ttrating": 1374, + "newi_rating": 2575, + "old_cpi": 45.43084, + "old_license_level": 18, + "old_sub_level": 248, + "old_ttrating": 1374, + "oldi_rating": 2585, + "opt_laps_complete": 0, + "position": 3, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 2, + "color1": "000000", + "color2": "ffffff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 0, + "finish_position_in_class": 0, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 14, + "interval": 0, + "laps_complete": 12, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 10, + "color1": "ffffff", + "color2": "ffffff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "1", + "wheel_color": "878787", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 0, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 2, + "color1": "000000", + "color2": "ffffff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -379972, + "display_name": "Primal Racing 1", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 947611, + "best_lap_num": 9, + "best_lap_time": 938695, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 0, + "class_interval": 3820, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -379972, + "cust_id": 737050, + "display_name": "Magnus Mortensen2", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 947611, + "best_lap_num": 9, + "best_lap_time": 938695, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 0, + "class_interval": 3820, + "country_code": "DK", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 1, + "finish_position_in_class": 1, + "flair_id": 56, + "flair_name": "Denmark", + "flair_shortname": "DNK", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "000000", + "color2": "1c1a7b", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 4, + "interval": 3820, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "8", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 75.986855, + "new_license_level": 20, + "new_sub_level": 410, + "new_ttrating": 1350, + "newi_rating": 2622, + "old_cpi": 100.1537, + "old_license_level": 20, + "old_sub_level": 452, + "old_ttrating": 1350, + "oldi_rating": 2672, + "opt_laps_complete": 0, + "position": 1, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "f1732e", + "color2": "372a75", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 1, + "finish_position_in_class": 1, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 4, + "interval": 3820, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "8", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 1, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "f1732e", + "color2": "372a75", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -246761, + "display_name": "Vortex Racing Alpha", + "aggregate_champ_points": 32, + "ai": false, + "average_lap": 946980, + "best_lap_num": 13, + "best_lap_time": 939223, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 4348, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -246761, + "cust_id": 447778, + "display_name": "craig Benefiel", + "aggregate_champ_points": 32, + "ai": false, + "average_lap": 946980, + "best_lap_num": 13, + "best_lap_time": 939223, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 4348, + "country_code": "US", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 2, + "finish_position_in_class": 2, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "111111", + "color2": "cccccc", + "color3": "ed1c24", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 14, + "interval": 4348, + "laps_complete": 14, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 5, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 2, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "51", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 76.59716, + "new_license_level": 19, + "new_sub_level": 370, + "new_ttrating": 1350, + "newi_rating": 1974, + "old_cpi": 43.42212, + "old_license_level": 18, + "old_sub_level": 241, + "old_ttrating": 1350, + "oldi_rating": 1991, + "opt_laps_complete": 0, + "position": 2, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 27, + "color1": "111111", + "color2": "83ccff", + "color3": "cccccc" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 2, + "finish_position_in_class": 2, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 14, + "interval": 4348, + "laps_complete": 14, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 5, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 2, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "51", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 2, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 27, + "color1": "111111", + "color2": "83ccff", + "color3": "cccccc" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -370856, + "display_name": "Crayola Advanced Engineering", + "aggregate_champ_points": 140, + "ai": false, + "average_lap": 961567, + "best_lap_num": 9, + "best_lap_time": 943057, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8182, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -370856, + "cust_id": 580584, + "display_name": "Adam W Lewis", + "aggregate_champ_points": 140, + "ai": false, + "average_lap": 950923, + "best_lap_num": 9, + "best_lap_time": 943057, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8182, + "country_code": "GB", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 4, + "finish_position_in_class": 4, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 23, + "color1": "ff00a4", + "color2": "adff00", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 4, + "interval": 8182, + "laps_complete": 5, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 10, + "color1": "ffffff", + "color2": "0019ff", + "color3": "111111", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "7", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 112.93226, + "new_license_level": 20, + "new_sub_level": 471, + "new_ttrating": 1178, + "newi_rating": 2293, + "old_cpi": 75.35843, + "old_license_level": 20, + "old_sub_level": 409, + "old_ttrating": 1178, + "oldi_rating": 2265, + "opt_laps_complete": 0, + "position": 4, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 26, + "color1": "ffffff", + "color2": "004225", + "color3": "d4af37" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -370856, + "cust_id": 1070827, + "display_name": "Alexander Wainman", + "aggregate_champ_points": 140, + "ai": false, + "average_lap": 970082, + "best_lap_num": 2, + "best_lap_time": 950272, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 15397, + "country_code": "GB", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 14, + "finish_position_in_class": 14, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 35, + "color1": "6e00ff", + "color2": "ff00ff", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 15397, + "laps_complete": 5, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 10, + "color1": "ffffff", + "color2": "0019ff", + "color3": "111111", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "7", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 113.07297, + "new_license_level": 20, + "new_sub_level": 471, + "new_ttrating": 1211, + "newi_rating": 3227, + "old_cpi": 110.732925, + "old_license_level": 20, + "old_sub_level": 468, + "old_ttrating": 1211, + "oldi_rating": 3199, + "opt_laps_complete": 0, + "position": 14, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 26, + "color1": "ffffff", + "color2": "004225", + "color3": "d4af37" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 3, + "finish_position_in_class": 3, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 4, + "interval": 8182, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 10, + "color1": "ffffff", + "color2": "0019ff", + "color3": "111111", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "7", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 3, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 26, + "color1": "ffffff", + "color2": "004225", + "color3": "d4af37" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -385527, + "display_name": "EHR Blue", + "aggregate_champ_points": 118, + "ai": false, + "average_lap": 964043, + "best_lap_num": 4, + "best_lap_time": 943196, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8321, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -385527, + "cust_id": 1126675, + "display_name": "Jack Reed", + "aggregate_champ_points": 118, + "ai": false, + "average_lap": 966450, + "best_lap_num": 4, + "best_lap_time": 943196, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8321, + "country_code": "ENG", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 5, + "finish_position_in_class": 5, + "flair_id": 236, + "flair_name": "England", + "flair_shortname": "ENG", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "383838", + "color2": "ffffff", + "color3": "2885ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 9, + "interval": 8321, + "laps_complete": 9, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 14, + "number_color1": "ffffff", + "number_color2": "cba7f4", + "number_color3": "352e74", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "808", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 163.46672, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1085, + "newi_rating": 2895, + "old_cpi": 60.085476, + "old_license_level": 19, + "old_sub_level": 333, + "old_ttrating": 1085, + "oldi_rating": 2871, + "opt_laps_complete": 0, + "position": 5, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 13, + "color1": "352e74", + "color2": "4C99D3", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -385527, + "cust_id": 289709, + "display_name": "Greyson Oppermann", + "aggregate_champ_points": 118, + "ai": false, + "average_lap": 953212, + "best_lap_num": 11, + "best_lap_time": 949604, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 14729, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 13, + "finish_position_in_class": 13, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 15, + "color1": "ffffff", + "color2": "ffffff", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 4, + "interval": 14729, + "laps_complete": 3, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 14, + "number_color1": "ffffff", + "number_color2": "cba7f4", + "number_color3": "352e74", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "808", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 121.81984, + "new_license_level": 12, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2415, + "old_cpi": 28.188484, + "old_license_level": 10, + "old_sub_level": 290, + "old_ttrating": 1350, + "oldi_rating": 2392, + "opt_laps_complete": 0, + "position": 13, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 13, + "color1": "352e74", + "color2": "4C99D3", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -385527, + "cust_id": 611015, + "display_name": "Aaron Knight2", + "aggregate_champ_points": 118, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GO", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 91, + "finish_position_in_class": 21, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "helmet": { + "pattern": 60, + "color1": "0afc05", + "color2": "121212", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 3, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 14, + "number_color1": "ffffff", + "number_color2": "cba7f4", + "number_color3": "352e74", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "808", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 45.631496, + "new_license_level": 15, + "new_sub_level": 348, + "new_ttrating": 1350, + "newi_rating": 2184, + "old_cpi": 28.325111, + "old_license_level": 14, + "old_sub_level": 232, + "old_ttrating": 1350, + "oldi_rating": 2178, + "opt_laps_complete": 0, + "position": 91, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 13, + "color1": "352e74", + "color2": "4C99D3", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 4, + "finish_position_in_class": 4, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 16, + "interval": 8321, + "laps_complete": 12, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 14, + "number_color1": "ffffff", + "number_color2": "cba7f4", + "number_color3": "352e74", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "808", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 4, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 13, + "color1": "352e74", + "color2": "4C99D3", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -440173, + "display_name": "Axis Simsports Blue", + "aggregate_champ_points": 53, + "ai": false, + "average_lap": 959921, + "best_lap_num": 8, + "best_lap_time": 944173, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 9298, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -440173, + "cust_id": 416043, + "display_name": "Thomas Pugh", + "aggregate_champ_points": 53, + "ai": false, + "average_lap": 959921, + "best_lap_num": 8, + "best_lap_time": 944173, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 9298, + "country_code": "GB", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 6, + "finish_position_in_class": 6, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 9, + "color1": "000000", + "color2": "ffffff", + "color3": "ff0000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 17, + "interval": 9298, + "laps_complete": 8, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 22, + "color1": "000000", + "color2": "ffffff", + "color3": "ff0000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "3", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 205.9527, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 3916, + "old_cpi": 120.93353, + "old_license_level": 20, + "old_sub_level": 481, + "old_ttrating": 1350, + "oldi_rating": 3922, + "opt_laps_complete": 0, + "position": 6, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 14, + "color1": "d3d3d3", + "color2": "000000", + "color3": "e70e0e" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 5, + "finish_position_in_class": 5, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 17, + "interval": 9298, + "laps_complete": 8, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 22, + "color1": "000000", + "color2": "ffffff", + "color3": "ff0000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "3", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 5, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 14, + "color1": "d3d3d3", + "color2": "000000", + "color3": "e70e0e" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -278104, + "display_name": "Melanzani Racing 102", + "aggregate_champ_points": 21, + "ai": false, + "average_lap": 956754, + "best_lap_num": 8, + "best_lap_time": 946405, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 11530, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -278104, + "cust_id": 119560, + "display_name": "Alvin Frauenknecht", + "aggregate_champ_points": 21, + "ai": false, + "average_lap": 955919, + "best_lap_num": 8, + "best_lap_time": 946405, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 11530, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 7, + "finish_position_in_class": 7, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 63, + "color1": "000000", + "color2": "717171", + "color3": "e5ff00", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": 11530, + "laps_complete": 6, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 0, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "cccccc", + "number_color3": "666666", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "4", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 76.36244, + "new_license_level": 19, + "new_sub_level": 370, + "new_ttrating": 1350, + "newi_rating": 2133, + "old_cpi": 31.524208, + "old_license_level": 17, + "old_sub_level": 148, + "old_ttrating": 1350, + "oldi_rating": 2162, + "opt_laps_complete": 0, + "position": 7, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 22, + "color1": "000000", + "color2": "69b9eb", + "color3": "fa8c17" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -278104, + "cust_id": 946764, + "display_name": "Thomas Vogel", + "aggregate_champ_points": 21, + "ai": false, + "average_lap": 960929, + "best_lap_num": 2, + "best_lap_time": 960929, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 26054, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 17, + "finish_position_in_class": 17, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "020005", + "color2": "000000", + "color3": "6a07da", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 26054, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 0, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "cccccc", + "number_color3": "666666", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "4", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 194.06157, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2231, + "old_cpi": 155.29985, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 2245, + "opt_laps_complete": 0, + "position": 17, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 22, + "color1": "000000", + "color2": "69b9eb", + "color3": "fa8c17" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 6, + "finish_position_in_class": 6, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 1, + "interval": 11530, + "laps_complete": 8, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 0, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "cccccc", + "number_color3": "666666", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "4", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 6, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 22, + "color1": "000000", + "color2": "69b9eb", + "color3": "fa8c17" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -298033, + "display_name": "Piki SCT", + "aggregate_champ_points": 64, + "ai": false, + "average_lap": 953665, + "best_lap_num": 4, + "best_lap_time": 946850, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 0, + "class_interval": 11975, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -298033, + "cust_id": 1094388, + "display_name": "David Orgaz", + "aggregate_champ_points": 64, + "ai": false, + "average_lap": 953665, + "best_lap_num": 4, + "best_lap_time": 946850, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 0, + "class_interval": 11975, + "country_code": "ES", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 8, + "finish_position_in_class": 8, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 20, + "color1": "111111", + "color2": "30b84e", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 8, + "interval": 11975, + "laps_complete": 9, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 7, + "color1": "6589F4", + "color2": "C91919", + "color3": "F5FF7D", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "5", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 93.97715, + "new_license_level": 20, + "new_sub_level": 443, + "new_ttrating": 1350, + "newi_rating": 2440, + "old_cpi": 62.371994, + "old_license_level": 18, + "old_sub_level": 296, + "old_ttrating": 1350, + "oldi_rating": 2441, + "opt_laps_complete": 0, + "position": 8, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 10, + "color1": "5dddc2", + "color2": "19d137", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -298033, + "cust_id": 384294, + "display_name": "Sergio Gomez Redondo", + "aggregate_champ_points": 64, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "ES", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 95, + "finish_position_in_class": 22, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 26, + "color1": "ea1a1a", + "color2": "000000", + "color3": "ff0000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 7, + "color1": "6589F4", + "color2": "C91919", + "color3": "F5FF7D", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "5", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 149.52426, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2026, + "old_cpi": 146.89369, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 2027, + "opt_laps_complete": 0, + "position": 95, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 10, + "color1": "5dddc2", + "color2": "19d137", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 7, + "finish_position_in_class": 7, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 8, + "interval": 11975, + "laps_complete": 9, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 7, + "color1": "6589F4", + "color2": "C91919", + "color3": "F5FF7D", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "5", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 7, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 10, + "color1": "5dddc2", + "color2": "19d137", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -346577, + "display_name": "Motorsports Factory YELLOW", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 993647, + "best_lap_num": 3, + "best_lap_time": 947034, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 168, + "car_name": "Cadillac V-Series.R GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 12159, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -346577, + "cust_id": 600472, + "display_name": "Niklas Ude", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 999156, + "best_lap_num": 3, + "best_lap_time": 947034, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 168, + "car_name": "Cadillac V-Series.R GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 12159, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 9, + "finish_position_in_class": 9, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 56, + "color1": "52944d", + "color2": "d2d2d2", + "color3": "5b6a32", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 2, + "interval": 12159, + "laps_complete": 4, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 168, + "pattern": 21, + "color1": "172b21", + "color2": "57f97a", + "color3": "e8f9f0", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 139, + "sponsor2": 2, + "car_number": "194", + "wheel_color": "0a0f0a", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 91.08547, + "new_license_level": 20, + "new_sub_level": 438, + "new_ttrating": 1350, + "newi_rating": 2605, + "old_cpi": 85.72911, + "old_license_level": 20, + "old_sub_level": 429, + "old_ttrating": 1350, + "oldi_rating": 2603, + "opt_laps_complete": 0, + "position": 9, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 32, + "color1": "172b21", + "color2": "e8f9f0", + "color3": "57f97a" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -346577, + "cust_id": 945525, + "display_name": "Benjamin Voigt", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 982630, + "best_lap_num": 8, + "best_lap_time": 978176, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 168, + "car_name": "Cadillac V-Series.R GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 43301, + "country_code": "DE", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 19, + "finish_position_in_class": 19, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 39, + "color1": "ff0000", + "color2": "000000", + "color3": "ff0000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 43301, + "laps_complete": 4, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 168, + "pattern": 21, + "color1": "172b21", + "color2": "57f97a", + "color3": "e8f9f0", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 139, + "sponsor2": 2, + "car_number": "194", + "wheel_color": "0a0f0a", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 108.77311, + "new_license_level": 20, + "new_sub_level": 465, + "new_ttrating": 1350, + "newi_rating": 1914, + "old_cpi": 75.879616, + "old_license_level": 19, + "old_sub_level": 369, + "old_ttrating": 1350, + "oldi_rating": 1909, + "opt_laps_complete": 0, + "position": 19, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 32, + "color1": "172b21", + "color2": "e8f9f0", + "color3": "57f97a" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 8, + "finish_position_in_class": 8, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 2, + "interval": 12159, + "laps_complete": 8, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 168, + "pattern": 21, + "color1": "172b21", + "color2": "57f97a", + "color3": "e8f9f0", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 139, + "sponsor2": 2, + "car_number": "194", + "wheel_color": "0a0f0a", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 8, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 32, + "color1": "172b21", + "color2": "e8f9f0", + "color3": "57f97a" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -300070, + "display_name": "Tabula Rasa eSports 901", + "aggregate_champ_points": 96, + "ai": false, + "average_lap": 1001151, + "best_lap_num": 4, + "best_lap_time": 947034, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 12159, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -300070, + "cust_id": 641758, + "display_name": "Adam NS Jones", + "aggregate_champ_points": 96, + "ai": false, + "average_lap": 1001151, + "best_lap_num": 4, + "best_lap_time": 947034, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 12159, + "country_code": "GB", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 10, + "finish_position_in_class": 10, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 56, + "color1": "ffffff", + "color2": "ee3442", + "color3": "447ac0", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 3, + "interval": 12159, + "laps_complete": 5, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 16, + "color1": "000000", + "color2": "ed2129", + "color3": "001ee3", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "901", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 117.47467, + "new_license_level": 20, + "new_sub_level": 477, + "new_ttrating": 1350, + "newi_rating": 2049, + "old_cpi": 54.51905, + "old_license_level": 18, + "old_sub_level": 275, + "old_ttrating": 1350, + "oldi_rating": 2039, + "opt_laps_complete": 0, + "position": 10, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 35, + "color1": "000000", + "color2": "fb0000", + "color3": "0030ff" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 9, + "finish_position_in_class": 9, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 3, + "interval": 12159, + "laps_complete": 5, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 16, + "color1": "000000", + "color2": "ed2129", + "color3": "001ee3", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "901", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 9, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 35, + "color1": "000000", + "color2": "fb0000", + "color3": "0030ff" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -307068, + "display_name": "Azz Tech Racing - 390", + "aggregate_champ_points": 107, + "ai": false, + "average_lap": 970770, + "best_lap_num": 3, + "best_lap_time": 948300, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 13425, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -307068, + "cust_id": 996524, + "display_name": "Gabriel Papaconstantinou", + "aggregate_champ_points": 107, + "ai": false, + "average_lap": 969949, + "best_lap_num": 3, + "best_lap_time": 948300, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 13425, + "country_code": "GB", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 11, + "finish_position_in_class": 11, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "bcf7e2", + "color2": "000000", + "color3": "0012ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 2, + "interval": 13425, + "laps_complete": 5, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 17, + "color1": "ff0000", + "color2": "ffffff", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "ffffff", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "390", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 169.81465, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 1722, + "old_cpi": 48.918552, + "old_license_level": 18, + "old_sub_level": 259, + "old_ttrating": 1350, + "oldi_rating": 1708, + "opt_laps_complete": 0, + "position": 11, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "f00000", + "color2": "faff00", + "color3": "9b9b9b" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -307068, + "cust_id": 846950, + "display_name": "Matthew Cheverton", + "aggregate_champ_points": 107, + "ai": false, + "average_lap": 974878, + "best_lap_num": 7, + "best_lap_time": 974878, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 40003, + "country_code": "GB", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 18, + "finish_position_in_class": 18, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 8, + "color1": "ff0000", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 40003, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 17, + "color1": "ff0000", + "color2": "ffffff", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "ffffff", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "390", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 208.88257, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 3137, + "old_cpi": 75.065544, + "old_license_level": 19, + "old_sub_level": 367, + "old_ttrating": 1350, + "oldi_rating": 3121, + "opt_laps_complete": 0, + "position": 18, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "f00000", + "color2": "faff00", + "color3": "9b9b9b" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 10, + "finish_position_in_class": 10, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 2, + "interval": 13425, + "laps_complete": 7, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 17, + "color1": "ff0000", + "color2": "ffffff", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "ffffff", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "390", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 10, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "f00000", + "color2": "faff00", + "color3": "9b9b9b" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -303706, + "display_name": "Savage Sim Racing - Team 80HD", + "aggregate_champ_points": 86, + "ai": false, + "average_lap": 960735, + "best_lap_num": 11, + "best_lap_time": 949573, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 14698, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -303706, + "cust_id": 912397, + "display_name": "Clayton Sanchez2", + "aggregate_champ_points": 86, + "ai": false, + "average_lap": 960735, + "best_lap_num": 11, + "best_lap_time": 949573, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 14698, + "country_code": "US", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 12, + "finish_position_in_class": 12, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "320159", + "color2": "9705fc", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 4, + "interval": 14698, + "laps_complete": 15, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 22, + "color1": "000000", + "color2": "01ffff", + "color3": "a30dbe", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 239, + "sponsor2": 240, + "car_number": "66", + "wheel_color": "767676", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 267.99796, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2906, + "old_cpi": 126.12498, + "old_license_level": 20, + "old_sub_level": 488, + "old_ttrating": 1350, + "oldi_rating": 2901, + "opt_laps_complete": 0, + "position": 12, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 28, + "color1": "434343", + "color2": "fbfbfb", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 11, + "finish_position_in_class": 11, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 4, + "interval": 14698, + "laps_complete": 15, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 22, + "color1": "000000", + "color2": "01ffff", + "color3": "a30dbe", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 239, + "sponsor2": 240, + "car_number": "66", + "wheel_color": "767676", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 11, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 28, + "color1": "434343", + "color2": "fbfbfb", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -199580, + "display_name": "IntoTheApex.com Gold", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 970881, + "best_lap_num": 7, + "best_lap_time": 950647, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 15772, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -199580, + "cust_id": 142817, + "display_name": "Charlie Ryan", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 966391, + "best_lap_num": 7, + "best_lap_time": 950647, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 15772, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": true, + "finish_position": 15, + "finish_position_in_class": 15, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 2, + "color1": "000000", + "color2": "ED2129", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 3, + "interval": 15772, + "laps_complete": 7, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "069", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 42.451843, + "new_license_level": 18, + "new_sub_level": 238, + "new_ttrating": 1350, + "newi_rating": 2179, + "old_cpi": 33.555664, + "old_license_level": 18, + "old_sub_level": 202, + "old_ttrating": 1350, + "oldi_rating": 2266, + "opt_laps_complete": 0, + "position": 15, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 19, + "color1": "000000", + "color2": "0d1fc5", + "color3": "e3e110" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -199580, + "cust_id": 25230, + "display_name": "Bruce Perry", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 986594, + "best_lap_num": 10, + "best_lap_time": 983094, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 48219, + "country_code": "US", + "division": 3, + "division_name": "Division 4", + "drop_race": true, + "finish_position": 24, + "finish_position_in_class": 20, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 9, + "color1": "f9f9f9", + "color2": "0098fe", + "color3": "f9ebd7", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 48219, + "laps_complete": 3, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "069", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 236.64212, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2155, + "old_cpi": 234.75113, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 2155, + "opt_laps_complete": 0, + "position": 24, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 19, + "color1": "000000", + "color2": "0d1fc5", + "color3": "e3e110" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": true, + "finish_position": 12, + "finish_position_in_class": 12, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 3, + "interval": 15772, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "069", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 12, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 19, + "color1": "000000", + "color2": "0d1fc5", + "color3": "e3e110" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -402095, + "display_name": "Granateapfel RT", + "aggregate_champ_points": 129, + "ai": false, + "average_lap": 973169, + "best_lap_num": 11, + "best_lap_time": 950878, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 0, + "class_interval": 16003, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -402095, + "cust_id": 1165346, + "display_name": "Finn Metzler", + "aggregate_champ_points": 129, + "ai": false, + "average_lap": 973169, + "best_lap_num": 11, + "best_lap_time": 950878, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 0, + "class_interval": 16003, + "country_code": "VU", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 16, + "finish_position_in_class": 16, + "flair_id": 226, + "flair_name": "Vanuatu", + "flair_shortname": "VUT", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "372a75", + "color2": "f1732e", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 10, + "interval": 16003, + "laps_complete": 12, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 4, + "color1": "FF0000", + "color2": "00FF00", + "color3": "0000FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "2", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 137.59468, + "new_license_level": 16, + "new_sub_level": 499, + "new_ttrating": 1265, + "newi_rating": 1943, + "old_cpi": 28.337646, + "old_license_level": 14, + "old_sub_level": 232, + "old_ttrating": 1265, + "oldi_rating": 1907, + "opt_laps_complete": 0, + "position": 16, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "ffffff", + "color2": "372a75", + "color3": "f1732e" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 13, + "finish_position_in_class": 13, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 10, + "interval": 16003, + "laps_complete": 12, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 4, + "color1": "FF0000", + "color2": "00FF00", + "color3": "0000FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "2", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 13, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "ffffff", + "color2": "372a75", + "color3": "f1732e" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -288965, + "display_name": "Ecurie Col d'Oiseaux Tertre Rouge", + "aggregate_champ_points": 50, + "ai": false, + "average_lap": 1042916, + "best_lap_num": 13, + "best_lap_time": 980240, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 0, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -288965, + "cust_id": 969021, + "display_name": "Brandon Schmidt3", + "aggregate_champ_points": 50, + "ai": false, + "average_lap": 1042916, + "best_lap_num": 13, + "best_lap_time": 980240, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 0, + "country_code": "DE", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 20, + "finish_position_in_class": 0, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "9b1a25", + "color2": "798bd8", + "color3": "0b0a0b", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 7, + "interval": 45365, + "laps_complete": 13, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 11, + "color1": "ffffd1", + "color2": "9b0202", + "color3": "0d3860", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "77", + "wheel_color": "b7b7b7", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 111.61723, + "new_license_level": 20, + "new_sub_level": 469, + "new_ttrating": 1375, + "newi_rating": 2923, + "old_cpi": 93.56137, + "old_license_level": 20, + "old_sub_level": 442, + "old_ttrating": 1375, + "oldi_rating": 2926, + "opt_laps_complete": 0, + "position": 20, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 8, + "color1": "ffffd1", + "color2": "a30206", + "color3": "ffd7d1" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 14, + "finish_position_in_class": 0, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 7, + "interval": 45365, + "laps_complete": 13, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 11, + "color1": "ffffd1", + "color2": "9b0202", + "color3": "0d3860", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "77", + "wheel_color": "b7b7b7", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 14, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 8, + "color1": "ffffd1", + "color2": "a30206", + "color3": "ffd7d1" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -53704, + "display_name": "LITHIUM Motorsports", + "aggregate_champ_points": 125, + "ai": false, + "average_lap": 1008763, + "best_lap_num": 2, + "best_lap_time": 980346, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 106, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -53704, + "cust_id": 639803, + "display_name": "Alexander Secher", + "aggregate_champ_points": 125, + "ai": false, + "average_lap": 1012588, + "best_lap_num": 2, + "best_lap_time": 980346, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 106, + "country_code": "DK", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 21, + "finish_position_in_class": 1, + "flair_id": 56, + "flair_name": "Denmark", + "flair_shortname": "DNK", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "ffffff", + "color2": "ff0505", + "color3": "6d6d6d", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 45471, + "laps_complete": 3, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 0, + "color1": "2c2c2c", + "color2": "000000", + "color3": "484848", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "15", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 100.56424, + "new_license_level": 20, + "new_sub_level": 453, + "new_ttrating": 1350, + "newi_rating": 2336, + "old_cpi": 78.96949, + "old_license_level": 19, + "old_sub_level": 375, + "old_ttrating": 1350, + "oldi_rating": 2316, + "opt_laps_complete": 0, + "position": 21, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 3, + "color1": "104C5F", + "color2": "FFFFFF", + "color3": "F0B100" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -53704, + "cust_id": 59268, + "display_name": "Danni Fugl", + "aggregate_champ_points": 125, + "ai": false, + "average_lap": 1004939, + "best_lap_num": 7, + "best_lap_time": 989535, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 9295, + "country_code": "DK", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 28, + "finish_position_in_class": 7, + "flair_id": 56, + "flair_name": "Denmark", + "flair_shortname": "DNK", + "friend": false, + "helmet": { + "pattern": 42, + "color1": "ffffff", + "color2": "a30000", + "color3": "003b72", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 54660, + "laps_complete": 4, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 0, + "color1": "2c2c2c", + "color2": "000000", + "color3": "484848", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "15", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 192.06525, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2143, + "old_cpi": 106.53169, + "old_license_level": 20, + "old_sub_level": 462, + "old_ttrating": 1350, + "oldi_rating": 2125, + "opt_laps_complete": 0, + "position": 28, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 3, + "color1": "104C5F", + "color2": "FFFFFF", + "color3": "F0B100" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -53704, + "cust_id": 284176, + "display_name": "Martin Birmele", + "aggregate_champ_points": 125, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 96, + "finish_position_in_class": 21, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 42, + "color1": "ffffff", + "color2": "00154c", + "color3": "710098", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 0, + "color1": "2c2c2c", + "color2": "000000", + "color3": "484848", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "15", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 142.29805, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2430, + "old_cpi": 67.85994, + "old_license_level": 19, + "old_sub_level": 352, + "old_ttrating": 1350, + "oldi_rating": 2411, + "opt_laps_complete": 0, + "position": 96, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 3, + "color1": "104C5F", + "color2": "FFFFFF", + "color3": "F0B100" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 15, + "finish_position_in_class": 1, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 45471, + "laps_complete": 7, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 0, + "color1": "2c2c2c", + "color2": "000000", + "color3": "484848", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "15", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 15, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 3, + "color1": "104C5F", + "color2": "FFFFFF", + "color3": "F0B100" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -134144, + "display_name": "BLOO Racing by VR | 040", + "aggregate_champ_points": 138, + "ai": false, + "average_lap": 1012945, + "best_lap_num": 11, + "best_lap_time": 981629, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 1389, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -134144, + "cust_id": 390389, + "display_name": "Geordi Vermeulen", + "aggregate_champ_points": 138, + "ai": false, + "average_lap": 1007090, + "best_lap_num": 11, + "best_lap_time": 981629, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 1389, + "country_code": "NL", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 22, + "finish_position_in_class": 2, + "flair_id": 146, + "flair_name": "Netherlands", + "flair_shortname": "NLD", + "friend": false, + "helmet": { + "pattern": 38, + "color1": "0094ff", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 2, + "interval": 46754, + "laps_complete": 7, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 23, + "color1": "ffffff", + "color2": "8500ff", + "color3": "2176c0", + "number_font": 7, + "number_color1": "ffffff", + "number_color2": "0094ff", + "number_color3": "000000", + "number_slant": 1, + "sponsor1": 323, + "sponsor2": 245, + "car_number": "040", + "wheel_color": "010101", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 267.66696, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 3669, + "old_cpi": 92.9855, + "old_license_level": 19, + "old_sub_level": 399, + "old_ttrating": 1350, + "oldi_rating": 3639, + "opt_laps_complete": 0, + "position": 22, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "000000", + "color2": "c2000b", + "color3": "0094ff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -134144, + "cust_id": 565681, + "display_name": "Ivan Chambers", + "aggregate_champ_points": 138, + "ai": false, + "average_lap": 1024655, + "best_lap_num": 7, + "best_lap_time": 997208, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 16968, + "country_code": "UA", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 34, + "finish_position_in_class": 13, + "flair_id": 220, + "flair_name": "Ukraine", + "flair_shortname": "UKR", + "friend": false, + "helmet": { + "pattern": 65, + "color1": "0002ff", + "color2": "000000", + "color3": "12ff00", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 5, + "interval": 62333, + "laps_complete": 4, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 23, + "color1": "ffffff", + "color2": "8500ff", + "color3": "2176c0", + "number_font": 7, + "number_color1": "ffffff", + "number_color2": "0094ff", + "number_color3": "000000", + "number_slant": 1, + "sponsor1": 323, + "sponsor2": 245, + "car_number": "040", + "wheel_color": "010101", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 113.62682, + "new_license_level": 20, + "new_sub_level": 472, + "new_ttrating": 1350, + "newi_rating": 1904, + "old_cpi": 59.518505, + "old_license_level": 19, + "old_sub_level": 332, + "old_ttrating": 1350, + "oldi_rating": 1889, + "opt_laps_complete": 0, + "position": 34, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "000000", + "color2": "c2000b", + "color3": "0094ff" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 16, + "finish_position_in_class": 2, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 7, + "interval": 46754, + "laps_complete": 11, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 23, + "color1": "ffffff", + "color2": "8500ff", + "color3": "2176c0", + "number_font": 7, + "number_color1": "ffffff", + "number_color2": "0094ff", + "number_color3": "000000", + "number_slant": 1, + "sponsor1": 323, + "sponsor2": 245, + "car_number": "040", + "wheel_color": "010101", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 16, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "000000", + "color2": "c2000b", + "color3": "0094ff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -385439, + "display_name": "TRC Endurance 01", + "aggregate_champ_points": 12, + "ai": false, + "average_lap": 1014004, + "best_lap_num": 6, + "best_lap_time": 982570, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 2330, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -385439, + "cust_id": 1118747, + "display_name": "Zack Heiderstadt", + "aggregate_champ_points": 12, + "ai": false, + "average_lap": 1014004, + "best_lap_num": 6, + "best_lap_time": 982570, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 2330, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 23, + "finish_position_in_class": 3, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "aeaeae", + "color2": "0c00b1", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 5, + "interval": 47695, + "laps_complete": 11, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 5, + "color1": "FFFFFF", + "color2": "941FB7", + "color3": "80FF00", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "9", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 70.23805, + "new_license_level": 16, + "new_sub_level": 457, + "new_ttrating": 1295, + "newi_rating": 3101, + "old_cpi": 38.609806, + "old_license_level": 14, + "old_sub_level": 279, + "old_ttrating": 1295, + "oldi_rating": 3129, + "opt_laps_complete": 0, + "position": 23, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 30, + "color1": "2508d3", + "color2": "000000", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 17, + "finish_position_in_class": 3, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 5, + "interval": 47695, + "laps_complete": 11, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 5, + "color1": "FFFFFF", + "color2": "941FB7", + "color3": "80FF00", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "9", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 17, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 30, + "color1": "2508d3", + "color2": "000000", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -169135, + "display_name": "BMW M Plower #557", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1028341, + "best_lap_num": 13, + "best_lap_time": 987454, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 7214, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -169135, + "cust_id": 374188, + "display_name": "Lars Wiele", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 993383, + "best_lap_num": 13, + "best_lap_time": 987454, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 7214, + "country_code": "DE", + "division": 1, + "division_name": "Division 2", + "drop_race": true, + "finish_position": 25, + "finish_position_in_class": 4, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 2, + "color1": "6f9556", + "color2": "111111", + "color3": "efd600", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": 52579, + "laps_complete": 3, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 1, + "color1": "6f9556", + "color2": "111111", + "color3": "efd600", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "557", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 108.826164, + "new_license_level": 20, + "new_sub_level": 465, + "new_ttrating": 1350, + "newi_rating": 3266, + "old_cpi": 140.98111, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 3386, + "opt_laps_complete": 0, + "position": 25, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 19, + "color1": "0c0fb4", + "color2": "299467", + "color3": "d1f100" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -169135, + "cust_id": 500311, + "display_name": "Joshua Easey", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1022639, + "best_lap_num": 4, + "best_lap_time": 998269, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 18029, + "country_code": "GB", + "division": 2, + "division_name": "Division 3", + "drop_race": true, + "finish_position": 35, + "finish_position_in_class": 14, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "cccccc", + "color2": "111111", + "color3": "ed1c24", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 63394, + "laps_complete": 5, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 1, + "color1": "6f9556", + "color2": "111111", + "color3": "efd600", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "557", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 211.58789, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2446, + "old_cpi": 209.03923, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 2446, + "opt_laps_complete": 0, + "position": 35, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 19, + "color1": "0c0fb4", + "color2": "299467", + "color3": "d1f100" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -169135, + "cust_id": 638713, + "display_name": "Barnabás Tóth", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1052948, + "best_lap_num": 8, + "best_lap_time": 1002428, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 22188, + "country_code": "HU", + "division": 4, + "division_name": "Division 5", + "drop_race": true, + "finish_position": 38, + "finish_position_in_class": 17, + "flair_id": 93, + "flair_name": "Hungary", + "flair_shortname": "HUN", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "ee3442", + "color2": "ffffff", + "color3": "447ac0", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 3, + "interval": 67553, + "laps_complete": 5, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 1, + "color1": "6f9556", + "color2": "111111", + "color3": "efd600", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "557", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 32.60926, + "new_license_level": 17, + "new_sub_level": 153, + "new_ttrating": 1370, + "newi_rating": 1729, + "old_cpi": 33.197025, + "old_license_level": 17, + "old_sub_level": 156, + "old_ttrating": 1370, + "oldi_rating": 1729, + "opt_laps_complete": 0, + "position": 38, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 19, + "color1": "0c0fb4", + "color2": "299467", + "color3": "d1f100" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": true, + "finish_position": 18, + "finish_position_in_class": 4, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 4, + "interval": 52579, + "laps_complete": 13, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 1, + "color1": "6f9556", + "color2": "111111", + "color3": "efd600", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "557", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 18, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 19, + "color1": "0c0fb4", + "color2": "299467", + "color3": "d1f100" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -348667, + "display_name": "Speed Eagles Gold", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 1007844, + "best_lap_num": 4, + "best_lap_time": 987545, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 7305, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -348667, + "cust_id": 532947, + "display_name": "Dawid Dlugokecki", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 1007844, + "best_lap_num": 4, + "best_lap_time": 987545, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 7305, + "country_code": "PL", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 26, + "finish_position_in_class": 5, + "flair_id": 167, + "flair_name": "Poland", + "flair_shortname": "POL", + "friend": false, + "helmet": { + "pattern": 26, + "color1": "740004", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 11, + "interval": 52670, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 6, + "color1": "23548f", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "44", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 79.3237, + "new_license_level": 19, + "new_sub_level": 375, + "new_ttrating": 1350, + "newi_rating": 2670, + "old_cpi": 65.30674, + "old_license_level": 19, + "old_sub_level": 346, + "old_ttrating": 1350, + "oldi_rating": 2667, + "opt_laps_complete": 0, + "position": 26, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 25, + "color1": "000000", + "color2": "1d70b8", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 19, + "finish_position_in_class": 5, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 11, + "interval": 52670, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 6, + "color1": "23548f", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "44", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 19, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 25, + "color1": "000000", + "color2": "1d70b8", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -217878, + "display_name": "Katzes Racing League #Beta", + "aggregate_champ_points": 62, + "ai": false, + "average_lap": 1004644, + "best_lap_num": 2, + "best_lap_time": 988732, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8492, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -217878, + "cust_id": 936404, + "display_name": "Alexander Kraft", + "aggregate_champ_points": 62, + "ai": false, + "average_lap": 1009909, + "best_lap_num": 2, + "best_lap_time": 988732, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8492, + "country_code": "DE", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 27, + "finish_position_in_class": 6, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "ffffff", + "color2": "f06e34", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 3, + "interval": 53857, + "laps_complete": 6, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 22, + "color1": "000000", + "color2": "ff7800", + "color3": "005f99", + "number_font": 3, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "042", + "wheel_color": "ffffff", + "rim_type": 3 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 130.4349, + "new_license_level": 20, + "new_sub_level": 493, + "new_ttrating": 1350, + "newi_rating": 3381, + "old_cpi": 176.48804, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 3383, + "opt_laps_complete": 0, + "position": 27, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 21, + "color1": "000000", + "color2": "ededed", + "color3": "F98E1D" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -217878, + "cust_id": 240174, + "display_name": "Steven Lexow", + "aggregate_champ_points": 62, + "ai": false, + "average_lap": 998326, + "best_lap_num": 11, + "best_lap_time": 991687, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 11447, + "country_code": "DE", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 31, + "finish_position_in_class": 10, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 9, + "color1": "a80000", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 2, + "interval": 56812, + "laps_complete": 6, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 22, + "color1": "000000", + "color2": "ff7800", + "color3": "005f99", + "number_font": 3, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "042", + "wheel_color": "ffffff", + "rim_type": 3 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 151.4998, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2787, + "old_cpi": 86.411354, + "old_license_level": 20, + "old_sub_level": 430, + "old_ttrating": 1350, + "oldi_rating": 2788, + "opt_laps_complete": 0, + "position": 31, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 21, + "color1": "000000", + "color2": "ededed", + "color3": "F98E1D" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 20, + "finish_position_in_class": 6, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 5, + "interval": 53857, + "laps_complete": 12, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 22, + "color1": "000000", + "color2": "ff7800", + "color3": "005f99", + "number_font": 3, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "042", + "wheel_color": "ffffff", + "rim_type": 3 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 20, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 21, + "color1": "000000", + "color2": "ededed", + "color3": "F98E1D" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -433705, + "display_name": "SIM RACING GRID ACADEMY - Obsidian", + "aggregate_champ_points": 37, + "ai": false, + "average_lap": 1007342, + "best_lap_num": 4, + "best_lap_time": 990616, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 10376, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -433705, + "cust_id": 1048672, + "display_name": "Joshua De Lange", + "aggregate_champ_points": 37, + "ai": false, + "average_lap": 1009998, + "best_lap_num": 4, + "best_lap_time": 990616, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 10376, + "country_code": "NL", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 29, + "finish_position_in_class": 8, + "flair_id": 146, + "flair_name": "Netherlands", + "flair_shortname": "NLD", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "07a9e5", + "color2": "981a53", + "color3": "f981a5", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 2, + "interval": 55741, + "laps_complete": 7, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 0, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "10", + "wheel_color": "ffb649", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 94.37405, + "new_license_level": 20, + "new_sub_level": 443, + "new_ttrating": 1350, + "newi_rating": 2529, + "old_cpi": 76.501915, + "old_license_level": 20, + "old_sub_level": 411, + "old_ttrating": 1350, + "oldi_rating": 2540, + "opt_laps_complete": 0, + "position": 29, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 4, + "color1": "4a98ff", + "color2": "0012fa", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -433705, + "cust_id": 1049578, + "display_name": "Tim Rupp", + "aggregate_champ_points": 37, + "ai": false, + "average_lap": 1003625, + "best_lap_num": 13, + "best_lap_time": 994376, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 14136, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 33, + "finish_position_in_class": 12, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 22, + "color1": "9f0202", + "color2": "111111", + "color3": "d9f357", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 9, + "interval": 59501, + "laps_complete": 6, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 0, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "10", + "wheel_color": "ffb649", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 63.569153, + "new_license_level": 18, + "new_sub_level": 298, + "new_ttrating": 1369, + "newi_rating": 2203, + "old_cpi": 27.171917, + "old_license_level": 17, + "old_sub_level": 125, + "old_ttrating": 1369, + "oldi_rating": 2212, + "opt_laps_complete": 0, + "position": 33, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 4, + "color1": "4a98ff", + "color2": "0012fa", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 21, + "finish_position_in_class": 7, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 11, + "interval": 55741, + "laps_complete": 13, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 0, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "10", + "wheel_color": "ffb649", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 21, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 4, + "color1": "4a98ff", + "color2": "0012fa", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -479845, + "display_name": "DSDF Racing LMP2", + "aggregate_champ_points": 25, + "ai": false, + "average_lap": 1026472, + "best_lap_num": 1, + "best_lap_time": 991685, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 11445, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -479845, + "cust_id": 1010930, + "display_name": "James Seale", + "aggregate_champ_points": 25, + "ai": false, + "average_lap": 1026472, + "best_lap_num": 1, + "best_lap_time": 991685, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 11445, + "country_code": "GB", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 30, + "finish_position_in_class": 9, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 4, + "color1": "0a0a0a", + "color2": "ffffff", + "color3": "ff0000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 4, + "interval": 56810, + "laps_complete": 8, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 21, + "color1": "ffffff", + "color2": "ff0000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "ff0000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 221, + "sponsor2": 7, + "car_number": "155", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 59.186558, + "new_license_level": 12, + "new_sub_level": 488, + "new_ttrating": 1649, + "newi_rating": 2544, + "old_cpi": 26.148556, + "old_license_level": 11, + "old_sub_level": 319, + "old_ttrating": 1649, + "oldi_rating": 2563, + "opt_laps_complete": 0, + "position": 30, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 32, + "color1": "000000", + "color2": "ff0000", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 22, + "finish_position_in_class": 8, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 4, + "interval": 56810, + "laps_complete": 8, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 21, + "color1": "ffffff", + "color2": "ff0000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "ff0000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 221, + "sponsor2": 7, + "car_number": "155", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 22, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 32, + "color1": "000000", + "color2": "ff0000", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -479098, + "display_name": "Lightning Racing Team - #86", + "aggregate_champ_points": 100, + "ai": false, + "average_lap": 1064942, + "best_lap_num": 14, + "best_lap_time": 993290, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 13050, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -479098, + "cust_id": 1133857, + "display_name": "Pierre Peytral Yagüe", + "aggregate_champ_points": 100, + "ai": false, + "average_lap": 1063393, + "best_lap_num": 14, + "best_lap_time": 993290, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 13050, + "country_code": "FR", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 32, + "finish_position_in_class": 11, + "flair_id": 71, + "flair_name": "France", + "flair_shortname": "FRA", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "fc0706", + "color2": "111111", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 6, + "interval": 58415, + "laps_complete": 7, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 12, + "color1": "ff78ff", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "43", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 189.7976, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2834, + "old_cpi": 46.85185, + "old_license_level": 18, + "old_sub_level": 252, + "old_ttrating": 1350, + "oldi_rating": 2816, + "opt_laps_complete": 0, + "position": 32, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 21, + "color1": "f200ff", + "color2": "ffffff", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -479098, + "cust_id": 1172993, + "display_name": "Àngel García", + "aggregate_champ_points": 100, + "ai": false, + "average_lap": 1056511, + "best_lap_num": 4, + "best_lap_time": 1004239, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 23999, + "country_code": "ES", + "division": 5, + "division_name": "Division 6", + "drop_race": false, + "finish_position": 39, + "finish_position_in_class": 18, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "0a0a0a", + "color2": "0c0ce3", + "color3": "e20aff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 3, + "interval": 69364, + "laps_complete": 4, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 12, + "color1": "ff78ff", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "43", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 118.58717, + "new_license_level": 16, + "new_sub_level": 499, + "new_ttrating": 1304, + "newi_rating": 1676, + "old_cpi": 36.530888, + "old_license_level": 15, + "old_sub_level": 315, + "old_ttrating": 1304, + "oldi_rating": 1662, + "opt_laps_complete": 0, + "position": 39, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 21, + "color1": "f200ff", + "color2": "ffffff", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -479098, + "cust_id": 1168652, + "display_name": "Eric Bigas", + "aggregate_champ_points": 100, + "ai": false, + "average_lap": 1077731, + "best_lap_num": 8, + "best_lap_time": 1008009, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 27769, + "country_code": "ES", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 40, + "finish_position_in_class": 19, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "1f2892", + "color2": "7de54c", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 3, + "interval": 73134, + "laps_complete": 4, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 12, + "color1": "ff78ff", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "43", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 113.96372, + "new_license_level": 16, + "new_sub_level": 499, + "new_ttrating": 1423, + "newi_rating": 2502, + "old_cpi": 33.72117, + "old_license_level": 14, + "old_sub_level": 258, + "old_ttrating": 1423, + "oldi_rating": 2490, + "opt_laps_complete": 0, + "position": 40, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 21, + "color1": "f200ff", + "color2": "ffffff", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 23, + "finish_position_in_class": 9, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 12, + "interval": 58415, + "laps_complete": 15, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 12, + "color1": "ff78ff", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "43", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 23, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 21, + "color1": "f200ff", + "color2": "ffffff", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -188879, + "display_name": "Wildfire Racing Dragon", + "aggregate_champ_points": 112, + "ai": false, + "average_lap": 1029244, + "best_lap_num": 5, + "best_lap_time": 998926, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 18686, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -188879, + "cust_id": 788035, + "display_name": "Devon Allies2", + "aggregate_champ_points": 112, + "ai": false, + "average_lap": 1015115, + "best_lap_num": 5, + "best_lap_time": 998926, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 18686, + "country_code": "ZA", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 36, + "finish_position_in_class": 15, + "flair_id": 195, + "flair_name": "South Africa", + "flair_shortname": "ZAF", + "friend": false, + "helmet": { + "pattern": 34, + "color1": "ffffff", + "color2": "ff0909", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 3, + "interval": 64051, + "laps_complete": 8, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 1, + "color1": "0db700", + "color2": "ffffff", + "color3": "000000", + "number_font": 16, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "129", + "wheel_color": "929292", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 97.231285, + "new_license_level": 20, + "new_sub_level": 448, + "new_ttrating": 1350, + "newi_rating": 2077, + "old_cpi": 48.267376, + "old_license_level": 18, + "old_sub_level": 257, + "old_ttrating": 1350, + "oldi_rating": 2063, + "opt_laps_complete": 0, + "position": 36, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 20, + "color1": "000000", + "color2": "06ff00", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -188879, + "cust_id": 751768, + "display_name": "Sean Nisizaka Smit", + "aggregate_champ_points": 112, + "ai": false, + "average_lap": 1066922, + "best_lap_num": 11, + "best_lap_time": 1009109, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 28869, + "country_code": "AU", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 41, + "finish_position_in_class": 20, + "flair_id": 16, + "flair_name": "Australia", + "flair_shortname": "AUS", + "friend": false, + "helmet": { + "pattern": 6, + "color1": "ffffff", + "color2": "ff0000", + "color3": "0075ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 8, + "interval": 74234, + "laps_complete": 4, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 1, + "color1": "0db700", + "color2": "ffffff", + "color3": "000000", + "number_font": 16, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "129", + "wheel_color": "929292", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 61.77475, + "new_license_level": 18, + "new_sub_level": 294, + "new_ttrating": 1336, + "newi_rating": 2123, + "old_cpi": 44.15168, + "old_license_level": 18, + "old_sub_level": 243, + "old_ttrating": 1336, + "oldi_rating": 2114, + "opt_laps_complete": 0, + "position": 41, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 20, + "color1": "000000", + "color2": "06ff00", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 24, + "finish_position_in_class": 10, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 11, + "interval": 64051, + "laps_complete": 12, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 1, + "color1": "0db700", + "color2": "ffffff", + "color3": "000000", + "number_font": 16, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "129", + "wheel_color": "929292", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 24, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 20, + "color1": "000000", + "color2": "06ff00", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -310391, + "display_name": "4ORGE Lions", + "aggregate_champ_points": 87, + "ai": false, + "average_lap": 1035818, + "best_lap_num": 4, + "best_lap_time": 1000900, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 20660, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -310391, + "cust_id": 635525, + "display_name": "Rich Gregory", + "aggregate_champ_points": 87, + "ai": false, + "average_lap": 1035818, + "best_lap_num": 4, + "best_lap_time": 1000900, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 20660, + "country_code": "GB", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 37, + "finish_position_in_class": 16, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 45, + "color1": "ffffff", + "color2": "000000", + "color3": "ff0000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 2, + "interval": 66025, + "laps_complete": 6, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 7, + "color1": "ff0000", + "color2": "ffffff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "11", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 79.90745, + "new_license_level": 19, + "new_sub_level": 377, + "new_ttrating": 1350, + "newi_rating": 2137, + "old_cpi": 61.902596, + "old_license_level": 19, + "old_sub_level": 338, + "old_ttrating": 1350, + "oldi_rating": 2129, + "opt_laps_complete": 0, + "position": 37, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 13, + "color1": "ff0000", + "color2": "870005", + "color3": "2900ef" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 25, + "finish_position_in_class": 11, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 2, + "interval": 66025, + "laps_complete": 6, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 7, + "color1": "ff0000", + "color2": "ffffff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "11", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 25, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 13, + "color1": "ff0000", + "color2": "870005", + "color3": "2900ef" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -159911, + "display_name": "Austrian Simracers Blue", + "aggregate_champ_points": 62, + "ai": false, + "average_lap": 1068447, + "best_lap_num": 2, + "best_lap_time": 1042431, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 0, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -159911, + "cust_id": 1003691, + "display_name": "David Kinzlhofer", + "aggregate_champ_points": 62, + "ai": false, + "average_lap": 1066432, + "best_lap_num": 2, + "best_lap_time": 1042431, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 0, + "country_code": "AT", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 42, + "finish_position_in_class": 0, + "flair_id": 17, + "flair_name": "Austria", + "flair_shortname": "AUT", + "friend": false, + "helmet": { + "pattern": 36, + "color1": "8700ff", + "color2": "b500ff", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 2, + "interval": 107556, + "laps_complete": 5, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "ffffff", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "255", + "wheel_color": "7a7767", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 59.09998, + "new_license_level": 18, + "new_sub_level": 287, + "new_ttrating": 1350, + "newi_rating": 2814, + "old_cpi": 39.52622, + "old_license_level": 18, + "old_sub_level": 227, + "old_ttrating": 1350, + "oldi_rating": 2816, + "opt_laps_complete": 0, + "position": 42, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 19, + "color1": "000000", + "color2": "FFFFFF", + "color3": "FF0000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -159911, + "cust_id": 915496, + "display_name": "Julian Weilguny", + "aggregate_champ_points": 62, + "ai": false, + "average_lap": 1076507, + "best_lap_num": 8, + "best_lap_time": 1076507, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 34076, + "country_code": "AT", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 87, + "finish_position_in_class": 45, + "flair_id": 17, + "flair_name": "Austria", + "flair_shortname": "AUT", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "ffffff", + "color2": "000000", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 11, + "interval": 141632, + "laps_complete": 4, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "ffffff", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "255", + "wheel_color": "7a7767", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 37.487766, + "new_license_level": 17, + "new_sub_level": 175, + "new_ttrating": 1137, + "newi_rating": 2163, + "old_cpi": 30.539976, + "old_license_level": 17, + "old_sub_level": 143, + "old_ttrating": 1137, + "oldi_rating": 2165, + "opt_laps_complete": 0, + "position": 87, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 19, + "color1": "000000", + "color2": "FFFFFF", + "color3": "FF0000" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 26, + "finish_position_in_class": 0, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 13, + "interval": 107556, + "laps_complete": 9, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "ffffff", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "255", + "wheel_color": "7a7767", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 26, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 19, + "color1": "000000", + "color2": "FFFFFF", + "color3": "FF0000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -316329, + "display_name": "Milwauchibre Racing Team", + "aggregate_champ_points": 39, + "ai": false, + "average_lap": 1046166, + "best_lap_num": 2, + "best_lap_time": 1043678, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 1247, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -316329, + "cust_id": 879626, + "display_name": "Nicolas De Saint Riquier", + "aggregate_champ_points": 39, + "ai": false, + "average_lap": 1046166, + "best_lap_num": 2, + "best_lap_time": 1043678, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 1247, + "country_code": "FR", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 43, + "finish_position_in_class": 1, + "flair_id": 71, + "flair_name": "France", + "flair_shortname": "FRA", + "friend": false, + "helmet": { + "pattern": 35, + "color1": "000000", + "color2": "ff0000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 14, + "interval": 108803, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "FFFFFF", + "color2": "6900FF", + "color3": "FF00ED", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "27", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 49.39754, + "new_license_level": 18, + "new_sub_level": 260, + "new_ttrating": 1350, + "newi_rating": 2166, + "old_cpi": 32.16721, + "old_license_level": 17, + "old_sub_level": 151, + "old_ttrating": 1350, + "oldi_rating": 2187, + "opt_laps_complete": 0, + "position": 43, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 22, + "color1": "404040", + "color2": "bebebe", + "color3": "b78a00" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -316329, + "cust_id": 371715, + "display_name": "Dimitri Picard", + "aggregate_champ_points": 39, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "FR", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 88, + "finish_position_in_class": 46, + "flair_id": 71, + "flair_name": "France", + "flair_shortname": "FRA", + "friend": false, + "helmet": { + "pattern": 48, + "color1": "404040", + "color2": "6949e9", + "color3": "b78a00", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 8, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "FFFFFF", + "color2": "6900FF", + "color3": "FF00ED", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "27", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 94.97356, + "new_license_level": 20, + "new_sub_level": 444, + "new_ttrating": 1350, + "newi_rating": 2222, + "old_cpi": 70.97905, + "old_license_level": 19, + "old_sub_level": 359, + "old_ttrating": 1350, + "oldi_rating": 2241, + "opt_laps_complete": 0, + "position": 88, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 22, + "color1": "404040", + "color2": "bebebe", + "color3": "b78a00" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 27, + "finish_position_in_class": 1, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 22, + "interval": 108803, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "FFFFFF", + "color2": "6900FF", + "color3": "FF00ED", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "27", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 27, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 22, + "color1": "404040", + "color2": "bebebe", + "color3": "b78a00" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -480134, + "display_name": "Club 100 Sim Racers", + "aggregate_champ_points": 119, + "ai": false, + "average_lap": 1108602, + "best_lap_num": 12, + "best_lap_time": 1044537, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 2106, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -480134, + "cust_id": 133722, + "display_name": "James DeHavillande", + "aggregate_champ_points": 119, + "ai": false, + "average_lap": 1111329, + "best_lap_num": 12, + "best_lap_time": 1044537, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 2106, + "country_code": "GB", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 44, + "finish_position_in_class": 2, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 60, + "color1": "eb0000", + "color2": "0009db", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 12, + "interval": 109662, + "laps_complete": 9, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 11, + "color1": "000000", + "color2": "ff0000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "125", + "wheel_color": "b32e2e", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 92.82705, + "new_license_level": 19, + "new_sub_level": 399, + "new_ttrating": 1350, + "newi_rating": 3886, + "old_cpi": 38.696655, + "old_license_level": 18, + "old_sub_level": 224, + "old_ttrating": 1350, + "oldi_rating": 3868, + "opt_laps_complete": 0, + "position": 44, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 3, + "color1": "000000", + "color2": "ee6b00", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -480134, + "cust_id": 1183749, + "display_name": "Jack Mitchell-Lowe", + "aggregate_champ_points": 119, + "ai": false, + "average_lap": 1104058, + "best_lap_num": 3, + "best_lap_time": 1049790, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 7359, + "country_code": "GB", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 57, + "finish_position_in_class": 15, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 62, + "color1": "006ee0", + "color2": "e0af00", + "color3": "ff5c00", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 114915, + "laps_complete": 3, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 11, + "color1": "000000", + "color2": "ff0000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "125", + "wheel_color": "b32e2e", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 81.00438, + "new_license_level": 16, + "new_sub_level": 479, + "new_ttrating": 1350, + "newi_rating": 2129, + "old_cpi": 52.43604, + "old_license_level": 15, + "old_sub_level": 369, + "old_ttrating": 1350, + "oldi_rating": 2117, + "opt_laps_complete": 0, + "position": 57, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 3, + "color1": "000000", + "color2": "ee6b00", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 28, + "finish_position_in_class": 2, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 12, + "interval": 109662, + "laps_complete": 12, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 11, + "color1": "000000", + "color2": "ff0000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "125", + "wheel_color": "b32e2e", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 28, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 3, + "color1": "000000", + "color2": "ee6b00", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -287336, + "display_name": "W2W Racing Red", + "aggregate_champ_points": 133, + "ai": false, + "average_lap": 1049212, + "best_lap_num": 4, + "best_lap_time": 1045639, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 3208, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -287336, + "cust_id": 392017, + "display_name": "Jorge Reyes3", + "aggregate_champ_points": 133, + "ai": false, + "average_lap": 1049212, + "best_lap_num": 4, + "best_lap_time": 1045639, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 3208, + "country_code": "BO", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 45, + "finish_position_in_class": 3, + "flair_id": 28, + "flair_name": "Bolivia", + "flair_shortname": "BES", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "0012ff", + "color2": "3145a5", + "color3": "f00000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 13, + "interval": 110764, + "laps_complete": 7, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 15, + "color1": "f3ff06", + "color2": "0e9720", + "color3": "f3ff06", + "number_font": 53, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 2, + "sponsor1": 221, + "sponsor2": 0, + "car_number": "26", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 45.28575, + "new_license_level": 18, + "new_sub_level": 247, + "new_ttrating": 1350, + "newi_rating": 2245, + "old_cpi": 32.465076, + "old_license_level": 17, + "old_sub_level": 153, + "old_ttrating": 1350, + "oldi_rating": 2221, + "opt_laps_complete": 0, + "position": 45, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 10, + "color1": "ad1210", + "color2": "000000", + "color3": "ad1210" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 29, + "finish_position_in_class": 3, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 13, + "interval": 110764, + "laps_complete": 7, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 15, + "color1": "f3ff06", + "color2": "0e9720", + "color3": "f3ff06", + "number_font": 53, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 2, + "sponsor1": 221, + "sponsor2": 0, + "car_number": "26", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 29, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 10, + "color1": "ad1210", + "color2": "000000", + "color3": "ad1210" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -420531, + "display_name": "Angler Racing", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1057651, + "best_lap_num": 5, + "best_lap_time": 1046825, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 4394, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -420531, + "cust_id": 941901, + "display_name": "Paddy Armstrong", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1057651, + "best_lap_num": 5, + "best_lap_time": 1046825, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 4394, + "country_code": "SCT", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 46, + "finish_position_in_class": 4, + "flair_id": 237, + "flair_name": "Scotland", + "flair_shortname": "SCT", + "friend": false, + "helmet": { + "pattern": 57, + "color1": "838383", + "color2": "ffffff", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 10, + "interval": 111950, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "000000", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "6", + "wheel_color": "c8bd9f", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 78.350105, + "new_license_level": 20, + "new_sub_level": 415, + "new_ttrating": 1260, + "newi_rating": 2157, + "old_cpi": 111.6487, + "old_license_level": 20, + "old_sub_level": 469, + "old_ttrating": 1260, + "oldi_rating": 2252, + "opt_laps_complete": 0, + "position": 46, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "000000", + "color2": "ff00de", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 30, + "finish_position_in_class": 4, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 10, + "interval": 111950, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "000000", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "6", + "wheel_color": "c8bd9f", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 30, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "000000", + "color2": "ff00de", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -467249, + "display_name": "Simtec Racing Team #474", + "aggregate_champ_points": 44, + "ai": false, + "average_lap": 1051535, + "best_lap_num": 2, + "best_lap_time": 1047236, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 4805, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -467249, + "cust_id": 1174682, + "display_name": "Craig Law", + "aggregate_champ_points": 44, + "ai": false, + "average_lap": 1051535, + "best_lap_num": 2, + "best_lap_time": 1047236, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 4805, + "country_code": "NIR", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 47, + "finish_position_in_class": 5, + "flair_id": 239, + "flair_name": "Northern Ireland", + "flair_shortname": "NIR", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "ffffff", + "color2": "4076bc", + "color3": "c8d92b", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": 112361, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 3, + "color1": "42c6ef", + "color2": "111111", + "color3": "0b0b0a", + "number_font": 9, + "number_color1": "000000", + "number_color2": "f4f4f4", + "number_color3": "fafafa", + "number_slant": 0, + "sponsor1": 221, + "sponsor2": 0, + "car_number": "472", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 54.50814, + "new_license_level": 18, + "new_sub_level": 275, + "new_ttrating": 1350, + "newi_rating": 2559, + "old_cpi": 42.040413, + "old_license_level": 18, + "old_sub_level": 236, + "old_ttrating": 1350, + "oldi_rating": 2567, + "opt_laps_complete": 0, + "position": 47, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 5, + "color1": "11e5e5", + "color2": "030303", + "color3": "030303" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 31, + "finish_position_in_class": 5, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 1, + "interval": 112361, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 3, + "color1": "42c6ef", + "color2": "111111", + "color3": "0b0b0a", + "number_font": 9, + "number_color1": "000000", + "number_color2": "f4f4f4", + "number_color3": "fafafa", + "number_slant": 0, + "sponsor1": 221, + "sponsor2": 0, + "car_number": "472", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 31, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 5, + "color1": "11e5e5", + "color2": "030303", + "color3": "030303" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -296646, + "display_name": "Uprise Motorsports", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1058787, + "best_lap_num": 2, + "best_lap_time": 1047907, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 5476, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -296646, + "cust_id": 448051, + "display_name": "Diego Roldan", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1054415, + "best_lap_num": 2, + "best_lap_time": 1047907, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 5476, + "country_code": "MX", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 48, + "finish_position_in_class": 6, + "flair_id": 134, + "flair_name": "Mexico", + "flair_shortname": "MEX", + "friend": false, + "helmet": { + "pattern": 9, + "color1": "0c0c0c", + "color2": "ffffff", + "color3": "de0019", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 3, + "interval": 113032, + "laps_complete": 3, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 2, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "53", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 38.158615, + "new_license_level": 14, + "new_sub_level": 278, + "new_ttrating": 1350, + "newi_rating": 1896, + "old_cpi": 28.696474, + "old_license_level": 14, + "old_sub_level": 234, + "old_ttrating": 1350, + "oldi_rating": 1912, + "opt_laps_complete": 0, + "position": 48, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 4, + "color1": "000000", + "color2": "ff190f", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -296646, + "cust_id": 320315, + "display_name": "AJ Heider", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1060108, + "best_lap_num": 9, + "best_lap_time": 1050840, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8409, + "country_code": "BA", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 63, + "finish_position_in_class": 21, + "flair_id": 29, + "flair_name": "Bosnia and Herzegovina", + "flair_shortname": "BIH", + "friend": false, + "helmet": { + "pattern": 66, + "color1": "000000", + "color2": "0500cb", + "color3": "00d0ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 4, + "interval": 115965, + "laps_complete": 4, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 2, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "53", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 94.6242, + "new_license_level": 20, + "new_sub_level": 444, + "new_ttrating": 1350, + "newi_rating": 2675, + "old_cpi": 97.26926, + "old_license_level": 20, + "old_sub_level": 448, + "old_ttrating": 1350, + "oldi_rating": 2698, + "opt_laps_complete": 0, + "position": 63, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 4, + "color1": "000000", + "color2": "ff190f", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -296646, + "cust_id": 252495, + "display_name": "Chris Lilly", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1067941, + "best_lap_num": 5, + "best_lap_time": 1067941, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 25510, + "country_code": "US", + "division": 5, + "division_name": "Division 6", + "drop_race": false, + "finish_position": 86, + "finish_position_in_class": 44, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 46, + "color1": "000000", + "color2": "0057ff", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 5, + "interval": 133066, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 2, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "53", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 24.062311, + "new_license_level": 14, + "new_sub_level": 206, + "new_ttrating": 1350, + "newi_rating": 1493, + "old_cpi": 24.925983, + "old_license_level": 14, + "old_sub_level": 212, + "old_ttrating": 1350, + "oldi_rating": 1493, + "opt_laps_complete": 0, + "position": 86, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 4, + "color1": "000000", + "color2": "ff190f", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -296646, + "cust_id": 348147, + "display_name": "Connor Trifari", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GS", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 98, + "finish_position_in_class": 53, + "flair_id": 196, + "flair_name": "South Georgia & South Sandwich Islands", + "flair_shortname": "SGS", + "friend": false, + "helmet": { + "pattern": 2, + "color1": "ff0000", + "color2": "ffffff", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 4, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 2, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "53", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 50.541496, + "new_license_level": 18, + "new_sub_level": 264, + "new_ttrating": 1350, + "newi_rating": 3082, + "old_cpi": 56.433605, + "old_license_level": 18, + "old_sub_level": 281, + "old_ttrating": 1350, + "oldi_rating": 3100, + "opt_laps_complete": 0, + "position": 98, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 4, + "color1": "000000", + "color2": "ff190f", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 32, + "finish_position_in_class": 6, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 16, + "interval": 113032, + "laps_complete": 9, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 2, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "53", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 32, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 4, + "color1": "000000", + "color2": "ff190f", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -398466, + "display_name": "Leche Condensada Racing Team", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1055351, + "best_lap_num": 2, + "best_lap_time": 1047918, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 5487, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -398466, + "cust_id": 1110076, + "display_name": "Abel Ros", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1051451, + "best_lap_num": 2, + "best_lap_time": 1047918, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 5487, + "country_code": "ES", + "division": 3, + "division_name": "Division 4", + "drop_race": true, + "finish_position": 49, + "finish_position_in_class": 7, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 58, + "color1": "ee0000", + "color2": "e0fa0c", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 3, + "interval": 113043, + "laps_complete": 4, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "F5F9F4", + "color2": "000000", + "color3": "EDF4EE", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "28", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 63.223633, + "new_license_level": 19, + "new_sub_level": 341, + "new_ttrating": 1364, + "newi_rating": 2580, + "old_cpi": 79.276924, + "old_license_level": 19, + "old_sub_level": 375, + "old_ttrating": 1364, + "oldi_rating": 2590, + "opt_laps_complete": 0, + "position": 49, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "103fe6", + "color2": "f3f3f3", + "color3": "f60909" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -398466, + "cust_id": 401283, + "display_name": "Alex Serrano Martinez", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1057837, + "best_lap_num": 10, + "best_lap_time": 1056746, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 14315, + "country_code": "ES", + "division": 4, + "division_name": "Division 5", + "drop_race": true, + "finish_position": 78, + "finish_position_in_class": 36, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "ffffff", + "color2": "fc0706", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": 121871, + "laps_complete": 3, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "F5F9F4", + "color2": "000000", + "color3": "EDF4EE", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "28", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 55.97871, + "new_license_level": 19, + "new_sub_level": 323, + "new_ttrating": 1305, + "newi_rating": 2303, + "old_cpi": 56.21595, + "old_license_level": 19, + "old_sub_level": 323, + "old_ttrating": 1305, + "oldi_rating": 2303, + "opt_laps_complete": 0, + "position": 78, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "103fe6", + "color2": "f3f3f3", + "color3": "f60909" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -398466, + "cust_id": 1107477, + "display_name": "Carlos Saek", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1062077, + "best_lap_num": 7, + "best_lap_time": 1062077, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 19646, + "country_code": "ES", + "division": 4, + "division_name": "Division 5", + "drop_race": true, + "finish_position": 83, + "finish_position_in_class": 41, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 34, + "color1": "000000", + "color2": "7bfcab", + "color3": "515151", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 6, + "interval": 127202, + "laps_complete": 3, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "F5F9F4", + "color2": "000000", + "color3": "EDF4EE", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "28", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 28.689007, + "new_license_level": 17, + "new_sub_level": 134, + "new_ttrating": 1350, + "newi_rating": 1833, + "old_cpi": 42.800854, + "old_license_level": 18, + "old_sub_level": 239, + "old_ttrating": 1350, + "oldi_rating": 1845, + "opt_laps_complete": 0, + "position": 83, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "103fe6", + "color2": "f3f3f3", + "color3": "f60909" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": true, + "finish_position": 33, + "finish_position_in_class": 7, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 10, + "interval": 113043, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "F5F9F4", + "color2": "000000", + "color3": "EDF4EE", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "28", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 33, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "103fe6", + "color2": "f3f3f3", + "color3": "f60909" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -175849, + "display_name": "Maniti Racing Yellow", + "aggregate_champ_points": 93, + "ai": false, + "average_lap": 1173438, + "best_lap_num": 5, + "best_lap_time": 1047997, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 156, + "car_name": "Mercedes-AMG GT3 2020", + "carcfg": -1, + "champ_points": 0, + "class_interval": 5566, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -175849, + "cust_id": 1060062, + "display_name": "Marvin Bär", + "aggregate_champ_points": 93, + "ai": false, + "average_lap": 1173438, + "best_lap_num": 5, + "best_lap_time": 1047997, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 156, + "car_name": "Mercedes-AMG GT3 2020", + "carcfg": -1, + "champ_points": 0, + "class_interval": 5566, + "country_code": "DE", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 50, + "finish_position_in_class": 8, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 49, + "color1": "ffffff", + "color2": "bbbbbb", + "color3": "4a4a4a", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 6, + "interval": 113122, + "laps_complete": 7, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 156, + "pattern": 0, + "color1": "000000", + "color2": "08ad22", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "78", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 99, + "new_cpi": 92.41379, + "new_license_level": 19, + "new_sub_level": 399, + "new_ttrating": 1350, + "newi_rating": 3092, + "old_cpi": 42.426422, + "old_license_level": 18, + "old_sub_level": 237, + "old_ttrating": 1350, + "oldi_rating": 3083, + "opt_laps_complete": 0, + "position": 50, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 29, + "color1": "00ff19", + "color2": "04ff00", + "color3": "42ff00" + }, + "watched": false, + "weight_penalty_kg": 3 + }, + { + "team_id": -175849, + "cust_id": 1347955, + "display_name": "Kai Kuhlmann", + "aggregate_champ_points": 93, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 156, + "car_name": "Mercedes-AMG GT3 2020", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "DE", + "division": 5, + "division_name": "Division 6", + "drop_race": false, + "finish_position": 92, + "finish_position_in_class": 49, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "000000", + "color2": "000000", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 1, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 156, + "pattern": 0, + "color1": "000000", + "color2": "08ad22", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "78", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 99, + "new_cpi": 81.67377, + "new_license_level": 19, + "new_sub_level": 380, + "new_ttrating": 1350, + "newi_rating": 1918, + "old_cpi": 63.97849, + "old_license_level": 19, + "old_sub_level": 343, + "old_ttrating": 1350, + "oldi_rating": 1911, + "opt_laps_complete": 0, + "position": 92, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 29, + "color1": "00ff19", + "color2": "04ff00", + "color3": "42ff00" + }, + "watched": false, + "weight_penalty_kg": 3 + }, + { + "team_id": -175849, + "cust_id": 314054, + "display_name": "Jan-Eike Zanders", + "aggregate_champ_points": 93, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 156, + "car_name": "Mercedes-AMG GT3 2020", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "DE", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 99, + "finish_position_in_class": 54, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": true, + "helmet": { + "pattern": 8, + "color1": "47190b", + "color2": "111111", + "color3": "ffee47", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": -1, + "laps_complete": 1, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 156, + "pattern": 0, + "color1": "000000", + "color2": "08ad22", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "78", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 99, + "new_cpi": 53.88748, + "new_license_level": 18, + "new_sub_level": 274, + "new_ttrating": 1350, + "newi_rating": 2504, + "old_cpi": 40.080284, + "old_license_level": 18, + "old_sub_level": 229, + "old_ttrating": 1350, + "oldi_rating": 2496, + "opt_laps_complete": 0, + "position": 99, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 29, + "color1": "00ff19", + "color2": "04ff00", + "color3": "42ff00" + }, + "watched": false, + "weight_penalty_kg": 3 + } + ], + "drop_race": false, + "finish_position": 34, + "finish_position_in_class": 8, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 7, + "interval": 113122, + "laps_complete": 9, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 156, + "pattern": 0, + "color1": "000000", + "color2": "08ad22", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "78", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 99, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 34, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 29, + "color1": "00ff19", + "color2": "04ff00", + "color3": "42ff00" + }, + "watched": false, + "weight_penalty_kg": 3 + }, + { + "team_id": -472037, + "display_name": "APEXNOVA SIMRACING PURPLE", + "aggregate_champ_points": 97, + "ai": false, + "average_lap": 1070368, + "best_lap_num": 11, + "best_lap_time": 1048121, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 5690, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -472037, + "cust_id": 363097, + "display_name": "Tobias Kracht", + "aggregate_champ_points": 97, + "ai": false, + "average_lap": 1075986, + "best_lap_num": 11, + "best_lap_time": 1048121, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 5690, + "country_code": "DE", + "division": 6, + "division_name": "Division 7", + "drop_race": false, + "finish_position": 51, + "finish_position_in_class": 9, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 35, + "color1": "2575b0", + "color2": "7e1c6e", + "color3": "f90000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 8, + "interval": 113246, + "laps_complete": 7, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "fb0ead", + "color2": "424242", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "17", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 57.572872, + "new_license_level": 15, + "new_sub_level": 384, + "new_ttrating": 1350, + "newi_rating": 2797, + "old_cpi": 31.962917, + "old_license_level": 14, + "old_sub_level": 250, + "old_ttrating": 1350, + "oldi_rating": 2783, + "opt_laps_complete": 0, + "position": 51, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 17, + "color1": "2F2F2F", + "color2": "404334", + "color3": "2F4F4F" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -472037, + "cust_id": 1375930, + "display_name": "Bartosz Swiechowicz2", + "aggregate_champ_points": 97, + "ai": false, + "average_lap": 1063346, + "best_lap_num": 4, + "best_lap_time": 1053114, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 10683, + "country_code": "DE", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 71, + "finish_position_in_class": 29, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "2e358f", + "color2": "ec232d", + "color3": "0a0a0a", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 5, + "interval": 118239, + "laps_complete": 4, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "fb0ead", + "color2": "424242", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "17", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 96.417336, + "new_license_level": 20, + "new_sub_level": 447, + "new_ttrating": 1350, + "newi_rating": 2294, + "old_cpi": 48.92359, + "old_license_level": 19, + "old_sub_level": 302, + "old_ttrating": 1350, + "oldi_rating": 2282, + "opt_laps_complete": 0, + "position": 71, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 17, + "color1": "2F2F2F", + "color2": "404334", + "color3": "2F4F4F" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 35, + "finish_position_in_class": 9, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 13, + "interval": 113246, + "laps_complete": 11, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "fb0ead", + "color2": "424242", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "17", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 35, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 17, + "color1": "2F2F2F", + "color2": "404334", + "color3": "2F4F4F" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -457552, + "display_name": "DB3 MOTORSPORT | REMESI", + "aggregate_champ_points": 137, + "ai": false, + "average_lap": 1054360, + "best_lap_num": 5, + "best_lap_time": 1048264, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 5833, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -457552, + "cust_id": 673113, + "display_name": "Gerd Zechner", + "aggregate_champ_points": 137, + "ai": false, + "average_lap": 1051391, + "best_lap_num": 5, + "best_lap_time": 1048264, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 5833, + "country_code": "AT", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 52, + "finish_position_in_class": 10, + "flair_id": 17, + "flair_name": "Austria", + "flair_shortname": "AUT", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "111111", + "color2": "ffffff", + "color3": "fc0706", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 6, + "interval": 113389, + "laps_complete": 6, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "77fa03", + "color2": "ed2129", + "color3": "b0ec02", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "13", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 83.24767, + "new_license_level": 19, + "new_sub_level": 383, + "new_ttrating": 1350, + "newi_rating": 3031, + "old_cpi": 65.06985, + "old_license_level": 19, + "old_sub_level": 346, + "old_ttrating": 1350, + "oldi_rating": 3014, + "opt_laps_complete": 0, + "position": 52, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 11, + "color1": "d9003b", + "color2": "ffffff", + "color3": "0011f9" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -457552, + "cust_id": 1366564, + "display_name": "Christian Seibold", + "aggregate_champ_points": 137, + "ai": false, + "average_lap": 1060299, + "best_lap_num": 8, + "best_lap_time": 1050531, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8100, + "country_code": "AT", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 61, + "finish_position_in_class": 19, + "flair_id": 17, + "flair_name": "Austria", + "flair_shortname": "AUT", + "friend": false, + "helmet": { + "pattern": 67, + "color1": "393939", + "color2": "ea6500", + "color3": "0a0a0a", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 9, + "interval": 115656, + "laps_complete": 3, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "77fa03", + "color2": "ed2129", + "color3": "b0ec02", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "13", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 92.53391, + "new_license_level": 19, + "new_sub_level": 399, + "new_ttrating": 1358, + "newi_rating": 2464, + "old_cpi": 69.27189, + "old_license_level": 19, + "old_sub_level": 355, + "old_ttrating": 1358, + "oldi_rating": 2437, + "opt_laps_complete": 0, + "position": 61, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 11, + "color1": "d9003b", + "color2": "ffffff", + "color3": "0011f9" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 36, + "finish_position_in_class": 10, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 15, + "interval": 113389, + "laps_complete": 9, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "77fa03", + "color2": "ed2129", + "color3": "b0ec02", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "13", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 36, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 11, + "color1": "d9003b", + "color2": "ffffff", + "color3": "0011f9" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -415465, + "display_name": "WFLM Motorsport Vortex", + "aggregate_champ_points": 71, + "ai": false, + "average_lap": 1107063, + "best_lap_num": 6, + "best_lap_time": 1048837, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 6406, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -415465, + "cust_id": 1294295, + "display_name": "Florïan Chevreuïl", + "aggregate_champ_points": 71, + "ai": false, + "average_lap": 1107063, + "best_lap_num": 6, + "best_lap_time": 1048837, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 6406, + "country_code": "FR", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 53, + "finish_position_in_class": 11, + "flair_id": 71, + "flair_name": "France", + "flair_shortname": "FRA", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 7, + "interval": 113962, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 3, + "color1": "FF7000", + "color2": "73ECFF", + "color3": "0F0017", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "29", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 33.223705, + "new_license_level": 17, + "new_sub_level": 156, + "new_ttrating": 1350, + "newi_rating": 2683, + "old_cpi": 31.96522, + "old_license_level": 17, + "old_sub_level": 150, + "old_ttrating": 1350, + "oldi_rating": 2683, + "opt_laps_complete": 0, + "position": 53, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 28, + "color1": "0f0017", + "color2": "ff0021", + "color3": "ddecec" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 37, + "finish_position_in_class": 11, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 7, + "interval": 113962, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 3, + "color1": "FF7000", + "color2": "73ECFF", + "color3": "0F0017", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "29", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 37, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 28, + "color1": "0f0017", + "color2": "ff0021", + "color3": "ddecec" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -327700, + "display_name": "SFR ITALIA", + "aggregate_champ_points": 84, + "ai": false, + "average_lap": 1105839, + "best_lap_num": 10, + "best_lap_time": 1048852, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 6421, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -327700, + "cust_id": 1005007, + "display_name": "Andrea Lamponi", + "aggregate_champ_points": 84, + "ai": false, + "average_lap": 1127052, + "best_lap_num": 10, + "best_lap_time": 1048852, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 6421, + "country_code": "IT", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 54, + "finish_position_in_class": 12, + "flair_id": 101, + "flair_name": "Italy", + "flair_shortname": "ITA", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "5481fc", + "color2": "ffffff", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 4, + "interval": 113977, + "laps_complete": 7, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 11, + "color1": "D4FF0F", + "color2": "00FF00", + "color3": "111111", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "19", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 75.235085, + "new_license_level": 19, + "new_sub_level": 367, + "new_ttrating": 1302, + "newi_rating": 2284, + "old_cpi": 72.3915, + "old_license_level": 19, + "old_sub_level": 362, + "old_ttrating": 1302, + "oldi_rating": 2276, + "opt_laps_complete": 0, + "position": 54, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 22, + "color1": "faff00", + "color2": "000000", + "color3": "7ef22e" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -327700, + "cust_id": 814236, + "display_name": "Alan Binacchi", + "aggregate_champ_points": 84, + "ai": false, + "average_lap": 1088869, + "best_lap_num": 5, + "best_lap_time": 1051913, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 9482, + "country_code": "IT", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 66, + "finish_position_in_class": 24, + "flair_id": 101, + "flair_name": "Italy", + "flair_shortname": "ITA", + "friend": false, + "helmet": { + "pattern": 11, + "color1": "10e632", + "color2": "daed1c", + "color3": "cccccc", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 2, + "interval": 117038, + "laps_complete": 5, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 11, + "color1": "D4FF0F", + "color2": "00FF00", + "color3": "111111", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "19", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 77.29383, + "new_license_level": 19, + "new_sub_level": 372, + "new_ttrating": 1309, + "newi_rating": 2487, + "old_cpi": 67.18803, + "old_license_level": 19, + "old_sub_level": 350, + "old_ttrating": 1309, + "oldi_rating": 2481, + "opt_laps_complete": 0, + "position": 66, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 22, + "color1": "faff00", + "color2": "000000", + "color3": "7ef22e" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 38, + "finish_position_in_class": 12, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 6, + "interval": 113977, + "laps_complete": 12, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 11, + "color1": "D4FF0F", + "color2": "00FF00", + "color3": "111111", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "19", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 38, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 22, + "color1": "faff00", + "color2": "000000", + "color3": "7ef22e" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -480821, + "display_name": "Team PaceLab - Red", + "aggregate_champ_points": 115, + "ai": false, + "average_lap": 1057834, + "best_lap_num": 6, + "best_lap_time": 1049090, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 6659, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -480821, + "cust_id": 1287257, + "display_name": "Burak Egemen Yılmaz", + "aggregate_champ_points": 115, + "ai": false, + "average_lap": 1056422, + "best_lap_num": 6, + "best_lap_time": 1049090, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 6659, + "country_code": "TR", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 55, + "finish_position_in_class": 13, + "flair_id": 215, + "flair_name": "Türkiye", + "flair_shortname": "TUR", + "friend": false, + "helmet": { + "pattern": 36, + "color1": "ffffff", + "color2": "ff0000", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 8, + "interval": 114215, + "laps_complete": 7, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "23", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 77.44804, + "new_license_level": 16, + "new_sub_level": 472, + "new_ttrating": 1307, + "newi_rating": 2450, + "old_cpi": 26.810757, + "old_license_level": 14, + "old_sub_level": 223, + "old_ttrating": 1307, + "oldi_rating": 2426, + "opt_laps_complete": 0, + "position": 55, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 21, + "color1": "000000", + "color2": "de00ff", + "color3": "230057" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -480821, + "cust_id": 1082557, + "display_name": "Ömer Baykal", + "aggregate_champ_points": 115, + "ai": false, + "average_lap": 1060657, + "best_lap_num": 9, + "best_lap_time": 1056041, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 13610, + "country_code": "TR", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 77, + "finish_position_in_class": 35, + "flair_id": 215, + "flair_name": "Türkiye", + "flair_shortname": "TUR", + "friend": false, + "helmet": { + "pattern": 14, + "color1": "000000", + "color2": "ffa100", + "color3": "ff9100", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 6, + "interval": 121166, + "laps_complete": 3, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "23", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 75.97765, + "new_license_level": 19, + "new_sub_level": 369, + "new_ttrating": 1353, + "newi_rating": 2634, + "old_cpi": 37.180595, + "old_license_level": 17, + "old_sub_level": 174, + "old_ttrating": 1353, + "oldi_rating": 2611, + "opt_laps_complete": 0, + "position": 77, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 21, + "color1": "000000", + "color2": "de00ff", + "color3": "230057" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 39, + "finish_position_in_class": 13, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 14, + "interval": 114215, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "23", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 39, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 21, + "color1": "000000", + "color2": "de00ff", + "color3": "230057" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -467225, + "display_name": "DCS Racing Green", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1107588, + "best_lap_num": 11, + "best_lap_time": 1049592, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 7161, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -467225, + "cust_id": 1193552, + "display_name": "Nikos Nota", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1126673, + "best_lap_num": 11, + "best_lap_time": 1049592, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 7161, + "country_code": "GR", + "division": 3, + "division_name": "Division 4", + "drop_race": true, + "finish_position": 56, + "finish_position_in_class": 14, + "flair_id": 80, + "flair_name": "Greece", + "flair_shortname": "GRC", + "friend": false, + "helmet": { + "pattern": 67, + "color1": "ffffff", + "color2": "fff500", + "color3": "fff500", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 5, + "interval": 114717, + "laps_complete": 7, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "e0aa42", + "color2": "0ea2eb", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "22", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 29.04801, + "new_license_level": 13, + "new_sub_level": 194, + "new_ttrating": 1305, + "newi_rating": 3058, + "old_cpi": 21.94943, + "old_license_level": 13, + "old_sub_level": 150, + "old_ttrating": 1305, + "oldi_rating": 3142, + "opt_laps_complete": 0, + "position": 56, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "ffffff", + "color2": "60a6c9", + "color3": "1a1f43" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -467225, + "cust_id": 618064, + "display_name": "Lexi Taylor", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1094864, + "best_lap_num": 4, + "best_lap_time": 1057606, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 15175, + "country_code": "GB", + "division": 7, + "division_name": "Division 8", + "drop_race": true, + "finish_position": 79, + "finish_position_in_class": 37, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 35, + "color1": "ffe116", + "color2": "117900", + "color3": "00046b", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 122731, + "laps_complete": 6, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "e0aa42", + "color2": "0ea2eb", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "22", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 37.60446, + "new_license_level": 15, + "new_sub_level": 319, + "new_ttrating": 1350, + "newi_rating": 1864, + "old_cpi": 36.71224, + "old_license_level": 15, + "old_sub_level": 316, + "old_ttrating": 1350, + "oldi_rating": 1874, + "opt_laps_complete": 0, + "position": 79, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "ffffff", + "color2": "60a6c9", + "color3": "1a1f43" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": true, + "finish_position": 40, + "finish_position_in_class": 14, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 5, + "interval": 114717, + "laps_complete": 13, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "e0aa42", + "color2": "0ea2eb", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "22", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 40, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "ffffff", + "color2": "60a6c9", + "color3": "1a1f43" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -298823, + "display_name": "TEN MAD MEN Alpha", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1135797, + "best_lap_num": 7, + "best_lap_time": 1050137, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 7706, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -298823, + "cust_id": 376421, + "display_name": "Jorge Leiva Ruiz", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1135797, + "best_lap_num": 7, + "best_lap_time": 1050137, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 7706, + "country_code": "CL", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 58, + "finish_position_in_class": 16, + "flair_id": 44, + "flair_name": "Chile", + "flair_shortname": "CHL", + "friend": false, + "helmet": { + "pattern": 67, + "color1": "000000", + "color2": "00a0bc", + "color3": "c7c7c7", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 2, + "interval": 115262, + "laps_complete": 9, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "ffffff", + "color2": "0013a5", + "color3": "ff5c00", + "number_font": 0, + "number_color1": "f3eeeb", + "number_color2": "ffffff", + "number_color3": "ffffff", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "010", + "wheel_color": "32312f", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 65.18878, + "new_license_level": 19, + "new_sub_level": 346, + "new_ttrating": 1350, + "newi_rating": 2447, + "old_cpi": 66.34217, + "old_license_level": 19, + "old_sub_level": 348, + "old_ttrating": 1350, + "oldi_rating": 2484, + "opt_laps_complete": 0, + "position": 58, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "e1ce30", + "color2": "ebe8e8", + "color3": "1c46ed" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 41, + "finish_position_in_class": 15, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 2, + "interval": 115262, + "laps_complete": 9, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "ffffff", + "color2": "0013a5", + "color3": "ff5c00", + "number_font": 0, + "number_color1": "f3eeeb", + "number_color2": "ffffff", + "number_color3": "ffffff", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "010", + "wheel_color": "32312f", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 41, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "e1ce30", + "color2": "ebe8e8", + "color3": "1c46ed" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -413546, + "display_name": "Should be Fine Motorsports", + "aggregate_champ_points": 110, + "ai": false, + "average_lap": 1154469, + "best_lap_num": 3, + "best_lap_time": 1050330, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 7899, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -413546, + "cust_id": 1092119, + "display_name": "Chris Singh", + "aggregate_champ_points": 110, + "ai": false, + "average_lap": 1154469, + "best_lap_num": 3, + "best_lap_time": 1050330, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 7899, + "country_code": "US", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 59, + "finish_position_in_class": 17, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 22, + "color1": "f9ff00", + "color2": "ff0000", + "color3": "00c341", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 17, + "interval": 115455, + "laps_complete": 15, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 17, + "color1": "efd600", + "color2": "111111", + "color3": "d7162d", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "25", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 54.59016, + "new_license_level": 18, + "new_sub_level": 275, + "new_ttrating": 1350, + "newi_rating": 2797, + "old_cpi": 36.08681, + "old_license_level": 17, + "old_sub_level": 169, + "old_ttrating": 1350, + "oldi_rating": 2777, + "opt_laps_complete": 0, + "position": 59, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "00f035", + "color2": "020101", + "color3": "e61010" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 42, + "finish_position_in_class": 16, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 17, + "interval": 115455, + "laps_complete": 15, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 17, + "color1": "efd600", + "color2": "111111", + "color3": "d7162d", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "25", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 42, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "00f035", + "color2": "020101", + "color3": "e61010" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -454234, + "display_name": "TKG Simsport PRO", + "aggregate_champ_points": 128, + "ai": false, + "average_lap": 1140863, + "best_lap_num": 6, + "best_lap_time": 1050431, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8000, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -454234, + "cust_id": 678081, + "display_name": "Carter A Thompson", + "aggregate_champ_points": 128, + "ai": false, + "average_lap": 1155048, + "best_lap_num": 6, + "best_lap_time": 1050431, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8000, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 60, + "finish_position_in_class": 18, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "ff2202", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 6, + "interval": 115556, + "laps_complete": 6, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "20", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 31.197826, + "new_license_level": 14, + "new_sub_level": 246, + "new_ttrating": 1350, + "newi_rating": 2617, + "old_cpi": 24.810728, + "old_license_level": 14, + "old_sub_level": 211, + "old_ttrating": 1350, + "oldi_rating": 2600, + "opt_laps_complete": 0, + "position": 60, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 8, + "color1": "000000", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -454234, + "cust_id": 698537, + "display_name": "Ben Garey2", + "aggregate_champ_points": 128, + "ai": false, + "average_lap": 1131406, + "best_lap_num": 11, + "best_lap_time": 1059621, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 17190, + "country_code": "US", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 81, + "finish_position_in_class": 39, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 49, + "color1": "ffffff", + "color2": "ffffff", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 5, + "interval": 124746, + "laps_complete": 9, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "20", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 25.255388, + "new_license_level": 10, + "new_sub_level": 272, + "new_ttrating": 1350, + "newi_rating": 1750, + "old_cpi": 17.60599, + "old_license_level": 9, + "old_sub_level": 178, + "old_ttrating": 1350, + "oldi_rating": 1733, + "opt_laps_complete": 0, + "position": 81, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 8, + "color1": "000000", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 43, + "finish_position_in_class": 17, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 11, + "interval": 115556, + "laps_complete": 15, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "20", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 43, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 8, + "color1": "000000", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -483219, + "display_name": "Velocity X Rhythm Racing Team", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1103325, + "best_lap_num": 3, + "best_lap_time": 1050561, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 188, + "car_name": "McLaren 720S GT3 EVO", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8130, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -483219, + "cust_id": 1283272, + "display_name": "Mario García Muriel", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1103325, + "best_lap_num": 3, + "best_lap_time": 1050561, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 188, + "car_name": "McLaren 720S GT3 EVO", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8130, + "country_code": "ES", + "division": 1, + "division_name": "Division 2", + "drop_race": true, + "finish_position": 62, + "finish_position_in_class": 20, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "231f20", + "color2": "808080", + "color3": "f26722", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 13, + "interval": 115686, + "laps_complete": 3, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 188, + "pattern": 1, + "color1": "FF0000", + "color2": "00FF00", + "color3": "0000FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "31", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 97, + "new_cpi": 43.159573, + "new_license_level": 17, + "new_sub_level": 197, + "new_ttrating": 1350, + "newi_rating": 3435, + "old_cpi": 30.48215, + "old_license_level": 17, + "old_sub_level": 143, + "old_ttrating": 1350, + "oldi_rating": 3486, + "opt_laps_complete": 0, + "position": 62, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "231f20", + "color2": "808080", + "color3": "f26722" + }, + "watched": false, + "weight_penalty_kg": 5 + }, + { + "team_id": -483219, + "cust_id": 1233001, + "display_name": "Mauro Agustin Arriola Aranela", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 188, + "car_name": "McLaren 720S GT3 EVO", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "AR", + "division": 3, + "division_name": "Division 4", + "drop_race": true, + "finish_position": 94, + "finish_position_in_class": 51, + "flair_id": 13, + "flair_name": "Argentina", + "flair_shortname": "ARG", + "friend": false, + "helmet": { + "pattern": 9, + "color1": "0222f4", + "color2": "f9f9f9", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 2, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 188, + "pattern": 1, + "color1": "FF0000", + "color2": "00FF00", + "color3": "0000FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "31", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 97, + "new_cpi": 21.797512, + "new_license_level": 10, + "new_sub_level": 249, + "new_ttrating": 1350, + "newi_rating": 1665, + "old_cpi": 21.029593, + "old_license_level": 10, + "old_sub_level": 243, + "old_ttrating": 1350, + "oldi_rating": 1689, + "opt_laps_complete": 0, + "position": 94, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "231f20", + "color2": "808080", + "color3": "f26722" + }, + "watched": false, + "weight_penalty_kg": 5 + } + ], + "drop_race": true, + "finish_position": 44, + "finish_position_in_class": 18, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 15, + "interval": 115686, + "laps_complete": 3, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 188, + "pattern": 1, + "color1": "FF0000", + "color2": "00FF00", + "color3": "0000FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "31", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 97, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 44, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "231f20", + "color2": "808080", + "color3": "f26722" + }, + "watched": false, + "weight_penalty_kg": 5 + }, + { + "team_id": -287243, + "display_name": "Team MFM - SURVIVE!", + "aggregate_champ_points": 142, + "ai": false, + "average_lap": 1076492, + "best_lap_num": 9, + "best_lap_time": 1050900, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8469, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -287243, + "cust_id": 585611, + "display_name": "Finley Fitzsimmons", + "aggregate_champ_points": 142, + "ai": false, + "average_lap": 1076492, + "best_lap_num": 9, + "best_lap_time": 1050900, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8469, + "country_code": "GB", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 64, + "finish_position_in_class": 22, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 24, + "color1": "000000", + "color2": "c9fc00", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 3, + "interval": 116025, + "laps_complete": 9, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 17, + "color1": "dddddd", + "color2": "ffff00", + "color3": "252525", + "number_font": 0, + "number_color1": "000000", + "number_color2": "737373", + "number_color3": "ffffff", + "number_slant": 4, + "sponsor1": 138, + "sponsor2": 7, + "car_number": "21", + "wheel_color": "ffff00", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 73.801315, + "new_license_level": 19, + "new_sub_level": 365, + "new_ttrating": 1350, + "newi_rating": 2703, + "old_cpi": 48.809418, + "old_license_level": 18, + "old_sub_level": 259, + "old_ttrating": 1350, + "oldi_rating": 2685, + "opt_laps_complete": 0, + "position": 64, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 7, + "color1": "252525", + "color2": "DDDDDD", + "color3": "004895" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -287243, + "cust_id": 638036, + "display_name": "Cody Gayer", + "aggregate_champ_points": 142, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "US", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 90, + "finish_position_in_class": 48, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 67, + "color1": "01020e", + "color2": "d5c325", + "color3": "c91b20", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 1, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 17, + "color1": "dddddd", + "color2": "ffff00", + "color3": "252525", + "number_font": 0, + "number_color1": "000000", + "number_color2": "737373", + "number_color3": "ffffff", + "number_slant": 4, + "sponsor1": 138, + "sponsor2": 7, + "car_number": "21", + "wheel_color": "ffff00", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 81.2526, + "new_license_level": 20, + "new_sub_level": 420, + "new_ttrating": 1350, + "newi_rating": 3094, + "old_cpi": 86.255455, + "old_license_level": 20, + "old_sub_level": 429, + "old_ttrating": 1350, + "oldi_rating": 3072, + "opt_laps_complete": 0, + "position": 90, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 7, + "color1": "252525", + "color2": "DDDDDD", + "color3": "004895" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 45, + "finish_position_in_class": 19, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 3, + "interval": 116025, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 17, + "color1": "dddddd", + "color2": "ffff00", + "color3": "252525", + "number_font": 0, + "number_color1": "000000", + "number_color2": "737373", + "number_color3": "ffffff", + "number_slant": 4, + "sponsor1": 138, + "sponsor2": 7, + "car_number": "21", + "wheel_color": "ffff00", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 45, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 7, + "color1": "252525", + "color2": "DDDDDD", + "color3": "004895" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -243532, + "display_name": "THLF eSports Multinational by Raceverse.at", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1107856, + "best_lap_num": 5, + "best_lap_time": 1051821, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 9390, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -243532, + "cust_id": 1335570, + "display_name": "Jordan Elmore", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1107856, + "best_lap_num": 5, + "best_lap_time": 1051821, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 9390, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 65, + "finish_position_in_class": 23, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 56, + "color1": "ff0000", + "color2": "000000", + "color3": "acacac", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 7, + "interval": 116946, + "laps_complete": 9, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 23, + "color1": "ff9cfd", + "color2": "ffffff", + "color3": "0500ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "444", + "wheel_color": "ffffff", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 61.234966, + "new_license_level": 18, + "new_sub_level": 293, + "new_ttrating": 1325, + "newi_rating": 2474, + "old_cpi": 59.90275, + "old_license_level": 18, + "old_sub_level": 290, + "old_ttrating": 1325, + "oldi_rating": 2494, + "opt_laps_complete": 0, + "position": 65, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 10, + "color1": "00ff1e", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 46, + "finish_position_in_class": 20, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 7, + "interval": 116946, + "laps_complete": 9, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 23, + "color1": "ff9cfd", + "color2": "ffffff", + "color3": "0500ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "444", + "wheel_color": "ffffff", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 46, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 10, + "color1": "00ff1e", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -248147, + "display_name": "IPM Yellow", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 1078228, + "best_lap_num": 2, + "best_lap_time": 1051935, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 173, + "car_name": "Ferrari 296 GT3", + "carcfg": -1, + "champ_points": 0, + "class_interval": 9504, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -248147, + "cust_id": 19071, + "display_name": "Peter Terrana", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 1078228, + "best_lap_num": 2, + "best_lap_time": 1051935, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 173, + "car_name": "Ferrari 296 GT3", + "carcfg": -1, + "champ_points": 0, + "class_interval": 9504, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 67, + "finish_position_in_class": 25, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 34, + "color1": "DAF109", + "color2": "000000", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 13, + "interval": 117060, + "laps_complete": 9, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 173, + "pattern": 9, + "color1": "ccf312", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "698", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 69.72993, + "new_license_level": 19, + "new_sub_level": 356, + "new_ttrating": 1350, + "newi_rating": 2620, + "old_cpi": 45.854206, + "old_license_level": 18, + "old_sub_level": 249, + "old_ttrating": 1350, + "oldi_rating": 2617, + "opt_laps_complete": 0, + "position": 67, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 27, + "color1": "23231f", + "color2": "131415", + "color3": "f2f12c" + }, + "watched": false, + "weight_penalty_kg": 3 + } + ], + "drop_race": false, + "finish_position": 47, + "finish_position_in_class": 21, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 13, + "interval": 117060, + "laps_complete": 9, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 173, + "pattern": 9, + "color1": "ccf312", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "698", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 47, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 27, + "color1": "23231f", + "color2": "131415", + "color3": "f2f12c" + }, + "watched": false, + "weight_penalty_kg": 3 + }, + { + "team_id": -454924, + "display_name": "Top Tier Motorsport #222", + "aggregate_champ_points": 102, + "ai": false, + "average_lap": 1150731, + "best_lap_num": 1, + "best_lap_time": 1052436, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 10005, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -454924, + "cust_id": 855270, + "display_name": "Dan Munro", + "aggregate_champ_points": 102, + "ai": false, + "average_lap": 1106966, + "best_lap_num": 1, + "best_lap_time": 1052436, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 10005, + "country_code": "GB", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 68, + "finish_position_in_class": 26, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "111111", + "color2": "ed1c24", + "color3": "cccccc", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 4, + "interval": 117561, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 4, + "color1": "efd600", + "color2": "111111", + "color3": "d7162d", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "222", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 37.095116, + "new_license_level": 11, + "new_sub_level": 373, + "new_ttrating": 1350, + "newi_rating": 2026, + "old_cpi": 19.39725, + "old_license_level": 10, + "old_sub_level": 230, + "old_ttrating": 1350, + "oldi_rating": 2017, + "opt_laps_complete": 0, + "position": 68, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "9500f0", + "color2": "111111", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -454924, + "cust_id": 212484, + "display_name": "Thomas Knapton", + "aggregate_champ_points": 102, + "ai": false, + "average_lap": 1058250, + "best_lap_num": 9, + "best_lap_time": 1053767, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 11336, + "country_code": "TH", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 75, + "finish_position_in_class": 33, + "flair_id": 208, + "flair_name": "Thailand", + "flair_shortname": "THA", + "friend": false, + "helmet": { + "pattern": 49, + "color1": "ffffff", + "color2": "ed2129", + "color3": "2a3795", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": 118892, + "laps_complete": 3, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 4, + "color1": "efd600", + "color2": "111111", + "color3": "d7162d", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "222", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 81.22818, + "new_license_level": 20, + "new_sub_level": 420, + "new_ttrating": 1391, + "newi_rating": 2462, + "old_cpi": 83.66629, + "old_license_level": 20, + "old_sub_level": 425, + "old_ttrating": 1391, + "oldi_rating": 2450, + "opt_laps_complete": 0, + "position": 75, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "9500f0", + "color2": "111111", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -454924, + "cust_id": 1093170, + "display_name": "Tyler Parslow", + "aggregate_champ_points": 102, + "ai": false, + "average_lap": 1241562, + "best_lap_num": 6, + "best_lap_time": 1059563, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 17132, + "country_code": "GB", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 80, + "finish_position_in_class": 38, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "9c00f0", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 3, + "interval": 124688, + "laps_complete": 4, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 4, + "color1": "efd600", + "color2": "111111", + "color3": "d7162d", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "222", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 82.85521, + "new_license_level": 19, + "new_sub_level": 382, + "new_ttrating": 1323, + "newi_rating": 2073, + "old_cpi": 57.45987, + "old_license_level": 19, + "old_sub_level": 327, + "old_ttrating": 1323, + "oldi_rating": 2063, + "opt_laps_complete": 0, + "position": 80, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "9500f0", + "color2": "111111", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 48, + "finish_position_in_class": 22, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 8, + "interval": 117561, + "laps_complete": 9, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 4, + "color1": "efd600", + "color2": "111111", + "color3": "d7162d", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "222", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 48, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "9500f0", + "color2": "111111", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -298487, + "display_name": "Parc Motorsport Team Purple", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1092090, + "best_lap_num": 3, + "best_lap_time": 1052492, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 10061, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -298487, + "cust_id": 784148, + "display_name": "Krzysztof Olender2", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1092090, + "best_lap_num": 3, + "best_lap_time": 1052492, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 10061, + "country_code": "PL", + "division": 3, + "division_name": "Division 4", + "drop_race": true, + "finish_position": 69, + "finish_position_in_class": 27, + "flair_id": 167, + "flair_name": "Poland", + "flair_shortname": "POL", + "friend": false, + "helmet": { + "pattern": 43, + "color1": "eaff00", + "color2": "00e0ff", + "color3": "db00ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 13, + "interval": 117617, + "laps_complete": 7, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 9, + "color1": "000000", + "color2": "8700ff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "97", + "wheel_color": "000000", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 36.04055, + "new_license_level": 14, + "new_sub_level": 269, + "new_ttrating": 1350, + "newi_rating": 2615, + "old_cpi": 42.249332, + "old_license_level": 14, + "old_sub_level": 293, + "old_ttrating": 1350, + "oldi_rating": 2719, + "opt_laps_complete": 0, + "position": 69, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 28, + "color1": "000000", + "color2": "7800ff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -298487, + "cust_id": 1056161, + "display_name": "Aleks Rusinek", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "PL", + "division": 3, + "division_name": "Division 4", + "drop_race": true, + "finish_position": 97, + "finish_position_in_class": 52, + "flair_id": 167, + "flair_name": "Poland", + "flair_shortname": "POL", + "friend": false, + "helmet": { + "pattern": 29, + "color1": "8000ff", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 9, + "color1": "000000", + "color2": "8700ff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "97", + "wheel_color": "000000", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 46.348267, + "new_license_level": 18, + "new_sub_level": 251, + "new_ttrating": 1350, + "newi_rating": 2095, + "old_cpi": 46.346268, + "old_license_level": 18, + "old_sub_level": 251, + "old_ttrating": 1350, + "oldi_rating": 2095, + "opt_laps_complete": 0, + "position": 97, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 28, + "color1": "000000", + "color2": "7800ff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": true, + "finish_position": 49, + "finish_position_in_class": 23, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 13, + "interval": 117617, + "laps_complete": 7, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 9, + "color1": "000000", + "color2": "8700ff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "97", + "wheel_color": "000000", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 49, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 28, + "color1": "000000", + "color2": "7800ff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -332725, + "display_name": "Miracle Kids Success Academy", + "aggregate_champ_points": 53, + "ai": false, + "average_lap": 1114172, + "best_lap_num": 3, + "best_lap_time": 1052654, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 206, + "car_name": "Aston Martin Vantage GT3 EVO", + "carcfg": -1, + "champ_points": 0, + "class_interval": 10223, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -332725, + "cust_id": 920918, + "display_name": "Justin Noel", + "aggregate_champ_points": 53, + "ai": false, + "average_lap": 1114172, + "best_lap_num": 3, + "best_lap_time": 1052654, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 206, + "car_name": "Aston Martin Vantage GT3 EVO", + "carcfg": -1, + "champ_points": 0, + "class_interval": 10223, + "country_code": "US", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 70, + "finish_position_in_class": 28, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 54, + "color1": "ffffff", + "color2": "ff0000", + "color3": "0003ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 3, + "interval": 117779, + "laps_complete": 8, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 206, + "pattern": 19, + "color1": "FFFFFF", + "color2": "FF0000", + "color3": "0003FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "24", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 99, + "new_cpi": 133.95572, + "new_license_level": 20, + "new_sub_level": 497, + "new_ttrating": 1350, + "newi_rating": 3078, + "old_cpi": 48.731533, + "old_license_level": 18, + "old_sub_level": 258, + "old_ttrating": 1350, + "oldi_rating": 3089, + "opt_laps_complete": 0, + "position": 70, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 0, + "color1": "2a3795", + "color2": "ec1c23", + "color3": "eeeeee" + }, + "watched": false, + "weight_penalty_kg": 12 + } + ], + "drop_race": false, + "finish_position": 50, + "finish_position_in_class": 24, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 3, + "interval": 117779, + "laps_complete": 8, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 206, + "pattern": 19, + "color1": "FFFFFF", + "color2": "FF0000", + "color3": "0003FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "24", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 99, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 50, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 0, + "color1": "2a3795", + "color2": "ec1c23", + "color3": "eeeeee" + }, + "watched": false, + "weight_penalty_kg": 12 + }, + { + "team_id": -224061, + "display_name": "Pineapple Racing Club", + "aggregate_champ_points": 88, + "ai": false, + "average_lap": 1090464, + "best_lap_num": 4, + "best_lap_time": 1053318, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 185, + "car_name": "Ford Mustang GT3", + "carcfg": -1, + "champ_points": 0, + "class_interval": 10887, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -224061, + "cust_id": 301782, + "display_name": "Ben Cooper5", + "aggregate_champ_points": 88, + "ai": false, + "average_lap": 1090464, + "best_lap_num": 4, + "best_lap_time": 1053318, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 185, + "car_name": "Ford Mustang GT3", + "carcfg": -1, + "champ_points": 0, + "class_interval": 10887, + "country_code": "GB", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 72, + "finish_position_in_class": 30, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 46, + "color1": "565555", + "color2": "fff500", + "color3": "ae0077", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 4, + "interval": 118443, + "laps_complete": 6, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 185, + "pattern": 12, + "color1": "e3ff54", + "color2": "000000", + "color3": "004092", + "number_font": 0, + "number_color1": "004092", + "number_color2": "ffffff", + "number_color3": "777777", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "14", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 158.22897, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 3233, + "old_cpi": 202.223, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 3228, + "opt_laps_complete": 0, + "position": 72, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 19, + "color1": "252525", + "color2": "7952a2", + "color3": "ecef00" + }, + "watched": false, + "weight_penalty_kg": 10 + } + ], + "drop_race": false, + "finish_position": 51, + "finish_position_in_class": 25, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 4, + "interval": 118443, + "laps_complete": 6, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 185, + "pattern": 12, + "color1": "e3ff54", + "color2": "000000", + "color3": "004092", + "number_font": 0, + "number_color1": "004092", + "number_color2": "ffffff", + "number_color3": "777777", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "14", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 51, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 19, + "color1": "252525", + "color2": "7952a2", + "color3": "ecef00" + }, + "watched": false, + "weight_penalty_kg": 10 + }, + { + "team_id": -480346, + "display_name": "Almeida Endurance Racing Black", + "aggregate_champ_points": 124, + "ai": false, + "average_lap": 1095252, + "best_lap_num": 11, + "best_lap_time": 1053439, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 11008, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -480346, + "cust_id": 346886, + "display_name": "Adrian Hopp", + "aggregate_champ_points": 124, + "ai": false, + "average_lap": 1095252, + "best_lap_num": 11, + "best_lap_time": 1053439, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 11008, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 73, + "finish_position_in_class": 31, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 21, + "color1": "000000", + "color2": "ffffff", + "color3": "fa0200", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 3, + "interval": 118564, + "laps_complete": 12, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 14, + "color1": "FFED00", + "color2": "00C4FF", + "color3": "87C42E", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "18", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 161.57109, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1311, + "newi_rating": 3055, + "old_cpi": 84.49169, + "old_license_level": 19, + "old_sub_level": 385, + "old_ttrating": 1311, + "oldi_rating": 3033, + "opt_laps_complete": 0, + "position": 73, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 32, + "color1": "ffffff", + "color2": "fff200", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -480346, + "cust_id": 770894, + "display_name": "Alexander Eger", + "aggregate_champ_points": 124, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "DE", + "division": 5, + "division_name": "Division 6", + "drop_race": false, + "finish_position": 89, + "finish_position_in_class": 47, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "111111", + "color2": "b82f37", + "color3": "284a94", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 1, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 14, + "color1": "FFED00", + "color2": "00C4FF", + "color3": "87C42E", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "18", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 100.03695, + "new_license_level": 20, + "new_sub_level": 452, + "new_ttrating": 1350, + "newi_rating": 2036, + "old_cpi": 38.330452, + "old_license_level": 18, + "old_sub_level": 222, + "old_ttrating": 1350, + "oldi_rating": 2017, + "opt_laps_complete": 0, + "position": 89, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 32, + "color1": "ffffff", + "color2": "fff200", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 52, + "finish_position_in_class": 26, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 3, + "interval": 118564, + "laps_complete": 13, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 14, + "color1": "FFED00", + "color2": "00C4FF", + "color3": "87C42E", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "18", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 52, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 32, + "color1": "ffffff", + "color2": "fff200", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -434794, + "display_name": "Rag1ng Dragons e-Sports #Team Gold", + "aggregate_champ_points": 106, + "ai": false, + "average_lap": 1121741, + "best_lap_num": 4, + "best_lap_time": 1053675, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 11244, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -434794, + "cust_id": 785721, + "display_name": "Lucas Benini", + "aggregate_champ_points": 106, + "ai": false, + "average_lap": 1121741, + "best_lap_num": 4, + "best_lap_time": 1053675, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 11244, + "country_code": "BR", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 74, + "finish_position_in_class": 32, + "flair_id": 31, + "flair_name": "Brazil", + "flair_shortname": "BRA", + "friend": false, + "helmet": { + "pattern": 22, + "color1": "ffed00", + "color2": "008cff", + "color3": "1cff00", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 5, + "interval": 118800, + "laps_complete": 9, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 4, + "color1": "effc53", + "color2": "43cd41", + "color3": "1e42db", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "30", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 108.44981, + "new_license_level": 20, + "new_sub_level": 465, + "new_ttrating": 1291, + "newi_rating": 2547, + "old_cpi": 54.275417, + "old_license_level": 19, + "old_sub_level": 318, + "old_ttrating": 1291, + "oldi_rating": 2534, + "opt_laps_complete": 0, + "position": 74, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "22b428", + "color2": "353bcc", + "color3": "d3f118" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 53, + "finish_position_in_class": 27, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 5, + "interval": 118800, + "laps_complete": 9, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 4, + "color1": "effc53", + "color2": "43cd41", + "color3": "1e42db", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "30", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 53, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "22b428", + "color2": "353bcc", + "color3": "d3f118" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -142589, + "display_name": "Team Highside - Vette", + "aggregate_champ_points": 48, + "ai": false, + "average_lap": 1089525, + "best_lap_num": 6, + "best_lap_time": 1055619, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 184, + "car_name": "Chevrolet Corvette Z06 GT3.R", + "carcfg": -1, + "champ_points": 0, + "class_interval": 13188, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -142589, + "cust_id": 45780, + "display_name": "Brandon Hastings", + "aggregate_champ_points": 48, + "ai": false, + "average_lap": 1089525, + "best_lap_num": 6, + "best_lap_time": 1055619, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 184, + "car_name": "Chevrolet Corvette Z06 GT3.R", + "carcfg": -1, + "champ_points": 0, + "class_interval": 13188, + "country_code": "US", + "division": 7, + "division_name": "Division 8", + "drop_race": false, + "finish_position": 76, + "finish_position_in_class": 34, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 0, + "color1": "000000", + "color2": "000000", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 120744, + "laps_complete": 6, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 184, + "pattern": 12, + "color1": "0085ff", + "color2": "0085ff", + "color3": "d50000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "242424", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "216", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 96, + "new_cpi": 108.082184, + "new_license_level": 20, + "new_sub_level": 464, + "new_ttrating": 1296, + "newi_rating": 1209, + "old_cpi": 52.402893, + "old_license_level": 18, + "old_sub_level": 269, + "old_ttrating": 1296, + "oldi_rating": 1216, + "opt_laps_complete": 0, + "position": 76, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 25, + "color1": "FA7400", + "color2": "000000", + "color3": "FFFFFF" + }, + "watched": false, + "weight_penalty_kg": 10 + } + ], + "drop_race": false, + "finish_position": 54, + "finish_position_in_class": 28, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 120744, + "laps_complete": 6, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 184, + "pattern": 12, + "color1": "0085ff", + "color2": "0085ff", + "color3": "d50000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "242424", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "216", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 96, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 54, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 25, + "color1": "FA7400", + "color2": "000000", + "color3": "FFFFFF" + }, + "watched": false, + "weight_penalty_kg": 10 + }, + { + "team_id": -298205, + "display_name": "CDLC", + "aggregate_champ_points": 79, + "ai": false, + "average_lap": 1080851, + "best_lap_num": 10, + "best_lap_time": 1060042, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 188, + "car_name": "McLaren 720S GT3 EVO", + "carcfg": -1, + "champ_points": 0, + "class_interval": 17611, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -298205, + "cust_id": 692986, + "display_name": "Andreas Carlsson", + "aggregate_champ_points": 79, + "ai": false, + "average_lap": 1071648, + "best_lap_num": 10, + "best_lap_time": 1060042, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 188, + "car_name": "McLaren 720S GT3 EVO", + "carcfg": -1, + "champ_points": 0, + "class_interval": 17611, + "country_code": "SE", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 82, + "finish_position_in_class": 40, + "flair_id": 203, + "flair_name": "Sweden", + "flair_shortname": "SWE", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "000000", + "color2": "1e1e1e", + "color3": "007dff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": 125167, + "laps_complete": 4, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 188, + "pattern": 4, + "color1": "0073d2", + "color2": "ff5c00", + "color3": "292d33", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "46", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 97, + "new_cpi": 336.55923, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1375, + "newi_rating": 2873, + "old_cpi": 138.13417, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1375, + "oldi_rating": 2867, + "opt_laps_complete": 0, + "position": 82, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 31, + "color1": "000000", + "color2": "0378ff", + "color3": "ff4d00" + }, + "watched": false, + "weight_penalty_kg": 5 + }, + { + "team_id": -298205, + "cust_id": 340070, + "display_name": "Marco Henderson", + "aggregate_champ_points": 79, + "ai": false, + "average_lap": 1084795, + "best_lap_num": 6, + "best_lap_time": 1065605, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 188, + "car_name": "McLaren 720S GT3 EVO", + "carcfg": -1, + "champ_points": 0, + "class_interval": 23174, + "country_code": "DE", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 85, + "finish_position_in_class": 43, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 58, + "color1": "000000", + "color2": "e9ed21", + "color3": "ff0000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": 130730, + "laps_complete": 7, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 188, + "pattern": 4, + "color1": "0073d2", + "color2": "ff5c00", + "color3": "292d33", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "46", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 97, + "new_cpi": 106.09341, + "new_license_level": 20, + "new_sub_level": 461, + "new_ttrating": 1350, + "newi_rating": 1709, + "old_cpi": 127.72311, + "old_license_level": 20, + "old_sub_level": 490, + "old_ttrating": 1350, + "oldi_rating": 1704, + "opt_laps_complete": 0, + "position": 85, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 31, + "color1": "000000", + "color2": "0378ff", + "color3": "ff4d00" + }, + "watched": false, + "weight_penalty_kg": 5 + } + ], + "drop_race": false, + "finish_position": 55, + "finish_position_in_class": 29, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 2, + "interval": 125167, + "laps_complete": 11, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 188, + "pattern": 4, + "color1": "0073d2", + "color2": "ff5c00", + "color3": "292d33", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "46", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 97, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 55, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 31, + "color1": "000000", + "color2": "0378ff", + "color3": "ff4d00" + }, + "watched": false, + "weight_penalty_kg": 5 + }, + { + "team_id": -471181, + "display_name": "PRS Team Europe", + "aggregate_champ_points": 66, + "ai": false, + "average_lap": 1083933, + "best_lap_num": 7, + "best_lap_time": 1063126, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 185, + "car_name": "Ford Mustang GT3", + "carcfg": -1, + "champ_points": 0, + "class_interval": 20695, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -471181, + "cust_id": 524603, + "display_name": "Philip Zangger", + "aggregate_champ_points": 66, + "ai": false, + "average_lap": 1083933, + "best_lap_num": 7, + "best_lap_time": 1063126, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 185, + "car_name": "Ford Mustang GT3", + "carcfg": -1, + "champ_points": 0, + "class_interval": 20695, + "country_code": "AT", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 84, + "finish_position_in_class": 42, + "flair_id": 17, + "flair_name": "Austria", + "flair_shortname": "AUT", + "friend": false, + "helmet": { + "pattern": 35, + "color1": "37b7ff", + "color2": "0083ff", + "color3": "0030ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 3, + "interval": 128251, + "laps_complete": 11, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 185, + "pattern": 20, + "color1": "515151", + "color2": "FFFFFF", + "color3": "000000", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "16", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 191.81573, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2254, + "old_cpi": 228.99771, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 2255, + "opt_laps_complete": 0, + "position": 84, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 3, + "color1": "0083ff", + "color2": "ffffff", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 10 + } + ], + "drop_race": false, + "finish_position": 56, + "finish_position_in_class": 30, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 3, + "interval": 128251, + "laps_complete": 11, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 185, + "pattern": 20, + "color1": "515151", + "color2": "FFFFFF", + "color3": "000000", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "16", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 56, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 3, + "color1": "0083ff", + "color2": "ffffff", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 10 + }, + { + "team_id": -333656, + "display_name": "Bite Point Racing", + "aggregate_champ_points": 57, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -333656, + "cust_id": 936022, + "display_name": "Francis Crosby", + "aggregate_champ_points": 57, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "CA", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 93, + "finish_position_in_class": 50, + "flair_id": 39, + "flair_name": "Canada", + "flair_shortname": "CAN", + "friend": false, + "helmet": { + "pattern": 61, + "color1": "ff0000", + "color2": "f7f7f7", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 2, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "fd0000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "45", + "wheel_color": "000000", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 57.7853, + "new_license_level": 19, + "new_sub_level": 328, + "new_ttrating": 1350, + "newi_rating": 2454, + "old_cpi": 58.822685, + "old_license_level": 19, + "old_sub_level": 330, + "old_ttrating": 1350, + "oldi_rating": 2457, + "opt_laps_complete": 0, + "position": 93, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 32, + "color1": "000000", + "color2": "04db00", + "color3": "9800d7" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 57, + "finish_position_in_class": 31, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 2, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "fd0000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "45", + "wheel_color": "000000", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 57, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 32, + "color1": "000000", + "color2": "04db00", + "color3": "9800d7" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -401232, + "display_name": "Kika Cetasso Racing Team", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [], + "drop_race": false, + "finish_position": 58, + "finish_position_in_class": 32, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "ffffff", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 3, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "12", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 58, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 2, + "color1": "000000", + "color2": "ffffff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ] }, { - "cust_id": 1041380, - "display_name": "Markus Buttliger", - "aggregate_champ_points": 19, - "ai": false, - "average_lap": 1349822, - "best_lap_num": 2, - "best_lap_time": 1344787, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2025-12-28T20:37:42Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1344787, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 157, - "car_name": "Mercedes-AMG GT4", - "carcfg": -1, - "champ_points": 0, - "class_interval": 25837, - "country_code": "CH", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 12, - "finish_position_in_class": 12, - "flair_id": 204, - "flair_name": "Switzerland", - "flair_shortname": "CHE", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "ffffff", - "color2": "0ada00", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 25837, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 157, - "pattern": 12, - "color1": "0f0f14", - "color2": "860d0d", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "27", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 31.577557, - "new_license_level": 14, - "new_sub_level": 248, - "new_ttrating": 1350, - "newi_rating": 2114, - "old_cpi": 32.20318, - "old_license_level": 14, - "old_sub_level": 251, - "old_ttrating": 1350, - "oldi_rating": 2163, - "opt_laps_complete": 0, - "position": 12, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "ffffff", - "color2": "0ada00", - "color3": "111111" - }, - "watched": false, - "weight_penalty_kg": -1 + "simsession_number": -1, + "simsession_name": "QUALIFY", + "simsession_type": 4, + "simsession_type_name": "Lone Qualifying", + "simsession_subtype": 0, + "weather_result": { + "avg_skies": 3, + "avg_cloud_cover_pct": 98.8582, + "min_cloud_cover_pct": 98.669365, + "max_cloud_cover_pct": 99.11291, + "temp_units": 1, + "avg_temp": 21.040504, + "min_temp": 21.02674, + "max_temp": 21.063948, + "avg_rel_humidity": 60.48371, + "wind_units": 1, + "avg_wind_speed": 10.450963, + "min_wind_speed": 10.255288, + "max_wind_speed": 10.732762, + "avg_wind_dir": 0, + "max_fog": 0, + "fog_time_pct": 0, + "precip_time_pct": 0, + "precip_mm": 0, + "precip_mm2hr_before_session": 0, + "simulated_start_time": "2026-01-24T13:40:00" + }, + "results": [ + { + "team_id": -379972, + "display_name": "Primal Racing 1", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 935258, + "best_lap_num": 2, + "best_lap_time": 932813, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:06:53Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 932813, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 0, + "class_interval": 0, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -379972, + "cust_id": 737050, + "display_name": "Magnus Mortensen2", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 935258, + "best_lap_num": 2, + "best_lap_time": 932813, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:06:53Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 932813, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 0, + "class_interval": 0, + "country_code": "DK", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 0, + "finish_position_in_class": 0, + "flair_id": 56, + "flair_name": "Denmark", + "flair_shortname": "DNK", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "000000", + "color2": "1c1a7b", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 0, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "8", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 75.986855, + "new_license_level": 20, + "new_sub_level": 410, + "new_ttrating": 1350, + "newi_rating": 2622, + "old_cpi": 100.1537, + "old_license_level": 20, + "old_sub_level": 452, + "old_ttrating": 1350, + "oldi_rating": 2672, + "opt_laps_complete": 0, + "position": 0, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "f1732e", + "color2": "372a75", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 0, + "finish_position_in_class": 0, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 0, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "8", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 0, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "f1732e", + "color2": "372a75", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -246761, + "display_name": "Vortex Racing Alpha", + "aggregate_champ_points": 32, + "ai": false, + "average_lap": 938462, + "best_lap_num": 2, + "best_lap_time": 932973, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:04Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 932973, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 160, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -246761, + "cust_id": 447778, + "display_name": "craig Benefiel", + "aggregate_champ_points": 32, + "ai": false, + "average_lap": 938462, + "best_lap_num": 2, + "best_lap_time": 932973, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:04Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 932973, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 160, + "country_code": "US", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 1, + "finish_position_in_class": 1, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "111111", + "color2": "cccccc", + "color3": "ed1c24", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 160, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 5, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 2, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "51", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 76.59716, + "new_license_level": 19, + "new_sub_level": 370, + "new_ttrating": 1350, + "newi_rating": 1974, + "old_cpi": 43.42212, + "old_license_level": 18, + "old_sub_level": 241, + "old_ttrating": 1350, + "oldi_rating": 1991, + "opt_laps_complete": 0, + "position": 1, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 27, + "color1": "111111", + "color2": "83ccff", + "color3": "cccccc" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 1, + "finish_position_in_class": 1, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 160, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 5, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 2, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "51", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 1, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 27, + "color1": "111111", + "color2": "83ccff", + "color3": "cccccc" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -361961, + "display_name": "Inside Curb Racing", + "aggregate_champ_points": 43, + "ai": false, + "average_lap": 940545, + "best_lap_num": 2, + "best_lap_time": 936948, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:22Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 936948, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 4135, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -361961, + "cust_id": 326217, + "display_name": "Wouter M Merks", + "aggregate_champ_points": 43, + "ai": false, + "average_lap": 940545, + "best_lap_num": 2, + "best_lap_time": 936948, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:22Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 936948, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 4135, + "country_code": "NL", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 2, + "finish_position_in_class": 2, + "flair_id": 146, + "flair_name": "Netherlands", + "flair_shortname": "NLD", + "friend": false, + "helmet": { + "pattern": 65, + "color1": "14fff8", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 4135, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 10, + "color1": "ffffff", + "color2": "ffffff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "1", + "wheel_color": "878787", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 139.78241, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 3051, + "old_cpi": 53.386677, + "old_license_level": 19, + "old_sub_level": 316, + "old_ttrating": 1350, + "oldi_rating": 3062, + "opt_laps_complete": 0, + "position": 2, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 2, + "color1": "000000", + "color2": "ffffff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 2, + "finish_position_in_class": 2, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 4135, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 10, + "color1": "ffffff", + "color2": "ffffff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "1", + "wheel_color": "878787", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 2, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 2, + "color1": "000000", + "color2": "ffffff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -385527, + "display_name": "EHR Blue", + "aggregate_champ_points": 118, + "ai": false, + "average_lap": 940941, + "best_lap_num": 2, + "best_lap_time": 937986, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:07Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 937986, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 5173, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -385527, + "cust_id": 289709, + "display_name": "Greyson Oppermann", + "aggregate_champ_points": 118, + "ai": false, + "average_lap": 940941, + "best_lap_num": 2, + "best_lap_time": 937986, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:07Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 937986, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 5173, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 3, + "finish_position_in_class": 3, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 15, + "color1": "ffffff", + "color2": "ffffff", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 5173, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 14, + "number_color1": "ffffff", + "number_color2": "cba7f4", + "number_color3": "352e74", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "808", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 121.81984, + "new_license_level": 12, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2415, + "old_cpi": 28.188484, + "old_license_level": 10, + "old_sub_level": 290, + "old_ttrating": 1350, + "oldi_rating": 2392, + "opt_laps_complete": 0, + "position": 3, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 13, + "color1": "352e74", + "color2": "4C99D3", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 3, + "finish_position_in_class": 3, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 5173, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 14, + "number_color1": "ffffff", + "number_color2": "cba7f4", + "number_color3": "352e74", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "808", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 3, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 13, + "color1": "352e74", + "color2": "4C99D3", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -278104, + "display_name": "Melanzani Racing 102", + "aggregate_champ_points": 21, + "ai": false, + "average_lap": 940995, + "best_lap_num": 2, + "best_lap_time": 938535, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:39Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 938535, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 5722, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -278104, + "cust_id": 119560, + "display_name": "Alvin Frauenknecht", + "aggregate_champ_points": 21, + "ai": false, + "average_lap": 940995, + "best_lap_num": 2, + "best_lap_time": 938535, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:39Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 938535, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 5722, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 4, + "finish_position_in_class": 4, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 63, + "color1": "000000", + "color2": "717171", + "color3": "e5ff00", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 5722, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 0, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "cccccc", + "number_color3": "666666", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "4", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 76.36244, + "new_license_level": 19, + "new_sub_level": 370, + "new_ttrating": 1350, + "newi_rating": 2133, + "old_cpi": 31.524208, + "old_license_level": 17, + "old_sub_level": 148, + "old_ttrating": 1350, + "oldi_rating": 2162, + "opt_laps_complete": 0, + "position": 4, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 22, + "color1": "000000", + "color2": "69b9eb", + "color3": "fa8c17" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 4, + "finish_position_in_class": 4, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 5722, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 0, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "cccccc", + "number_color3": "666666", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "4", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 4, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 22, + "color1": "000000", + "color2": "69b9eb", + "color3": "fa8c17" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -303706, + "display_name": "Savage Sim Racing - Team 80HD", + "aggregate_champ_points": 86, + "ai": false, + "average_lap": 943662, + "best_lap_num": 2, + "best_lap_time": 939928, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:06:51Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 939928, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 7115, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -303706, + "cust_id": 912397, + "display_name": "Clayton Sanchez2", + "aggregate_champ_points": 86, + "ai": false, + "average_lap": 943662, + "best_lap_num": 2, + "best_lap_time": 939928, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:06:51Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 939928, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 7115, + "country_code": "US", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 5, + "finish_position_in_class": 5, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "320159", + "color2": "9705fc", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 7115, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 22, + "color1": "000000", + "color2": "01ffff", + "color3": "a30dbe", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 239, + "sponsor2": 240, + "car_number": "66", + "wheel_color": "767676", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 267.99796, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2906, + "old_cpi": 126.12498, + "old_license_level": 20, + "old_sub_level": 488, + "old_ttrating": 1350, + "oldi_rating": 2901, + "opt_laps_complete": 0, + "position": 5, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 28, + "color1": "434343", + "color2": "fbfbfb", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 5, + "finish_position_in_class": 5, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 7115, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 22, + "color1": "000000", + "color2": "01ffff", + "color3": "a30dbe", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 239, + "sponsor2": 240, + "car_number": "66", + "wheel_color": "767676", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 5, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 28, + "color1": "434343", + "color2": "fbfbfb", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -298033, + "display_name": "Piki SCT", + "aggregate_champ_points": 64, + "ai": false, + "average_lap": 944128, + "best_lap_num": 2, + "best_lap_time": 940384, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:06:58Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 940384, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 0, + "class_interval": 7571, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -298033, + "cust_id": 1094388, + "display_name": "David Orgaz", + "aggregate_champ_points": 64, + "ai": false, + "average_lap": 944128, + "best_lap_num": 2, + "best_lap_time": 940384, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:06:58Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 940384, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 0, + "class_interval": 7571, + "country_code": "ES", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 6, + "finish_position_in_class": 6, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 20, + "color1": "111111", + "color2": "30b84e", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 7571, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 7, + "color1": "6589F4", + "color2": "C91919", + "color3": "F5FF7D", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "5", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 93.97715, + "new_license_level": 20, + "new_sub_level": 443, + "new_ttrating": 1350, + "newi_rating": 2440, + "old_cpi": 62.371994, + "old_license_level": 18, + "old_sub_level": 296, + "old_ttrating": 1350, + "oldi_rating": 2441, + "opt_laps_complete": 0, + "position": 6, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 10, + "color1": "5dddc2", + "color2": "19d137", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 6, + "finish_position_in_class": 6, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 7571, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 7, + "color1": "6589F4", + "color2": "C91919", + "color3": "F5FF7D", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "5", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 6, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 10, + "color1": "5dddc2", + "color2": "19d137", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -199580, + "display_name": "IntoTheApex.com Gold", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 944584, + "best_lap_num": 2, + "best_lap_time": 940787, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:06:59Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 940787, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 7974, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -199580, + "cust_id": 142817, + "display_name": "Charlie Ryan", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 944584, + "best_lap_num": 2, + "best_lap_time": 940787, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:06:59Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 940787, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 7974, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": true, + "finish_position": 7, + "finish_position_in_class": 7, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 2, + "color1": "000000", + "color2": "ED2129", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 7974, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "069", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 42.451843, + "new_license_level": 18, + "new_sub_level": 238, + "new_ttrating": 1350, + "newi_rating": 2179, + "old_cpi": 33.555664, + "old_license_level": 18, + "old_sub_level": 202, + "old_ttrating": 1350, + "oldi_rating": 2266, + "opt_laps_complete": 0, + "position": 7, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 19, + "color1": "000000", + "color2": "0d1fc5", + "color3": "e3e110" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": true, + "finish_position": 7, + "finish_position_in_class": 7, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 7974, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "069", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 7, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 19, + "color1": "000000", + "color2": "0d1fc5", + "color3": "e3e110" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -346577, + "display_name": "Motorsports Factory YELLOW", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 941881, + "best_lap_num": 2, + "best_lap_time": 940826, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:05Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 940826, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 168, + "car_name": "Cadillac V-Series.R GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8013, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -346577, + "cust_id": 945525, + "display_name": "Benjamin Voigt", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 941881, + "best_lap_num": 2, + "best_lap_time": 940826, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:05Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 940826, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 168, + "car_name": "Cadillac V-Series.R GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8013, + "country_code": "DE", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 8, + "finish_position_in_class": 8, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 39, + "color1": "ff0000", + "color2": "000000", + "color3": "ff0000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 8013, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 168, + "pattern": 21, + "color1": "172b21", + "color2": "57f97a", + "color3": "e8f9f0", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 139, + "sponsor2": 2, + "car_number": "194", + "wheel_color": "0a0f0a", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 108.77311, + "new_license_level": 20, + "new_sub_level": 465, + "new_ttrating": 1350, + "newi_rating": 1914, + "old_cpi": 75.879616, + "old_license_level": 19, + "old_sub_level": 369, + "old_ttrating": 1350, + "oldi_rating": 1909, + "opt_laps_complete": 0, + "position": 8, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 32, + "color1": "172b21", + "color2": "e8f9f0", + "color3": "57f97a" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 8, + "finish_position_in_class": 8, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 8013, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 168, + "pattern": 21, + "color1": "172b21", + "color2": "57f97a", + "color3": "e8f9f0", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 139, + "sponsor2": 2, + "car_number": "194", + "wheel_color": "0a0f0a", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 8, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 32, + "color1": "172b21", + "color2": "e8f9f0", + "color3": "57f97a" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -307068, + "display_name": "Azz Tech Racing - 390", + "aggregate_champ_points": 107, + "ai": false, + "average_lap": 945802, + "best_lap_num": 2, + "best_lap_time": 941177, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:16Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 941177, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8364, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -307068, + "cust_id": 846950, + "display_name": "Matthew Cheverton", + "aggregate_champ_points": 107, + "ai": false, + "average_lap": 945802, + "best_lap_num": 2, + "best_lap_time": 941177, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:16Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 941177, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8364, + "country_code": "GB", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 9, + "finish_position_in_class": 9, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 8, + "color1": "ff0000", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 8364, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 17, + "color1": "ff0000", + "color2": "ffffff", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "ffffff", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "390", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 208.88257, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 3137, + "old_cpi": 75.065544, + "old_license_level": 19, + "old_sub_level": 367, + "old_ttrating": 1350, + "oldi_rating": 3121, + "opt_laps_complete": 0, + "position": 9, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "f00000", + "color2": "faff00", + "color3": "9b9b9b" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 9, + "finish_position_in_class": 9, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 8364, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 17, + "color1": "ff0000", + "color2": "ffffff", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "ffffff", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "390", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 9, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "f00000", + "color2": "faff00", + "color3": "9b9b9b" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -440173, + "display_name": "Axis Simsports Blue", + "aggregate_champ_points": 53, + "ai": false, + "average_lap": 944596, + "best_lap_num": 2, + "best_lap_time": 941189, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:25Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 941189, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8376, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -440173, + "cust_id": 416043, + "display_name": "Thomas Pugh", + "aggregate_champ_points": 53, + "ai": false, + "average_lap": 944596, + "best_lap_num": 2, + "best_lap_time": 941189, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:25Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 941189, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8376, + "country_code": "GB", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 10, + "finish_position_in_class": 10, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 9, + "color1": "000000", + "color2": "ffffff", + "color3": "ff0000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": 8376, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 22, + "color1": "000000", + "color2": "ffffff", + "color3": "ff0000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "3", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 205.9527, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 3916, + "old_cpi": 120.93353, + "old_license_level": 20, + "old_sub_level": 481, + "old_ttrating": 1350, + "oldi_rating": 3922, + "opt_laps_complete": 0, + "position": 10, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 14, + "color1": "d3d3d3", + "color2": "000000", + "color3": "e70e0e" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 10, + "finish_position_in_class": 10, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 1, + "interval": 8376, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 22, + "color1": "000000", + "color2": "ffffff", + "color3": "ff0000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "3", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 10, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 14, + "color1": "d3d3d3", + "color2": "000000", + "color3": "e70e0e" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -402095, + "display_name": "Granateapfel RT", + "aggregate_champ_points": 129, + "ai": false, + "average_lap": 946909, + "best_lap_num": 2, + "best_lap_time": 941819, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:40Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 941819, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 0, + "class_interval": 9006, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -402095, + "cust_id": 1165346, + "display_name": "Finn Metzler", + "aggregate_champ_points": 129, + "ai": false, + "average_lap": 946909, + "best_lap_num": 2, + "best_lap_time": 941819, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:40Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 941819, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 0, + "class_interval": 9006, + "country_code": "VU", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 11, + "finish_position_in_class": 11, + "flair_id": 226, + "flair_name": "Vanuatu", + "flair_shortname": "VUT", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "372a75", + "color2": "f1732e", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 9006, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 4, + "color1": "FF0000", + "color2": "00FF00", + "color3": "0000FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "2", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 137.59468, + "new_license_level": 16, + "new_sub_level": 499, + "new_ttrating": 1265, + "newi_rating": 1943, + "old_cpi": 28.337646, + "old_license_level": 14, + "old_sub_level": 232, + "old_ttrating": 1265, + "oldi_rating": 1907, + "opt_laps_complete": 0, + "position": 11, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "ffffff", + "color2": "372a75", + "color3": "f1732e" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 11, + "finish_position_in_class": 11, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 9006, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 4, + "color1": "FF0000", + "color2": "00FF00", + "color3": "0000FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "2", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 11, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "ffffff", + "color2": "372a75", + "color3": "f1732e" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -288965, + "display_name": "Ecurie Col d'Oiseaux Tertre Rouge", + "aggregate_champ_points": 50, + "ai": false, + "average_lap": 983180, + "best_lap_num": 2, + "best_lap_time": 979415, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:23Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 979415, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 0, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -288965, + "cust_id": 969021, + "display_name": "Brandon Schmidt3", + "aggregate_champ_points": 50, + "ai": false, + "average_lap": 983180, + "best_lap_num": 2, + "best_lap_time": 979415, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:23Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 979415, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 0, + "country_code": "DE", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 12, + "finish_position_in_class": 0, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "9b1a25", + "color2": "798bd8", + "color3": "0b0a0b", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 46602, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 11, + "color1": "ffffd1", + "color2": "9b0202", + "color3": "0d3860", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "77", + "wheel_color": "b7b7b7", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 111.61723, + "new_license_level": 20, + "new_sub_level": 469, + "new_ttrating": 1375, + "newi_rating": 2923, + "old_cpi": 93.56137, + "old_license_level": 20, + "old_sub_level": 442, + "old_ttrating": 1375, + "oldi_rating": 2926, + "opt_laps_complete": 0, + "position": 12, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 8, + "color1": "ffffd1", + "color2": "a30206", + "color3": "ffd7d1" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 12, + "finish_position_in_class": 0, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 46602, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 11, + "color1": "ffffd1", + "color2": "9b0202", + "color3": "0d3860", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "77", + "wheel_color": "b7b7b7", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 12, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 8, + "color1": "ffffd1", + "color2": "a30206", + "color3": "ffd7d1" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -433705, + "display_name": "SIM RACING GRID ACADEMY - Obsidian", + "aggregate_champ_points": 37, + "ai": false, + "average_lap": 983057, + "best_lap_num": 2, + "best_lap_time": 979448, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:33Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 979448, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 33, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -433705, + "cust_id": 1048672, + "display_name": "Joshua De Lange", + "aggregate_champ_points": 37, + "ai": false, + "average_lap": 983057, + "best_lap_num": 2, + "best_lap_time": 979448, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:33Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 979448, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 33, + "country_code": "NL", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 13, + "finish_position_in_class": 1, + "flair_id": 146, + "flair_name": "Netherlands", + "flair_shortname": "NLD", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "07a9e5", + "color2": "981a53", + "color3": "f981a5", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 46635, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 0, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "10", + "wheel_color": "ffb649", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 94.37405, + "new_license_level": 20, + "new_sub_level": 443, + "new_ttrating": 1350, + "newi_rating": 2529, + "old_cpi": 76.501915, + "old_license_level": 20, + "old_sub_level": 411, + "old_ttrating": 1350, + "oldi_rating": 2540, + "opt_laps_complete": 0, + "position": 13, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 4, + "color1": "4a98ff", + "color2": "0012fa", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 13, + "finish_position_in_class": 1, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 46635, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 0, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "10", + "wheel_color": "ffb649", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 13, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 4, + "color1": "4a98ff", + "color2": "0012fa", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -134144, + "display_name": "BLOO Racing by VR | 040", + "aggregate_champ_points": 138, + "ai": false, + "average_lap": 982958, + "best_lap_num": 2, + "best_lap_time": 980672, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:09Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 980672, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 1257, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -134144, + "cust_id": 390389, + "display_name": "Geordi Vermeulen", + "aggregate_champ_points": 138, + "ai": false, + "average_lap": 982958, + "best_lap_num": 2, + "best_lap_time": 980672, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:09Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 980672, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 1257, + "country_code": "NL", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 14, + "finish_position_in_class": 2, + "flair_id": 146, + "flair_name": "Netherlands", + "flair_shortname": "NLD", + "friend": false, + "helmet": { + "pattern": 38, + "color1": "0094ff", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 47859, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 23, + "color1": "ffffff", + "color2": "8500ff", + "color3": "2176c0", + "number_font": 7, + "number_color1": "ffffff", + "number_color2": "0094ff", + "number_color3": "000000", + "number_slant": 1, + "sponsor1": 323, + "sponsor2": 245, + "car_number": "040", + "wheel_color": "010101", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 267.66696, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 3669, + "old_cpi": 92.9855, + "old_license_level": 19, + "old_sub_level": 399, + "old_ttrating": 1350, + "oldi_rating": 3639, + "opt_laps_complete": 0, + "position": 14, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "000000", + "color2": "c2000b", + "color3": "0094ff" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 14, + "finish_position_in_class": 2, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 47859, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 23, + "color1": "ffffff", + "color2": "8500ff", + "color3": "2176c0", + "number_font": 7, + "number_color1": "ffffff", + "number_color2": "0094ff", + "number_color3": "000000", + "number_slant": 1, + "sponsor1": 323, + "sponsor2": 245, + "car_number": "040", + "wheel_color": "010101", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 14, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "000000", + "color2": "c2000b", + "color3": "0094ff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -348667, + "display_name": "Speed Eagles Gold", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 985377, + "best_lap_num": 2, + "best_lap_time": 981374, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:26Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 981374, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 1959, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -348667, + "cust_id": 532947, + "display_name": "Dawid Dlugokecki", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 985377, + "best_lap_num": 2, + "best_lap_time": 981374, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:26Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 981374, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 1959, + "country_code": "PL", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 15, + "finish_position_in_class": 3, + "flair_id": 167, + "flair_name": "Poland", + "flair_shortname": "POL", + "friend": false, + "helmet": { + "pattern": 26, + "color1": "740004", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 48561, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 6, + "color1": "23548f", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "44", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 79.3237, + "new_license_level": 19, + "new_sub_level": 375, + "new_ttrating": 1350, + "newi_rating": 2670, + "old_cpi": 65.30674, + "old_license_level": 19, + "old_sub_level": 346, + "old_ttrating": 1350, + "oldi_rating": 2667, + "opt_laps_complete": 0, + "position": 15, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 25, + "color1": "000000", + "color2": "1d70b8", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 15, + "finish_position_in_class": 3, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 48561, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 6, + "color1": "23548f", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "44", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 15, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 25, + "color1": "000000", + "color2": "1d70b8", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -217878, + "display_name": "Katzes Racing League #Beta", + "aggregate_champ_points": 62, + "ai": false, + "average_lap": 984565, + "best_lap_num": 2, + "best_lap_time": 983051, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:08Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 983051, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 3636, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -217878, + "cust_id": 240174, + "display_name": "Steven Lexow", + "aggregate_champ_points": 62, + "ai": false, + "average_lap": 984565, + "best_lap_num": 2, + "best_lap_time": 983051, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:08Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 983051, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 3636, + "country_code": "DE", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 16, + "finish_position_in_class": 4, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 9, + "color1": "a80000", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 50238, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 22, + "color1": "000000", + "color2": "ff7800", + "color3": "005f99", + "number_font": 3, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "042", + "wheel_color": "ffffff", + "rim_type": 3 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 151.4998, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2787, + "old_cpi": 86.411354, + "old_license_level": 20, + "old_sub_level": 430, + "old_ttrating": 1350, + "oldi_rating": 2788, + "opt_laps_complete": 0, + "position": 16, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 21, + "color1": "000000", + "color2": "ededed", + "color3": "F98E1D" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 16, + "finish_position_in_class": 4, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 50238, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 22, + "color1": "000000", + "color2": "ff7800", + "color3": "005f99", + "number_font": 3, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "042", + "wheel_color": "ffffff", + "rim_type": 3 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 16, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 21, + "color1": "000000", + "color2": "ededed", + "color3": "F98E1D" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -53704, + "display_name": "LITHIUM Motorsports", + "aggregate_champ_points": 125, + "ai": false, + "average_lap": 995711, + "best_lap_num": 2, + "best_lap_time": 983248, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:10Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 983248, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 3833, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -53704, + "cust_id": 639803, + "display_name": "Alexander Secher", + "aggregate_champ_points": 125, + "ai": false, + "average_lap": 995711, + "best_lap_num": 2, + "best_lap_time": 983248, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:10Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 983248, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 3833, + "country_code": "DK", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 17, + "finish_position_in_class": 5, + "flair_id": 56, + "flair_name": "Denmark", + "flair_shortname": "DNK", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "ffffff", + "color2": "ff0505", + "color3": "6d6d6d", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 50435, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 0, + "color1": "2c2c2c", + "color2": "000000", + "color3": "484848", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "15", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 100.56424, + "new_license_level": 20, + "new_sub_level": 453, + "new_ttrating": 1350, + "newi_rating": 2336, + "old_cpi": 78.96949, + "old_license_level": 19, + "old_sub_level": 375, + "old_ttrating": 1350, + "oldi_rating": 2316, + "opt_laps_complete": 0, + "position": 17, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 3, + "color1": "104C5F", + "color2": "FFFFFF", + "color3": "F0B100" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 17, + "finish_position_in_class": 5, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 50435, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 0, + "color1": "2c2c2c", + "color2": "000000", + "color3": "484848", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "15", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 17, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 3, + "color1": "104C5F", + "color2": "FFFFFF", + "color3": "F0B100" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -385439, + "display_name": "TRC Endurance 01", + "aggregate_champ_points": 12, + "ai": false, + "average_lap": 985444, + "best_lap_num": 2, + "best_lap_time": 984061, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:27Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 984061, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 4646, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -385439, + "cust_id": 1118747, + "display_name": "Zack Heiderstadt", + "aggregate_champ_points": 12, + "ai": false, + "average_lap": 985444, + "best_lap_num": 2, + "best_lap_time": 984061, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:27Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 984061, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 4646, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 18, + "finish_position_in_class": 6, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "aeaeae", + "color2": "0c00b1", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 51248, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 5, + "color1": "FFFFFF", + "color2": "941FB7", + "color3": "80FF00", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "9", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 70.23805, + "new_license_level": 16, + "new_sub_level": 457, + "new_ttrating": 1295, + "newi_rating": 3101, + "old_cpi": 38.609806, + "old_license_level": 14, + "old_sub_level": 279, + "old_ttrating": 1295, + "oldi_rating": 3129, + "opt_laps_complete": 0, + "position": 18, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 30, + "color1": "2508d3", + "color2": "000000", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 18, + "finish_position_in_class": 6, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 51248, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 5, + "color1": "FFFFFF", + "color2": "941FB7", + "color3": "80FF00", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "9", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 18, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 30, + "color1": "2508d3", + "color2": "000000", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -310391, + "display_name": "4ORGE Lions", + "aggregate_champ_points": 87, + "ai": false, + "average_lap": 988712, + "best_lap_num": 2, + "best_lap_time": 986231, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:11Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 986231, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 6816, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -310391, + "cust_id": 635525, + "display_name": "Rich Gregory", + "aggregate_champ_points": 87, + "ai": false, + "average_lap": 988712, + "best_lap_num": 2, + "best_lap_time": 986231, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:11Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 986231, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 6816, + "country_code": "GB", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 19, + "finish_position_in_class": 7, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 45, + "color1": "ffffff", + "color2": "000000", + "color3": "ff0000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 53418, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 7, + "color1": "ff0000", + "color2": "ffffff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "11", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 79.90745, + "new_license_level": 19, + "new_sub_level": 377, + "new_ttrating": 1350, + "newi_rating": 2137, + "old_cpi": 61.902596, + "old_license_level": 19, + "old_sub_level": 338, + "old_ttrating": 1350, + "oldi_rating": 2129, + "opt_laps_complete": 0, + "position": 19, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 13, + "color1": "ff0000", + "color2": "870005", + "color3": "2900ef" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 19, + "finish_position_in_class": 7, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 53418, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 7, + "color1": "ff0000", + "color2": "ffffff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "11", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 19, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 13, + "color1": "ff0000", + "color2": "870005", + "color3": "2900ef" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -188879, + "display_name": "Wildfire Racing Dragon", + "aggregate_champ_points": 112, + "ai": false, + "average_lap": 988722, + "best_lap_num": 2, + "best_lap_time": 986302, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:08:11Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 986302, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 6887, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -188879, + "cust_id": 751768, + "display_name": "Sean Nisizaka Smit", + "aggregate_champ_points": 112, + "ai": false, + "average_lap": 988722, + "best_lap_num": 2, + "best_lap_time": 986302, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:08:11Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 986302, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 6887, + "country_code": "AU", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 20, + "finish_position_in_class": 8, + "flair_id": 16, + "flair_name": "Australia", + "flair_shortname": "AUS", + "friend": false, + "helmet": { + "pattern": 6, + "color1": "ffffff", + "color2": "ff0000", + "color3": "0075ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 53489, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 1, + "color1": "0db700", + "color2": "ffffff", + "color3": "000000", + "number_font": 16, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "129", + "wheel_color": "929292", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 61.77475, + "new_license_level": 18, + "new_sub_level": 294, + "new_ttrating": 1336, + "newi_rating": 2123, + "old_cpi": 44.15168, + "old_license_level": 18, + "old_sub_level": 243, + "old_ttrating": 1336, + "oldi_rating": 2114, + "opt_laps_complete": 0, + "position": 20, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 20, + "color1": "000000", + "color2": "06ff00", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 20, + "finish_position_in_class": 8, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 53489, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 1, + "color1": "0db700", + "color2": "ffffff", + "color3": "000000", + "number_font": 16, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "129", + "wheel_color": "929292", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 20, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 20, + "color1": "000000", + "color2": "06ff00", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -169135, + "display_name": "BMW M Plower #557", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 989894, + "best_lap_num": 2, + "best_lap_time": 986850, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:15Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 986850, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 7435, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -169135, + "cust_id": 374188, + "display_name": "Lars Wiele", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 989894, + "best_lap_num": 2, + "best_lap_time": 986850, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:15Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 986850, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 7435, + "country_code": "DE", + "division": 1, + "division_name": "Division 2", + "drop_race": true, + "finish_position": 21, + "finish_position_in_class": 9, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 2, + "color1": "6f9556", + "color2": "111111", + "color3": "efd600", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 54037, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 1, + "color1": "6f9556", + "color2": "111111", + "color3": "efd600", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "557", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 108.826164, + "new_license_level": 20, + "new_sub_level": 465, + "new_ttrating": 1350, + "newi_rating": 3266, + "old_cpi": 140.98111, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 3386, + "opt_laps_complete": 0, + "position": 21, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 19, + "color1": "0c0fb4", + "color2": "299467", + "color3": "d1f100" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": true, + "finish_position": 21, + "finish_position_in_class": 9, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 54037, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 1, + "color1": "6f9556", + "color2": "111111", + "color3": "efd600", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "557", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 21, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 19, + "color1": "0c0fb4", + "color2": "299467", + "color3": "d1f100" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -479098, + "display_name": "Lightning Racing Team - #86", + "aggregate_champ_points": 100, + "ai": false, + "average_lap": 989709, + "best_lap_num": 2, + "best_lap_time": 988744, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:31Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 988744, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 9329, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -479098, + "cust_id": 1133857, + "display_name": "Pierre Peytral Yagüe", + "aggregate_champ_points": 100, + "ai": false, + "average_lap": 989709, + "best_lap_num": 2, + "best_lap_time": 988744, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:31Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 988744, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 9329, + "country_code": "FR", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 22, + "finish_position_in_class": 10, + "flair_id": 71, + "flair_name": "France", + "flair_shortname": "FRA", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "fc0706", + "color2": "111111", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 55931, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 12, + "color1": "ff78ff", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "43", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 189.7976, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2834, + "old_cpi": 46.85185, + "old_license_level": 18, + "old_sub_level": 252, + "old_ttrating": 1350, + "oldi_rating": 2816, + "opt_laps_complete": 0, + "position": 22, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 21, + "color1": "f200ff", + "color2": "ffffff", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 22, + "finish_position_in_class": 10, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 55931, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 12, + "color1": "ff78ff", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "43", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 22, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 21, + "color1": "f200ff", + "color2": "ffffff", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -479845, + "display_name": "DSDF Racing LMP2", + "aggregate_champ_points": 25, + "ai": false, + "average_lap": 990339, + "best_lap_num": 1, + "best_lap_time": 990018, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:05:31Z", + "best_qual_lap_num": 1, + "best_qual_lap_time": 990018, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 10603, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -479845, + "cust_id": 1010930, + "display_name": "James Seale", + "aggregate_champ_points": 25, + "ai": false, + "average_lap": 990339, + "best_lap_num": 1, + "best_lap_time": 990018, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:05:31Z", + "best_qual_lap_num": 1, + "best_qual_lap_time": 990018, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 10603, + "country_code": "GB", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 23, + "finish_position_in_class": 11, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 4, + "color1": "0a0a0a", + "color2": "ffffff", + "color3": "ff0000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 57205, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 21, + "color1": "ffffff", + "color2": "ff0000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "ff0000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 221, + "sponsor2": 7, + "car_number": "155", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 59.186558, + "new_license_level": 12, + "new_sub_level": 488, + "new_ttrating": 1649, + "newi_rating": 2544, + "old_cpi": 26.148556, + "old_license_level": 11, + "old_sub_level": 319, + "old_ttrating": 1649, + "oldi_rating": 2563, + "opt_laps_complete": 0, + "position": 23, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 32, + "color1": "000000", + "color2": "ff0000", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 23, + "finish_position_in_class": 11, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 57205, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 21, + "color1": "ffffff", + "color2": "ff0000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "ff0000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 221, + "sponsor2": 7, + "car_number": "155", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 23, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 32, + "color1": "000000", + "color2": "ff0000", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -483219, + "display_name": "Velocity X Rhythm Racing Team", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1045454, + "best_lap_num": 2, + "best_lap_time": 1042763, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:08:01Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1042763, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 188, + "car_name": "McLaren 720S GT3 EVO", + "carcfg": -1, + "champ_points": 0, + "class_interval": 0, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -483219, + "cust_id": 1283272, + "display_name": "Mario García Muriel", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1045454, + "best_lap_num": 2, + "best_lap_time": 1042763, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:08:01Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1042763, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 188, + "car_name": "McLaren 720S GT3 EVO", + "carcfg": -1, + "champ_points": 0, + "class_interval": 0, + "country_code": "ES", + "division": 1, + "division_name": "Division 2", + "drop_race": true, + "finish_position": 24, + "finish_position_in_class": 0, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "231f20", + "color2": "808080", + "color3": "f26722", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 109950, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 188, + "pattern": 1, + "color1": "FF0000", + "color2": "00FF00", + "color3": "0000FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "31", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 97, + "new_cpi": 43.159573, + "new_license_level": 17, + "new_sub_level": 197, + "new_ttrating": 1350, + "newi_rating": 3435, + "old_cpi": 30.48215, + "old_license_level": 17, + "old_sub_level": 143, + "old_ttrating": 1350, + "oldi_rating": 3486, + "opt_laps_complete": 0, + "position": 24, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "231f20", + "color2": "808080", + "color3": "f26722" + }, + "watched": false, + "weight_penalty_kg": 5 + } + ], + "drop_race": true, + "finish_position": 24, + "finish_position_in_class": 0, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 109950, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 188, + "pattern": 1, + "color1": "FF0000", + "color2": "00FF00", + "color3": "0000FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "31", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 97, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 24, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "231f20", + "color2": "808080", + "color3": "f26722" + }, + "watched": false, + "weight_penalty_kg": 5 + }, + { + "team_id": -457552, + "display_name": "DB3 MOTORSPORT | REMESI", + "aggregate_champ_points": 137, + "ai": false, + "average_lap": 1046141, + "best_lap_num": 2, + "best_lap_time": 1043422, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:51Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1043422, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 659, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -457552, + "cust_id": 673113, + "display_name": "Gerd Zechner", + "aggregate_champ_points": 137, + "ai": false, + "average_lap": 1046141, + "best_lap_num": 2, + "best_lap_time": 1043422, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:51Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1043422, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 659, + "country_code": "AT", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 25, + "finish_position_in_class": 1, + "flair_id": 17, + "flair_name": "Austria", + "flair_shortname": "AUT", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "111111", + "color2": "ffffff", + "color3": "fc0706", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 110609, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "77fa03", + "color2": "ed2129", + "color3": "b0ec02", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "13", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 83.24767, + "new_license_level": 19, + "new_sub_level": 383, + "new_ttrating": 1350, + "newi_rating": 3031, + "old_cpi": 65.06985, + "old_license_level": 19, + "old_sub_level": 346, + "old_ttrating": 1350, + "oldi_rating": 3014, + "opt_laps_complete": 0, + "position": 25, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 11, + "color1": "d9003b", + "color2": "ffffff", + "color3": "0011f9" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 25, + "finish_position_in_class": 1, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 110609, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "77fa03", + "color2": "ed2129", + "color3": "b0ec02", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "13", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 25, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 11, + "color1": "d9003b", + "color2": "ffffff", + "color3": "0011f9" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -287336, + "display_name": "W2W Racing Red", + "aggregate_champ_points": 133, + "ai": false, + "average_lap": 1050018, + "best_lap_num": 2, + "best_lap_time": 1044323, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:09:22Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1044323, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 1560, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -287336, + "cust_id": 392017, + "display_name": "Jorge Reyes3", + "aggregate_champ_points": 133, + "ai": false, + "average_lap": 1050018, + "best_lap_num": 2, + "best_lap_time": 1044323, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:09:22Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1044323, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 1560, + "country_code": "BO", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 26, + "finish_position_in_class": 2, + "flair_id": 28, + "flair_name": "Bolivia", + "flair_shortname": "BES", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "0012ff", + "color2": "3145a5", + "color3": "f00000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 2, + "interval": 111510, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 15, + "color1": "f3ff06", + "color2": "0e9720", + "color3": "f3ff06", + "number_font": 53, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 2, + "sponsor1": 221, + "sponsor2": 0, + "car_number": "26", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 45.28575, + "new_license_level": 18, + "new_sub_level": 247, + "new_ttrating": 1350, + "newi_rating": 2245, + "old_cpi": 32.465076, + "old_license_level": 17, + "old_sub_level": 153, + "old_ttrating": 1350, + "oldi_rating": 2221, + "opt_laps_complete": 0, + "position": 26, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 10, + "color1": "ad1210", + "color2": "000000", + "color3": "ad1210" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 26, + "finish_position_in_class": 2, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 2, + "interval": 111510, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 15, + "color1": "f3ff06", + "color2": "0e9720", + "color3": "f3ff06", + "number_font": 53, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 2, + "sponsor1": 221, + "sponsor2": 0, + "car_number": "26", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 26, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 10, + "color1": "ad1210", + "color2": "000000", + "color3": "ad1210" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -159911, + "display_name": "Austrian Simracers Blue", + "aggregate_champ_points": 62, + "ai": false, + "average_lap": 1046353, + "best_lap_num": 2, + "best_lap_time": 1044381, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:55Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1044381, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 1618, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -159911, + "cust_id": 1003691, + "display_name": "David Kinzlhofer", + "aggregate_champ_points": 62, + "ai": false, + "average_lap": 1046353, + "best_lap_num": 2, + "best_lap_time": 1044381, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:55Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1044381, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 1618, + "country_code": "AT", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 27, + "finish_position_in_class": 3, + "flair_id": 17, + "flair_name": "Austria", + "flair_shortname": "AUT", + "friend": false, + "helmet": { + "pattern": 36, + "color1": "8700ff", + "color2": "b500ff", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 111568, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "ffffff", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "255", + "wheel_color": "7a7767", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 59.09998, + "new_license_level": 18, + "new_sub_level": 287, + "new_ttrating": 1350, + "newi_rating": 2814, + "old_cpi": 39.52622, + "old_license_level": 18, + "old_sub_level": 227, + "old_ttrating": 1350, + "oldi_rating": 2816, + "opt_laps_complete": 0, + "position": 27, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 19, + "color1": "000000", + "color2": "FFFFFF", + "color3": "FF0000" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 27, + "finish_position_in_class": 3, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 111568, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "ffffff", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "255", + "wheel_color": "7a7767", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 27, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 19, + "color1": "000000", + "color2": "FFFFFF", + "color3": "FF0000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -467249, + "display_name": "Simtec Racing Team #474", + "aggregate_champ_points": 44, + "ai": false, + "average_lap": 1047601, + "best_lap_num": 2, + "best_lap_time": 1044829, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:27Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1044829, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 2066, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -467249, + "cust_id": 1174682, + "display_name": "Craig Law", + "aggregate_champ_points": 44, + "ai": false, + "average_lap": 1047601, + "best_lap_num": 2, + "best_lap_time": 1044829, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:27Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1044829, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 2066, + "country_code": "NIR", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 28, + "finish_position_in_class": 4, + "flair_id": 239, + "flair_name": "Northern Ireland", + "flair_shortname": "NIR", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "ffffff", + "color2": "4076bc", + "color3": "c8d92b", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 112016, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 3, + "color1": "42c6ef", + "color2": "111111", + "color3": "0b0b0a", + "number_font": 9, + "number_color1": "000000", + "number_color2": "f4f4f4", + "number_color3": "fafafa", + "number_slant": 0, + "sponsor1": 221, + "sponsor2": 0, + "car_number": "472", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 54.50814, + "new_license_level": 18, + "new_sub_level": 275, + "new_ttrating": 1350, + "newi_rating": 2559, + "old_cpi": 42.040413, + "old_license_level": 18, + "old_sub_level": 236, + "old_ttrating": 1350, + "oldi_rating": 2567, + "opt_laps_complete": 0, + "position": 28, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 5, + "color1": "11e5e5", + "color2": "030303", + "color3": "030303" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 28, + "finish_position_in_class": 4, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 112016, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 3, + "color1": "42c6ef", + "color2": "111111", + "color3": "0b0b0a", + "number_font": 9, + "number_color1": "000000", + "number_color2": "f4f4f4", + "number_color3": "fafafa", + "number_slant": 0, + "sponsor1": 221, + "sponsor2": 0, + "car_number": "472", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 28, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 5, + "color1": "11e5e5", + "color2": "030303", + "color3": "030303" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -480134, + "display_name": "Club 100 Sim Racers", + "aggregate_champ_points": 119, + "ai": false, + "average_lap": 1048121, + "best_lap_num": 2, + "best_lap_time": 1045060, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:40Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1045060, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 2297, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -480134, + "cust_id": 133722, + "display_name": "James DeHavillande", + "aggregate_champ_points": 119, + "ai": false, + "average_lap": 1048121, + "best_lap_num": 2, + "best_lap_time": 1045060, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:40Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1045060, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 2297, + "country_code": "GB", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 29, + "finish_position_in_class": 5, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 60, + "color1": "eb0000", + "color2": "0009db", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 112247, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 11, + "color1": "000000", + "color2": "ff0000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "125", + "wheel_color": "b32e2e", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 92.82705, + "new_license_level": 19, + "new_sub_level": 399, + "new_ttrating": 1350, + "newi_rating": 3886, + "old_cpi": 38.696655, + "old_license_level": 18, + "old_sub_level": 224, + "old_ttrating": 1350, + "oldi_rating": 3868, + "opt_laps_complete": 0, + "position": 29, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 3, + "color1": "000000", + "color2": "ee6b00", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 29, + "finish_position_in_class": 5, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 112247, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 11, + "color1": "000000", + "color2": "ff0000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "125", + "wheel_color": "b32e2e", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 29, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 3, + "color1": "000000", + "color2": "ee6b00", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -454234, + "display_name": "TKG Simsport PRO", + "aggregate_champ_points": 128, + "ai": false, + "average_lap": 1045186, + "best_lap_num": 2, + "best_lap_time": 1045186, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:41Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1045186, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 2423, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -454234, + "cust_id": 678081, + "display_name": "Carter A Thompson", + "aggregate_champ_points": 128, + "ai": false, + "average_lap": 1045186, + "best_lap_num": 2, + "best_lap_time": 1045186, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:41Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1045186, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 2423, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 30, + "finish_position_in_class": 6, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "ff2202", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": 112373, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "20", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 31.197826, + "new_license_level": 14, + "new_sub_level": 246, + "new_ttrating": 1350, + "newi_rating": 2617, + "old_cpi": 24.810728, + "old_license_level": 14, + "old_sub_level": 211, + "old_ttrating": 1350, + "oldi_rating": 2600, + "opt_laps_complete": 0, + "position": 30, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 8, + "color1": "000000", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 30, + "finish_position_in_class": 6, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 1, + "interval": 112373, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "20", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 30, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 8, + "color1": "000000", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -296646, + "display_name": "Uprise Motorsports", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1047057, + "best_lap_num": 2, + "best_lap_time": 1045382, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:30Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1045382, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 2619, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -296646, + "cust_id": 348147, + "display_name": "Connor Trifari", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1047057, + "best_lap_num": 2, + "best_lap_time": 1045382, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:30Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1045382, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 2619, + "country_code": "GS", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 31, + "finish_position_in_class": 7, + "flair_id": 196, + "flair_name": "South Georgia & South Sandwich Islands", + "flair_shortname": "SGS", + "friend": false, + "helmet": { + "pattern": 2, + "color1": "ff0000", + "color2": "ffffff", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 112569, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 2, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "53", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 50.541496, + "new_license_level": 18, + "new_sub_level": 264, + "new_ttrating": 1350, + "newi_rating": 3082, + "old_cpi": 56.433605, + "old_license_level": 18, + "old_sub_level": 281, + "old_ttrating": 1350, + "oldi_rating": 3100, + "opt_laps_complete": 0, + "position": 31, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 4, + "color1": "000000", + "color2": "ff190f", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 31, + "finish_position_in_class": 7, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 112569, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 2, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "53", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 31, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 4, + "color1": "000000", + "color2": "ff190f", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -472037, + "display_name": "APEXNOVA SIMRACING PURPLE", + "aggregate_champ_points": 97, + "ai": false, + "average_lap": 1045496, + "best_lap_num": 2, + "best_lap_time": 1045496, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:08:00Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1045496, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 2733, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -472037, + "cust_id": 363097, + "display_name": "Tobias Kracht", + "aggregate_champ_points": 97, + "ai": false, + "average_lap": 1045496, + "best_lap_num": 2, + "best_lap_time": 1045496, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:08:00Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1045496, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 2733, + "country_code": "DE", + "division": 6, + "division_name": "Division 7", + "drop_race": false, + "finish_position": 32, + "finish_position_in_class": 8, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 35, + "color1": "2575b0", + "color2": "7e1c6e", + "color3": "f90000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": 112683, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "fb0ead", + "color2": "424242", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "17", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 57.572872, + "new_license_level": 15, + "new_sub_level": 384, + "new_ttrating": 1350, + "newi_rating": 2797, + "old_cpi": 31.962917, + "old_license_level": 14, + "old_sub_level": 250, + "old_ttrating": 1350, + "oldi_rating": 2783, + "opt_laps_complete": 0, + "position": 32, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 17, + "color1": "2F2F2F", + "color2": "404334", + "color3": "2F4F4F" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 32, + "finish_position_in_class": 8, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 1, + "interval": 112683, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "fb0ead", + "color2": "424242", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "17", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 32, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 17, + "color1": "2F2F2F", + "color2": "404334", + "color3": "2F4F4F" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -467225, + "display_name": "DCS Racing Green", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1049066, + "best_lap_num": 2, + "best_lap_time": 1046120, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:38Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1046120, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 3357, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -467225, + "cust_id": 1193552, + "display_name": "Nikos Nota", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1049066, + "best_lap_num": 2, + "best_lap_time": 1046120, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:38Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1046120, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 3357, + "country_code": "GR", + "division": 3, + "division_name": "Division 4", + "drop_race": true, + "finish_position": 33, + "finish_position_in_class": 9, + "flair_id": 80, + "flair_name": "Greece", + "flair_shortname": "GRC", + "friend": false, + "helmet": { + "pattern": 67, + "color1": "ffffff", + "color2": "fff500", + "color3": "fff500", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 113307, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "e0aa42", + "color2": "0ea2eb", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "22", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 29.04801, + "new_license_level": 13, + "new_sub_level": 194, + "new_ttrating": 1305, + "newi_rating": 3058, + "old_cpi": 21.94943, + "old_license_level": 13, + "old_sub_level": 150, + "old_ttrating": 1305, + "oldi_rating": 3142, + "opt_laps_complete": 0, + "position": 33, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "ffffff", + "color2": "60a6c9", + "color3": "1a1f43" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": true, + "finish_position": 33, + "finish_position_in_class": 9, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 113307, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "e0aa42", + "color2": "0ea2eb", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "22", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 33, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "ffffff", + "color2": "60a6c9", + "color3": "1a1f43" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -420531, + "display_name": "Angler Racing", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1048234, + "best_lap_num": 1, + "best_lap_time": 1048234, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:05:52Z", + "best_qual_lap_num": 1, + "best_qual_lap_time": 1048234, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 5471, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -420531, + "cust_id": 941901, + "display_name": "Paddy Armstrong", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1048234, + "best_lap_num": 1, + "best_lap_time": 1048234, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:05:52Z", + "best_qual_lap_num": 1, + "best_qual_lap_time": 1048234, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 5471, + "country_code": "SCT", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 34, + "finish_position_in_class": 10, + "flair_id": 237, + "flair_name": "Scotland", + "flair_shortname": "SCT", + "friend": false, + "helmet": { + "pattern": 57, + "color1": "838383", + "color2": "ffffff", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": 115421, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "000000", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "6", + "wheel_color": "c8bd9f", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 78.350105, + "new_license_level": 20, + "new_sub_level": 415, + "new_ttrating": 1260, + "newi_rating": 2157, + "old_cpi": 111.6487, + "old_license_level": 20, + "old_sub_level": 469, + "old_ttrating": 1260, + "oldi_rating": 2252, + "opt_laps_complete": 0, + "position": 34, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "000000", + "color2": "ff00de", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 34, + "finish_position_in_class": 10, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 1, + "interval": 115421, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "000000", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "6", + "wheel_color": "c8bd9f", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 34, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "000000", + "color2": "ff00de", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -175849, + "display_name": "Maniti Racing Yellow", + "aggregate_champ_points": 93, + "ai": false, + "average_lap": 1048305, + "best_lap_num": 2, + "best_lap_time": 1048305, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:48Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1048305, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 156, + "car_name": "Mercedes-AMG GT3 2020", + "carcfg": -1, + "champ_points": 0, + "class_interval": 5542, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -175849, + "cust_id": 1060062, + "display_name": "Marvin Bär", + "aggregate_champ_points": 93, + "ai": false, + "average_lap": 1048305, + "best_lap_num": 2, + "best_lap_time": 1048305, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:48Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1048305, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 156, + "car_name": "Mercedes-AMG GT3 2020", + "carcfg": -1, + "champ_points": 0, + "class_interval": 5542, + "country_code": "DE", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 35, + "finish_position_in_class": 11, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 49, + "color1": "ffffff", + "color2": "bbbbbb", + "color3": "4a4a4a", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": 115492, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 156, + "pattern": 0, + "color1": "000000", + "color2": "08ad22", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "78", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 99, + "new_cpi": 92.41379, + "new_license_level": 19, + "new_sub_level": 399, + "new_ttrating": 1350, + "newi_rating": 3092, + "old_cpi": 42.426422, + "old_license_level": 18, + "old_sub_level": 237, + "old_ttrating": 1350, + "oldi_rating": 3083, + "opt_laps_complete": 0, + "position": 35, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 29, + "color1": "00ff19", + "color2": "04ff00", + "color3": "42ff00" + }, + "watched": false, + "weight_penalty_kg": 3 + } + ], + "drop_race": false, + "finish_position": 35, + "finish_position_in_class": 11, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 1, + "interval": 115492, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 156, + "pattern": 0, + "color1": "000000", + "color2": "08ad22", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "78", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 99, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 35, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 29, + "color1": "00ff19", + "color2": "04ff00", + "color3": "42ff00" + }, + "watched": false, + "weight_penalty_kg": 3 + }, + { + "team_id": -224061, + "display_name": "Pineapple Racing Club", + "aggregate_champ_points": 88, + "ai": false, + "average_lap": 1051001, + "best_lap_num": 2, + "best_lap_time": 1048770, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:08:23Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1048770, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 185, + "car_name": "Ford Mustang GT3", + "carcfg": -1, + "champ_points": 0, + "class_interval": 6007, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -224061, + "cust_id": 301782, + "display_name": "Ben Cooper5", + "aggregate_champ_points": 88, + "ai": false, + "average_lap": 1051001, + "best_lap_num": 2, + "best_lap_time": 1048770, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:08:23Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1048770, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 185, + "car_name": "Ford Mustang GT3", + "carcfg": -1, + "champ_points": 0, + "class_interval": 6007, + "country_code": "GB", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 36, + "finish_position_in_class": 12, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 46, + "color1": "565555", + "color2": "fff500", + "color3": "ae0077", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 115957, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 185, + "pattern": 12, + "color1": "e3ff54", + "color2": "000000", + "color3": "004092", + "number_font": 0, + "number_color1": "004092", + "number_color2": "ffffff", + "number_color3": "777777", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "14", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 158.22897, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 3233, + "old_cpi": 202.223, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 3228, + "opt_laps_complete": 0, + "position": 36, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 19, + "color1": "252525", + "color2": "7952a2", + "color3": "ecef00" + }, + "watched": false, + "weight_penalty_kg": 10 + } + ], + "drop_race": false, + "finish_position": 36, + "finish_position_in_class": 12, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 115957, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 185, + "pattern": 12, + "color1": "e3ff54", + "color2": "000000", + "color3": "004092", + "number_font": 0, + "number_color1": "004092", + "number_color2": "ffffff", + "number_color3": "777777", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "14", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 36, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 19, + "color1": "252525", + "color2": "7952a2", + "color3": "ecef00" + }, + "watched": false, + "weight_penalty_kg": 10 + }, + { + "team_id": -298205, + "display_name": "CDLC", + "aggregate_champ_points": 79, + "ai": false, + "average_lap": 1052936, + "best_lap_num": 2, + "best_lap_time": 1048987, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:49Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1048987, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 188, + "car_name": "McLaren 720S GT3 EVO", + "carcfg": -1, + "champ_points": 0, + "class_interval": 6224, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -298205, + "cust_id": 692986, + "display_name": "Andreas Carlsson", + "aggregate_champ_points": 79, + "ai": false, + "average_lap": 1052936, + "best_lap_num": 2, + "best_lap_time": 1048987, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:49Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1048987, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 188, + "car_name": "McLaren 720S GT3 EVO", + "carcfg": -1, + "champ_points": 0, + "class_interval": 6224, + "country_code": "SE", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 37, + "finish_position_in_class": 13, + "flair_id": 203, + "flair_name": "Sweden", + "flair_shortname": "SWE", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "000000", + "color2": "1e1e1e", + "color3": "007dff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 116174, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 188, + "pattern": 4, + "color1": "0073d2", + "color2": "ff5c00", + "color3": "292d33", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "46", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 97, + "new_cpi": 336.55923, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1375, + "newi_rating": 2873, + "old_cpi": 138.13417, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1375, + "oldi_rating": 2867, + "opt_laps_complete": 0, + "position": 37, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 31, + "color1": "000000", + "color2": "0378ff", + "color3": "ff4d00" + }, + "watched": false, + "weight_penalty_kg": 5 + } + ], + "drop_race": false, + "finish_position": 37, + "finish_position_in_class": 13, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 116174, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 188, + "pattern": 4, + "color1": "0073d2", + "color2": "ff5c00", + "color3": "292d33", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "46", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 97, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 37, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 31, + "color1": "000000", + "color2": "0378ff", + "color3": "ff4d00" + }, + "watched": false, + "weight_penalty_kg": 5 + }, + { + "team_id": -298823, + "display_name": "TEN MAD MEN Alpha", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1051828, + "best_lap_num": 2, + "best_lap_time": 1049400, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:08:15Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1049400, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 6637, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -298823, + "cust_id": 376421, + "display_name": "Jorge Leiva Ruiz", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1051828, + "best_lap_num": 2, + "best_lap_time": 1049400, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:08:15Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1049400, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 6637, + "country_code": "CL", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 38, + "finish_position_in_class": 14, + "flair_id": 44, + "flair_name": "Chile", + "flair_shortname": "CHL", + "friend": false, + "helmet": { + "pattern": 67, + "color1": "000000", + "color2": "00a0bc", + "color3": "c7c7c7", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 116587, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "ffffff", + "color2": "0013a5", + "color3": "ff5c00", + "number_font": 0, + "number_color1": "f3eeeb", + "number_color2": "ffffff", + "number_color3": "ffffff", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "010", + "wheel_color": "32312f", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 65.18878, + "new_license_level": 19, + "new_sub_level": 346, + "new_ttrating": 1350, + "newi_rating": 2447, + "old_cpi": 66.34217, + "old_license_level": 19, + "old_sub_level": 348, + "old_ttrating": 1350, + "oldi_rating": 2484, + "opt_laps_complete": 0, + "position": 38, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "e1ce30", + "color2": "ebe8e8", + "color3": "1c46ed" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 38, + "finish_position_in_class": 14, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 116587, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "ffffff", + "color2": "0013a5", + "color3": "ff5c00", + "number_font": 0, + "number_color1": "f3eeeb", + "number_color2": "ffffff", + "number_color3": "ffffff", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "010", + "wheel_color": "32312f", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 38, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "e1ce30", + "color2": "ebe8e8", + "color3": "1c46ed" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -287243, + "display_name": "Team MFM - SURVIVE!", + "aggregate_champ_points": 142, + "ai": false, + "average_lap": 1051770, + "best_lap_num": 2, + "best_lap_time": 1049415, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:08:43Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1049415, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 6652, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -287243, + "cust_id": 638036, + "display_name": "Cody Gayer", + "aggregate_champ_points": 142, + "ai": false, + "average_lap": 1051770, + "best_lap_num": 2, + "best_lap_time": 1049415, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:08:43Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1049415, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 6652, + "country_code": "US", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 39, + "finish_position_in_class": 15, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 67, + "color1": "01020e", + "color2": "d5c325", + "color3": "c91b20", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 116602, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 17, + "color1": "dddddd", + "color2": "ffff00", + "color3": "252525", + "number_font": 0, + "number_color1": "000000", + "number_color2": "737373", + "number_color3": "ffffff", + "number_slant": 4, + "sponsor1": 138, + "sponsor2": 7, + "car_number": "21", + "wheel_color": "ffff00", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 81.2526, + "new_license_level": 20, + "new_sub_level": 420, + "new_ttrating": 1350, + "newi_rating": 3094, + "old_cpi": 86.255455, + "old_license_level": 20, + "old_sub_level": 429, + "old_ttrating": 1350, + "oldi_rating": 3072, + "opt_laps_complete": 0, + "position": 39, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 7, + "color1": "252525", + "color2": "DDDDDD", + "color3": "004895" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 39, + "finish_position_in_class": 15, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 116602, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 17, + "color1": "dddddd", + "color2": "ffff00", + "color3": "252525", + "number_font": 0, + "number_color1": "000000", + "number_color2": "737373", + "number_color3": "ffffff", + "number_slant": 4, + "sponsor1": 138, + "sponsor2": 7, + "car_number": "21", + "wheel_color": "ffff00", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 39, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 7, + "color1": "252525", + "color2": "DDDDDD", + "color3": "004895" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -413546, + "display_name": "Should be Fine Motorsports", + "aggregate_champ_points": 110, + "ai": false, + "average_lap": 1049602, + "best_lap_num": 2, + "best_lap_time": 1049602, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:44Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1049602, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 6839, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -413546, + "cust_id": 1092119, + "display_name": "Chris Singh", + "aggregate_champ_points": 110, + "ai": false, + "average_lap": 1049602, + "best_lap_num": 2, + "best_lap_time": 1049602, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:44Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1049602, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 6839, + "country_code": "US", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 40, + "finish_position_in_class": 16, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 22, + "color1": "f9ff00", + "color2": "ff0000", + "color3": "00c341", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 2, + "interval": 116789, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 17, + "color1": "efd600", + "color2": "111111", + "color3": "d7162d", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "25", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 54.59016, + "new_license_level": 18, + "new_sub_level": 275, + "new_ttrating": 1350, + "newi_rating": 2797, + "old_cpi": 36.08681, + "old_license_level": 17, + "old_sub_level": 169, + "old_ttrating": 1350, + "oldi_rating": 2777, + "opt_laps_complete": 0, + "position": 40, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "00f035", + "color2": "020101", + "color3": "e61010" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 40, + "finish_position_in_class": 16, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 2, + "interval": 116789, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 17, + "color1": "efd600", + "color2": "111111", + "color3": "d7162d", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "25", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 40, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "00f035", + "color2": "020101", + "color3": "e61010" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -415465, + "display_name": "WFLM Motorsport Vortex", + "aggregate_champ_points": 71, + "ai": false, + "average_lap": 1050260, + "best_lap_num": 1, + "best_lap_time": 1050260, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:06:00Z", + "best_qual_lap_num": 1, + "best_qual_lap_time": 1050260, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 7497, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -415465, + "cust_id": 1294295, + "display_name": "Florïan Chevreuïl", + "aggregate_champ_points": 71, + "ai": false, + "average_lap": 1050260, + "best_lap_num": 1, + "best_lap_time": 1050260, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:06:00Z", + "best_qual_lap_num": 1, + "best_qual_lap_time": 1050260, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 7497, + "country_code": "FR", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 41, + "finish_position_in_class": 17, + "flair_id": 71, + "flair_name": "France", + "flair_shortname": "FRA", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": 117447, + "laps_complete": 1, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 3, + "color1": "FF7000", + "color2": "73ECFF", + "color3": "0F0017", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "29", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 33.223705, + "new_license_level": 17, + "new_sub_level": 156, + "new_ttrating": 1350, + "newi_rating": 2683, + "old_cpi": 31.96522, + "old_license_level": 17, + "old_sub_level": 150, + "old_ttrating": 1350, + "oldi_rating": 2683, + "opt_laps_complete": 0, + "position": 41, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 28, + "color1": "0f0017", + "color2": "ff0021", + "color3": "ddecec" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 41, + "finish_position_in_class": 17, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 1, + "interval": 117447, + "laps_complete": 1, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 3, + "color1": "FF7000", + "color2": "73ECFF", + "color3": "0F0017", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "29", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 41, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 28, + "color1": "0f0017", + "color2": "ff0021", + "color3": "ddecec" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -248147, + "display_name": "IPM Yellow", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 1056932, + "best_lap_num": 2, + "best_lap_time": 1051171, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:42Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1051171, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 173, + "car_name": "Ferrari 296 GT3", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8408, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -248147, + "cust_id": 19071, + "display_name": "Peter Terrana", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 1056932, + "best_lap_num": 2, + "best_lap_time": 1051171, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:42Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1051171, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 173, + "car_name": "Ferrari 296 GT3", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8408, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 42, + "finish_position_in_class": 18, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 34, + "color1": "DAF109", + "color2": "000000", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 118358, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 173, + "pattern": 9, + "color1": "ccf312", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "698", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 69.72993, + "new_license_level": 19, + "new_sub_level": 356, + "new_ttrating": 1350, + "newi_rating": 2620, + "old_cpi": 45.854206, + "old_license_level": 18, + "old_sub_level": 249, + "old_ttrating": 1350, + "oldi_rating": 2617, + "opt_laps_complete": 0, + "position": 42, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 27, + "color1": "23231f", + "color2": "131415", + "color3": "f2f12c" + }, + "watched": false, + "weight_penalty_kg": 3 + } + ], + "drop_race": false, + "finish_position": 42, + "finish_position_in_class": 18, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 118358, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 173, + "pattern": 9, + "color1": "ccf312", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "698", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 42, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 27, + "color1": "23231f", + "color2": "131415", + "color3": "f2f12c" + }, + "watched": false, + "weight_penalty_kg": 3 + }, + { + "team_id": -316329, + "display_name": "Milwauchibre Racing Team", + "aggregate_champ_points": 39, + "ai": false, + "average_lap": 1051295, + "best_lap_num": 2, + "best_lap_time": 1051295, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:40Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1051295, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8532, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -316329, + "cust_id": 879626, + "display_name": "Nicolas De Saint Riquier", + "aggregate_champ_points": 39, + "ai": false, + "average_lap": 1051295, + "best_lap_num": 2, + "best_lap_time": 1051295, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:40Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1051295, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8532, + "country_code": "FR", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 43, + "finish_position_in_class": 19, + "flair_id": 71, + "flair_name": "France", + "flair_shortname": "FRA", + "friend": false, + "helmet": { + "pattern": 35, + "color1": "000000", + "color2": "ff0000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": 118482, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "FFFFFF", + "color2": "6900FF", + "color3": "FF00ED", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "27", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 49.39754, + "new_license_level": 18, + "new_sub_level": 260, + "new_ttrating": 1350, + "newi_rating": 2166, + "old_cpi": 32.16721, + "old_license_level": 17, + "old_sub_level": 151, + "old_ttrating": 1350, + "oldi_rating": 2187, + "opt_laps_complete": 0, + "position": 43, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 22, + "color1": "404040", + "color2": "bebebe", + "color3": "b78a00" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 43, + "finish_position_in_class": 19, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 1, + "interval": 118482, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "FFFFFF", + "color2": "6900FF", + "color3": "FF00ED", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "27", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 43, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 22, + "color1": "404040", + "color2": "bebebe", + "color3": "b78a00" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -480346, + "display_name": "Almeida Endurance Racing Black", + "aggregate_champ_points": 124, + "ai": false, + "average_lap": 1054056, + "best_lap_num": 2, + "best_lap_time": 1051444, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:08:00Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1051444, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8681, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -480346, + "cust_id": 346886, + "display_name": "Adrian Hopp", + "aggregate_champ_points": 124, + "ai": false, + "average_lap": 1054056, + "best_lap_num": 2, + "best_lap_time": 1051444, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:08:00Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1051444, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8681, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 44, + "finish_position_in_class": 20, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 21, + "color1": "000000", + "color2": "ffffff", + "color3": "fa0200", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": 118631, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 14, + "color1": "FFED00", + "color2": "00C4FF", + "color3": "87C42E", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "18", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 161.57109, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1311, + "newi_rating": 3055, + "old_cpi": 84.49169, + "old_license_level": 19, + "old_sub_level": 385, + "old_ttrating": 1311, + "oldi_rating": 3033, + "opt_laps_complete": 0, + "position": 44, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 32, + "color1": "ffffff", + "color2": "fff200", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 44, + "finish_position_in_class": 20, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 1, + "interval": 118631, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 14, + "color1": "FFED00", + "color2": "00C4FF", + "color3": "87C42E", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "18", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 44, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 32, + "color1": "ffffff", + "color2": "fff200", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -398466, + "display_name": "Leche Condensada Racing Team", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1052560, + "best_lap_num": 1, + "best_lap_time": 1052560, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:05:54Z", + "best_qual_lap_num": 1, + "best_qual_lap_time": 1052560, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 9797, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -398466, + "cust_id": 1110076, + "display_name": "Abel Ros", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1052560, + "best_lap_num": 1, + "best_lap_time": 1052560, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:05:54Z", + "best_qual_lap_num": 1, + "best_qual_lap_time": 1052560, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 9797, + "country_code": "ES", + "division": 3, + "division_name": "Division 4", + "drop_race": true, + "finish_position": 45, + "finish_position_in_class": 21, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 58, + "color1": "ee0000", + "color2": "e0fa0c", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": 119747, + "laps_complete": 1, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "F5F9F4", + "color2": "000000", + "color3": "EDF4EE", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "28", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 63.223633, + "new_license_level": 19, + "new_sub_level": 341, + "new_ttrating": 1364, + "newi_rating": 2580, + "old_cpi": 79.276924, + "old_license_level": 19, + "old_sub_level": 375, + "old_ttrating": 1364, + "oldi_rating": 2590, + "opt_laps_complete": 0, + "position": 45, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "103fe6", + "color2": "f3f3f3", + "color3": "f60909" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": true, + "finish_position": 45, + "finish_position_in_class": 21, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 1, + "interval": 119747, + "laps_complete": 1, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "F5F9F4", + "color2": "000000", + "color3": "EDF4EE", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "28", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 45, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "103fe6", + "color2": "f3f3f3", + "color3": "f60909" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -298487, + "display_name": "Parc Motorsport Team Purple", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1074633, + "best_lap_num": 2, + "best_lap_time": 1052591, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:08:19Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1052591, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 9828, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -298487, + "cust_id": 784148, + "display_name": "Krzysztof Olender2", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1074633, + "best_lap_num": 2, + "best_lap_time": 1052591, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:08:19Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1052591, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 9828, + "country_code": "PL", + "division": 3, + "division_name": "Division 4", + "drop_race": true, + "finish_position": 46, + "finish_position_in_class": 22, + "flair_id": 167, + "flair_name": "Poland", + "flair_shortname": "POL", + "friend": false, + "helmet": { + "pattern": 43, + "color1": "eaff00", + "color2": "00e0ff", + "color3": "db00ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 119778, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 9, + "color1": "000000", + "color2": "8700ff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "97", + "wheel_color": "000000", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 36.04055, + "new_license_level": 14, + "new_sub_level": 269, + "new_ttrating": 1350, + "newi_rating": 2615, + "old_cpi": 42.249332, + "old_license_level": 14, + "old_sub_level": 293, + "old_ttrating": 1350, + "oldi_rating": 2719, + "opt_laps_complete": 0, + "position": 46, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 28, + "color1": "000000", + "color2": "7800ff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": true, + "finish_position": 46, + "finish_position_in_class": 22, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 119778, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 9, + "color1": "000000", + "color2": "8700ff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "97", + "wheel_color": "000000", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 46, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 28, + "color1": "000000", + "color2": "7800ff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -454924, + "display_name": "Top Tier Motorsport #222", + "aggregate_champ_points": 102, + "ai": false, + "average_lap": 1054291, + "best_lap_num": 1, + "best_lap_time": 1052970, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:06:05Z", + "best_qual_lap_num": 1, + "best_qual_lap_time": 1052970, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 10207, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -454924, + "cust_id": 855270, + "display_name": "Dan Munro", + "aggregate_champ_points": 102, + "ai": false, + "average_lap": 1054291, + "best_lap_num": 1, + "best_lap_time": 1052970, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:06:05Z", + "best_qual_lap_num": 1, + "best_qual_lap_time": 1052970, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 10207, + "country_code": "GB", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 47, + "finish_position_in_class": 23, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "111111", + "color2": "ed1c24", + "color3": "cccccc", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 120157, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 4, + "color1": "efd600", + "color2": "111111", + "color3": "d7162d", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "222", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 37.095116, + "new_license_level": 11, + "new_sub_level": 373, + "new_ttrating": 1350, + "newi_rating": 2026, + "old_cpi": 19.39725, + "old_license_level": 10, + "old_sub_level": 230, + "old_ttrating": 1350, + "oldi_rating": 2017, + "opt_laps_complete": 0, + "position": 47, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "9500f0", + "color2": "111111", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 47, + "finish_position_in_class": 23, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 120157, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 4, + "color1": "efd600", + "color2": "111111", + "color3": "d7162d", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "222", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 47, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "9500f0", + "color2": "111111", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -480821, + "display_name": "Team PaceLab - Red", + "aggregate_champ_points": 115, + "ai": false, + "average_lap": 1053828, + "best_lap_num": 1, + "best_lap_time": 1053828, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:06:04Z", + "best_qual_lap_num": 1, + "best_qual_lap_time": 1053828, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 11065, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -480821, + "cust_id": 1287257, + "display_name": "Burak Egemen Yılmaz", + "aggregate_champ_points": 115, + "ai": false, + "average_lap": 1053828, + "best_lap_num": 1, + "best_lap_time": 1053828, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:06:04Z", + "best_qual_lap_num": 1, + "best_qual_lap_time": 1053828, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 11065, + "country_code": "TR", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 48, + "finish_position_in_class": 24, + "flair_id": 215, + "flair_name": "Türkiye", + "flair_shortname": "TUR", + "friend": false, + "helmet": { + "pattern": 36, + "color1": "ffffff", + "color2": "ff0000", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": 121015, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "23", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 77.44804, + "new_license_level": 16, + "new_sub_level": 472, + "new_ttrating": 1307, + "newi_rating": 2450, + "old_cpi": 26.810757, + "old_license_level": 14, + "old_sub_level": 223, + "old_ttrating": 1307, + "oldi_rating": 2426, + "opt_laps_complete": 0, + "position": 48, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 21, + "color1": "000000", + "color2": "de00ff", + "color3": "230057" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 48, + "finish_position_in_class": 24, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 1, + "interval": 121015, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "23", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 48, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 21, + "color1": "000000", + "color2": "de00ff", + "color3": "230057" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -243532, + "display_name": "THLF eSports Multinational by Raceverse.at", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1055788, + "best_lap_num": 2, + "best_lap_time": 1054138, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:38Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1054138, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 11375, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -243532, + "cust_id": 1335570, + "display_name": "Jordan Elmore", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1055788, + "best_lap_num": 2, + "best_lap_time": 1054138, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:38Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1054138, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 11375, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 49, + "finish_position_in_class": 25, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 56, + "color1": "ff0000", + "color2": "000000", + "color3": "acacac", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 121325, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 23, + "color1": "ff9cfd", + "color2": "ffffff", + "color3": "0500ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "444", + "wheel_color": "ffffff", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 61.234966, + "new_license_level": 18, + "new_sub_level": 293, + "new_ttrating": 1325, + "newi_rating": 2474, + "old_cpi": 59.90275, + "old_license_level": 18, + "old_sub_level": 290, + "old_ttrating": 1325, + "oldi_rating": 2494, + "opt_laps_complete": 0, + "position": 49, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 10, + "color1": "00ff1e", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 49, + "finish_position_in_class": 25, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 121325, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 23, + "color1": "ff9cfd", + "color2": "ffffff", + "color3": "0500ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "444", + "wheel_color": "ffffff", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 49, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 10, + "color1": "00ff1e", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -332725, + "display_name": "Miracle Kids Success Academy", + "aggregate_champ_points": 53, + "ai": false, + "average_lap": 1056874, + "best_lap_num": 2, + "best_lap_time": 1055901, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:36Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1055901, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 206, + "car_name": "Aston Martin Vantage GT3 EVO", + "carcfg": -1, + "champ_points": 0, + "class_interval": 13138, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -332725, + "cust_id": 920918, + "display_name": "Justin Noel", + "aggregate_champ_points": 53, + "ai": false, + "average_lap": 1056874, + "best_lap_num": 2, + "best_lap_time": 1055901, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:36Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1055901, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 206, + "car_name": "Aston Martin Vantage GT3 EVO", + "carcfg": -1, + "champ_points": 0, + "class_interval": 13138, + "country_code": "US", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 50, + "finish_position_in_class": 26, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 54, + "color1": "ffffff", + "color2": "ff0000", + "color3": "0003ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 123088, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 206, + "pattern": 19, + "color1": "FFFFFF", + "color2": "FF0000", + "color3": "0003FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "24", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 99, + "new_cpi": 133.95572, + "new_license_level": 20, + "new_sub_level": 497, + "new_ttrating": 1350, + "newi_rating": 3078, + "old_cpi": 48.731533, + "old_license_level": 18, + "old_sub_level": 258, + "old_ttrating": 1350, + "oldi_rating": 3089, + "opt_laps_complete": 0, + "position": 50, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 0, + "color1": "2a3795", + "color2": "ec1c23", + "color3": "eeeeee" + }, + "watched": false, + "weight_penalty_kg": 12 + } + ], + "drop_race": false, + "finish_position": 50, + "finish_position_in_class": 26, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 123088, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 206, + "pattern": 19, + "color1": "FFFFFF", + "color2": "FF0000", + "color3": "0003FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "24", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 99, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 50, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 0, + "color1": "2a3795", + "color2": "ec1c23", + "color3": "eeeeee" + }, + "watched": false, + "weight_penalty_kg": 12 + }, + { + "team_id": -327700, + "display_name": "SFR ITALIA", + "aggregate_champ_points": 84, + "ai": false, + "average_lap": 1058590, + "best_lap_num": 2, + "best_lap_time": 1058590, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:09:21Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1058590, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 15827, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -327700, + "cust_id": 1005007, + "display_name": "Andrea Lamponi", + "aggregate_champ_points": 84, + "ai": false, + "average_lap": 1058590, + "best_lap_num": 2, + "best_lap_time": 1058590, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:09:21Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1058590, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 15827, + "country_code": "IT", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 51, + "finish_position_in_class": 27, + "flair_id": 101, + "flair_name": "Italy", + "flair_shortname": "ITA", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "5481fc", + "color2": "ffffff", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 2, + "interval": 125777, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 11, + "color1": "D4FF0F", + "color2": "00FF00", + "color3": "111111", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "19", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 75.235085, + "new_license_level": 19, + "new_sub_level": 367, + "new_ttrating": 1302, + "newi_rating": 2284, + "old_cpi": 72.3915, + "old_license_level": 19, + "old_sub_level": 362, + "old_ttrating": 1302, + "oldi_rating": 2276, + "opt_laps_complete": 0, + "position": 51, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 22, + "color1": "faff00", + "color2": "000000", + "color3": "7ef22e" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 51, + "finish_position_in_class": 27, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 2, + "interval": 125777, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 11, + "color1": "D4FF0F", + "color2": "00FF00", + "color3": "111111", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "19", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 51, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 22, + "color1": "faff00", + "color2": "000000", + "color3": "7ef22e" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -333656, + "display_name": "Bite Point Racing", + "aggregate_champ_points": 57, + "ai": false, + "average_lap": 1059644, + "best_lap_num": 2, + "best_lap_time": 1059644, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:09:26Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1059644, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 16881, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -333656, + "cust_id": 936022, + "display_name": "Francis Crosby", + "aggregate_champ_points": 57, + "ai": false, + "average_lap": 1059644, + "best_lap_num": 2, + "best_lap_time": 1059644, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:09:26Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1059644, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 16881, + "country_code": "CA", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 52, + "finish_position_in_class": 28, + "flair_id": 39, + "flair_name": "Canada", + "flair_shortname": "CAN", + "friend": false, + "helmet": { + "pattern": 61, + "color1": "ff0000", + "color2": "f7f7f7", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": 126831, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "fd0000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "45", + "wheel_color": "000000", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 57.7853, + "new_license_level": 19, + "new_sub_level": 328, + "new_ttrating": 1350, + "newi_rating": 2454, + "old_cpi": 58.822685, + "old_license_level": 19, + "old_sub_level": 330, + "old_ttrating": 1350, + "oldi_rating": 2457, + "opt_laps_complete": 0, + "position": 52, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 32, + "color1": "000000", + "color2": "04db00", + "color3": "9800d7" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 52, + "finish_position_in_class": 28, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 1, + "interval": 126831, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "fd0000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "45", + "wheel_color": "000000", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 52, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 32, + "color1": "000000", + "color2": "04db00", + "color3": "9800d7" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -434794, + "display_name": "Rag1ng Dragons e-Sports #Team Gold", + "aggregate_champ_points": 106, + "ai": false, + "average_lap": 1063191, + "best_lap_num": 1, + "best_lap_time": 1063191, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:06:32Z", + "best_qual_lap_num": 1, + "best_qual_lap_time": 1063191, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 20428, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -434794, + "cust_id": 785721, + "display_name": "Lucas Benini", + "aggregate_champ_points": 106, + "ai": false, + "average_lap": 1063191, + "best_lap_num": 1, + "best_lap_time": 1063191, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:06:32Z", + "best_qual_lap_num": 1, + "best_qual_lap_time": 1063191, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 20428, + "country_code": "BR", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 53, + "finish_position_in_class": 29, + "flair_id": 31, + "flair_name": "Brazil", + "flair_shortname": "BRA", + "friend": false, + "helmet": { + "pattern": 22, + "color1": "ffed00", + "color2": "008cff", + "color3": "1cff00", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": 130378, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 4, + "color1": "effc53", + "color2": "43cd41", + "color3": "1e42db", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "30", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 108.44981, + "new_license_level": 20, + "new_sub_level": 465, + "new_ttrating": 1291, + "newi_rating": 2547, + "old_cpi": 54.275417, + "old_license_level": 19, + "old_sub_level": 318, + "old_ttrating": 1291, + "oldi_rating": 2534, + "opt_laps_complete": 0, + "position": 53, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "22b428", + "color2": "353bcc", + "color3": "d3f118" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 53, + "finish_position_in_class": 29, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 1, + "interval": 130378, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 4, + "color1": "effc53", + "color2": "43cd41", + "color3": "1e42db", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "30", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 53, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "22b428", + "color2": "353bcc", + "color3": "d3f118" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -370856, + "display_name": "Crayola Advanced Engineering", + "aggregate_champ_points": 140, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -370856, + "cust_id": 1070827, + "display_name": "Alexander Wainman", + "aggregate_champ_points": 140, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GB", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 56, + "finish_position_in_class": 13, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 35, + "color1": "6e00ff", + "color2": "ff00ff", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 4, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 10, + "color1": "ffffff", + "color2": "0019ff", + "color3": "111111", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "7", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 113.07297, + "new_license_level": 20, + "new_sub_level": 471, + "new_ttrating": 1211, + "newi_rating": 3227, + "old_cpi": 110.732925, + "old_license_level": 20, + "old_sub_level": 468, + "old_ttrating": 1211, + "oldi_rating": 3199, + "opt_laps_complete": 0, + "position": 56, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 26, + "color1": "ffffff", + "color2": "004225", + "color3": "d4af37" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 54, + "finish_position_in_class": 12, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 4, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 10, + "color1": "ffffff", + "color2": "0019ff", + "color3": "111111", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "7", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 54, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 26, + "color1": "ffffff", + "color2": "004225", + "color3": "d4af37" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -401232, + "display_name": "Kika Cetasso Racing Team", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -401232, + "cust_id": 127024, + "display_name": "Fernando Cardoso", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "CA", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 54, + "finish_position_in_class": 30, + "flair_id": 39, + "flair_name": "Canada", + "flair_shortname": "CAN", + "friend": false, + "helmet": { + "pattern": 42, + "color1": "000000", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "ffffff", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 3, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "12", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 46.205784, + "new_license_level": 18, + "new_sub_level": 250, + "new_ttrating": 1350, + "newi_rating": 1513, + "old_cpi": 57.07806, + "old_license_level": 19, + "old_sub_level": 326, + "old_ttrating": 1350, + "oldi_rating": 1571, + "opt_laps_complete": 0, + "position": 54, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 2, + "color1": "000000", + "color2": "ffffff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 58, + "finish_position_in_class": 32, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "ffffff", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 3, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "12", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 58, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 2, + "color1": "000000", + "color2": "ffffff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -300070, + "display_name": "Tabula Rasa eSports 901", + "aggregate_champ_points": 96, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -300070, + "cust_id": 641758, + "display_name": "Adam NS Jones", + "aggregate_champ_points": 96, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GB", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 55, + "finish_position_in_class": 12, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 56, + "color1": "ffffff", + "color2": "ee3442", + "color3": "447ac0", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 16, + "color1": "000000", + "color2": "ed2129", + "color3": "001ee3", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "901", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 117.47467, + "new_license_level": 20, + "new_sub_level": 477, + "new_ttrating": 1350, + "newi_rating": 2049, + "old_cpi": 54.51905, + "old_license_level": 18, + "old_sub_level": 275, + "old_ttrating": 1350, + "oldi_rating": 2039, + "opt_laps_complete": 0, + "position": 55, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 35, + "color1": "000000", + "color2": "fb0000", + "color3": "0030ff" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 55, + "finish_position_in_class": 13, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 16, + "color1": "000000", + "color2": "ed2129", + "color3": "001ee3", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "901", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 55, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 35, + "color1": "000000", + "color2": "fb0000", + "color3": "0030ff" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -471181, + "display_name": "PRS Team Europe", + "aggregate_champ_points": 66, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 185, + "car_name": "Ford Mustang GT3", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [], + "drop_race": false, + "finish_position": 56, + "finish_position_in_class": 30, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 185, + "pattern": 20, + "color1": "515151", + "color2": "FFFFFF", + "color3": "000000", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "16", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 56, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 3, + "color1": "0083ff", + "color2": "ffffff", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 10 + }, + { + "team_id": -142589, + "display_name": "Team Highside - Vette", + "aggregate_champ_points": 48, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 184, + "car_name": "Chevrolet Corvette Z06 GT3.R", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [], + "drop_race": false, + "finish_position": 57, + "finish_position_in_class": 31, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 184, + "pattern": 12, + "color1": "0085ff", + "color2": "0085ff", + "color3": "d50000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "242424", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "216", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 96, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 57, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 25, + "color1": "FA7400", + "color2": "000000", + "color3": "FFFFFF" + }, + "watched": false, + "weight_penalty_kg": 10 + } + ] }, { - "cust_id": 166182, - "display_name": "Joe Aguilar", - "aggregate_champ_points": 152, - "ai": false, - "average_lap": 1350861, - "best_lap_num": 2, - "best_lap_time": 1345946, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2025-12-28T20:38:03Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1345946, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 204, - "car_name": "Ford Mustang GT4", - "carcfg": -1, - "champ_points": 0, - "class_interval": 26996, - "country_code": "US", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 13, - "finish_position_in_class": 13, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 36, - "color1": "ffffff", - "color2": "1400ff", - "color3": "00a3ff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 26996, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 204, - "pattern": 0, - "color1": "ffffff", - "color2": "ffffff", - "color3": "ffffff", - "number_font": 0, - "number_color1": "000000", - "number_color2": "ffffff", - "number_color3": "777777", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "11", - "wheel_color": "d8804f", - "rim_type": 2 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 53.745346, - "new_license_level": 19, - "new_sub_level": 317, - "new_ttrating": 1318, - "newi_rating": 3616, - "old_cpi": 51.80095, - "old_license_level": 19, - "old_sub_level": 311, - "old_ttrating": 1318, - "oldi_rating": 3564, - "opt_laps_complete": 0, - "position": 13, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 32, - "color1": "eeeff0", - "color2": "202020", - "color3": "534741" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "cust_id": 170870, - "display_name": "Jonas Sandstede", - "aggregate_champ_points": 126, - "ai": false, - "average_lap": 1349421, - "best_lap_num": 2, - "best_lap_time": 1347162, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2025-12-28T20:38:01Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1347162, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 157, - "car_name": "Mercedes-AMG GT4", - "carcfg": -1, - "champ_points": 0, - "class_interval": 28212, - "country_code": "DE", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 14, - "finish_position_in_class": 14, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 45, - "color1": "000000", - "color2": "43462f", - "color3": "b4ba53", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 1, - "interval": 28212, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 157, - "pattern": 0, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "16", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 30.390991, - "new_license_level": 17, - "new_sub_level": 142, - "new_ttrating": 1350, - "newi_rating": 2662, - "old_cpi": 29.790945, - "old_license_level": 17, - "old_sub_level": 139, - "old_ttrating": 1350, - "oldi_rating": 2612, - "opt_laps_complete": 0, - "position": 14, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 8, - "color1": "000000", - "color2": "ebed21", - "color3": "21291f" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "cust_id": 1386334, - "display_name": "Vili Tero", - "aggregate_champ_points": 114, - "ai": false, - "average_lap": 1353153, - "best_lap_num": 2, - "best_lap_time": 1347562, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2025-12-28T20:37:48Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1347562, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 157, - "car_name": "Mercedes-AMG GT4", - "carcfg": -1, - "champ_points": 0, - "class_interval": 28612, - "country_code": "FI", - "division": 4, - "division_name": "Division 5", - "drop_race": false, - "finish_position": 15, - "finish_position_in_class": 15, - "flair_id": 70, - "flair_name": "Finland", - "flair_shortname": "FIN", - "friend": false, - "helmet": { - "pattern": 20, - "color1": "00fff0", - "color2": "00e0ff", - "color3": "00e0ff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 28612, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 157, - "pattern": 15, - "color1": "000000", - "color2": "f1e700", - "color3": "000000", - "number_font": 0, - "number_color1": "f7ee0a", - "number_color2": "ffffff", - "number_color3": "ff0000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "30", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 26.440548, - "new_license_level": 7, - "new_sub_level": 379, - "new_ttrating": 1350, - "newi_rating": 2141, - "old_cpi": 24.163597, - "old_license_level": 7, - "old_sub_level": 365, - "old_ttrating": 1350, - "oldi_rating": 2089, - "opt_laps_complete": 0, - "position": 15, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 15, - "color1": "00fff7", - "color2": "00fff7", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1 - }, + "simsession_number": 0, + "simsession_name": "RACE", + "simsession_type": 6, + "simsession_type_name": "Race", + "simsession_subtype": 0, + "weather_result": { + "avg_skies": 2, + "avg_cloud_cover_pct": 86.42999, + "min_cloud_cover_pct": 33.080578, + "max_cloud_cover_pct": 100, + "temp_units": 1, + "avg_temp": 20.332977, + "min_temp": 19.306164, + "max_temp": 23.79765, + "avg_rel_humidity": 68.905235, + "wind_units": 1, + "avg_wind_speed": 9.205517, + "min_wind_speed": 3.9293036, + "max_wind_speed": 17.688026, + "avg_wind_dir": 7, + "max_fog": 0, + "fog_time_pct": 0, + "precip_time_pct": 0, + "precip_mm": 0, + "precip_mm2hr_before_session": 0, + "simulated_start_time": "2026-01-24T14:00:00" + }, + "results": [ + { + "team_id": -370856, + "display_name": "Crayola Advanced Engineering", + "aggregate_champ_points": 140, + "ai": false, + "average_lap": 978772, + "best_lap_num": 690, + "best_lap_time": 934669, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 140, + "class_interval": 0, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -370856, + "cust_id": 1070827, + "display_name": "Alexander Wainman", + "aggregate_champ_points": 140, + "ai": false, + "average_lap": 963449, + "best_lap_num": 690, + "best_lap_time": 934669, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 140, + "class_interval": 0, + "country_code": "GB", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 0, + "finish_position_in_class": 0, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 35, + "color1": "6e00ff", + "color2": "ff00ff", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 29, + "interval": 0, + "laps_complete": 279, + "laps_lead": 95, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 10, + "color1": "ffffff", + "color2": "0019ff", + "color3": "111111", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "7", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 113.07297, + "new_license_level": 20, + "new_sub_level": 471, + "new_ttrating": 1211, + "newi_rating": 3227, + "old_cpi": 110.732925, + "old_license_level": 20, + "old_sub_level": 468, + "old_ttrating": 1211, + "oldi_rating": 3199, + "opt_laps_complete": 0, + "position": 0, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 12, + "starting_position_in_class": 12, + "suit": { + "pattern": 26, + "color1": "ffffff", + "color2": "004225", + "color3": "d4af37" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -370856, + "cust_id": 580584, + "display_name": "Adam W Lewis", + "aggregate_champ_points": 140, + "ai": false, + "average_lap": 966750, + "best_lap_num": 324, + "best_lap_time": 934988, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 140, + "class_interval": 0, + "country_code": "GB", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 0, + "finish_position_in_class": 0, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 23, + "color1": "ff00a4", + "color2": "adff00", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 21, + "interval": 0, + "laps_complete": 271, + "laps_lead": 77, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 10, + "color1": "ffffff", + "color2": "0019ff", + "color3": "111111", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "7", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 112.93226, + "new_license_level": 20, + "new_sub_level": 471, + "new_ttrating": 1178, + "newi_rating": 2293, + "old_cpi": 75.35843, + "old_license_level": 20, + "old_sub_level": 409, + "old_ttrating": 1178, + "oldi_rating": 2265, + "opt_laps_complete": 0, + "position": 0, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 12, + "starting_position_in_class": 12, + "suit": { + "pattern": 26, + "color1": "ffffff", + "color2": "004225", + "color3": "d4af37" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -370856, + "cust_id": 693405, + "display_name": "William Wadsworth", + "aggregate_champ_points": 140, + "ai": false, + "average_lap": 977716, + "best_lap_num": 509, + "best_lap_time": 940937, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 140, + "class_interval": 0, + "country_code": "US", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 0, + "finish_position_in_class": 0, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 11, + "color1": "000000", + "color2": "0094ff", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 20, + "interval": 0, + "laps_complete": 192, + "laps_lead": 48, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 10, + "color1": "ffffff", + "color2": "0019ff", + "color3": "111111", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "7", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 107.11224, + "new_license_level": 20, + "new_sub_level": 463, + "new_ttrating": 1313, + "newi_rating": 2064, + "old_cpi": 92.5777, + "old_license_level": 19, + "old_sub_level": 399, + "old_ttrating": 1313, + "oldi_rating": 2044, + "opt_laps_complete": 0, + "position": 0, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 12, + "starting_position_in_class": 12, + "suit": { + "pattern": 26, + "color1": "ffffff", + "color2": "004225", + "color3": "d4af37" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -370856, + "cust_id": 1065424, + "display_name": "Cameron Gapinski", + "aggregate_champ_points": 140, + "ai": false, + "average_lap": 971898, + "best_lap_num": 433, + "best_lap_time": 944286, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 140, + "class_interval": 0, + "country_code": "US", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 0, + "finish_position_in_class": 0, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 34, + "color1": "000000", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 5, + "interval": 0, + "laps_complete": 141, + "laps_lead": 48, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 10, + "color1": "ffffff", + "color2": "0019ff", + "color3": "111111", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "7", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 124.50656, + "new_license_level": 20, + "new_sub_level": 486, + "new_ttrating": 1350, + "newi_rating": 2043, + "old_cpi": 83.14618, + "old_license_level": 20, + "old_sub_level": 424, + "old_ttrating": 1350, + "oldi_rating": 2029, + "opt_laps_complete": 0, + "position": 0, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 12, + "starting_position_in_class": 12, + "suit": { + "pattern": 26, + "color1": "ffffff", + "color2": "004225", + "color3": "d4af37" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 0, + "finish_position_in_class": 0, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 75, + "interval": 0, + "laps_complete": 883, + "laps_lead": 270, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 10, + "color1": "ffffff", + "color2": "0019ff", + "color3": "111111", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "7", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 0, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 12, + "starting_position_in_class": 12, + "suit": { + "pattern": 26, + "color1": "ffffff", + "color2": "004225", + "color3": "d4af37" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -402095, + "display_name": "Granateapfel RT", + "aggregate_champ_points": 129, + "ai": false, + "average_lap": 983506, + "best_lap_num": 496, + "best_lap_time": 936208, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 129, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -402095, + "cust_id": 1128144, + "display_name": "Georg Raach", + "aggregate_champ_points": 129, + "ai": false, + "average_lap": 976476, + "best_lap_num": 496, + "best_lap_time": 936208, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 129, + "class_interval": -1, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 1, + "finish_position_in_class": 1, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 43, + "color1": "ffffff", + "color2": "372a75", + "color3": "f1732e", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 16, + "interval": -1, + "laps_complete": 473, + "laps_lead": 148, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 4, + "color1": "FF0000", + "color2": "00FF00", + "color3": "0000FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "2", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 276.91815, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1294, + "newi_rating": 2896, + "old_cpi": 67.67536, + "old_license_level": 19, + "old_sub_level": 351, + "old_ttrating": 1294, + "oldi_rating": 2853, + "opt_laps_complete": 0, + "position": 1, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 11, + "starting_position_in_class": 11, + "suit": { + "pattern": 1, + "color1": "ffffff", + "color2": "372a75", + "color3": "f1732e" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -402095, + "cust_id": 1165346, + "display_name": "Finn Metzler", + "aggregate_champ_points": 129, + "ai": false, + "average_lap": 974099, + "best_lap_num": 606, + "best_lap_time": 939734, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 129, + "class_interval": -1, + "country_code": "VU", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 1, + "finish_position_in_class": 1, + "flair_id": 226, + "flair_name": "Vanuatu", + "flair_shortname": "VUT", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "372a75", + "color2": "f1732e", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 30, + "interval": -1, + "laps_complete": 406, + "laps_lead": 111, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 4, + "color1": "FF0000", + "color2": "00FF00", + "color3": "0000FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "2", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 137.59468, + "new_license_level": 16, + "new_sub_level": 499, + "new_ttrating": 1265, + "newi_rating": 1943, + "old_cpi": 28.337646, + "old_license_level": 14, + "old_sub_level": 232, + "old_ttrating": 1265, + "oldi_rating": 1907, + "opt_laps_complete": 0, + "position": 1, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 11, + "starting_position_in_class": 11, + "suit": { + "pattern": 1, + "color1": "ffffff", + "color2": "372a75", + "color3": "f1732e" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 1, + "finish_position_in_class": 1, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 46, + "interval": -1, + "laps_complete": 879, + "laps_lead": 261, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 4, + "color1": "FF0000", + "color2": "00FF00", + "color3": "0000FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "2", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 1, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 11, + "starting_position_in_class": 11, + "suit": { + "pattern": 1, + "color1": "ffffff", + "color2": "372a75", + "color3": "f1732e" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -385527, + "display_name": "EHR Blue", + "aggregate_champ_points": 118, + "ai": false, + "average_lap": 985069, + "best_lap_num": 654, + "best_lap_time": 938935, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 118, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -385527, + "cust_id": 1126675, + "display_name": "Jack Reed", + "aggregate_champ_points": 118, + "ai": false, + "average_lap": 968399, + "best_lap_num": 654, + "best_lap_time": 938935, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 118, + "class_interval": -1, + "country_code": "ENG", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 2, + "finish_position_in_class": 2, + "flair_id": 236, + "flair_name": "England", + "flair_shortname": "ENG", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "383838", + "color2": "ffffff", + "color3": "2885ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 18, + "interval": -1, + "laps_complete": 352, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 14, + "number_color1": "ffffff", + "number_color2": "cba7f4", + "number_color3": "352e74", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "808", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 163.46672, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1085, + "newi_rating": 2895, + "old_cpi": 60.085476, + "old_license_level": 19, + "old_sub_level": 333, + "old_ttrating": 1085, + "oldi_rating": 2871, + "opt_laps_complete": 0, + "position": 2, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 3, + "starting_position_in_class": 3, + "suit": { + "pattern": 13, + "color1": "352e74", + "color2": "4C99D3", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -385527, + "cust_id": 289709, + "display_name": "Greyson Oppermann", + "aggregate_champ_points": 118, + "ai": false, + "average_lap": 979322, + "best_lap_num": 424, + "best_lap_time": 939079, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 118, + "class_interval": -1, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 2, + "finish_position_in_class": 2, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 15, + "color1": "ffffff", + "color2": "ffffff", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 25, + "interval": -1, + "laps_complete": 335, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 14, + "number_color1": "ffffff", + "number_color2": "cba7f4", + "number_color3": "352e74", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "808", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 121.81984, + "new_license_level": 12, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2415, + "old_cpi": 28.188484, + "old_license_level": 10, + "old_sub_level": 290, + "old_ttrating": 1350, + "oldi_rating": 2392, + "opt_laps_complete": 0, + "position": 2, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 3, + "starting_position_in_class": 3, + "suit": { + "pattern": 13, + "color1": "352e74", + "color2": "4C99D3", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -385527, + "cust_id": 1021414, + "display_name": "Linus Wise", + "aggregate_champ_points": 118, + "ai": false, + "average_lap": 971852, + "best_lap_num": 525, + "best_lap_time": 943240, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 118, + "class_interval": -1, + "country_code": "US", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 2, + "finish_position_in_class": 2, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 20, + "color1": "ff0000", + "color2": "1200ff", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 7, + "interval": -1, + "laps_complete": 107, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 14, + "number_color1": "ffffff", + "number_color2": "cba7f4", + "number_color3": "352e74", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "808", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 80.80387, + "new_license_level": 19, + "new_sub_level": 378, + "new_ttrating": 1350, + "newi_rating": 2087, + "old_cpi": 35.06846, + "old_license_level": 17, + "old_sub_level": 165, + "old_ttrating": 1350, + "oldi_rating": 2080, + "opt_laps_complete": 0, + "position": 2, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 3, + "starting_position_in_class": 3, + "suit": { + "pattern": 13, + "color1": "352e74", + "color2": "4C99D3", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -385527, + "cust_id": 611015, + "display_name": "Aaron Knight2", + "aggregate_champ_points": 118, + "ai": false, + "average_lap": 976704, + "best_lap_num": 45, + "best_lap_time": 946215, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 118, + "class_interval": -1, + "country_code": "GO", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 2, + "finish_position_in_class": 2, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "helmet": { + "pattern": 60, + "color1": "0afc05", + "color2": "121212", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 7, + "interval": -1, + "laps_complete": 84, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 14, + "number_color1": "ffffff", + "number_color2": "cba7f4", + "number_color3": "352e74", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "808", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 45.631496, + "new_license_level": 15, + "new_sub_level": 348, + "new_ttrating": 1350, + "newi_rating": 2184, + "old_cpi": 28.325111, + "old_license_level": 14, + "old_sub_level": 232, + "old_ttrating": 1350, + "oldi_rating": 2178, + "opt_laps_complete": 0, + "position": 2, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 3, + "starting_position_in_class": 3, + "suit": { + "pattern": 13, + "color1": "352e74", + "color2": "4C99D3", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 2, + "finish_position_in_class": 2, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 57, + "interval": -1, + "laps_complete": 878, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 14, + "number_color1": "ffffff", + "number_color2": "cba7f4", + "number_color3": "352e74", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "808", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 2, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 3, + "starting_position_in_class": 3, + "suit": { + "pattern": 13, + "color1": "352e74", + "color2": "4C99D3", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -307068, + "display_name": "Azz Tech Racing - 390", + "aggregate_champ_points": 107, + "ai": false, + "average_lap": 987296, + "best_lap_num": 600, + "best_lap_time": 936353, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 107, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -307068, + "cust_id": 846950, + "display_name": "Matthew Cheverton", + "aggregate_champ_points": 107, + "ai": false, + "average_lap": 974631, + "best_lap_num": 185, + "best_lap_time": 940898, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 107, + "class_interval": -1, + "country_code": "GB", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 3, + "finish_position_in_class": 3, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 8, + "color1": "ff0000", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 9, + "interval": -1, + "laps_complete": 279, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 17, + "color1": "ff0000", + "color2": "ffffff", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "ffffff", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "390", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 208.88257, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 3137, + "old_cpi": 75.065544, + "old_license_level": 19, + "old_sub_level": 367, + "old_ttrating": 1350, + "oldi_rating": 3121, + "opt_laps_complete": 0, + "position": 3, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 9, + "starting_position_in_class": 9, + "suit": { + "pattern": 33, + "color1": "f00000", + "color2": "faff00", + "color3": "9b9b9b" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -307068, + "cust_id": 996524, + "display_name": "Gabriel Papaconstantinou", + "aggregate_champ_points": 107, + "ai": false, + "average_lap": 992047, + "best_lap_num": 270, + "best_lap_time": 938007, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 107, + "class_interval": -1, + "country_code": "GB", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 3, + "finish_position_in_class": 3, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "bcf7e2", + "color2": "000000", + "color3": "0012ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 10, + "interval": -1, + "laps_complete": 243, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 17, + "color1": "ff0000", + "color2": "ffffff", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "ffffff", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "390", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 169.81465, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 1722, + "old_cpi": 48.918552, + "old_license_level": 18, + "old_sub_level": 259, + "old_ttrating": 1350, + "oldi_rating": 1708, + "opt_laps_complete": 0, + "position": 3, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 9, + "starting_position_in_class": 9, + "suit": { + "pattern": 33, + "color1": "f00000", + "color2": "faff00", + "color3": "9b9b9b" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -307068, + "cust_id": 361745, + "display_name": "Jake Pitt", + "aggregate_champ_points": 107, + "ai": false, + "average_lap": 972125, + "best_lap_num": 600, + "best_lap_time": 936353, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 107, + "class_interval": -1, + "country_code": "WLS", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 3, + "finish_position_in_class": 3, + "flair_id": 238, + "flair_name": "Wales", + "flair_shortname": "WLS", + "friend": false, + "helmet": { + "pattern": 68, + "color1": "b38703", + "color2": "ff0000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 13, + "interval": -1, + "laps_complete": 191, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 17, + "color1": "ff0000", + "color2": "ffffff", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "ffffff", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "390", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 118.637, + "new_license_level": 20, + "new_sub_level": 478, + "new_ttrating": 1350, + "newi_rating": 2709, + "old_cpi": 53.686394, + "old_license_level": 18, + "old_sub_level": 273, + "old_ttrating": 1350, + "oldi_rating": 2698, + "opt_laps_complete": 0, + "position": 3, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 9, + "starting_position_in_class": 9, + "suit": { + "pattern": 33, + "color1": "f00000", + "color2": "faff00", + "color3": "9b9b9b" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -307068, + "cust_id": 953940, + "display_name": "Alejandro Ulate Alfaro", + "aggregate_champ_points": 107, + "ai": false, + "average_lap": 979383, + "best_lap_num": 349, + "best_lap_time": 943167, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 107, + "class_interval": -1, + "country_code": "CR", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 3, + "finish_position_in_class": 3, + "flair_id": 51, + "flair_name": "Costa Rica", + "flair_shortname": "CRI", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "3d3d3d", + "color2": "000000", + "color3": "f46a29", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 10, + "interval": -1, + "laps_complete": 163, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 17, + "color1": "ff0000", + "color2": "ffffff", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "ffffff", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "390", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 102.35704, + "new_license_level": 20, + "new_sub_level": 456, + "new_ttrating": 1350, + "newi_rating": 2050, + "old_cpi": 58.770905, + "old_license_level": 19, + "old_sub_level": 330, + "old_ttrating": 1350, + "oldi_rating": 2041, + "opt_laps_complete": 0, + "position": 3, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 9, + "starting_position_in_class": 9, + "suit": { + "pattern": 33, + "color1": "f00000", + "color2": "faff00", + "color3": "9b9b9b" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 3, + "finish_position_in_class": 3, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 42, + "interval": -1, + "laps_complete": 876, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 17, + "color1": "ff0000", + "color2": "ffffff", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "ffffff", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "390", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 3, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 9, + "starting_position_in_class": 9, + "suit": { + "pattern": 33, + "color1": "f00000", + "color2": "faff00", + "color3": "9b9b9b" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -300070, + "display_name": "Tabula Rasa eSports 901", + "aggregate_champ_points": 96, + "ai": false, + "average_lap": 990756, + "best_lap_num": 544, + "best_lap_time": 936837, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 96, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -300070, + "cust_id": 164594, + "display_name": "Taylor Strawbridge", + "aggregate_champ_points": 96, + "ai": false, + "average_lap": 978387, + "best_lap_num": 320, + "best_lap_time": 945466, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 96, + "class_interval": -1, + "country_code": "CA", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 4, + "finish_position_in_class": 4, + "flair_id": 39, + "flair_name": "Canada", + "flair_shortname": "CAN", + "friend": false, + "helmet": { + "pattern": 45, + "color1": "2d2d2d", + "color2": "8000ff", + "color3": "fe00ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 9, + "interval": -1, + "laps_complete": 224, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 16, + "color1": "000000", + "color2": "ed2129", + "color3": "001ee3", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "901", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 219.1369, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 1873, + "old_cpi": 156.40717, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 1864, + "opt_laps_complete": 0, + "position": 4, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 13, + "starting_position_in_class": 13, + "suit": { + "pattern": 35, + "color1": "000000", + "color2": "fb0000", + "color3": "0030ff" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -300070, + "cust_id": 635328, + "display_name": "Clarke January", + "aggregate_champ_points": 96, + "ai": false, + "average_lap": 969940, + "best_lap_num": 212, + "best_lap_time": 942485, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 96, + "class_interval": -1, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 4, + "finish_position_in_class": 4, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 3, + "color1": "000000", + "color2": "ffffff", + "color3": "489aef", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 8, + "interval": -1, + "laps_complete": 222, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 16, + "color1": "000000", + "color2": "ed2129", + "color3": "001ee3", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "901", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 160.35382, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1345, + "newi_rating": 2415, + "old_cpi": 90.475494, + "old_license_level": 20, + "old_sub_level": 437, + "old_ttrating": 1345, + "oldi_rating": 2405, + "opt_laps_complete": 0, + "position": 4, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 13, + "starting_position_in_class": 13, + "suit": { + "pattern": 35, + "color1": "000000", + "color2": "fb0000", + "color3": "0030ff" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -300070, + "cust_id": 641758, + "display_name": "Adam NS Jones", + "aggregate_champ_points": 96, + "ai": false, + "average_lap": 1005455, + "best_lap_num": 18, + "best_lap_time": 943795, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 96, + "class_interval": -1, + "country_code": "GB", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 4, + "finish_position_in_class": 4, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 56, + "color1": "ffffff", + "color2": "ee3442", + "color3": "447ac0", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 17, + "interval": -1, + "laps_complete": 220, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 16, + "color1": "000000", + "color2": "ed2129", + "color3": "001ee3", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "901", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 117.47467, + "new_license_level": 20, + "new_sub_level": 477, + "new_ttrating": 1350, + "newi_rating": 2049, + "old_cpi": 54.51905, + "old_license_level": 18, + "old_sub_level": 275, + "old_ttrating": 1350, + "oldi_rating": 2039, + "opt_laps_complete": 0, + "position": 4, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 13, + "starting_position_in_class": 13, + "suit": { + "pattern": 35, + "color1": "000000", + "color2": "fb0000", + "color3": "0030ff" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -300070, + "cust_id": 451212, + "display_name": "Christian Bryant Hill", + "aggregate_champ_points": 96, + "ai": false, + "average_lap": 970996, + "best_lap_num": 544, + "best_lap_time": 936837, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 96, + "class_interval": -1, + "country_code": "US", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 4, + "finish_position_in_class": 4, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 43, + "color1": "002855", + "color2": "ffffff", + "color3": "84754e", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 20, + "interval": -1, + "laps_complete": 207, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 16, + "color1": "000000", + "color2": "ed2129", + "color3": "001ee3", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "901", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 105.671295, + "new_license_level": 20, + "new_sub_level": 461, + "new_ttrating": 1350, + "newi_rating": 3231, + "old_cpi": 87.057236, + "old_license_level": 20, + "old_sub_level": 431, + "old_ttrating": 1350, + "oldi_rating": 3222, + "opt_laps_complete": 0, + "position": 4, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 13, + "starting_position_in_class": 13, + "suit": { + "pattern": 35, + "color1": "000000", + "color2": "fb0000", + "color3": "0030ff" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 4, + "finish_position_in_class": 4, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 54, + "interval": -1, + "laps_complete": 873, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 16, + "color1": "000000", + "color2": "ed2129", + "color3": "001ee3", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "901", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 4, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 13, + "starting_position_in_class": 13, + "suit": { + "pattern": 35, + "color1": "000000", + "color2": "fb0000", + "color3": "0030ff" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -303706, + "display_name": "Savage Sim Racing - Team 80HD", + "aggregate_champ_points": 86, + "ai": false, + "average_lap": 996107, + "best_lap_num": 126, + "best_lap_time": 937014, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 86, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -303706, + "cust_id": 912397, + "display_name": "Clayton Sanchez2", + "aggregate_champ_points": 86, + "ai": false, + "average_lap": 969412, + "best_lap_num": 592, + "best_lap_time": 938936, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 86, + "class_interval": -1, + "country_code": "US", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 5, + "finish_position_in_class": 5, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "320159", + "color2": "9705fc", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 196, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 22, + "color1": "000000", + "color2": "01ffff", + "color3": "a30dbe", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 239, + "sponsor2": 240, + "car_number": "66", + "wheel_color": "767676", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 267.99796, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2906, + "old_cpi": 126.12498, + "old_license_level": 20, + "old_sub_level": 488, + "old_ttrating": 1350, + "oldi_rating": 2901, + "opt_laps_complete": 0, + "position": 5, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 5, + "starting_position_in_class": 5, + "suit": { + "pattern": 28, + "color1": "434343", + "color2": "fbfbfb", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -303706, + "cust_id": 871012, + "display_name": "Ian Miller10", + "aggregate_champ_points": 86, + "ai": false, + "average_lap": 991773, + "best_lap_num": 126, + "best_lap_time": 937014, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 86, + "class_interval": -1, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 5, + "finish_position_in_class": 5, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 9, + "color1": "ff0000", + "color2": "8000ff", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 2, + "interval": -1, + "laps_complete": 185, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 22, + "color1": "000000", + "color2": "01ffff", + "color3": "a30dbe", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 239, + "sponsor2": 240, + "car_number": "66", + "wheel_color": "767676", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 257.09753, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2339, + "old_cpi": 137.9408, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 2334, + "opt_laps_complete": 0, + "position": 5, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 5, + "starting_position_in_class": 5, + "suit": { + "pattern": 28, + "color1": "434343", + "color2": "fbfbfb", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -303706, + "cust_id": 788684, + "display_name": "Nate Halastik", + "aggregate_champ_points": 86, + "ai": false, + "average_lap": 1017825, + "best_lap_num": 293, + "best_lap_time": 945898, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 86, + "class_interval": -1, + "country_code": "CZ", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 5, + "finish_position_in_class": 5, + "flair_id": 54, + "flair_name": "Czechia", + "flair_shortname": "CZE", + "friend": false, + "helmet": { + "pattern": 44, + "color1": "000000", + "color2": "01ffff", + "color3": "a30dbe", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 13, + "interval": -1, + "laps_complete": 167, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 22, + "color1": "000000", + "color2": "01ffff", + "color3": "a30dbe", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 239, + "sponsor2": 240, + "car_number": "66", + "wheel_color": "767676", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 84.42449, + "new_license_level": 19, + "new_sub_level": 385, + "new_ttrating": 1350, + "newi_rating": 2003, + "old_cpi": 36.808407, + "old_license_level": 18, + "old_sub_level": 216, + "old_ttrating": 1350, + "oldi_rating": 1999, + "opt_laps_complete": 0, + "position": 5, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 5, + "starting_position_in_class": 5, + "suit": { + "pattern": 28, + "color1": "434343", + "color2": "fbfbfb", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -303706, + "cust_id": 683317, + "display_name": "Parker Clardy", + "aggregate_champ_points": 86, + "ai": false, + "average_lap": 974879, + "best_lap_num": 754, + "best_lap_time": 945403, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 86, + "class_interval": -1, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 5, + "finish_position_in_class": 5, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 54, + "color1": "ff0000", + "color2": "ffe500", + "color3": "484849", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 25, + "interval": -1, + "laps_complete": 163, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 22, + "color1": "000000", + "color2": "01ffff", + "color3": "a30dbe", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 239, + "sponsor2": 240, + "car_number": "66", + "wheel_color": "767676", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 58.683918, + "new_license_level": 18, + "new_sub_level": 286, + "new_ttrating": 1350, + "newi_rating": 2302, + "old_cpi": 34.697445, + "old_license_level": 18, + "old_sub_level": 207, + "old_ttrating": 1350, + "oldi_rating": 2298, + "opt_laps_complete": 0, + "position": 5, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 5, + "starting_position_in_class": 5, + "suit": { + "pattern": 28, + "color1": "434343", + "color2": "fbfbfb", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -303706, + "cust_id": 38029, + "display_name": "Richard Swiderski", + "aggregate_champ_points": 86, + "ai": false, + "average_lap": 975832, + "best_lap_num": 181, + "best_lap_time": 946192, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 86, + "class_interval": -1, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 5, + "finish_position_in_class": 5, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 50, + "color1": "4e0c56", + "color2": "0921f5", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 13, + "interval": -1, + "laps_complete": 157, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 22, + "color1": "000000", + "color2": "01ffff", + "color3": "a30dbe", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 239, + "sponsor2": 240, + "car_number": "66", + "wheel_color": "767676", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 126.51591, + "new_license_level": 20, + "new_sub_level": 488, + "new_ttrating": 1350, + "newi_rating": 2290, + "old_cpi": 112.80723, + "old_license_level": 20, + "old_sub_level": 471, + "old_ttrating": 1350, + "oldi_rating": 2286, + "opt_laps_complete": 0, + "position": 5, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 5, + "starting_position_in_class": 5, + "suit": { + "pattern": 28, + "color1": "434343", + "color2": "fbfbfb", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 5, + "finish_position_in_class": 5, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 53, + "interval": -1, + "laps_complete": 868, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 22, + "color1": "000000", + "color2": "01ffff", + "color3": "a30dbe", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 239, + "sponsor2": 240, + "car_number": "66", + "wheel_color": "767676", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 5, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 5, + "starting_position_in_class": 5, + "suit": { + "pattern": 28, + "color1": "434343", + "color2": "fbfbfb", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -346577, + "display_name": "Motorsports Factory YELLOW", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 1001714, + "best_lap_num": 645, + "best_lap_time": 937891, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 168, + "car_name": "Cadillac V-Series.R GTP", + "carcfg": -1, + "champ_points": 75, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -346577, + "cust_id": 945525, + "display_name": "Benjamin Voigt", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 999123, + "best_lap_num": 645, + "best_lap_time": 937891, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 168, + "car_name": "Cadillac V-Series.R GTP", + "carcfg": -1, + "champ_points": 75, + "class_interval": -1, + "country_code": "DE", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 6, + "finish_position_in_class": 6, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 39, + "color1": "ff0000", + "color2": "000000", + "color3": "ff0000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 41, + "interval": -1, + "laps_complete": 388, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 168, + "pattern": 21, + "color1": "172b21", + "color2": "57f97a", + "color3": "e8f9f0", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 139, + "sponsor2": 2, + "car_number": "194", + "wheel_color": "0a0f0a", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 108.77311, + "new_license_level": 20, + "new_sub_level": 465, + "new_ttrating": 1350, + "newi_rating": 1914, + "old_cpi": 75.879616, + "old_license_level": 19, + "old_sub_level": 369, + "old_ttrating": 1350, + "oldi_rating": 1909, + "opt_laps_complete": 0, + "position": 6, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 8, + "starting_position_in_class": 8, + "suit": { + "pattern": 32, + "color1": "172b21", + "color2": "e8f9f0", + "color3": "57f97a" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -346577, + "cust_id": 824375, + "display_name": "Marco Cherdron", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 972851, + "best_lap_num": 326, + "best_lap_time": 942727, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 168, + "car_name": "Cadillac V-Series.R GTP", + "carcfg": -1, + "champ_points": 75, + "class_interval": -1, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 6, + "finish_position_in_class": 6, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 60, + "color1": "d7162d", + "color2": "ffffff", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 6, + "interval": -1, + "laps_complete": 167, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 168, + "pattern": 21, + "color1": "172b21", + "color2": "57f97a", + "color3": "e8f9f0", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 139, + "sponsor2": 2, + "car_number": "194", + "wheel_color": "0a0f0a", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 133.82549, + "new_license_level": 20, + "new_sub_level": 497, + "new_ttrating": 1350, + "newi_rating": 2813, + "old_cpi": 84.033134, + "old_license_level": 20, + "old_sub_level": 425, + "old_ttrating": 1350, + "oldi_rating": 2811, + "opt_laps_complete": 0, + "position": 6, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 8, + "starting_position_in_class": 8, + "suit": { + "pattern": 32, + "color1": "172b21", + "color2": "e8f9f0", + "color3": "57f97a" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -346577, + "cust_id": 600472, + "display_name": "Niklas Ude", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 996812, + "best_lap_num": 683, + "best_lap_time": 941270, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 168, + "car_name": "Cadillac V-Series.R GTP", + "carcfg": -1, + "champ_points": 75, + "class_interval": -1, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 6, + "finish_position_in_class": 6, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 56, + "color1": "52944d", + "color2": "d2d2d2", + "color3": "5b6a32", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 20, + "interval": -1, + "laps_complete": 165, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 168, + "pattern": 21, + "color1": "172b21", + "color2": "57f97a", + "color3": "e8f9f0", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 139, + "sponsor2": 2, + "car_number": "194", + "wheel_color": "0a0f0a", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 91.08547, + "new_license_level": 20, + "new_sub_level": 438, + "new_ttrating": 1350, + "newi_rating": 2605, + "old_cpi": 85.72911, + "old_license_level": 20, + "old_sub_level": 429, + "old_ttrating": 1350, + "oldi_rating": 2603, + "opt_laps_complete": 0, + "position": 6, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 8, + "starting_position_in_class": 8, + "suit": { + "pattern": 32, + "color1": "172b21", + "color2": "e8f9f0", + "color3": "57f97a" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -346577, + "cust_id": 1157826, + "display_name": "Sven Cherdron", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 975465, + "best_lap_num": 556, + "best_lap_time": 942991, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 168, + "car_name": "Cadillac V-Series.R GTP", + "carcfg": -1, + "champ_points": 75, + "class_interval": -1, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 6, + "finish_position_in_class": 6, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "ffffff", + "color2": "52b5f6", + "color3": "52b5f6", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 6, + "interval": -1, + "laps_complete": 140, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 168, + "pattern": 21, + "color1": "172b21", + "color2": "57f97a", + "color3": "e8f9f0", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 139, + "sponsor2": 2, + "car_number": "194", + "wheel_color": "0a0f0a", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 83.77542, + "new_license_level": 19, + "new_sub_level": 384, + "new_ttrating": 1350, + "newi_rating": 2246, + "old_cpi": 33.8601, + "old_license_level": 18, + "old_sub_level": 203, + "old_ttrating": 1350, + "oldi_rating": 2244, + "opt_laps_complete": 0, + "position": 6, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 8, + "starting_position_in_class": 8, + "suit": { + "pattern": 32, + "color1": "172b21", + "color2": "e8f9f0", + "color3": "57f97a" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 6, + "finish_position_in_class": 6, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 73, + "interval": -1, + "laps_complete": 860, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 168, + "pattern": 21, + "color1": "172b21", + "color2": "57f97a", + "color3": "e8f9f0", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 139, + "sponsor2": 2, + "car_number": "194", + "wheel_color": "0a0f0a", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 6, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 8, + "starting_position_in_class": 8, + "suit": { + "pattern": 32, + "color1": "172b21", + "color2": "e8f9f0", + "color3": "57f97a" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -298033, + "display_name": "Piki SCT", + "aggregate_champ_points": 64, + "ai": false, + "average_lap": 1007992, + "best_lap_num": 491, + "best_lap_time": 939188, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 64, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -298033, + "cust_id": 635842, + "display_name": "Rolf Olmo", + "aggregate_champ_points": 64, + "ai": false, + "average_lap": 975559, + "best_lap_num": 491, + "best_lap_time": 939188, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 64, + "class_interval": -1, + "country_code": "DE", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 7, + "finish_position_in_class": 7, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 12, + "color1": "6589f4", + "color2": "c91919", + "color3": "f5ff7d", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 29, + "interval": -1, + "laps_complete": 224, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 7, + "color1": "6589F4", + "color2": "C91919", + "color3": "F5FF7D", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "5", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 84.67596, + "new_license_level": 19, + "new_sub_level": 385, + "new_ttrating": 1350, + "newi_rating": 2993, + "old_cpi": 68.22165, + "old_license_level": 19, + "old_sub_level": 353, + "old_ttrating": 1350, + "oldi_rating": 2995, + "opt_laps_complete": 0, + "position": 7, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 6, + "starting_position_in_class": 6, + "suit": { + "pattern": 10, + "color1": "5dddc2", + "color2": "19d137", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -298033, + "cust_id": 733468, + "display_name": "Adrià Navarro", + "aggregate_champ_points": 64, + "ai": false, + "average_lap": 1021278, + "best_lap_num": 691, + "best_lap_time": 943125, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 64, + "class_interval": -1, + "country_code": "ES", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 7, + "finish_position_in_class": 7, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "ffee47", + "color2": "0300c2", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 16, + "interval": -1, + "laps_complete": 223, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 7, + "color1": "6589F4", + "color2": "C91919", + "color3": "F5FF7D", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "5", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 102.440506, + "new_license_level": 20, + "new_sub_level": 456, + "new_ttrating": 1350, + "newi_rating": 2074, + "old_cpi": 51.119064, + "old_license_level": 19, + "old_sub_level": 309, + "old_ttrating": 1350, + "oldi_rating": 2076, + "opt_laps_complete": 0, + "position": 7, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 6, + "starting_position_in_class": 6, + "suit": { + "pattern": 10, + "color1": "5dddc2", + "color2": "19d137", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -298033, + "cust_id": 384294, + "display_name": "Sergio Gomez Redondo", + "aggregate_champ_points": 64, + "ai": false, + "average_lap": 988534, + "best_lap_num": 134, + "best_lap_time": 946718, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 64, + "class_interval": -1, + "country_code": "ES", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 7, + "finish_position_in_class": 7, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 26, + "color1": "ea1a1a", + "color2": "000000", + "color3": "ff0000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 17, + "interval": -1, + "laps_complete": 213, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 7, + "color1": "6589F4", + "color2": "C91919", + "color3": "F5FF7D", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "5", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 149.52426, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2026, + "old_cpi": 146.89369, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 2027, + "opt_laps_complete": 0, + "position": 7, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 6, + "starting_position_in_class": 6, + "suit": { + "pattern": 10, + "color1": "5dddc2", + "color2": "19d137", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -298033, + "cust_id": 1094388, + "display_name": "David Orgaz", + "aggregate_champ_points": 64, + "ai": false, + "average_lap": 987887, + "best_lap_num": 600, + "best_lap_time": 940536, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 64, + "class_interval": -1, + "country_code": "ES", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 7, + "finish_position_in_class": 7, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 20, + "color1": "111111", + "color2": "30b84e", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 21, + "interval": -1, + "laps_complete": 198, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 7, + "color1": "6589F4", + "color2": "C91919", + "color3": "F5FF7D", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "5", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 93.97715, + "new_license_level": 20, + "new_sub_level": 443, + "new_ttrating": 1350, + "newi_rating": 2440, + "old_cpi": 62.371994, + "old_license_level": 18, + "old_sub_level": 296, + "old_ttrating": 1350, + "oldi_rating": 2441, + "opt_laps_complete": 0, + "position": 7, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 6, + "starting_position_in_class": 6, + "suit": { + "pattern": 10, + "color1": "5dddc2", + "color2": "19d137", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 7, + "finish_position_in_class": 7, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 83, + "interval": -1, + "laps_complete": 858, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 7, + "color1": "6589F4", + "color2": "C91919", + "color3": "F5FF7D", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "5", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 7, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 6, + "starting_position_in_class": 6, + "suit": { + "pattern": 10, + "color1": "5dddc2", + "color2": "19d137", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -440173, + "display_name": "Axis Simsports Blue", + "aggregate_champ_points": 53, + "ai": false, + "average_lap": 1016964, + "best_lap_num": 140, + "best_lap_time": 943923, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 53, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -440173, + "cust_id": 416043, + "display_name": "Thomas Pugh", + "aggregate_champ_points": 53, + "ai": false, + "average_lap": 975127, + "best_lap_num": 140, + "best_lap_time": 943923, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 53, + "class_interval": -1, + "country_code": "GB", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 8, + "finish_position_in_class": 8, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 9, + "color1": "000000", + "color2": "ffffff", + "color3": "ff0000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 4, + "interval": -1, + "laps_complete": 249, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 22, + "color1": "000000", + "color2": "ffffff", + "color3": "ff0000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "3", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 205.9527, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 3916, + "old_cpi": 120.93353, + "old_license_level": 20, + "old_sub_level": 481, + "old_ttrating": 1350, + "oldi_rating": 3922, + "opt_laps_complete": 0, + "position": 8, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 10, + "starting_position_in_class": 10, + "suit": { + "pattern": 14, + "color1": "d3d3d3", + "color2": "000000", + "color3": "e70e0e" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -440173, + "cust_id": 967657, + "display_name": "Andrew Larkman3", + "aggregate_champ_points": 53, + "ai": false, + "average_lap": 1009568, + "best_lap_num": 557, + "best_lap_time": 948919, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 53, + "class_interval": -1, + "country_code": "SCT", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 8, + "finish_position_in_class": 8, + "flair_id": 237, + "flair_name": "Scotland", + "flair_shortname": "SCT", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "ffffff", + "color2": "372a75", + "color3": "f1732e", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 30, + "interval": -1, + "laps_complete": 222, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 22, + "color1": "000000", + "color2": "ffffff", + "color3": "ff0000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "3", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 77.56901, + "new_license_level": 19, + "new_sub_level": 372, + "new_ttrating": 1268, + "newi_rating": 1848, + "old_cpi": 57.908264, + "old_license_level": 19, + "old_sub_level": 328, + "old_ttrating": 1268, + "oldi_rating": 1854, + "opt_laps_complete": 0, + "position": 8, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 10, + "starting_position_in_class": 10, + "suit": { + "pattern": 14, + "color1": "d3d3d3", + "color2": "000000", + "color3": "e70e0e" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -440173, + "cust_id": 710602, + "display_name": "Austin Graf", + "aggregate_champ_points": 53, + "ai": false, + "average_lap": 988803, + "best_lap_num": 222, + "best_lap_time": 952036, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 53, + "class_interval": -1, + "country_code": "US", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 8, + "finish_position_in_class": 8, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 55, + "color1": "010643", + "color2": "ffffff", + "color3": "676870", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 13, + "interval": -1, + "laps_complete": 197, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 22, + "color1": "000000", + "color2": "ffffff", + "color3": "ff0000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "3", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 113.46475, + "new_license_level": 20, + "new_sub_level": 472, + "new_ttrating": 1350, + "newi_rating": 1943, + "old_cpi": 62.785797, + "old_license_level": 19, + "old_sub_level": 340, + "old_ttrating": 1350, + "oldi_rating": 1948, + "opt_laps_complete": 0, + "position": 8, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 10, + "starting_position_in_class": 10, + "suit": { + "pattern": 14, + "color1": "d3d3d3", + "color2": "000000", + "color3": "e70e0e" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -440173, + "cust_id": 967666, + "display_name": "David Hutcheson", + "aggregate_champ_points": 53, + "ai": false, + "average_lap": 1035623, + "best_lap_num": 412, + "best_lap_time": 948217, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 53, + "class_interval": -1, + "country_code": "SCT", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 8, + "finish_position_in_class": 8, + "flair_id": 237, + "flair_name": "Scotland", + "flair_shortname": "SCT", + "friend": false, + "helmet": { + "pattern": 2, + "color1": "018f18", + "color2": "ffffff", + "color3": "fc4c51", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 26, + "interval": -1, + "laps_complete": 182, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 22, + "color1": "000000", + "color2": "ffffff", + "color3": "ff0000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "3", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 58.00311, + "new_license_level": 15, + "new_sub_level": 385, + "new_ttrating": 1331, + "newi_rating": 2226, + "old_cpi": 27.98584, + "old_license_level": 14, + "old_sub_level": 230, + "old_ttrating": 1331, + "oldi_rating": 2231, + "opt_laps_complete": 0, + "position": 8, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 10, + "starting_position_in_class": 10, + "suit": { + "pattern": 14, + "color1": "d3d3d3", + "color2": "000000", + "color3": "e70e0e" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 8, + "finish_position_in_class": 8, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 73, + "interval": -1, + "laps_complete": 850, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 22, + "color1": "000000", + "color2": "ffffff", + "color3": "ff0000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "3", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 8, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 10, + "starting_position_in_class": 10, + "suit": { + "pattern": 14, + "color1": "d3d3d3", + "color2": "000000", + "color3": "e70e0e" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -134144, + "display_name": "BLOO Racing by VR | 040", + "aggregate_champ_points": 138, + "ai": false, + "average_lap": 1030899, + "best_lap_num": 593, + "best_lap_time": 984242, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 138, + "class_interval": 0, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -134144, + "cust_id": 390389, + "display_name": "Geordi Vermeulen", + "aggregate_champ_points": 138, + "ai": false, + "average_lap": 1020141, + "best_lap_num": 593, + "best_lap_time": 984242, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 138, + "class_interval": 0, + "country_code": "NL", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 9, + "finish_position_in_class": 0, + "flair_id": 146, + "flair_name": "Netherlands", + "flair_shortname": "NLD", + "friend": false, + "helmet": { + "pattern": 38, + "color1": "0094ff", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 7, + "interval": -1, + "laps_complete": 287, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 23, + "color1": "ffffff", + "color2": "8500ff", + "color3": "2176c0", + "number_font": 7, + "number_color1": "ffffff", + "number_color2": "0094ff", + "number_color3": "000000", + "number_slant": 1, + "sponsor1": 323, + "sponsor2": 245, + "car_number": "040", + "wheel_color": "010101", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 267.66696, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 3669, + "old_cpi": 92.9855, + "old_license_level": 19, + "old_sub_level": 399, + "old_ttrating": 1350, + "oldi_rating": 3639, + "opt_laps_complete": 0, + "position": 9, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 16, + "starting_position_in_class": 2, + "suit": { + "pattern": 33, + "color1": "000000", + "color2": "c2000b", + "color3": "0094ff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -134144, + "cust_id": 26368, + "display_name": "David Ralli", + "aggregate_champ_points": 138, + "ai": false, + "average_lap": 1022205, + "best_lap_num": 413, + "best_lap_time": 989887, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 138, + "class_interval": 0, + "country_code": "GB", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 9, + "finish_position_in_class": 0, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 30, + "color1": "1028EA", + "color2": "45e3ee", + "color3": "270000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 6, + "interval": -1, + "laps_complete": 207, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 23, + "color1": "ffffff", + "color2": "8500ff", + "color3": "2176c0", + "number_font": 7, + "number_color1": "ffffff", + "number_color2": "0094ff", + "number_color3": "000000", + "number_slant": 1, + "sponsor1": 323, + "sponsor2": 245, + "car_number": "040", + "wheel_color": "010101", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 187.03203, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2188, + "old_cpi": 57.321205, + "old_license_level": 18, + "old_sub_level": 283, + "old_ttrating": 1350, + "oldi_rating": 2166, + "opt_laps_complete": 0, + "position": 9, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 16, + "starting_position_in_class": 2, + "suit": { + "pattern": 33, + "color1": "000000", + "color2": "c2000b", + "color3": "0094ff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -134144, + "cust_id": 21533, + "display_name": "Conor Swain", + "aggregate_champ_points": 138, + "ai": false, + "average_lap": 1023842, + "best_lap_num": 733, + "best_lap_time": 990008, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 138, + "class_interval": 0, + "country_code": "IE", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 9, + "finish_position_in_class": 0, + "flair_id": 98, + "flair_name": "Ireland", + "flair_shortname": "IRL", + "friend": false, + "helmet": { + "pattern": 24, + "color1": "009a49", + "color2": "ffa500", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 4, + "interval": -1, + "laps_complete": 207, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 23, + "color1": "ffffff", + "color2": "8500ff", + "color3": "2176c0", + "number_font": 7, + "number_color1": "ffffff", + "number_color2": "0094ff", + "number_color3": "000000", + "number_slant": 1, + "sponsor1": 323, + "sponsor2": 245, + "car_number": "040", + "wheel_color": "010101", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 205.21991, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2070, + "old_cpi": 54.159092, + "old_license_level": 18, + "old_sub_level": 274, + "old_ttrating": 1350, + "oldi_rating": 2048, + "opt_laps_complete": 0, + "position": 9, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 16, + "starting_position_in_class": 2, + "suit": { + "pattern": 33, + "color1": "000000", + "color2": "c2000b", + "color3": "0094ff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -134144, + "cust_id": 565681, + "display_name": "Ivan Chambers", + "aggregate_champ_points": 138, + "ai": false, + "average_lap": 1027178, + "best_lap_num": 545, + "best_lap_time": 992097, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 138, + "class_interval": 0, + "country_code": "UA", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 9, + "finish_position_in_class": 0, + "flair_id": 220, + "flair_name": "Ukraine", + "flair_shortname": "UKR", + "friend": false, + "helmet": { + "pattern": 65, + "color1": "0002ff", + "color2": "000000", + "color3": "12ff00", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 2, + "interval": -1, + "laps_complete": 138, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 23, + "color1": "ffffff", + "color2": "8500ff", + "color3": "2176c0", + "number_font": 7, + "number_color1": "ffffff", + "number_color2": "0094ff", + "number_color3": "000000", + "number_slant": 1, + "sponsor1": 323, + "sponsor2": 245, + "car_number": "040", + "wheel_color": "010101", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 113.62682, + "new_license_level": 20, + "new_sub_level": 472, + "new_ttrating": 1350, + "newi_rating": 1904, + "old_cpi": 59.518505, + "old_license_level": 19, + "old_sub_level": 332, + "old_ttrating": 1350, + "oldi_rating": 1889, + "opt_laps_complete": 0, + "position": 9, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 16, + "starting_position_in_class": 2, + "suit": { + "pattern": 33, + "color1": "000000", + "color2": "c2000b", + "color3": "0094ff" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 9, + "finish_position_in_class": 0, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 19, + "interval": -1, + "laps_complete": 839, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 23, + "color1": "ffffff", + "color2": "8500ff", + "color3": "2176c0", + "number_font": 7, + "number_color1": "ffffff", + "number_color2": "0094ff", + "number_color3": "000000", + "number_slant": 1, + "sponsor1": 323, + "sponsor2": 245, + "car_number": "040", + "wheel_color": "010101", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 9, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 16, + "starting_position_in_class": 2, + "suit": { + "pattern": 33, + "color1": "000000", + "color2": "c2000b", + "color3": "0094ff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -53704, + "display_name": "LITHIUM Motorsports", + "aggregate_champ_points": 125, + "ai": false, + "average_lap": 1032396, + "best_lap_num": 543, + "best_lap_time": 985604, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 125, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -53704, + "cust_id": 284176, + "display_name": "Martin Birmele", + "aggregate_champ_points": 125, + "ai": false, + "average_lap": 1031446, + "best_lap_num": 638, + "best_lap_time": 992256, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 125, + "class_interval": -1, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 10, + "finish_position_in_class": 1, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 42, + "color1": "ffffff", + "color2": "00154c", + "color3": "710098", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 10, + "interval": -1, + "laps_complete": 217, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 0, + "color1": "2c2c2c", + "color2": "000000", + "color3": "484848", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "15", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 142.29805, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2430, + "old_cpi": 67.85994, + "old_license_level": 19, + "old_sub_level": 352, + "old_ttrating": 1350, + "oldi_rating": 2411, + "opt_laps_complete": 0, + "position": 10, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 19, + "starting_position_in_class": 5, + "suit": { + "pattern": 3, + "color1": "104C5F", + "color2": "FFFFFF", + "color3": "F0B100" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -53704, + "cust_id": 224720, + "display_name": "Stefan Lupperger", + "aggregate_champ_points": 125, + "ai": false, + "average_lap": 1020522, + "best_lap_num": 543, + "best_lap_time": 985604, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 125, + "class_interval": -1, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 10, + "finish_position_in_class": 1, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "c0ff00", + "color2": "000000", + "color3": "141414", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 14, + "interval": -1, + "laps_complete": 216, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 0, + "color1": "2c2c2c", + "color2": "000000", + "color3": "484848", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "15", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 131.6409, + "new_license_level": 20, + "new_sub_level": 494, + "new_ttrating": 1350, + "newi_rating": 2443, + "old_cpi": 33.84661, + "old_license_level": 17, + "old_sub_level": 159, + "old_ttrating": 1350, + "oldi_rating": 2423, + "opt_laps_complete": 0, + "position": 10, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 19, + "starting_position_in_class": 5, + "suit": { + "pattern": 3, + "color1": "104C5F", + "color2": "FFFFFF", + "color3": "F0B100" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -53704, + "cust_id": 639803, + "display_name": "Alexander Secher", + "aggregate_champ_points": 125, + "ai": false, + "average_lap": 1020934, + "best_lap_num": 209, + "best_lap_time": 985964, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 125, + "class_interval": -1, + "country_code": "DK", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 10, + "finish_position_in_class": 1, + "flair_id": 56, + "flair_name": "Denmark", + "flair_shortname": "DNK", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "ffffff", + "color2": "ff0505", + "color3": "6d6d6d", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 23, + "interval": -1, + "laps_complete": 213, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 0, + "color1": "2c2c2c", + "color2": "000000", + "color3": "484848", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "15", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 100.56424, + "new_license_level": 20, + "new_sub_level": 453, + "new_ttrating": 1350, + "newi_rating": 2336, + "old_cpi": 78.96949, + "old_license_level": 19, + "old_sub_level": 375, + "old_ttrating": 1350, + "oldi_rating": 2316, + "opt_laps_complete": 0, + "position": 10, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 19, + "starting_position_in_class": 5, + "suit": { + "pattern": 3, + "color1": "104C5F", + "color2": "FFFFFF", + "color3": "F0B100" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -53704, + "cust_id": 59268, + "display_name": "Danni Fugl", + "aggregate_champ_points": 125, + "ai": false, + "average_lap": 1026231, + "best_lap_num": 251, + "best_lap_time": 992038, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 125, + "class_interval": -1, + "country_code": "DK", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 10, + "finish_position_in_class": 1, + "flair_id": 56, + "flair_name": "Denmark", + "flair_shortname": "DNK", + "friend": false, + "helmet": { + "pattern": 42, + "color1": "ffffff", + "color2": "a30000", + "color3": "003b72", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 4, + "interval": -1, + "laps_complete": 192, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 0, + "color1": "2c2c2c", + "color2": "000000", + "color3": "484848", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "15", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 192.06525, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2143, + "old_cpi": 106.53169, + "old_license_level": 20, + "old_sub_level": 462, + "old_ttrating": 1350, + "oldi_rating": 2125, + "opt_laps_complete": 0, + "position": 10, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 19, + "starting_position_in_class": 5, + "suit": { + "pattern": 3, + "color1": "104C5F", + "color2": "FFFFFF", + "color3": "F0B100" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 10, + "finish_position_in_class": 1, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 51, + "interval": -1, + "laps_complete": 838, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 0, + "color1": "2c2c2c", + "color2": "000000", + "color3": "484848", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "15", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 10, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 19, + "starting_position_in_class": 5, + "suit": { + "pattern": 3, + "color1": "104C5F", + "color2": "FFFFFF", + "color3": "F0B100" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -188879, + "display_name": "Wildfire Racing Dragon", + "aggregate_champ_points": 112, + "ai": false, + "average_lap": 1036669, + "best_lap_num": 432, + "best_lap_time": 988307, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 112, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -188879, + "cust_id": 430711, + "display_name": "Freerk Smit", + "aggregate_champ_points": 112, + "ai": false, + "average_lap": 1019960, + "best_lap_num": 626, + "best_lap_time": 989307, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 112, + "class_interval": -1, + "country_code": "NL", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 11, + "finish_position_in_class": 2, + "flair_id": 146, + "flair_name": "Netherlands", + "flair_shortname": "NLD", + "friend": false, + "helmet": { + "pattern": 47, + "color1": "000000", + "color2": "ffffff", + "color3": "7d0cd9", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 17, + "interval": -1, + "laps_complete": 264, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 1, + "color1": "0db700", + "color2": "ffffff", + "color3": "000000", + "number_font": 16, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "129", + "wheel_color": "929292", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 144.72728, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2614, + "old_cpi": 81.29987, + "old_license_level": 19, + "old_sub_level": 379, + "old_ttrating": 1350, + "oldi_rating": 2595, + "opt_laps_complete": 0, + "position": 11, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 22, + "starting_position_in_class": 8, + "suit": { + "pattern": 20, + "color1": "000000", + "color2": "06ff00", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -188879, + "cust_id": 604033, + "display_name": "Byron Coetzer", + "aggregate_champ_points": 112, + "ai": false, + "average_lap": 1018664, + "best_lap_num": 432, + "best_lap_time": 988307, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 112, + "class_interval": -1, + "country_code": "ZA", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 11, + "finish_position_in_class": 2, + "flair_id": 195, + "flair_name": "South Africa", + "flair_shortname": "ZAF", + "friend": false, + "helmet": { + "pattern": 56, + "color1": "a6ff00", + "color2": "daff00", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 19, + "interval": -1, + "laps_complete": 259, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 1, + "color1": "0db700", + "color2": "ffffff", + "color3": "000000", + "number_font": 16, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "129", + "wheel_color": "929292", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 123.092766, + "new_license_level": 20, + "new_sub_level": 484, + "new_ttrating": 1350, + "newi_rating": 2371, + "old_cpi": 83.90884, + "old_license_level": 20, + "old_sub_level": 425, + "old_ttrating": 1350, + "oldi_rating": 2352, + "opt_laps_complete": 0, + "position": 11, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 22, + "starting_position_in_class": 8, + "suit": { + "pattern": 20, + "color1": "000000", + "color2": "06ff00", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -188879, + "cust_id": 788035, + "display_name": "Devon Allies2", + "aggregate_champ_points": 112, + "ai": false, + "average_lap": 1022673, + "best_lap_num": 604, + "best_lap_time": 988647, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 112, + "class_interval": -1, + "country_code": "ZA", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 11, + "finish_position_in_class": 2, + "flair_id": 195, + "flair_name": "South Africa", + "flair_shortname": "ZAF", + "friend": false, + "helmet": { + "pattern": 34, + "color1": "ffffff", + "color2": "ff0909", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 17, + "interval": -1, + "laps_complete": 193, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 1, + "color1": "0db700", + "color2": "ffffff", + "color3": "000000", + "number_font": 16, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "129", + "wheel_color": "929292", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 97.231285, + "new_license_level": 20, + "new_sub_level": 448, + "new_ttrating": 1350, + "newi_rating": 2077, + "old_cpi": 48.267376, + "old_license_level": 18, + "old_sub_level": 257, + "old_ttrating": 1350, + "oldi_rating": 2063, + "opt_laps_complete": 0, + "position": 11, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 22, + "starting_position_in_class": 8, + "suit": { + "pattern": 20, + "color1": "000000", + "color2": "06ff00", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -188879, + "cust_id": 751768, + "display_name": "Sean Nisizaka Smit", + "aggregate_champ_points": 112, + "ai": false, + "average_lap": 1024089, + "best_lap_num": 91, + "best_lap_time": 988360, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 112, + "class_interval": -1, + "country_code": "AU", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 11, + "finish_position_in_class": 2, + "flair_id": 16, + "flair_name": "Australia", + "flair_shortname": "AUS", + "friend": false, + "helmet": { + "pattern": 6, + "color1": "ffffff", + "color2": "ff0000", + "color3": "0075ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 15, + "interval": -1, + "laps_complete": 118, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 1, + "color1": "0db700", + "color2": "ffffff", + "color3": "000000", + "number_font": 16, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "129", + "wheel_color": "929292", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 61.77475, + "new_license_level": 18, + "new_sub_level": 294, + "new_ttrating": 1336, + "newi_rating": 2123, + "old_cpi": 44.15168, + "old_license_level": 18, + "old_sub_level": 243, + "old_ttrating": 1336, + "oldi_rating": 2114, + "opt_laps_complete": 0, + "position": 11, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 22, + "starting_position_in_class": 8, + "suit": { + "pattern": 20, + "color1": "000000", + "color2": "06ff00", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 11, + "finish_position_in_class": 2, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 68, + "interval": -1, + "laps_complete": 834, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 1, + "color1": "0db700", + "color2": "ffffff", + "color3": "000000", + "number_font": 16, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "129", + "wheel_color": "929292", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 11, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 22, + "starting_position_in_class": 8, + "suit": { + "pattern": 20, + "color1": "000000", + "color2": "06ff00", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -479098, + "display_name": "Lightning Racing Team - #86", + "aggregate_champ_points": 100, + "ai": false, + "average_lap": 1036866, + "best_lap_num": 434, + "best_lap_time": 988298, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 100, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -479098, + "cust_id": 1133857, + "display_name": "Pierre Peytral Yagüe", + "aggregate_champ_points": 100, + "ai": false, + "average_lap": 1030442, + "best_lap_num": 434, + "best_lap_time": 988298, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 100, + "class_interval": -1, + "country_code": "FR", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 12, + "finish_position_in_class": 3, + "flair_id": 71, + "flair_name": "France", + "flair_shortname": "FRA", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "fc0706", + "color2": "111111", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 17, + "interval": -1, + "laps_complete": 346, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 12, + "color1": "ff78ff", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "43", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 189.7976, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2834, + "old_cpi": 46.85185, + "old_license_level": 18, + "old_sub_level": 252, + "old_ttrating": 1350, + "oldi_rating": 2816, + "opt_laps_complete": 0, + "position": 12, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 24, + "starting_position_in_class": 10, + "suit": { + "pattern": 21, + "color1": "f200ff", + "color2": "ffffff", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -479098, + "cust_id": 1172993, + "display_name": "Àngel García", + "aggregate_champ_points": 100, + "ai": false, + "average_lap": 1029244, + "best_lap_num": 143, + "best_lap_time": 992742, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 100, + "class_interval": -1, + "country_code": "ES", + "division": 5, + "division_name": "Division 6", + "drop_race": false, + "finish_position": 12, + "finish_position_in_class": 3, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "0a0a0a", + "color2": "0c0ce3", + "color3": "e20aff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 9, + "interval": -1, + "laps_complete": 264, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 12, + "color1": "ff78ff", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "43", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 118.58717, + "new_license_level": 16, + "new_sub_level": 499, + "new_ttrating": 1304, + "newi_rating": 1676, + "old_cpi": 36.530888, + "old_license_level": 15, + "old_sub_level": 315, + "old_ttrating": 1304, + "oldi_rating": 1662, + "opt_laps_complete": 0, + "position": 12, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 24, + "starting_position_in_class": 10, + "suit": { + "pattern": 21, + "color1": "f200ff", + "color2": "ffffff", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -479098, + "cust_id": 1168652, + "display_name": "Eric Bigas", + "aggregate_champ_points": 100, + "ai": false, + "average_lap": 1028594, + "best_lap_num": 767, + "best_lap_time": 992327, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 100, + "class_interval": -1, + "country_code": "ES", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 12, + "finish_position_in_class": 3, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "1f2892", + "color2": "7de54c", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 12, + "interval": -1, + "laps_complete": 224, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 12, + "color1": "ff78ff", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "43", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 113.96372, + "new_license_level": 16, + "new_sub_level": 499, + "new_ttrating": 1423, + "newi_rating": 2502, + "old_cpi": 33.72117, + "old_license_level": 14, + "old_sub_level": 258, + "old_ttrating": 1423, + "oldi_rating": 2490, + "opt_laps_complete": 0, + "position": 12, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 24, + "starting_position_in_class": 10, + "suit": { + "pattern": 21, + "color1": "f200ff", + "color2": "ffffff", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 12, + "finish_position_in_class": 3, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 38, + "interval": -1, + "laps_complete": 834, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 12, + "color1": "ff78ff", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "43", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 12, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 24, + "starting_position_in_class": 10, + "suit": { + "pattern": 21, + "color1": "f200ff", + "color2": "ffffff", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -310391, + "display_name": "4ORGE Lions", + "aggregate_champ_points": 87, + "ai": false, + "average_lap": 1040022, + "best_lap_num": 561, + "best_lap_time": 984025, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 87, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -310391, + "cust_id": 635525, + "display_name": "Rich Gregory", + "aggregate_champ_points": 87, + "ai": false, + "average_lap": 1012126, + "best_lap_num": 393, + "best_lap_time": 987270, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 87, + "class_interval": -1, + "country_code": "GB", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 13, + "finish_position_in_class": 4, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 45, + "color1": "ffffff", + "color2": "000000", + "color3": "ff0000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 32, + "interval": -1, + "laps_complete": 236, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 7, + "color1": "ff0000", + "color2": "ffffff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "11", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 79.90745, + "new_license_level": 19, + "new_sub_level": 377, + "new_ttrating": 1350, + "newi_rating": 2137, + "old_cpi": 61.902596, + "old_license_level": 19, + "old_sub_level": 338, + "old_ttrating": 1350, + "oldi_rating": 2129, + "opt_laps_complete": 0, + "position": 13, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 21, + "starting_position_in_class": 7, + "suit": { + "pattern": 13, + "color1": "ff0000", + "color2": "870005", + "color3": "2900ef" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -310391, + "cust_id": 1301864, + "display_name": "Carlos Sarmiento", + "aggregate_champ_points": 87, + "ai": false, + "average_lap": 1011503, + "best_lap_num": 561, + "best_lap_time": 984025, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 87, + "class_interval": -1, + "country_code": "CO", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 13, + "finish_position_in_class": 4, + "flair_id": 48, + "flair_name": "Colombia", + "flair_shortname": "COL", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "0a0a0a", + "color2": "ffc700", + "color3": "ebff00", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 15, + "interval": -1, + "laps_complete": 219, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 7, + "color1": "ff0000", + "color2": "ffffff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "11", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 111.0758, + "new_license_level": 20, + "new_sub_level": 468, + "new_ttrating": 1350, + "newi_rating": 2553, + "old_cpi": 58.55259, + "old_license_level": 19, + "old_sub_level": 330, + "old_ttrating": 1350, + "oldi_rating": 2545, + "opt_laps_complete": 0, + "position": 13, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 21, + "starting_position_in_class": 7, + "suit": { + "pattern": 13, + "color1": "ff0000", + "color2": "870005", + "color3": "2900ef" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -310391, + "cust_id": 696553, + "display_name": "Robert Snarr", + "aggregate_champ_points": 87, + "ai": false, + "average_lap": 1028324, + "best_lap_num": 513, + "best_lap_time": 988032, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 87, + "class_interval": -1, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 13, + "finish_position_in_class": 4, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 46, + "color1": "fafafa", + "color2": "ffffff", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 15, + "interval": -1, + "laps_complete": 193, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 7, + "color1": "ff0000", + "color2": "ffffff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "11", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 99.41591, + "new_license_level": 20, + "new_sub_level": 451, + "new_ttrating": 1350, + "newi_rating": 2218, + "old_cpi": 58.642387, + "old_license_level": 19, + "old_sub_level": 330, + "old_ttrating": 1350, + "oldi_rating": 2211, + "opt_laps_complete": 0, + "position": 13, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 21, + "starting_position_in_class": 7, + "suit": { + "pattern": 13, + "color1": "ff0000", + "color2": "870005", + "color3": "2900ef" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -310391, + "cust_id": 837928, + "display_name": "Lui Brahimaj2", + "aggregate_champ_points": 87, + "ai": false, + "average_lap": 1023969, + "best_lap_num": 459, + "best_lap_time": 986648, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 87, + "class_interval": -1, + "country_code": "GB", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 13, + "finish_position_in_class": 4, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "ed2129", + "color2": "ffffff", + "color3": "2a3795", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 28, + "interval": -1, + "laps_complete": 184, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 7, + "color1": "ff0000", + "color2": "ffffff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "11", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 80.20255, + "new_license_level": 20, + "new_sub_level": 418, + "new_ttrating": 1350, + "newi_rating": 2176, + "old_cpi": 81.643906, + "old_license_level": 20, + "old_sub_level": 421, + "old_ttrating": 1350, + "oldi_rating": 2170, + "opt_laps_complete": 0, + "position": 13, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 21, + "starting_position_in_class": 7, + "suit": { + "pattern": 13, + "color1": "ff0000", + "color2": "870005", + "color3": "2900ef" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 13, + "finish_position_in_class": 4, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 90, + "interval": -1, + "laps_complete": 832, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 7, + "color1": "ff0000", + "color2": "ffffff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "11", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 13, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 21, + "starting_position_in_class": 7, + "suit": { + "pattern": 13, + "color1": "ff0000", + "color2": "870005", + "color3": "2900ef" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -361961, + "display_name": "Inside Curb Racing", + "aggregate_champ_points": 43, + "ai": false, + "average_lap": 1043399, + "best_lap_num": 589, + "best_lap_time": 935447, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 43, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -361961, + "cust_id": 326217, + "display_name": "Wouter M Merks", + "aggregate_champ_points": 43, + "ai": false, + "average_lap": 966076, + "best_lap_num": 645, + "best_lap_time": 935484, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 43, + "class_interval": -1, + "country_code": "NL", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 14, + "finish_position_in_class": 9, + "flair_id": 146, + "flair_name": "Netherlands", + "flair_shortname": "NLD", + "friend": false, + "helmet": { + "pattern": 65, + "color1": "14fff8", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 9, + "interval": -1, + "laps_complete": 251, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 10, + "color1": "ffffff", + "color2": "ffffff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "1", + "wheel_color": "878787", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 139.78241, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 3051, + "old_cpi": 53.386677, + "old_license_level": 19, + "old_sub_level": 316, + "old_ttrating": 1350, + "oldi_rating": 3062, + "opt_laps_complete": 0, + "position": 14, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 2, + "starting_position_in_class": 2, + "suit": { + "pattern": 2, + "color1": "000000", + "color2": "ffffff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -361961, + "cust_id": 1049323, + "display_name": "Thijn De Jong", + "aggregate_champ_points": 43, + "ai": false, + "average_lap": 1075617, + "best_lap_num": 671, + "best_lap_time": 936899, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 43, + "class_interval": -1, + "country_code": "NL", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 14, + "finish_position_in_class": 9, + "flair_id": 146, + "flair_name": "Netherlands", + "flair_shortname": "NLD", + "friend": false, + "helmet": { + "pattern": 0, + "color1": "ffffff", + "color2": "ffffff", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 44, + "interval": -1, + "laps_complete": 221, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 10, + "color1": "ffffff", + "color2": "ffffff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "1", + "wheel_color": "878787", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 56.54951, + "new_license_level": 18, + "new_sub_level": 281, + "new_ttrating": 1374, + "newi_rating": 2575, + "old_cpi": 45.43084, + "old_license_level": 18, + "old_sub_level": 248, + "old_ttrating": 1374, + "oldi_rating": 2585, + "opt_laps_complete": 0, + "position": 14, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 2, + "starting_position_in_class": 2, + "suit": { + "pattern": 2, + "color1": "000000", + "color2": "ffffff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -361961, + "cust_id": 1049231, + "display_name": "Rens De Jong", + "aggregate_champ_points": 43, + "ai": false, + "average_lap": 1001423, + "best_lap_num": 589, + "best_lap_time": 935447, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 43, + "class_interval": -1, + "country_code": "NL", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 14, + "finish_position_in_class": 9, + "flair_id": 146, + "flair_name": "Netherlands", + "flair_shortname": "NLD", + "friend": false, + "helmet": { + "pattern": 54, + "color1": "ff0000", + "color2": "000000", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 9, + "interval": -1, + "laps_complete": 218, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 10, + "color1": "ffffff", + "color2": "ffffff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "1", + "wheel_color": "878787", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 178.31544, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2033, + "old_cpi": 63.337677, + "old_license_level": 18, + "old_sub_level": 298, + "old_ttrating": 1350, + "oldi_rating": 2043, + "opt_laps_complete": 0, + "position": 14, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 2, + "starting_position_in_class": 2, + "suit": { + "pattern": 2, + "color1": "000000", + "color2": "ffffff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -361961, + "cust_id": 1049336, + "display_name": "Lennon De Ruiter", + "aggregate_champ_points": 43, + "ai": false, + "average_lap": 982431, + "best_lap_num": 500, + "best_lap_time": 943947, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 43, + "class_interval": -1, + "country_code": "NL", + "division": 5, + "division_name": "Division 6", + "drop_race": false, + "finish_position": 14, + "finish_position_in_class": 9, + "flair_id": 146, + "flair_name": "Netherlands", + "flair_shortname": "NLD", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "000000", + "color2": "000000", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 10, + "interval": -1, + "laps_complete": 139, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 10, + "color1": "ffffff", + "color2": "ffffff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "1", + "wheel_color": "878787", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 133.91473, + "new_license_level": 20, + "new_sub_level": 497, + "new_ttrating": 1350, + "newi_rating": 1983, + "old_cpi": 115.908516, + "old_license_level": 20, + "old_sub_level": 475, + "old_ttrating": 1350, + "oldi_rating": 1989, + "opt_laps_complete": 0, + "position": 14, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 2, + "starting_position_in_class": 2, + "suit": { + "pattern": 2, + "color1": "000000", + "color2": "ffffff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 14, + "finish_position_in_class": 9, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 72, + "interval": -1, + "laps_complete": 829, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 10, + "color1": "ffffff", + "color2": "ffffff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "1", + "wheel_color": "878787", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 14, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 2, + "starting_position_in_class": 2, + "suit": { + "pattern": 2, + "color1": "000000", + "color2": "ffffff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -348667, + "display_name": "Speed Eagles Gold", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 1046341, + "best_lap_num": 589, + "best_lap_time": 982942, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 75, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -348667, + "cust_id": 433972, + "display_name": "Łukasz Fryca", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 1048240, + "best_lap_num": 498, + "best_lap_time": 988306, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 75, + "class_interval": -1, + "country_code": "PL", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 15, + "finish_position_in_class": 5, + "flair_id": 167, + "flair_name": "Poland", + "flair_shortname": "POL", + "friend": false, + "helmet": { + "pattern": 42, + "color1": "f3f3f3", + "color2": "e51411", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 16, + "interval": -1, + "laps_complete": 211, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 6, + "color1": "23548f", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "44", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 107.68496, + "new_license_level": 20, + "new_sub_level": 464, + "new_ttrating": 1350, + "newi_rating": 2091, + "old_cpi": 43.955246, + "old_license_level": 18, + "old_sub_level": 243, + "old_ttrating": 1350, + "oldi_rating": 2088, + "opt_laps_complete": 0, + "position": 15, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 17, + "starting_position_in_class": 3, + "suit": { + "pattern": 25, + "color1": "000000", + "color2": "1d70b8", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -348667, + "cust_id": 1150854, + "display_name": "Ivo Dudek2", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 1048355, + "best_lap_num": 450, + "best_lap_time": 987849, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 75, + "class_interval": -1, + "country_code": "PL", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 15, + "finish_position_in_class": 5, + "flair_id": 167, + "flair_name": "Poland", + "flair_shortname": "POL", + "friend": false, + "helmet": { + "pattern": 36, + "color1": "000000", + "color2": "05ff00", + "color3": "0094ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 12, + "interval": -1, + "laps_complete": 210, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 6, + "color1": "23548f", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "44", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 90.289185, + "new_license_level": 16, + "new_sub_level": 495, + "new_ttrating": 1374, + "newi_rating": 2132, + "old_cpi": 39.360443, + "old_license_level": 15, + "old_sub_level": 326, + "old_ttrating": 1374, + "oldi_rating": 2129, + "opt_laps_complete": 0, + "position": 15, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 17, + "starting_position_in_class": 3, + "suit": { + "pattern": 25, + "color1": "000000", + "color2": "1d70b8", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -348667, + "cust_id": 913811, + "display_name": "Janusz Kurnik", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 1025155, + "best_lap_num": 74, + "best_lap_time": 988952, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 75, + "class_interval": -1, + "country_code": "PL", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 15, + "finish_position_in_class": 5, + "flair_id": 167, + "flair_name": "Poland", + "flair_shortname": "POL", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "ffee47", + "color2": "0300c2", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 3, + "interval": -1, + "laps_complete": 210, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 6, + "color1": "23548f", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "44", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 207.23842, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2339, + "old_cpi": 103.43456, + "old_license_level": 20, + "old_sub_level": 457, + "old_ttrating": 1350, + "oldi_rating": 2336, + "opt_laps_complete": 0, + "position": 15, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 17, + "starting_position_in_class": 3, + "suit": { + "pattern": 25, + "color1": "000000", + "color2": "1d70b8", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -348667, + "cust_id": 532947, + "display_name": "Dawid Dlugokecki", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 1032416, + "best_lap_num": 589, + "best_lap_time": 982942, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 75, + "class_interval": -1, + "country_code": "PL", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 15, + "finish_position_in_class": 5, + "flair_id": 167, + "flair_name": "Poland", + "flair_shortname": "POL", + "friend": false, + "helmet": { + "pattern": 26, + "color1": "740004", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 24, + "interval": -1, + "laps_complete": 195, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 6, + "color1": "23548f", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "44", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 79.3237, + "new_license_level": 19, + "new_sub_level": 375, + "new_ttrating": 1350, + "newi_rating": 2670, + "old_cpi": 65.30674, + "old_license_level": 19, + "old_sub_level": 346, + "old_ttrating": 1350, + "oldi_rating": 2667, + "opt_laps_complete": 0, + "position": 15, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 17, + "starting_position_in_class": 3, + "suit": { + "pattern": 25, + "color1": "000000", + "color2": "1d70b8", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 15, + "finish_position_in_class": 5, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 55, + "interval": -1, + "laps_complete": 826, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 6, + "color1": "23548f", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "44", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 15, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 17, + "starting_position_in_class": 3, + "suit": { + "pattern": 25, + "color1": "000000", + "color2": "1d70b8", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -217878, + "display_name": "Katzes Racing League #Beta", + "aggregate_champ_points": 62, + "ai": false, + "average_lap": 1057055, + "best_lap_num": 537, + "best_lap_time": 982064, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 62, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -217878, + "cust_id": 240174, + "display_name": "Steven Lexow", + "aggregate_champ_points": 62, + "ai": false, + "average_lap": 1020130, + "best_lap_num": 675, + "best_lap_time": 986461, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 62, + "class_interval": -1, + "country_code": "DE", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 16, + "finish_position_in_class": 6, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 9, + "color1": "a80000", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 10, + "interval": -1, + "laps_complete": 237, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 22, + "color1": "000000", + "color2": "ff7800", + "color3": "005f99", + "number_font": 3, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "042", + "wheel_color": "ffffff", + "rim_type": 3 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 151.4998, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2787, + "old_cpi": 86.411354, + "old_license_level": 20, + "old_sub_level": 430, + "old_ttrating": 1350, + "oldi_rating": 2788, + "opt_laps_complete": 0, + "position": 16, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 18, + "starting_position_in_class": 4, + "suit": { + "pattern": 21, + "color1": "000000", + "color2": "ededed", + "color3": "F98E1D" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -217878, + "cust_id": 936404, + "display_name": "Alexander Kraft", + "aggregate_champ_points": 62, + "ai": false, + "average_lap": 1014918, + "best_lap_num": 537, + "best_lap_time": 982064, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 62, + "class_interval": -1, + "country_code": "DE", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 16, + "finish_position_in_class": 6, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "ffffff", + "color2": "f06e34", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 22, + "interval": -1, + "laps_complete": 207, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 22, + "color1": "000000", + "color2": "ff7800", + "color3": "005f99", + "number_font": 3, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "042", + "wheel_color": "ffffff", + "rim_type": 3 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 130.4349, + "new_license_level": 20, + "new_sub_level": 493, + "new_ttrating": 1350, + "newi_rating": 3381, + "old_cpi": 176.48804, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 3383, + "opt_laps_complete": 0, + "position": 16, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 18, + "starting_position_in_class": 4, + "suit": { + "pattern": 21, + "color1": "000000", + "color2": "ededed", + "color3": "F98E1D" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -217878, + "cust_id": 267842, + "display_name": "Merlin Banf", + "aggregate_champ_points": 62, + "ai": false, + "average_lap": 1110229, + "best_lap_num": 605, + "best_lap_time": 992520, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 62, + "class_interval": -1, + "country_code": "DE", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 16, + "finish_position_in_class": 6, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 13, + "color1": "000000", + "color2": "011a98", + "color3": "535353", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 22, + "interval": -1, + "laps_complete": 190, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 22, + "color1": "000000", + "color2": "ff7800", + "color3": "005f99", + "number_font": 3, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "042", + "wheel_color": "ffffff", + "rim_type": 3 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 65.71206, + "new_license_level": 16, + "new_sub_level": 447, + "new_ttrating": 1350, + "newi_rating": 1772, + "old_cpi": 28.92387, + "old_license_level": 14, + "old_sub_level": 235, + "old_ttrating": 1350, + "oldi_rating": 1774, + "opt_laps_complete": 0, + "position": 16, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 18, + "starting_position_in_class": 4, + "suit": { + "pattern": 21, + "color1": "000000", + "color2": "ededed", + "color3": "F98E1D" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -217878, + "cust_id": 332861, + "display_name": "Simon Kreß", + "aggregate_champ_points": 62, + "ai": false, + "average_lap": 1035222, + "best_lap_num": 468, + "best_lap_time": 996023, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 62, + "class_interval": -1, + "country_code": "JP", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 16, + "finish_position_in_class": 6, + "flair_id": 104, + "flair_name": "Japan", + "flair_shortname": "JPN", + "friend": false, + "helmet": { + "pattern": 55, + "color1": "000000", + "color2": "390057", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 13, + "interval": -1, + "laps_complete": 184, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 22, + "color1": "000000", + "color2": "ff7800", + "color3": "005f99", + "number_font": 3, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "042", + "wheel_color": "ffffff", + "rim_type": 3 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 159.60707, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 1791, + "old_cpi": 149.68791, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 1793, + "opt_laps_complete": 0, + "position": 16, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 18, + "starting_position_in_class": 4, + "suit": { + "pattern": 21, + "color1": "000000", + "color2": "ededed", + "color3": "F98E1D" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 16, + "finish_position_in_class": 6, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 67, + "interval": -1, + "laps_complete": 818, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 22, + "color1": "000000", + "color2": "ff7800", + "color3": "005f99", + "number_font": 3, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "042", + "wheel_color": "ffffff", + "rim_type": 3 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 16, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 18, + "starting_position_in_class": 4, + "suit": { + "pattern": 21, + "color1": "000000", + "color2": "ededed", + "color3": "F98E1D" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -288965, + "display_name": "Ecurie Col d'Oiseaux Tertre Rouge", + "aggregate_champ_points": 50, + "ai": false, + "average_lap": 1059685, + "best_lap_num": 114, + "best_lap_time": 982815, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 50, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -288965, + "cust_id": 532447, + "display_name": "Paul N T Williams", + "aggregate_champ_points": 50, + "ai": false, + "average_lap": 1021998, + "best_lap_num": 363, + "best_lap_time": 989439, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 50, + "class_interval": -1, + "country_code": "GB", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 17, + "finish_position_in_class": 7, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 49, + "color1": "000103", + "color2": "258126", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 24, + "interval": -1, + "laps_complete": 248, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 11, + "color1": "ffffd1", + "color2": "9b0202", + "color3": "0d3860", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "77", + "wheel_color": "b7b7b7", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 124.73199, + "new_license_level": 20, + "new_sub_level": 486, + "new_ttrating": 1350, + "newi_rating": 2366, + "old_cpi": 125.814064, + "old_license_level": 20, + "old_sub_level": 488, + "old_ttrating": 1350, + "oldi_rating": 2371, + "opt_laps_complete": 0, + "position": 17, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 14, + "starting_position_in_class": 0, + "suit": { + "pattern": 8, + "color1": "ffffd1", + "color2": "a30206", + "color3": "ffd7d1" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -288965, + "cust_id": 381294, + "display_name": "Taiyo Vliegen", + "aggregate_champ_points": 50, + "ai": false, + "average_lap": 1009557, + "best_lap_num": 475, + "best_lap_time": 989776, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 50, + "class_interval": -1, + "country_code": "TH", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 17, + "finish_position_in_class": 7, + "flair_id": 208, + "flair_name": "Thailand", + "flair_shortname": "THA", + "friend": false, + "helmet": { + "pattern": 17, + "color1": "f3bf45", + "color2": "bb2209", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 14, + "interval": -1, + "laps_complete": 226, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 11, + "color1": "ffffd1", + "color2": "9b0202", + "color3": "0d3860", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "77", + "wheel_color": "b7b7b7", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 186.71976, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2058, + "old_cpi": 177.2794, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 2063, + "opt_laps_complete": 0, + "position": 17, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 14, + "starting_position_in_class": 0, + "suit": { + "pattern": 8, + "color1": "ffffd1", + "color2": "a30206", + "color3": "ffd7d1" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -288965, + "cust_id": 435038, + "display_name": "Jochen Siegert", + "aggregate_champ_points": 50, + "ai": false, + "average_lap": 1025213, + "best_lap_num": 639, + "best_lap_time": 990852, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 50, + "class_interval": -1, + "country_code": "DE", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 17, + "finish_position_in_class": 7, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 3, + "color1": "f6faf6", + "color2": "ffffff", + "color3": "f3f4f3", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 38, + "interval": -1, + "laps_complete": 213, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 11, + "color1": "ffffd1", + "color2": "9b0202", + "color3": "0d3860", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "77", + "wheel_color": "b7b7b7", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 65.23617, + "new_license_level": 19, + "new_sub_level": 346, + "new_ttrating": 1350, + "newi_rating": 1832, + "old_cpi": 62.29063, + "old_license_level": 19, + "old_sub_level": 339, + "old_ttrating": 1350, + "oldi_rating": 1837, + "opt_laps_complete": 0, + "position": 17, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 14, + "starting_position_in_class": 0, + "suit": { + "pattern": 8, + "color1": "ffffd1", + "color2": "a30206", + "color3": "ffd7d1" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -288965, + "cust_id": 969021, + "display_name": "Brandon Schmidt3", + "aggregate_champ_points": 50, + "ai": false, + "average_lap": 1007798, + "best_lap_num": 114, + "best_lap_time": 982815, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 50, + "class_interval": -1, + "country_code": "DE", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 17, + "finish_position_in_class": 7, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "9b1a25", + "color2": "798bd8", + "color3": "0b0a0b", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 8, + "interval": -1, + "laps_complete": 129, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 11, + "color1": "ffffd1", + "color2": "9b0202", + "color3": "0d3860", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "77", + "wheel_color": "b7b7b7", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 111.61723, + "new_license_level": 20, + "new_sub_level": 469, + "new_ttrating": 1375, + "newi_rating": 2923, + "old_cpi": 93.56137, + "old_license_level": 20, + "old_sub_level": 442, + "old_ttrating": 1375, + "oldi_rating": 2926, + "opt_laps_complete": 0, + "position": 17, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 14, + "starting_position_in_class": 0, + "suit": { + "pattern": 8, + "color1": "ffffd1", + "color2": "a30206", + "color3": "ffd7d1" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 17, + "finish_position_in_class": 7, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 84, + "interval": -1, + "laps_complete": 816, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 11, + "color1": "ffffd1", + "color2": "9b0202", + "color3": "0d3860", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "77", + "wheel_color": "b7b7b7", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 17, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 14, + "starting_position_in_class": 0, + "suit": { + "pattern": 8, + "color1": "ffffd1", + "color2": "a30206", + "color3": "ffd7d1" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -433705, + "display_name": "SIM RACING GRID ACADEMY - Obsidian", + "aggregate_champ_points": 37, + "ai": false, + "average_lap": 1066106, + "best_lap_num": 364, + "best_lap_time": 982532, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 37, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -433705, + "cust_id": 1048672, + "display_name": "Joshua De Lange", + "aggregate_champ_points": 37, + "ai": false, + "average_lap": 1002960, + "best_lap_num": 364, + "best_lap_time": 982532, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 37, + "class_interval": -1, + "country_code": "NL", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 18, + "finish_position_in_class": 8, + "flair_id": 146, + "flair_name": "Netherlands", + "flair_shortname": "NLD", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "07a9e5", + "color2": "981a53", + "color3": "f981a5", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 26, + "interval": -1, + "laps_complete": 240, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 0, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "10", + "wheel_color": "ffb649", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 94.37405, + "new_license_level": 20, + "new_sub_level": 443, + "new_ttrating": 1350, + "newi_rating": 2529, + "old_cpi": 76.501915, + "old_license_level": 20, + "old_sub_level": 411, + "old_ttrating": 1350, + "oldi_rating": 2540, + "opt_laps_complete": 0, + "position": 18, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 15, + "starting_position_in_class": 1, + "suit": { + "pattern": 4, + "color1": "4a98ff", + "color2": "0012fa", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -433705, + "cust_id": 1359189, + "display_name": "Tóth Károly", + "aggregate_champ_points": 37, + "ai": false, + "average_lap": 1037062, + "best_lap_num": 211, + "best_lap_time": 994293, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 37, + "class_interval": -1, + "country_code": "HU", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 18, + "finish_position_in_class": 8, + "flair_id": 93, + "flair_name": "Hungary", + "flair_shortname": "HUN", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "454545", + "color2": "9f9f9f", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 27, + "interval": -1, + "laps_complete": 215, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 0, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "10", + "wheel_color": "ffb649", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 70.63338, + "new_license_level": 16, + "new_sub_level": 458, + "new_ttrating": 1263, + "newi_rating": 2211, + "old_cpi": 32.79392, + "old_license_level": 14, + "old_sub_level": 254, + "old_ttrating": 1263, + "oldi_rating": 2221, + "opt_laps_complete": 0, + "position": 18, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 15, + "starting_position_in_class": 1, + "suit": { + "pattern": 4, + "color1": "4a98ff", + "color2": "0012fa", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -433705, + "cust_id": 1049578, + "display_name": "Tim Rupp", + "aggregate_champ_points": 37, + "ai": false, + "average_lap": 1007727, + "best_lap_num": 389, + "best_lap_time": 986652, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 37, + "class_interval": -1, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 18, + "finish_position_in_class": 8, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 22, + "color1": "9f0202", + "color2": "111111", + "color3": "d9f357", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 27, + "interval": -1, + "laps_complete": 183, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 0, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "10", + "wheel_color": "ffb649", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 63.569153, + "new_license_level": 18, + "new_sub_level": 298, + "new_ttrating": 1369, + "newi_rating": 2203, + "old_cpi": 27.171917, + "old_license_level": 17, + "old_sub_level": 125, + "old_ttrating": 1369, + "oldi_rating": 2212, + "opt_laps_complete": 0, + "position": 18, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 15, + "starting_position_in_class": 1, + "suit": { + "pattern": 4, + "color1": "4a98ff", + "color2": "0012fa", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -433705, + "cust_id": 428157, + "display_name": "Rhys M Fordham", + "aggregate_champ_points": 37, + "ai": false, + "average_lap": 1071390, + "best_lap_num": 163, + "best_lap_time": 988713, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 37, + "class_interval": -1, + "country_code": "AU", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 18, + "finish_position_in_class": 8, + "flair_id": 16, + "flair_name": "Australia", + "flair_shortname": "AUS", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "000000", + "color2": "111111", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 27, + "interval": -1, + "laps_complete": 173, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 0, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "10", + "wheel_color": "ffb649", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 65.31594, + "new_license_level": 19, + "new_sub_level": 346, + "new_ttrating": 1350, + "newi_rating": 2175, + "old_cpi": 46.233604, + "old_license_level": 18, + "old_sub_level": 250, + "old_ttrating": 1350, + "oldi_rating": 2183, + "opt_laps_complete": 0, + "position": 18, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 15, + "starting_position_in_class": 1, + "suit": { + "pattern": 4, + "color1": "4a98ff", + "color2": "0012fa", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 18, + "finish_position_in_class": 8, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 107, + "interval": -1, + "laps_complete": 811, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 0, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "10", + "wheel_color": "ffb649", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 18, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 15, + "starting_position_in_class": 1, + "suit": { + "pattern": 4, + "color1": "4a98ff", + "color2": "0012fa", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -479845, + "display_name": "DSDF Racing LMP2", + "aggregate_champ_points": 25, + "ai": false, + "average_lap": 1071884, + "best_lap_num": 585, + "best_lap_time": 985010, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 25, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -479845, + "cust_id": 1010930, + "display_name": "James Seale", + "aggregate_champ_points": 25, + "ai": false, + "average_lap": 1059229, + "best_lap_num": 558, + "best_lap_time": 987780, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 25, + "class_interval": -1, + "country_code": "GB", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 19, + "finish_position_in_class": 9, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 4, + "color1": "0a0a0a", + "color2": "ffffff", + "color3": "ff0000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 39, + "interval": -1, + "laps_complete": 281, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 21, + "color1": "ffffff", + "color2": "ff0000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "ff0000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 221, + "sponsor2": 7, + "car_number": "155", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 59.186558, + "new_license_level": 12, + "new_sub_level": 488, + "new_ttrating": 1649, + "newi_rating": 2544, + "old_cpi": 26.148556, + "old_license_level": 11, + "old_sub_level": 319, + "old_ttrating": 1649, + "oldi_rating": 2563, + "opt_laps_complete": 0, + "position": 19, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 25, + "starting_position_in_class": 11, + "suit": { + "pattern": 32, + "color1": "000000", + "color2": "ff0000", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -479845, + "cust_id": 1062946, + "display_name": "Harley Byrne", + "aggregate_champ_points": 25, + "ai": false, + "average_lap": 1055291, + "best_lap_num": 635, + "best_lap_time": 996812, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 25, + "class_interval": -1, + "country_code": "GB", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 19, + "finish_position_in_class": 9, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "000000", + "color2": "007316", + "color3": "00ff00", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 33, + "interval": -1, + "laps_complete": 273, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 21, + "color1": "ffffff", + "color2": "ff0000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "ff0000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 221, + "sponsor2": 7, + "car_number": "155", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 73.349144, + "new_license_level": 16, + "new_sub_level": 464, + "new_ttrating": 1556, + "newi_rating": 1949, + "old_cpi": 37.23048, + "old_license_level": 15, + "old_sub_level": 318, + "old_ttrating": 1556, + "oldi_rating": 1968, + "opt_laps_complete": 0, + "position": 19, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 25, + "starting_position_in_class": 11, + "suit": { + "pattern": 32, + "color1": "000000", + "color2": "ff0000", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -479845, + "cust_id": 727237, + "display_name": "Albert Webster", + "aggregate_champ_points": 25, + "ai": false, + "average_lap": 1072776, + "best_lap_num": 585, + "best_lap_time": 985010, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 25, + "class_interval": -1, + "country_code": "GB", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 19, + "finish_position_in_class": 9, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 54, + "color1": "ff00f5", + "color2": "ffffff", + "color3": "ff00fc", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 46, + "interval": -1, + "laps_complete": 253, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 21, + "color1": "ffffff", + "color2": "ff0000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "ff0000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 221, + "sponsor2": 7, + "car_number": "155", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 50.475586, + "new_license_level": 12, + "new_sub_level": 464, + "new_ttrating": 1350, + "newi_rating": 2430, + "old_cpi": 19.97199, + "old_license_level": 10, + "old_sub_level": 235, + "old_ttrating": 1350, + "oldi_rating": 2447, + "opt_laps_complete": 0, + "position": 19, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 25, + "starting_position_in_class": 11, + "suit": { + "pattern": 32, + "color1": "000000", + "color2": "ff0000", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 19, + "finish_position_in_class": 9, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 118, + "interval": -1, + "laps_complete": 807, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 21, + "color1": "ffffff", + "color2": "ff0000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "ff0000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 221, + "sponsor2": 7, + "car_number": "155", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 19, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 25, + "starting_position_in_class": 11, + "suit": { + "pattern": 32, + "color1": "000000", + "color2": "ff0000", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -287243, + "display_name": "Team MFM - SURVIVE!", + "aggregate_champ_points": 142, + "ai": false, + "average_lap": 1081147, + "best_lap_num": 87, + "best_lap_time": 1044160, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 142, + "class_interval": 0, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -287243, + "cust_id": 386390, + "display_name": "Micky Denton", + "aggregate_champ_points": 142, + "ai": false, + "average_lap": 1074986, + "best_lap_num": 634, + "best_lap_time": 1045205, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 142, + "class_interval": 0, + "country_code": "GB", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 20, + "finish_position_in_class": 0, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 42, + "color1": "000000", + "color2": "fff20a", + "color3": "000105", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 9, + "interval": -1, + "laps_complete": 229, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 17, + "color1": "dddddd", + "color2": "ffff00", + "color3": "252525", + "number_font": 0, + "number_color1": "000000", + "number_color2": "737373", + "number_color3": "ffffff", + "number_slant": 4, + "sponsor1": 138, + "sponsor2": 7, + "car_number": "21", + "wheel_color": "ffff00", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 145.13077, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2256, + "old_cpi": 80.44081, + "old_license_level": 20, + "old_sub_level": 419, + "old_ttrating": 1350, + "oldi_rating": 2229, + "opt_laps_complete": 0, + "position": 20, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 41, + "starting_position_in_class": 15, + "suit": { + "pattern": 7, + "color1": "252525", + "color2": "DDDDDD", + "color3": "004895" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -287243, + "cust_id": 638036, + "display_name": "Cody Gayer", + "aggregate_champ_points": 142, + "ai": false, + "average_lap": 1070254, + "best_lap_num": 568, + "best_lap_time": 1045355, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 142, + "class_interval": 0, + "country_code": "US", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 20, + "finish_position_in_class": 0, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 67, + "color1": "01020e", + "color2": "d5c325", + "color3": "c91b20", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 29, + "interval": -1, + "laps_complete": 185, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 17, + "color1": "dddddd", + "color2": "ffff00", + "color3": "252525", + "number_font": 0, + "number_color1": "000000", + "number_color2": "737373", + "number_color3": "ffffff", + "number_slant": 4, + "sponsor1": 138, + "sponsor2": 7, + "car_number": "21", + "wheel_color": "ffff00", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 81.2526, + "new_license_level": 20, + "new_sub_level": 420, + "new_ttrating": 1350, + "newi_rating": 3094, + "old_cpi": 86.255455, + "old_license_level": 20, + "old_sub_level": 429, + "old_ttrating": 1350, + "oldi_rating": 3072, + "opt_laps_complete": 0, + "position": 20, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 41, + "starting_position_in_class": 15, + "suit": { + "pattern": 7, + "color1": "252525", + "color2": "DDDDDD", + "color3": "004895" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -287243, + "cust_id": 462083, + "display_name": "Sean Foltz", + "aggregate_champ_points": 142, + "ai": false, + "average_lap": 1077727, + "best_lap_num": 320, + "best_lap_time": 1052938, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 142, + "class_interval": 0, + "country_code": "US", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 20, + "finish_position_in_class": 0, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 36, + "color1": "111111", + "color2": "bead50", + "color3": "ff611d", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 14, + "interval": -1, + "laps_complete": 149, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 17, + "color1": "dddddd", + "color2": "ffff00", + "color3": "252525", + "number_font": 0, + "number_color1": "000000", + "number_color2": "737373", + "number_color3": "ffffff", + "number_slant": 4, + "sponsor1": 138, + "sponsor2": 7, + "car_number": "21", + "wheel_color": "ffff00", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 95.34607, + "new_license_level": 20, + "new_sub_level": 445, + "new_ttrating": 1350, + "newi_rating": 1747, + "old_cpi": 78.618935, + "old_license_level": 20, + "old_sub_level": 415, + "old_ttrating": 1350, + "oldi_rating": 1729, + "opt_laps_complete": 0, + "position": 20, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 41, + "starting_position_in_class": 15, + "suit": { + "pattern": 7, + "color1": "252525", + "color2": "DDDDDD", + "color3": "004895" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -287243, + "cust_id": 585611, + "display_name": "Finley Fitzsimmons", + "aggregate_champ_points": 142, + "ai": false, + "average_lap": 1069337, + "best_lap_num": 87, + "best_lap_time": 1044160, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 142, + "class_interval": 0, + "country_code": "GB", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 20, + "finish_position_in_class": 0, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 24, + "color1": "000000", + "color2": "c9fc00", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 18, + "interval": -1, + "laps_complete": 146, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 17, + "color1": "dddddd", + "color2": "ffff00", + "color3": "252525", + "number_font": 0, + "number_color1": "000000", + "number_color2": "737373", + "number_color3": "ffffff", + "number_slant": 4, + "sponsor1": 138, + "sponsor2": 7, + "car_number": "21", + "wheel_color": "ffff00", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 73.801315, + "new_license_level": 19, + "new_sub_level": 365, + "new_ttrating": 1350, + "newi_rating": 2703, + "old_cpi": 48.809418, + "old_license_level": 18, + "old_sub_level": 259, + "old_ttrating": 1350, + "oldi_rating": 2685, + "opt_laps_complete": 0, + "position": 20, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 41, + "starting_position_in_class": 15, + "suit": { + "pattern": 7, + "color1": "252525", + "color2": "DDDDDD", + "color3": "004895" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -287243, + "cust_id": 463622, + "display_name": "William R Martin", + "aggregate_champ_points": 142, + "ai": false, + "average_lap": 1087969, + "best_lap_num": 407, + "best_lap_time": 1061256, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 142, + "class_interval": 0, + "country_code": "US", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 20, + "finish_position_in_class": 0, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 3, + "color1": "2a3795", + "color2": "ffffff", + "color3": "ed2129", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 8, + "interval": -1, + "laps_complete": 91, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 17, + "color1": "dddddd", + "color2": "ffff00", + "color3": "252525", + "number_font": 0, + "number_color1": "000000", + "number_color2": "737373", + "number_color3": "ffffff", + "number_slant": 4, + "sponsor1": 138, + "sponsor2": 7, + "car_number": "21", + "wheel_color": "ffff00", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 51.95585, + "new_license_level": 15, + "new_sub_level": 368, + "new_ttrating": 1350, + "newi_rating": 1687, + "old_cpi": 36.561356, + "old_license_level": 15, + "old_sub_level": 315, + "old_ttrating": 1350, + "oldi_rating": 1676, + "opt_laps_complete": 0, + "position": 20, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 41, + "starting_position_in_class": 15, + "suit": { + "pattern": 7, + "color1": "252525", + "color2": "DDDDDD", + "color3": "004895" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 20, + "finish_position_in_class": 0, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 78, + "interval": -1, + "laps_complete": 800, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 17, + "color1": "dddddd", + "color2": "ffff00", + "color3": "252525", + "number_font": 0, + "number_color1": "000000", + "number_color2": "737373", + "number_color3": "ffffff", + "number_slant": 4, + "sponsor1": 138, + "sponsor2": 7, + "car_number": "21", + "wheel_color": "ffff00", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 20, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 41, + "starting_position_in_class": 15, + "suit": { + "pattern": 7, + "color1": "252525", + "color2": "DDDDDD", + "color3": "004895" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -457552, + "display_name": "DB3 MOTORSPORT | REMESI", + "aggregate_champ_points": 137, + "ai": false, + "average_lap": 1083873, + "best_lap_num": 265, + "best_lap_time": 1042790, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 137, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -457552, + "cust_id": 1366564, + "display_name": "Christian Seibold", + "aggregate_champ_points": 137, + "ai": false, + "average_lap": 1068879, + "best_lap_num": 118, + "best_lap_time": 1042998, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 137, + "class_interval": -1, + "country_code": "AT", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 21, + "finish_position_in_class": 1, + "flair_id": 17, + "flair_name": "Austria", + "flair_shortname": "AUT", + "friend": false, + "helmet": { + "pattern": 67, + "color1": "393939", + "color2": "ea6500", + "color3": "0a0a0a", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 24, + "interval": -1, + "laps_complete": 230, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "77fa03", + "color2": "ed2129", + "color3": "b0ec02", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "13", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 92.53391, + "new_license_level": 19, + "new_sub_level": 399, + "new_ttrating": 1358, + "newi_rating": 2464, + "old_cpi": 69.27189, + "old_license_level": 19, + "old_sub_level": 355, + "old_ttrating": 1358, + "oldi_rating": 2437, + "opt_laps_complete": 0, + "position": 21, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 27, + "starting_position_in_class": 1, + "suit": { + "pattern": 11, + "color1": "d9003b", + "color2": "ffffff", + "color3": "0011f9" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -457552, + "cust_id": 265899, + "display_name": "Max Sennewald", + "aggregate_champ_points": 137, + "ai": false, + "average_lap": 1074866, + "best_lap_num": 596, + "best_lap_time": 1049105, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 137, + "class_interval": -1, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 21, + "finish_position_in_class": 1, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 35, + "color1": "000000", + "color2": "ff6c0a", + "color3": "00d6ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 13, + "interval": -1, + "laps_complete": 151, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "77fa03", + "color2": "ed2129", + "color3": "b0ec02", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "13", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 58.80615, + "new_license_level": 15, + "new_sub_level": 387, + "new_ttrating": 1445, + "newi_rating": 2201, + "old_cpi": 25.331612, + "old_license_level": 14, + "old_sub_level": 214, + "old_ttrating": 1445, + "oldi_rating": 2184, + "opt_laps_complete": 0, + "position": 21, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 27, + "starting_position_in_class": 1, + "suit": { + "pattern": 11, + "color1": "d9003b", + "color2": "ffffff", + "color3": "0011f9" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -457552, + "cust_id": 1229354, + "display_name": "Domenik Tubes", + "aggregate_champ_points": 137, + "ai": false, + "average_lap": 1080154, + "best_lap_num": 565, + "best_lap_time": 1055050, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 137, + "class_interval": -1, + "country_code": "DE", + "division": 6, + "division_name": "Division 7", + "drop_race": false, + "finish_position": 21, + "finish_position_in_class": 1, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "efd600", + "color2": "d7162d", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 14, + "interval": -1, + "laps_complete": 151, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "77fa03", + "color2": "ed2129", + "color3": "b0ec02", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "13", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 88.43992, + "new_license_level": 19, + "new_sub_level": 392, + "new_ttrating": 1296, + "newi_rating": 1870, + "old_cpi": 61.389915, + "old_license_level": 19, + "old_sub_level": 337, + "old_ttrating": 1296, + "oldi_rating": 1853, + "opt_laps_complete": 0, + "position": 21, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 27, + "starting_position_in_class": 1, + "suit": { + "pattern": 11, + "color1": "d9003b", + "color2": "ffffff", + "color3": "0011f9" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -457552, + "cust_id": 673113, + "display_name": "Gerd Zechner", + "aggregate_champ_points": 137, + "ai": false, + "average_lap": 1062057, + "best_lap_num": 265, + "best_lap_time": 1042790, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 137, + "class_interval": -1, + "country_code": "AT", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 21, + "finish_position_in_class": 1, + "flair_id": 17, + "flair_name": "Austria", + "flair_shortname": "AUT", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "111111", + "color2": "ffffff", + "color3": "fc0706", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 16, + "interval": -1, + "laps_complete": 150, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "77fa03", + "color2": "ed2129", + "color3": "b0ec02", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "13", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 83.24767, + "new_license_level": 19, + "new_sub_level": 383, + "new_ttrating": 1350, + "newi_rating": 3031, + "old_cpi": 65.06985, + "old_license_level": 19, + "old_sub_level": 346, + "old_ttrating": 1350, + "oldi_rating": 3014, + "opt_laps_complete": 0, + "position": 21, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 27, + "starting_position_in_class": 1, + "suit": { + "pattern": 11, + "color1": "d9003b", + "color2": "ffffff", + "color3": "0011f9" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -457552, + "cust_id": 553230, + "display_name": "Pierre Meier", + "aggregate_champ_points": 137, + "ai": false, + "average_lap": 1080146, + "best_lap_num": 533, + "best_lap_time": 1056105, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 137, + "class_interval": -1, + "country_code": "DE", + "division": 6, + "division_name": "Division 7", + "drop_race": false, + "finish_position": 21, + "finish_position_in_class": 1, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 14, + "color1": "eb0b33", + "color2": "161413", + "color3": "fa0e0e", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 19, + "interval": -1, + "laps_complete": 116, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "77fa03", + "color2": "ed2129", + "color3": "b0ec02", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "13", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 41.600945, + "new_license_level": 14, + "new_sub_level": 291, + "new_ttrating": 1350, + "newi_rating": 1734, + "old_cpi": 25.06291, + "old_license_level": 14, + "old_sub_level": 213, + "old_ttrating": 1350, + "oldi_rating": 1721, + "opt_laps_complete": 0, + "position": 21, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 27, + "starting_position_in_class": 1, + "suit": { + "pattern": 11, + "color1": "d9003b", + "color2": "ffffff", + "color3": "0011f9" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 21, + "finish_position_in_class": 1, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 86, + "interval": -1, + "laps_complete": 798, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "77fa03", + "color2": "ed2129", + "color3": "b0ec02", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "13", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 21, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 27, + "starting_position_in_class": 1, + "suit": { + "pattern": 11, + "color1": "d9003b", + "color2": "ffffff", + "color3": "0011f9" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -287336, + "display_name": "W2W Racing Red", + "aggregate_champ_points": 133, + "ai": false, + "average_lap": 1085153, + "best_lap_num": 662, + "best_lap_time": 1042514, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 133, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -287336, + "cust_id": 392017, + "display_name": "Jorge Reyes3", + "aggregate_champ_points": 133, + "ai": false, + "average_lap": 1068517, + "best_lap_num": 662, + "best_lap_time": 1042514, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 133, + "class_interval": -1, + "country_code": "BO", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 22, + "finish_position_in_class": 2, + "flair_id": 28, + "flair_name": "Bolivia", + "flair_shortname": "BES", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "0012ff", + "color2": "3145a5", + "color3": "f00000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 55, + "interval": -1, + "laps_complete": 219, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 15, + "color1": "f3ff06", + "color2": "0e9720", + "color3": "f3ff06", + "number_font": 53, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 2, + "sponsor1": 221, + "sponsor2": 0, + "car_number": "26", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 45.28575, + "new_license_level": 18, + "new_sub_level": 247, + "new_ttrating": 1350, + "newi_rating": 2245, + "old_cpi": 32.465076, + "old_license_level": 17, + "old_sub_level": 153, + "old_ttrating": 1350, + "oldi_rating": 2221, + "opt_laps_complete": 0, + "position": 22, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 28, + "starting_position_in_class": 2, + "suit": { + "pattern": 10, + "color1": "ad1210", + "color2": "000000", + "color3": "ad1210" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -287336, + "cust_id": 332950, + "display_name": "Markus Bulheller", + "aggregate_champ_points": 133, + "ai": false, + "average_lap": 1070863, + "best_lap_num": 422, + "best_lap_time": 1047985, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 133, + "class_interval": -1, + "country_code": "DE", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 22, + "finish_position_in_class": 2, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 64, + "color1": "ad1210", + "color2": "000000", + "color3": "fa0600", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 18, + "interval": -1, + "laps_complete": 216, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 15, + "color1": "f3ff06", + "color2": "0e9720", + "color3": "f3ff06", + "number_font": 53, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 2, + "sponsor1": 221, + "sponsor2": 0, + "car_number": "26", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 126.267044, + "new_license_level": 20, + "new_sub_level": 488, + "new_ttrating": 1350, + "newi_rating": 1883, + "old_cpi": 106.58838, + "old_license_level": 20, + "old_sub_level": 462, + "old_ttrating": 1350, + "oldi_rating": 1859, + "opt_laps_complete": 0, + "position": 22, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 28, + "starting_position_in_class": 2, + "suit": { + "pattern": 10, + "color1": "ad1210", + "color2": "000000", + "color3": "ad1210" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -287336, + "cust_id": 274792, + "display_name": "Brandon Peters2", + "aggregate_champ_points": 133, + "ai": false, + "average_lap": 1076170, + "best_lap_num": 509, + "best_lap_time": 1050183, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 133, + "class_interval": -1, + "country_code": "US", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 22, + "finish_position_in_class": 2, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 65, + "color1": "B40421", + "color2": "000000", + "color3": "008ae6", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 9, + "interval": -1, + "laps_complete": 182, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 15, + "color1": "f3ff06", + "color2": "0e9720", + "color3": "f3ff06", + "number_font": 53, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 2, + "sponsor1": 221, + "sponsor2": 0, + "car_number": "26", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 153.31381, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2214, + "old_cpi": 109.711655, + "old_license_level": 20, + "old_sub_level": 466, + "old_ttrating": 1350, + "oldi_rating": 2194, + "opt_laps_complete": 0, + "position": 22, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 28, + "starting_position_in_class": 2, + "suit": { + "pattern": 10, + "color1": "ad1210", + "color2": "000000", + "color3": "ad1210" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -287336, + "cust_id": 378055, + "display_name": "Jorge V. Carmo", + "aggregate_champ_points": 133, + "ai": false, + "average_lap": 1074664, + "best_lap_num": 206, + "best_lap_time": 1050442, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 133, + "class_interval": -1, + "country_code": "PT", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 22, + "finish_position_in_class": 2, + "flair_id": 168, + "flair_name": "Portugal", + "flair_shortname": "PRT", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "fffc00", + "color2": "111111", + "color3": "ff8804", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 20, + "interval": -1, + "laps_complete": 180, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 15, + "color1": "f3ff06", + "color2": "0e9720", + "color3": "f3ff06", + "number_font": 53, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 2, + "sponsor1": 221, + "sponsor2": 0, + "car_number": "26", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 77.34436, + "new_license_level": 19, + "new_sub_level": 372, + "new_ttrating": 1350, + "newi_rating": 2574, + "old_cpi": 40.53806, + "old_license_level": 18, + "old_sub_level": 231, + "old_ttrating": 1350, + "oldi_rating": 2554, + "opt_laps_complete": 0, + "position": 22, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 28, + "starting_position_in_class": 2, + "suit": { + "pattern": 10, + "color1": "ad1210", + "color2": "000000", + "color3": "ad1210" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 22, + "finish_position_in_class": 2, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 102, + "interval": -1, + "laps_complete": 797, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 15, + "color1": "f3ff06", + "color2": "0e9720", + "color3": "f3ff06", + "number_font": 53, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 2, + "sponsor1": 221, + "sponsor2": 0, + "car_number": "26", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 22, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 28, + "starting_position_in_class": 2, + "suit": { + "pattern": 10, + "color1": "ad1210", + "color2": "000000", + "color3": "ad1210" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -454234, + "display_name": "TKG Simsport PRO", + "aggregate_champ_points": 128, + "ai": false, + "average_lap": 1085188, + "best_lap_num": 116, + "best_lap_time": 1042650, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 128, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -454234, + "cust_id": 1138518, + "display_name": "Aaron J Walker", + "aggregate_champ_points": 128, + "ai": false, + "average_lap": 1081911, + "best_lap_num": 523, + "best_lap_time": 1047190, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 128, + "class_interval": -1, + "country_code": "GO", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 23, + "finish_position_in_class": 3, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "helmet": { + "pattern": 54, + "color1": "000000", + "color2": "000000", + "color3": "5c5c5c", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 46, + "interval": -1, + "laps_complete": 240, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "20", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 51.075874, + "new_license_level": 15, + "new_sub_level": 365, + "new_ttrating": 1350, + "newi_rating": 2117, + "old_cpi": 24.532656, + "old_license_level": 14, + "old_sub_level": 209, + "old_ttrating": 1350, + "oldi_rating": 2092, + "opt_laps_complete": 0, + "position": 23, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 32, + "starting_position_in_class": 6, + "suit": { + "pattern": 8, + "color1": "000000", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -454234, + "cust_id": 1141722, + "display_name": "Joel Allgyer", + "aggregate_champ_points": 128, + "ai": false, + "average_lap": 1075495, + "best_lap_num": 642, + "best_lap_time": 1044889, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 128, + "class_interval": -1, + "country_code": "US", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 23, + "finish_position_in_class": 3, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 29, + "color1": "111111", + "color2": "ffffff", + "color3": "f60000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 28, + "interval": -1, + "laps_complete": 210, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "20", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 70.93398, + "new_license_level": 19, + "new_sub_level": 359, + "new_ttrating": 1271, + "newi_rating": 2584, + "old_cpi": 36.81991, + "old_license_level": 18, + "old_sub_level": 216, + "old_ttrating": 1271, + "oldi_rating": 2563, + "opt_laps_complete": 0, + "position": 23, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 32, + "starting_position_in_class": 6, + "suit": { + "pattern": 8, + "color1": "000000", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -454234, + "cust_id": 678081, + "display_name": "Carter A Thompson", + "aggregate_champ_points": 128, + "ai": false, + "average_lap": 1073221, + "best_lap_num": 116, + "best_lap_time": 1042650, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 128, + "class_interval": -1, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 23, + "finish_position_in_class": 3, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "ff2202", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 60, + "interval": -1, + "laps_complete": 174, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "20", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 31.197826, + "new_license_level": 14, + "new_sub_level": 246, + "new_ttrating": 1350, + "newi_rating": 2617, + "old_cpi": 24.810728, + "old_license_level": 14, + "old_sub_level": 211, + "old_ttrating": 1350, + "oldi_rating": 2600, + "opt_laps_complete": 0, + "position": 23, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 32, + "starting_position_in_class": 6, + "suit": { + "pattern": 8, + "color1": "000000", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -454234, + "cust_id": 698537, + "display_name": "Ben Garey2", + "aggregate_champ_points": 128, + "ai": false, + "average_lap": 1075133, + "best_lap_num": 468, + "best_lap_time": 1047644, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 128, + "class_interval": -1, + "country_code": "US", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 23, + "finish_position_in_class": 3, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 49, + "color1": "ffffff", + "color2": "ffffff", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 77, + "interval": -1, + "laps_complete": 173, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "20", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 25.255388, + "new_license_level": 10, + "new_sub_level": 272, + "new_ttrating": 1350, + "newi_rating": 1750, + "old_cpi": 17.60599, + "old_license_level": 9, + "old_sub_level": 178, + "old_ttrating": 1350, + "oldi_rating": 1733, + "opt_laps_complete": 0, + "position": 23, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 32, + "starting_position_in_class": 6, + "suit": { + "pattern": 8, + "color1": "000000", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 23, + "finish_position_in_class": 3, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 211, + "interval": -1, + "laps_complete": 797, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "20", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 23, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 32, + "starting_position_in_class": 6, + "suit": { + "pattern": 8, + "color1": "000000", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -480346, + "display_name": "Almeida Endurance Racing Black", + "aggregate_champ_points": 124, + "ai": false, + "average_lap": 1088593, + "best_lap_num": 647, + "best_lap_time": 1044415, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 124, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -480346, + "cust_id": 346886, + "display_name": "Adrian Hopp", + "aggregate_champ_points": 124, + "ai": false, + "average_lap": 1072720, + "best_lap_num": 562, + "best_lap_time": 1045246, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 124, + "class_interval": -1, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 24, + "finish_position_in_class": 4, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 21, + "color1": "000000", + "color2": "ffffff", + "color3": "fa0200", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 12, + "interval": -1, + "laps_complete": 242, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 14, + "color1": "FFED00", + "color2": "00C4FF", + "color3": "87C42E", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "18", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 161.57109, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1311, + "newi_rating": 3055, + "old_cpi": 84.49169, + "old_license_level": 19, + "old_sub_level": 385, + "old_ttrating": 1311, + "oldi_rating": 3033, + "opt_laps_complete": 0, + "position": 24, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 46, + "starting_position_in_class": 20, + "suit": { + "pattern": 32, + "color1": "ffffff", + "color2": "fff200", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -480346, + "cust_id": 770894, + "display_name": "Alexander Eger", + "aggregate_champ_points": 124, + "ai": false, + "average_lap": 1062332, + "best_lap_num": 647, + "best_lap_time": 1044415, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 124, + "class_interval": -1, + "country_code": "DE", + "division": 5, + "division_name": "Division 6", + "drop_race": false, + "finish_position": 24, + "finish_position_in_class": 4, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "111111", + "color2": "b82f37", + "color3": "284a94", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 16, + "interval": -1, + "laps_complete": 211, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 14, + "color1": "FFED00", + "color2": "00C4FF", + "color3": "87C42E", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "18", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 100.03695, + "new_license_level": 20, + "new_sub_level": 452, + "new_ttrating": 1350, + "newi_rating": 2036, + "old_cpi": 38.330452, + "old_license_level": 18, + "old_sub_level": 222, + "old_ttrating": 1350, + "oldi_rating": 2017, + "opt_laps_complete": 0, + "position": 24, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 46, + "starting_position_in_class": 20, + "suit": { + "pattern": 32, + "color1": "ffffff", + "color2": "fff200", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -480346, + "cust_id": 1318861, + "display_name": "Pedro Nilsson", + "aggregate_champ_points": 124, + "ai": false, + "average_lap": 1080856, + "best_lap_num": 189, + "best_lap_time": 1050382, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 124, + "class_interval": -1, + "country_code": "BR", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 24, + "finish_position_in_class": 4, + "flair_id": 31, + "flair_name": "Brazil", + "flair_shortname": "BRA", + "friend": false, + "helmet": { + "pattern": 35, + "color1": "ffed00", + "color2": "00c4ff", + "color3": "87c42e", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 27, + "interval": -1, + "laps_complete": 171, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 14, + "color1": "FFED00", + "color2": "00C4FF", + "color3": "87C42E", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "18", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 42.018944, + "new_license_level": 11, + "new_sub_level": 392, + "new_ttrating": 1350, + "newi_rating": 2005, + "old_cpi": 24.106707, + "old_license_level": 11, + "old_sub_level": 307, + "old_ttrating": 1350, + "oldi_rating": 1989, + "opt_laps_complete": 0, + "position": 24, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 46, + "starting_position_in_class": 20, + "suit": { + "pattern": 32, + "color1": "ffffff", + "color2": "fff200", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -480346, + "cust_id": 1403655, + "display_name": "Ianis Iordache", + "aggregate_champ_points": 124, + "ai": false, + "average_lap": 1072517, + "best_lap_num": 224, + "best_lap_time": 1049304, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 124, + "class_interval": -1, + "country_code": "RO", + "division": 10, + "division_name": "Rookie", + "drop_race": false, + "finish_position": 24, + "finish_position_in_class": 4, + "flair_id": 173, + "flair_name": "Romania", + "flair_shortname": "ROU", + "friend": false, + "helmet": { + "pattern": 36, + "color1": "000000", + "color2": "ff0000", + "color3": "8c0000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 33, + "interval": -1, + "laps_complete": 170, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 14, + "color1": "FFED00", + "color2": "00C4FF", + "color3": "87C42E", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "18", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 44.432568, + "new_license_level": 12, + "new_sub_level": 444, + "new_ttrating": 1307, + "newi_rating": 2026, + "old_cpi": 30.39872, + "old_license_level": 11, + "old_sub_level": 342, + "old_ttrating": 1307, + "oldi_rating": 2011, + "opt_laps_complete": 0, + "position": 24, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 46, + "starting_position_in_class": 20, + "suit": { + "pattern": 32, + "color1": "ffffff", + "color2": "fff200", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 24, + "finish_position_in_class": 4, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 88, + "interval": -1, + "laps_complete": 794, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 14, + "color1": "FFED00", + "color2": "00C4FF", + "color3": "87C42E", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "18", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 24, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 46, + "starting_position_in_class": 20, + "suit": { + "pattern": 32, + "color1": "ffffff", + "color2": "fff200", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -480134, + "display_name": "Club 100 Sim Racers", + "aggregate_champ_points": 119, + "ai": false, + "average_lap": 1089527, + "best_lap_num": 303, + "best_lap_time": 1042690, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 119, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -480134, + "cust_id": 133722, + "display_name": "James DeHavillande", + "aggregate_champ_points": 119, + "ai": false, + "average_lap": 1065594, + "best_lap_num": 303, + "best_lap_time": 1042690, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 119, + "class_interval": -1, + "country_code": "GB", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 25, + "finish_position_in_class": 5, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 60, + "color1": "eb0000", + "color2": "0009db", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 20, + "interval": -1, + "laps_complete": 229, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 11, + "color1": "000000", + "color2": "ff0000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "125", + "wheel_color": "b32e2e", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 92.82705, + "new_license_level": 19, + "new_sub_level": 399, + "new_ttrating": 1350, + "newi_rating": 3886, + "old_cpi": 38.696655, + "old_license_level": 18, + "old_sub_level": 224, + "old_ttrating": 1350, + "oldi_rating": 3868, + "opt_laps_complete": 0, + "position": 25, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 31, + "starting_position_in_class": 5, + "suit": { + "pattern": 3, + "color1": "000000", + "color2": "ee6b00", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -480134, + "cust_id": 1183749, + "display_name": "Jack Mitchell-Lowe", + "aggregate_champ_points": 119, + "ai": false, + "average_lap": 1075568, + "best_lap_num": 392, + "best_lap_time": 1050371, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 119, + "class_interval": -1, + "country_code": "GB", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 25, + "finish_position_in_class": 5, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 62, + "color1": "006ee0", + "color2": "e0af00", + "color3": "ff5c00", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 14, + "interval": -1, + "laps_complete": 151, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 11, + "color1": "000000", + "color2": "ff0000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "125", + "wheel_color": "b32e2e", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 81.00438, + "new_license_level": 16, + "new_sub_level": 479, + "new_ttrating": 1350, + "newi_rating": 2129, + "old_cpi": 52.43604, + "old_license_level": 15, + "old_sub_level": 369, + "old_ttrating": 1350, + "oldi_rating": 2117, + "opt_laps_complete": 0, + "position": 25, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 31, + "starting_position_in_class": 5, + "suit": { + "pattern": 3, + "color1": "000000", + "color2": "ee6b00", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -480134, + "cust_id": 979456, + "display_name": "John Adey", + "aggregate_champ_points": 119, + "ai": false, + "average_lap": 1079885, + "best_lap_num": 203, + "best_lap_time": 1054285, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 119, + "class_interval": -1, + "country_code": "GB", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 25, + "finish_position_in_class": 5, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 52, + "color1": "de80cc", + "color2": "c257ee", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 22, + "interval": -1, + "laps_complete": 147, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 11, + "color1": "000000", + "color2": "ff0000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "125", + "wheel_color": "b32e2e", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 52.135857, + "new_license_level": 15, + "new_sub_level": 369, + "new_ttrating": 1360, + "newi_rating": 1943, + "old_cpi": 21.50017, + "old_license_level": 13, + "old_sub_level": 147, + "old_ttrating": 1360, + "oldi_rating": 1931, + "opt_laps_complete": 0, + "position": 25, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 31, + "starting_position_in_class": 5, + "suit": { + "pattern": 3, + "color1": "000000", + "color2": "ee6b00", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -480134, + "cust_id": 804751, + "display_name": "Sam Dimelow", + "aggregate_champ_points": 119, + "ai": false, + "average_lap": 1081405, + "best_lap_num": 515, + "best_lap_time": 1051075, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 119, + "class_interval": -1, + "country_code": "GB", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 25, + "finish_position_in_class": 5, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 12, + "color1": "b80aee", + "color2": "f8ee00", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 17, + "interval": -1, + "laps_complete": 143, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 11, + "color1": "000000", + "color2": "ff0000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "125", + "wheel_color": "b32e2e", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 61.684498, + "new_license_level": 18, + "new_sub_level": 294, + "new_ttrating": 1350, + "newi_rating": 1842, + "old_cpi": 24.449064, + "old_license_level": 17, + "old_sub_level": 109, + "old_ttrating": 1350, + "oldi_rating": 1831, + "opt_laps_complete": 0, + "position": 25, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 31, + "starting_position_in_class": 5, + "suit": { + "pattern": 3, + "color1": "000000", + "color2": "ee6b00", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -480134, + "cust_id": 88596, + "display_name": "James Fremont", + "aggregate_champ_points": 119, + "ai": false, + "average_lap": 1090494, + "best_lap_num": 164, + "best_lap_time": 1058823, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 119, + "class_interval": -1, + "country_code": "GB", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 25, + "finish_position_in_class": 5, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 66, + "color1": "fff73d", + "color2": "3864ff", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 9, + "interval": -1, + "laps_complete": 124, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 11, + "color1": "000000", + "color2": "ff0000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "125", + "wheel_color": "b32e2e", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 93.85955, + "new_license_level": 20, + "new_sub_level": 442, + "new_ttrating": 1350, + "newi_rating": 1920, + "old_cpi": 64.91199, + "old_license_level": 19, + "old_sub_level": 345, + "old_ttrating": 1350, + "oldi_rating": 1910, + "opt_laps_complete": 0, + "position": 25, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 31, + "starting_position_in_class": 5, + "suit": { + "pattern": 3, + "color1": "000000", + "color2": "ee6b00", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 25, + "finish_position_in_class": 5, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 82, + "interval": -1, + "laps_complete": 794, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 11, + "color1": "000000", + "color2": "ff0000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "125", + "wheel_color": "b32e2e", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 25, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 31, + "starting_position_in_class": 5, + "suit": { + "pattern": 3, + "color1": "000000", + "color2": "ee6b00", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -480821, + "display_name": "Team PaceLab - Red", + "aggregate_champ_points": 115, + "ai": false, + "average_lap": 1089613, + "best_lap_num": 13, + "best_lap_time": 1044404, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 115, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -480821, + "cust_id": 1287257, + "display_name": "Burak Egemen Yılmaz", + "aggregate_champ_points": 115, + "ai": false, + "average_lap": 1077671, + "best_lap_num": 132, + "best_lap_time": 1044564, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 115, + "class_interval": -1, + "country_code": "TR", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 26, + "finish_position_in_class": 6, + "flair_id": 215, + "flair_name": "Türkiye", + "flair_shortname": "TUR", + "friend": false, + "helmet": { + "pattern": 36, + "color1": "ffffff", + "color2": "ff0000", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 46, + "interval": -1, + "laps_complete": 344, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "23", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 77.44804, + "new_license_level": 16, + "new_sub_level": 472, + "new_ttrating": 1307, + "newi_rating": 2450, + "old_cpi": 26.810757, + "old_license_level": 14, + "old_sub_level": 223, + "old_ttrating": 1307, + "oldi_rating": 2426, + "opt_laps_complete": 0, + "position": 26, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 50, + "starting_position_in_class": 24, + "suit": { + "pattern": 21, + "color1": "000000", + "color2": "de00ff", + "color3": "230057" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -480821, + "cust_id": 1082557, + "display_name": "Ömer Baykal", + "aggregate_champ_points": 115, + "ai": false, + "average_lap": 1082556, + "best_lap_num": 13, + "best_lap_time": 1044404, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 115, + "class_interval": -1, + "country_code": "TR", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 26, + "finish_position_in_class": 6, + "flair_id": 215, + "flair_name": "Türkiye", + "flair_shortname": "TUR", + "friend": false, + "helmet": { + "pattern": 14, + "color1": "000000", + "color2": "ffa100", + "color3": "ff9100", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 48, + "interval": -1, + "laps_complete": 315, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "23", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 75.97765, + "new_license_level": 19, + "new_sub_level": 369, + "new_ttrating": 1353, + "newi_rating": 2634, + "old_cpi": 37.180595, + "old_license_level": 17, + "old_sub_level": 174, + "old_ttrating": 1353, + "oldi_rating": 2611, + "opt_laps_complete": 0, + "position": 26, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 50, + "starting_position_in_class": 24, + "suit": { + "pattern": 21, + "color1": "000000", + "color2": "de00ff", + "color3": "230057" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -480821, + "cust_id": 1221562, + "display_name": "Özgür Mustafa Divarcı", + "aggregate_champ_points": 115, + "ai": false, + "average_lap": 1093902, + "best_lap_num": 520, + "best_lap_time": 1048413, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 115, + "class_interval": -1, + "country_code": "TR", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 26, + "finish_position_in_class": 6, + "flair_id": 215, + "flair_name": "Türkiye", + "flair_shortname": "TUR", + "friend": false, + "helmet": { + "pattern": 7, + "color1": "ffffff", + "color2": "ffffff", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 25, + "interval": -1, + "laps_complete": 135, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "23", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 48.87903, + "new_license_level": 15, + "new_sub_level": 359, + "new_ttrating": 1500, + "newi_rating": 1706, + "old_cpi": 33.008003, + "old_license_level": 14, + "old_sub_level": 255, + "old_ttrating": 1500, + "oldi_rating": 1696, + "opt_laps_complete": 0, + "position": 26, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 50, + "starting_position_in_class": 24, + "suit": { + "pattern": 21, + "color1": "000000", + "color2": "de00ff", + "color3": "230057" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 26, + "finish_position_in_class": 6, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 119, + "interval": -1, + "laps_complete": 794, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "23", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 26, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 50, + "starting_position_in_class": 24, + "suit": { + "pattern": 21, + "color1": "000000", + "color2": "de00ff", + "color3": "230057" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -413546, + "display_name": "Should be Fine Motorsports", + "aggregate_champ_points": 110, + "ai": false, + "average_lap": 1091183, + "best_lap_num": 533, + "best_lap_time": 1045975, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 110, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -413546, + "cust_id": 1092119, + "display_name": "Chris Singh", + "aggregate_champ_points": 110, + "ai": false, + "average_lap": 1086013, + "best_lap_num": 416, + "best_lap_time": 1049428, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 110, + "class_interval": -1, + "country_code": "US", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 27, + "finish_position_in_class": 7, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 22, + "color1": "f9ff00", + "color2": "ff0000", + "color3": "00c341", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 62, + "interval": -1, + "laps_complete": 291, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 17, + "color1": "efd600", + "color2": "111111", + "color3": "d7162d", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "25", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 54.59016, + "new_license_level": 18, + "new_sub_level": 275, + "new_ttrating": 1350, + "newi_rating": 2797, + "old_cpi": 36.08681, + "old_license_level": 17, + "old_sub_level": 169, + "old_ttrating": 1350, + "oldi_rating": 2777, + "opt_laps_complete": 0, + "position": 27, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 42, + "starting_position_in_class": 16, + "suit": { + "pattern": 33, + "color1": "00f035", + "color2": "020101", + "color3": "e61010" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -413546, + "cust_id": 978547, + "display_name": "Victoria Butler", + "aggregate_champ_points": 110, + "ai": false, + "average_lap": 1074219, + "best_lap_num": 533, + "best_lap_time": 1045975, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 110, + "class_interval": -1, + "country_code": "US", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 27, + "finish_position_in_class": 7, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "1a4b9b", + "color2": "dff000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 6, + "interval": -1, + "laps_complete": 261, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 17, + "color1": "efd600", + "color2": "111111", + "color3": "d7162d", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "25", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 145.79706, + "new_license_level": 12, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 1952, + "old_cpi": 42.277386, + "old_license_level": 11, + "old_sub_level": 393, + "old_ttrating": 1350, + "oldi_rating": 1934, + "opt_laps_complete": 0, + "position": 27, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 42, + "starting_position_in_class": 16, + "suit": { + "pattern": 33, + "color1": "00f035", + "color2": "020101", + "color3": "e61010" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -413546, + "cust_id": 863800, + "display_name": "William Matejcek2", + "aggregate_champ_points": 110, + "ai": false, + "average_lap": 1082130, + "best_lap_num": 465, + "best_lap_time": 1052368, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 110, + "class_interval": -1, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 27, + "finish_position_in_class": 7, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 56, + "color1": "1af000", + "color2": "111111", + "color3": "f40c27", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 15, + "interval": -1, + "laps_complete": 241, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 17, + "color1": "efd600", + "color2": "111111", + "color3": "d7162d", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "25", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 113.510925, + "new_license_level": 20, + "new_sub_level": 472, + "new_ttrating": 1274, + "newi_rating": 2041, + "old_cpi": 33.42086, + "old_license_level": 18, + "old_sub_level": 201, + "old_ttrating": 1274, + "oldi_rating": 2024, + "opt_laps_complete": 0, + "position": 27, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 42, + "starting_position_in_class": 16, + "suit": { + "pattern": 33, + "color1": "00f035", + "color2": "020101", + "color3": "e61010" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 27, + "finish_position_in_class": 7, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 83, + "interval": -1, + "laps_complete": 793, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 17, + "color1": "efd600", + "color2": "111111", + "color3": "d7162d", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "25", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 27, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 42, + "starting_position_in_class": 16, + "suit": { + "pattern": 33, + "color1": "00f035", + "color2": "020101", + "color3": "e61010" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -434794, + "display_name": "Rag1ng Dragons e-Sports #Team Gold", + "aggregate_champ_points": 106, + "ai": false, + "average_lap": 1092164, + "best_lap_num": 616, + "best_lap_time": 1046594, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 106, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -434794, + "cust_id": 785721, + "display_name": "Lucas Benini", + "aggregate_champ_points": 106, + "ai": false, + "average_lap": 1077894, + "best_lap_num": 687, + "best_lap_time": 1049846, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 106, + "class_interval": -1, + "country_code": "BR", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 28, + "finish_position_in_class": 8, + "flair_id": 31, + "flair_name": "Brazil", + "flair_shortname": "BRA", + "friend": false, + "helmet": { + "pattern": 22, + "color1": "ffed00", + "color2": "008cff", + "color3": "1cff00", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 13, + "interval": -1, + "laps_complete": 213, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 4, + "color1": "effc53", + "color2": "43cd41", + "color3": "1e42db", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "30", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 108.44981, + "new_license_level": 20, + "new_sub_level": 465, + "new_ttrating": 1291, + "newi_rating": 2547, + "old_cpi": 54.275417, + "old_license_level": 19, + "old_sub_level": 318, + "old_ttrating": 1291, + "oldi_rating": 2534, + "opt_laps_complete": 0, + "position": 28, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 55, + "starting_position_in_class": 29, + "suit": { + "pattern": 1, + "color1": "22b428", + "color2": "353bcc", + "color3": "d3f118" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -434794, + "cust_id": 767696, + "display_name": "Vinicius Arlindo", + "aggregate_champ_points": 106, + "ai": false, + "average_lap": 1069663, + "best_lap_num": 616, + "best_lap_time": 1046594, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 106, + "class_interval": -1, + "country_code": "BR", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 28, + "finish_position_in_class": 8, + "flair_id": 31, + "flair_name": "Brazil", + "flair_shortname": "BRA", + "friend": false, + "helmet": { + "pattern": 48, + "color1": "faff00", + "color2": "000000", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 15, + "interval": -1, + "laps_complete": 193, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 4, + "color1": "effc53", + "color2": "43cd41", + "color3": "1e42db", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "30", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 92.24609, + "new_license_level": 19, + "new_sub_level": 398, + "new_ttrating": 1574, + "newi_rating": 3651, + "old_cpi": 37.401604, + "old_license_level": 18, + "old_sub_level": 218, + "old_ttrating": 1574, + "oldi_rating": 3640, + "opt_laps_complete": 0, + "position": 28, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 55, + "starting_position_in_class": 29, + "suit": { + "pattern": 1, + "color1": "22b428", + "color2": "353bcc", + "color3": "d3f118" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -434794, + "cust_id": 1302797, + "display_name": "Cadu Rodrigues", + "aggregate_champ_points": 106, + "ai": false, + "average_lap": 1087061, + "best_lap_num": 563, + "best_lap_time": 1048727, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 106, + "class_interval": -1, + "country_code": "BR", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 28, + "finish_position_in_class": 8, + "flair_id": 31, + "flair_name": "Brazil", + "flair_shortname": "BRA", + "friend": false, + "helmet": { + "pattern": 35, + "color1": "000000", + "color2": "858585", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 11, + "interval": -1, + "laps_complete": 179, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 4, + "color1": "effc53", + "color2": "43cd41", + "color3": "1e42db", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "30", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 103.770775, + "new_license_level": 20, + "new_sub_level": 458, + "new_ttrating": 1277, + "newi_rating": 1802, + "old_cpi": 41.475243, + "old_license_level": 18, + "old_sub_level": 234, + "old_ttrating": 1277, + "oldi_rating": 1792, + "opt_laps_complete": 0, + "position": 28, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 55, + "starting_position_in_class": 29, + "suit": { + "pattern": 1, + "color1": "22b428", + "color2": "353bcc", + "color3": "d3f118" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -434794, + "cust_id": 1141882, + "display_name": "Bernardo Martins6", + "aggregate_champ_points": 106, + "ai": false, + "average_lap": 1083352, + "best_lap_num": 319, + "best_lap_time": 1053262, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 106, + "class_interval": -1, + "country_code": "BR", + "division": 5, + "division_name": "Division 6", + "drop_race": false, + "finish_position": 28, + "finish_position_in_class": 8, + "flair_id": 31, + "flair_name": "Brazil", + "flair_shortname": "BRA", + "friend": false, + "helmet": { + "pattern": 8, + "color1": "effc53", + "color2": "43cd41", + "color3": "1e42db", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 14, + "interval": -1, + "laps_complete": 116, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 4, + "color1": "effc53", + "color2": "43cd41", + "color3": "1e42db", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "30", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 62.308594, + "new_license_level": 18, + "new_sub_level": 295, + "new_ttrating": 1350, + "newi_rating": 2102, + "old_cpi": 39.766796, + "old_license_level": 18, + "old_sub_level": 228, + "old_ttrating": 1350, + "oldi_rating": 2095, + "opt_laps_complete": 0, + "position": 28, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 55, + "starting_position_in_class": 29, + "suit": { + "pattern": 1, + "color1": "22b428", + "color2": "353bcc", + "color3": "d3f118" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -434794, + "cust_id": 1141673, + "display_name": "Anderson De Souza Silva", + "aggregate_champ_points": 106, + "ai": false, + "average_lap": 1092235, + "best_lap_num": 268, + "best_lap_time": 1060248, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 106, + "class_interval": -1, + "country_code": "BR", + "division": 6, + "division_name": "Division 7", + "drop_race": false, + "finish_position": 28, + "finish_position_in_class": 8, + "flair_id": 31, + "flair_name": "Brazil", + "flair_shortname": "BRA", + "friend": false, + "helmet": { + "pattern": 57, + "color1": "ffffff", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 19, + "interval": -1, + "laps_complete": 91, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 4, + "color1": "effc53", + "color2": "43cd41", + "color3": "1e42db", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "30", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 53.81801, + "new_license_level": 18, + "new_sub_level": 273, + "new_ttrating": 1350, + "newi_rating": 1411, + "old_cpi": 50.375633, + "old_license_level": 18, + "old_sub_level": 263, + "old_ttrating": 1350, + "oldi_rating": 1406, + "opt_laps_complete": 0, + "position": 28, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 55, + "starting_position_in_class": 29, + "suit": { + "pattern": 1, + "color1": "22b428", + "color2": "353bcc", + "color3": "d3f118" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 28, + "finish_position_in_class": 8, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 72, + "interval": -1, + "laps_complete": 792, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 4, + "color1": "effc53", + "color2": "43cd41", + "color3": "1e42db", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "30", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 28, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 55, + "starting_position_in_class": 29, + "suit": { + "pattern": 1, + "color1": "22b428", + "color2": "353bcc", + "color3": "d3f118" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -454924, + "display_name": "Top Tier Motorsport #222", + "aggregate_champ_points": 102, + "ai": false, + "average_lap": 1093968, + "best_lap_num": 606, + "best_lap_time": 1043768, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 102, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -454924, + "cust_id": 990132, + "display_name": "Bradley Trevett", + "aggregate_champ_points": 102, + "ai": false, + "average_lap": 1078904, + "best_lap_num": 96, + "best_lap_time": 1047704, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 102, + "class_interval": -1, + "country_code": "GB", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 29, + "finish_position_in_class": 9, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 67, + "color1": "00ffd9", + "color2": "ffffff", + "color3": "ff81e4", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 26, + "interval": -1, + "laps_complete": 234, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 4, + "color1": "efd600", + "color2": "111111", + "color3": "d7162d", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "222", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 78.25965, + "new_license_level": 12, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2309, + "old_cpi": 17.627136, + "old_license_level": 9, + "old_sub_level": 178, + "old_ttrating": 1350, + "oldi_rating": 2296, + "opt_laps_complete": 0, + "position": 29, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 49, + "starting_position_in_class": 23, + "suit": { + "pattern": 33, + "color1": "9500f0", + "color2": "111111", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -454924, + "cust_id": 212484, + "display_name": "Thomas Knapton", + "aggregate_champ_points": 102, + "ai": false, + "average_lap": 1069980, + "best_lap_num": 606, + "best_lap_time": 1043768, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 102, + "class_interval": -1, + "country_code": "TH", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 29, + "finish_position_in_class": 9, + "flair_id": 208, + "flair_name": "Thailand", + "flair_shortname": "THA", + "friend": false, + "helmet": { + "pattern": 49, + "color1": "ffffff", + "color2": "ed2129", + "color3": "2a3795", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 32, + "interval": -1, + "laps_complete": 213, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 4, + "color1": "efd600", + "color2": "111111", + "color3": "d7162d", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "222", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 81.22818, + "new_license_level": 20, + "new_sub_level": 420, + "new_ttrating": 1391, + "newi_rating": 2462, + "old_cpi": 83.66629, + "old_license_level": 20, + "old_sub_level": 425, + "old_ttrating": 1391, + "oldi_rating": 2450, + "opt_laps_complete": 0, + "position": 29, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 49, + "starting_position_in_class": 23, + "suit": { + "pattern": 33, + "color1": "9500f0", + "color2": "111111", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -454924, + "cust_id": 1093170, + "display_name": "Tyler Parslow", + "aggregate_champ_points": 102, + "ai": false, + "average_lap": 1076284, + "best_lap_num": 445, + "best_lap_time": 1048132, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 102, + "class_interval": -1, + "country_code": "GB", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 29, + "finish_position_in_class": 9, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "9c00f0", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 19, + "interval": -1, + "laps_complete": 180, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 4, + "color1": "efd600", + "color2": "111111", + "color3": "d7162d", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "222", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 82.85521, + "new_license_level": 19, + "new_sub_level": 382, + "new_ttrating": 1323, + "newi_rating": 2073, + "old_cpi": 57.45987, + "old_license_level": 19, + "old_sub_level": 327, + "old_ttrating": 1323, + "oldi_rating": 2063, + "opt_laps_complete": 0, + "position": 29, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 49, + "starting_position_in_class": 23, + "suit": { + "pattern": 33, + "color1": "9500f0", + "color2": "111111", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -454924, + "cust_id": 855270, + "display_name": "Dan Munro", + "aggregate_champ_points": 102, + "ai": false, + "average_lap": 1087668, + "best_lap_num": 515, + "best_lap_time": 1046019, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 102, + "class_interval": -1, + "country_code": "GB", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 29, + "finish_position_in_class": 9, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "111111", + "color2": "ed1c24", + "color3": "cccccc", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 35, + "interval": -1, + "laps_complete": 164, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 4, + "color1": "efd600", + "color2": "111111", + "color3": "d7162d", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "222", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 37.095116, + "new_license_level": 11, + "new_sub_level": 373, + "new_ttrating": 1350, + "newi_rating": 2026, + "old_cpi": 19.39725, + "old_license_level": 10, + "old_sub_level": 230, + "old_ttrating": 1350, + "oldi_rating": 2017, + "opt_laps_complete": 0, + "position": 29, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 49, + "starting_position_in_class": 23, + "suit": { + "pattern": 33, + "color1": "9500f0", + "color2": "111111", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 29, + "finish_position_in_class": 9, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 112, + "interval": -1, + "laps_complete": 791, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 4, + "color1": "efd600", + "color2": "111111", + "color3": "d7162d", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "222", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 29, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 49, + "starting_position_in_class": 23, + "suit": { + "pattern": 33, + "color1": "9500f0", + "color2": "111111", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -472037, + "display_name": "APEXNOVA SIMRACING PURPLE", + "aggregate_champ_points": 97, + "ai": false, + "average_lap": 1095989, + "best_lap_num": 406, + "best_lap_time": 1045554, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 97, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -472037, + "cust_id": 363097, + "display_name": "Tobias Kracht", + "aggregate_champ_points": 97, + "ai": false, + "average_lap": 1067505, + "best_lap_num": 406, + "best_lap_time": 1045554, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 97, + "class_interval": -1, + "country_code": "DE", + "division": 6, + "division_name": "Division 7", + "drop_race": false, + "finish_position": 30, + "finish_position_in_class": 10, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 35, + "color1": "2575b0", + "color2": "7e1c6e", + "color3": "f90000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 56, + "interval": -1, + "laps_complete": 295, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "fb0ead", + "color2": "424242", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "17", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 57.572872, + "new_license_level": 15, + "new_sub_level": 384, + "new_ttrating": 1350, + "newi_rating": 2797, + "old_cpi": 31.962917, + "old_license_level": 14, + "old_sub_level": 250, + "old_ttrating": 1350, + "oldi_rating": 2783, + "opt_laps_complete": 0, + "position": 30, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 34, + "starting_position_in_class": 8, + "suit": { + "pattern": 17, + "color1": "2F2F2F", + "color2": "404334", + "color3": "2F4F4F" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -472037, + "cust_id": 1375930, + "display_name": "Bartosz Swiechowicz2", + "aggregate_champ_points": 97, + "ai": false, + "average_lap": 1091542, + "best_lap_num": 579, + "best_lap_time": 1048268, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 97, + "class_interval": -1, + "country_code": "DE", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 30, + "finish_position_in_class": 10, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "2e358f", + "color2": "ec232d", + "color3": "0a0a0a", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 21, + "interval": -1, + "laps_complete": 252, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "fb0ead", + "color2": "424242", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "17", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 96.417336, + "new_license_level": 20, + "new_sub_level": 447, + "new_ttrating": 1350, + "newi_rating": 2294, + "old_cpi": 48.92359, + "old_license_level": 19, + "old_sub_level": 302, + "old_ttrating": 1350, + "oldi_rating": 2282, + "opt_laps_complete": 0, + "position": 30, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 34, + "starting_position_in_class": 8, + "suit": { + "pattern": 17, + "color1": "2F2F2F", + "color2": "404334", + "color3": "2F4F4F" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -472037, + "cust_id": 1122337, + "display_name": "Frank Berndt", + "aggregate_champ_points": 97, + "ai": false, + "average_lap": 1099532, + "best_lap_num": 484, + "best_lap_time": 1053714, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 97, + "class_interval": -1, + "country_code": "DE", + "division": 7, + "division_name": "Division 8", + "drop_race": false, + "finish_position": 30, + "finish_position_in_class": 10, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 56, + "color1": "111111", + "color2": "ffffff", + "color3": "2b00d9", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 39, + "interval": -1, + "laps_complete": 242, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "fb0ead", + "color2": "424242", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "17", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 66.943726, + "new_license_level": 19, + "new_sub_level": 350, + "new_ttrating": 1350, + "newi_rating": 1660, + "old_cpi": 41.53764, + "old_license_level": 18, + "old_sub_level": 234, + "old_ttrating": 1350, + "oldi_rating": 1649, + "opt_laps_complete": 0, + "position": 30, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 34, + "starting_position_in_class": 8, + "suit": { + "pattern": 17, + "color1": "2F2F2F", + "color2": "404334", + "color3": "2F4F4F" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 30, + "finish_position_in_class": 10, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 116, + "interval": -1, + "laps_complete": 789, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "fb0ead", + "color2": "424242", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "17", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 30, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 34, + "starting_position_in_class": 8, + "suit": { + "pattern": 17, + "color1": "2F2F2F", + "color2": "404334", + "color3": "2F4F4F" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -175849, + "display_name": "Maniti Racing Yellow", + "aggregate_champ_points": 93, + "ai": false, + "average_lap": 1096796, + "best_lap_num": 393, + "best_lap_time": 1047142, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 156, + "car_name": "Mercedes-AMG GT3 2020", + "carcfg": -1, + "champ_points": 93, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -175849, + "cust_id": 1060062, + "display_name": "Marvin Bär", + "aggregate_champ_points": 93, + "ai": false, + "average_lap": 1067074, + "best_lap_num": 393, + "best_lap_time": 1047142, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 156, + "car_name": "Mercedes-AMG GT3 2020", + "carcfg": -1, + "champ_points": 93, + "class_interval": -1, + "country_code": "DE", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 31, + "finish_position_in_class": 11, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 49, + "color1": "ffffff", + "color2": "bbbbbb", + "color3": "4a4a4a", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 21, + "interval": -1, + "laps_complete": 220, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 156, + "pattern": 0, + "color1": "000000", + "color2": "08ad22", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "78", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 99, + "new_cpi": 92.41379, + "new_license_level": 19, + "new_sub_level": 399, + "new_ttrating": 1350, + "newi_rating": 3092, + "old_cpi": 42.426422, + "old_license_level": 18, + "old_sub_level": 237, + "old_ttrating": 1350, + "oldi_rating": 3083, + "opt_laps_complete": 0, + "position": 31, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 37, + "starting_position_in_class": 11, + "suit": { + "pattern": 29, + "color1": "00ff19", + "color2": "04ff00", + "color3": "42ff00" + }, + "watched": false, + "weight_penalty_kg": 3 + }, + { + "team_id": -175849, + "cust_id": 314054, + "display_name": "Jan-Eike Zanders", + "aggregate_champ_points": 93, + "ai": false, + "average_lap": 1071156, + "best_lap_num": 330, + "best_lap_time": 1049933, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 156, + "car_name": "Mercedes-AMG GT3 2020", + "carcfg": -1, + "champ_points": 93, + "class_interval": -1, + "country_code": "DE", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 31, + "finish_position_in_class": 11, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": true, + "helmet": { + "pattern": 8, + "color1": "47190b", + "color2": "111111", + "color3": "ffee47", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 44, + "interval": -1, + "laps_complete": 214, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 156, + "pattern": 0, + "color1": "000000", + "color2": "08ad22", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "78", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 99, + "new_cpi": 53.88748, + "new_license_level": 18, + "new_sub_level": 274, + "new_ttrating": 1350, + "newi_rating": 2504, + "old_cpi": 40.080284, + "old_license_level": 18, + "old_sub_level": 229, + "old_ttrating": 1350, + "oldi_rating": 2496, + "opt_laps_complete": 0, + "position": 31, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 37, + "starting_position_in_class": 11, + "suit": { + "pattern": 29, + "color1": "00ff19", + "color2": "04ff00", + "color3": "42ff00" + }, + "watched": false, + "weight_penalty_kg": 3 + }, + { + "team_id": -175849, + "cust_id": 1347955, + "display_name": "Kai Kuhlmann", + "aggregate_champ_points": 93, + "ai": false, + "average_lap": 1089556, + "best_lap_num": 515, + "best_lap_time": 1053140, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 156, + "car_name": "Mercedes-AMG GT3 2020", + "carcfg": -1, + "champ_points": 93, + "class_interval": -1, + "country_code": "DE", + "division": 5, + "division_name": "Division 6", + "drop_race": false, + "finish_position": 31, + "finish_position_in_class": 11, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "000000", + "color2": "000000", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 23, + "interval": -1, + "laps_complete": 183, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 156, + "pattern": 0, + "color1": "000000", + "color2": "08ad22", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "78", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 99, + "new_cpi": 81.67377, + "new_license_level": 19, + "new_sub_level": 380, + "new_ttrating": 1350, + "newi_rating": 1918, + "old_cpi": 63.97849, + "old_license_level": 19, + "old_sub_level": 343, + "old_ttrating": 1350, + "oldi_rating": 1911, + "opt_laps_complete": 0, + "position": 31, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 37, + "starting_position_in_class": 11, + "suit": { + "pattern": 29, + "color1": "00ff19", + "color2": "04ff00", + "color3": "42ff00" + }, + "watched": false, + "weight_penalty_kg": 3 + }, + { + "team_id": -175849, + "cust_id": 1279309, + "display_name": "Damian Ziegler2", + "aggregate_champ_points": 93, + "ai": false, + "average_lap": 1096004, + "best_lap_num": 567, + "best_lap_time": 1059589, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 156, + "car_name": "Mercedes-AMG GT3 2020", + "carcfg": -1, + "champ_points": 93, + "class_interval": -1, + "country_code": "DE", + "division": 7, + "division_name": "Division 8", + "drop_race": false, + "finish_position": 31, + "finish_position_in_class": 11, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "00ffee", + "color2": "000aff", + "color3": "00ffee", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 21, + "interval": -1, + "laps_complete": 171, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 156, + "pattern": 0, + "color1": "000000", + "color2": "08ad22", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "78", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 99, + "new_cpi": 74.08013, + "new_license_level": 19, + "new_sub_level": 365, + "new_ttrating": 1350, + "newi_rating": 1573, + "old_cpi": 42.955307, + "old_license_level": 18, + "old_sub_level": 239, + "old_ttrating": 1350, + "oldi_rating": 1566, + "opt_laps_complete": 0, + "position": 31, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 37, + "starting_position_in_class": 11, + "suit": { + "pattern": 29, + "color1": "00ff19", + "color2": "04ff00", + "color3": "42ff00" + }, + "watched": false, + "weight_penalty_kg": 3 + } + ], + "drop_race": false, + "finish_position": 31, + "finish_position_in_class": 11, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 109, + "interval": -1, + "laps_complete": 788, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 156, + "pattern": 0, + "color1": "000000", + "color2": "08ad22", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "78", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 99, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 31, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 37, + "starting_position_in_class": 11, + "suit": { + "pattern": 29, + "color1": "00ff19", + "color2": "04ff00", + "color3": "42ff00" + }, + "watched": false, + "weight_penalty_kg": 3 + }, + { + "team_id": -224061, + "display_name": "Pineapple Racing Club", + "aggregate_champ_points": 88, + "ai": false, + "average_lap": 1098953, + "best_lap_num": 25, + "best_lap_time": 1047073, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 185, + "car_name": "Ford Mustang GT3", + "carcfg": -1, + "champ_points": 88, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -224061, + "cust_id": 638937, + "display_name": "Pawel Dominiak", + "aggregate_champ_points": 88, + "ai": false, + "average_lap": 1079526, + "best_lap_num": 190, + "best_lap_time": 1048527, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 185, + "car_name": "Ford Mustang GT3", + "carcfg": -1, + "champ_points": 88, + "class_interval": -1, + "country_code": "PL", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 32, + "finish_position_in_class": 12, + "flair_id": 167, + "flair_name": "Poland", + "flair_shortname": "POL", + "friend": false, + "helmet": { + "pattern": 68, + "color1": "ffffff", + "color2": "00a3ff", + "color3": "00f7ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 9, + "interval": -1, + "laps_complete": 180, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 185, + "pattern": 12, + "color1": "e3ff54", + "color2": "000000", + "color3": "004092", + "number_font": 0, + "number_color1": "004092", + "number_color2": "ffffff", + "number_color3": "777777", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "14", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 101.919876, + "new_license_level": 20, + "new_sub_level": 455, + "new_ttrating": 1350, + "newi_rating": 2530, + "old_cpi": 36.505352, + "old_license_level": 18, + "old_sub_level": 215, + "old_ttrating": 1350, + "oldi_rating": 2524, + "opt_laps_complete": 0, + "position": 32, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 38, + "starting_position_in_class": 12, + "suit": { + "pattern": 19, + "color1": "252525", + "color2": "7952a2", + "color3": "ecef00" + }, + "watched": false, + "weight_penalty_kg": 10 + }, + { + "team_id": -224061, + "cust_id": 301782, + "display_name": "Ben Cooper5", + "aggregate_champ_points": 88, + "ai": false, + "average_lap": 1074142, + "best_lap_num": 25, + "best_lap_time": 1047073, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 185, + "car_name": "Ford Mustang GT3", + "carcfg": -1, + "champ_points": 88, + "class_interval": -1, + "country_code": "GB", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 32, + "finish_position_in_class": 12, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 46, + "color1": "565555", + "color2": "fff500", + "color3": "ae0077", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 14, + "interval": -1, + "laps_complete": 161, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 185, + "pattern": 12, + "color1": "e3ff54", + "color2": "000000", + "color3": "004092", + "number_font": 0, + "number_color1": "004092", + "number_color2": "ffffff", + "number_color3": "777777", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "14", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 158.22897, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 3233, + "old_cpi": 202.223, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 3228, + "opt_laps_complete": 0, + "position": 32, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 38, + "starting_position_in_class": 12, + "suit": { + "pattern": 19, + "color1": "252525", + "color2": "7952a2", + "color3": "ecef00" + }, + "watched": false, + "weight_penalty_kg": 10 + }, + { + "team_id": -224061, + "cust_id": 407913, + "display_name": "Dale Jackson", + "aggregate_champ_points": 88, + "ai": false, + "average_lap": 1083572, + "best_lap_num": 531, + "best_lap_time": 1052749, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 185, + "car_name": "Ford Mustang GT3", + "carcfg": -1, + "champ_points": 88, + "class_interval": -1, + "country_code": "CA", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 32, + "finish_position_in_class": 12, + "flair_id": 39, + "flair_name": "Canada", + "flair_shortname": "CAN", + "friend": false, + "helmet": { + "pattern": 0, + "color1": "ffe500", + "color2": "ffde00", + "color3": "ffed00", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 26, + "interval": -1, + "laps_complete": 160, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 185, + "pattern": 12, + "color1": "e3ff54", + "color2": "000000", + "color3": "004092", + "number_font": 0, + "number_color1": "004092", + "number_color2": "ffffff", + "number_color3": "777777", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "14", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 63.47874, + "new_license_level": 18, + "new_sub_level": 298, + "new_ttrating": 1350, + "newi_rating": 2370, + "old_cpi": 46.27041, + "old_license_level": 18, + "old_sub_level": 251, + "old_ttrating": 1350, + "oldi_rating": 2365, + "opt_laps_complete": 0, + "position": 32, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 38, + "starting_position_in_class": 12, + "suit": { + "pattern": 19, + "color1": "252525", + "color2": "7952a2", + "color3": "ecef00" + }, + "watched": false, + "weight_penalty_kg": 10 + }, + { + "team_id": -224061, + "cust_id": 930792, + "display_name": "Daniel Marshall8", + "aggregate_champ_points": 88, + "ai": false, + "average_lap": 1118998, + "best_lap_num": 341, + "best_lap_time": 1066673, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 185, + "car_name": "Ford Mustang GT3", + "carcfg": -1, + "champ_points": 88, + "class_interval": -1, + "country_code": "GB", + "division": 7, + "division_name": "Division 8", + "drop_race": false, + "finish_position": 32, + "finish_position_in_class": 12, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "ffffff", + "color2": "ff3131", + "color3": "e4fd03", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 41, + "interval": -1, + "laps_complete": 150, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 185, + "pattern": 12, + "color1": "e3ff54", + "color2": "000000", + "color3": "004092", + "number_font": 0, + "number_color1": "004092", + "number_color2": "ffffff", + "number_color3": "777777", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "14", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 32.370667, + "new_license_level": 11, + "new_sub_level": 352, + "new_ttrating": 1350, + "newi_rating": 1217, + "old_cpi": 23.752806, + "old_license_level": 11, + "old_sub_level": 304, + "old_ttrating": 1350, + "oldi_rating": 1212, + "opt_laps_complete": 0, + "position": 32, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 38, + "starting_position_in_class": 12, + "suit": { + "pattern": 19, + "color1": "252525", + "color2": "7952a2", + "color3": "ecef00" + }, + "watched": false, + "weight_penalty_kg": 10 + }, + { + "team_id": -224061, + "cust_id": 295562, + "display_name": "David Brown23", + "aggregate_champ_points": 88, + "ai": false, + "average_lap": 1110138, + "best_lap_num": 465, + "best_lap_time": 1057464, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 185, + "car_name": "Ford Mustang GT3", + "carcfg": -1, + "champ_points": 88, + "class_interval": -1, + "country_code": "GB", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 32, + "finish_position_in_class": 12, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "6a07e9", + "color2": "ccff00", + "color3": "2d2961", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 16, + "interval": -1, + "laps_complete": 136, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 185, + "pattern": 12, + "color1": "e3ff54", + "color2": "000000", + "color3": "004092", + "number_font": 0, + "number_color1": "004092", + "number_color2": "ffffff", + "number_color3": "777777", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "14", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 86.30251, + "new_license_level": 19, + "new_sub_level": 388, + "new_ttrating": 1350, + "newi_rating": 2284, + "old_cpi": 72.52085, + "old_license_level": 19, + "old_sub_level": 362, + "old_ttrating": 1350, + "oldi_rating": 2280, + "opt_laps_complete": 0, + "position": 32, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 38, + "starting_position_in_class": 12, + "suit": { + "pattern": 19, + "color1": "252525", + "color2": "7952a2", + "color3": "ecef00" + }, + "watched": false, + "weight_penalty_kg": 10 + } + ], + "drop_race": false, + "finish_position": 32, + "finish_position_in_class": 12, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 106, + "interval": -1, + "laps_complete": 787, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 185, + "pattern": 12, + "color1": "e3ff54", + "color2": "000000", + "color3": "004092", + "number_font": 0, + "number_color1": "004092", + "number_color2": "ffffff", + "number_color3": "777777", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "14", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 32, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 38, + "starting_position_in_class": 12, + "suit": { + "pattern": 19, + "color1": "252525", + "color2": "7952a2", + "color3": "ecef00" + }, + "watched": false, + "weight_penalty_kg": 10 + }, + { + "team_id": -327700, + "display_name": "SFR ITALIA", + "aggregate_champ_points": 84, + "ai": false, + "average_lap": 1101454, + "best_lap_num": 385, + "best_lap_time": 1045474, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 84, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -327700, + "cust_id": 1005007, + "display_name": "Andrea Lamponi", + "aggregate_champ_points": 84, + "ai": false, + "average_lap": 1090352, + "best_lap_num": 603, + "best_lap_time": 1047058, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 84, + "class_interval": -1, + "country_code": "IT", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 33, + "finish_position_in_class": 13, + "flair_id": 101, + "flair_name": "Italy", + "flair_shortname": "ITA", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "5481fc", + "color2": "ffffff", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 46, + "interval": -1, + "laps_complete": 295, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 11, + "color1": "D4FF0F", + "color2": "00FF00", + "color3": "111111", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "19", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 75.235085, + "new_license_level": 19, + "new_sub_level": 367, + "new_ttrating": 1302, + "newi_rating": 2284, + "old_cpi": 72.3915, + "old_license_level": 19, + "old_sub_level": 362, + "old_ttrating": 1302, + "oldi_rating": 2276, + "opt_laps_complete": 0, + "position": 33, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 53, + "starting_position_in_class": 27, + "suit": { + "pattern": 22, + "color1": "faff00", + "color2": "000000", + "color3": "7ef22e" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -327700, + "cust_id": 967697, + "display_name": "Fabio Lamberto", + "aggregate_champ_points": 84, + "ai": false, + "average_lap": 1075330, + "best_lap_num": 385, + "best_lap_time": 1045474, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 84, + "class_interval": -1, + "country_code": "IT", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 33, + "finish_position_in_class": 13, + "flair_id": 101, + "flair_name": "Italy", + "flair_shortname": "ITA", + "friend": false, + "helmet": { + "pattern": 36, + "color1": "d4ff0f", + "color2": "00ff00", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 39, + "interval": -1, + "laps_complete": 270, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 11, + "color1": "D4FF0F", + "color2": "00FF00", + "color3": "111111", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "19", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 76.99228, + "new_license_level": 19, + "new_sub_level": 371, + "new_ttrating": 1715, + "newi_rating": 1903, + "old_cpi": 49.640137, + "old_license_level": 18, + "old_sub_level": 261, + "old_ttrating": 1715, + "oldi_rating": 1896, + "opt_laps_complete": 0, + "position": 33, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 53, + "starting_position_in_class": 27, + "suit": { + "pattern": 22, + "color1": "faff00", + "color2": "000000", + "color3": "7ef22e" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -327700, + "cust_id": 814236, + "display_name": "Alan Binacchi", + "aggregate_champ_points": 84, + "ai": false, + "average_lap": 1109829, + "best_lap_num": 81, + "best_lap_time": 1049096, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 84, + "class_interval": -1, + "country_code": "IT", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 33, + "finish_position_in_class": 13, + "flair_id": 101, + "flair_name": "Italy", + "flair_shortname": "ITA", + "friend": false, + "helmet": { + "pattern": 11, + "color1": "10e632", + "color2": "daed1c", + "color3": "cccccc", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 32, + "interval": -1, + "laps_complete": 220, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 11, + "color1": "D4FF0F", + "color2": "00FF00", + "color3": "111111", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "19", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 77.29383, + "new_license_level": 19, + "new_sub_level": 372, + "new_ttrating": 1309, + "newi_rating": 2487, + "old_cpi": 67.18803, + "old_license_level": 19, + "old_sub_level": 350, + "old_ttrating": 1309, + "oldi_rating": 2481, + "opt_laps_complete": 0, + "position": 33, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 53, + "starting_position_in_class": 27, + "suit": { + "pattern": 22, + "color1": "faff00", + "color2": "000000", + "color3": "7ef22e" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 33, + "finish_position_in_class": 13, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 117, + "interval": -1, + "laps_complete": 785, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 11, + "color1": "D4FF0F", + "color2": "00FF00", + "color3": "111111", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "19", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 33, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 53, + "starting_position_in_class": 27, + "suit": { + "pattern": 22, + "color1": "faff00", + "color2": "000000", + "color3": "7ef22e" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -298205, + "display_name": "CDLC", + "aggregate_champ_points": 79, + "ai": false, + "average_lap": 1105729, + "best_lap_num": 296, + "best_lap_time": 1050186, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 188, + "car_name": "McLaren 720S GT3 EVO", + "carcfg": -1, + "champ_points": 79, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -298205, + "cust_id": 692986, + "display_name": "Andreas Carlsson", + "aggregate_champ_points": 79, + "ai": false, + "average_lap": 1088416, + "best_lap_num": 296, + "best_lap_time": 1050186, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 188, + "car_name": "McLaren 720S GT3 EVO", + "carcfg": -1, + "champ_points": 79, + "class_interval": -1, + "country_code": "SE", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 34, + "finish_position_in_class": 14, + "flair_id": 203, + "flair_name": "Sweden", + "flair_shortname": "SWE", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "000000", + "color2": "1e1e1e", + "color3": "007dff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 11, + "interval": -1, + "laps_complete": 439, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 188, + "pattern": 4, + "color1": "0073d2", + "color2": "ff5c00", + "color3": "292d33", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "46", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 97, + "new_cpi": 336.55923, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1375, + "newi_rating": 2873, + "old_cpi": 138.13417, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1375, + "oldi_rating": 2867, + "opt_laps_complete": 0, + "position": 34, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 39, + "starting_position_in_class": 13, + "suit": { + "pattern": 31, + "color1": "000000", + "color2": "0378ff", + "color3": "ff4d00" + }, + "watched": false, + "weight_penalty_kg": 5 + }, + { + "team_id": -298205, + "cust_id": 340070, + "display_name": "Marco Henderson", + "aggregate_champ_points": 79, + "ai": false, + "average_lap": 1098248, + "best_lap_num": 468, + "best_lap_time": 1057543, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 188, + "car_name": "McLaren 720S GT3 EVO", + "carcfg": -1, + "champ_points": 79, + "class_interval": -1, + "country_code": "DE", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 34, + "finish_position_in_class": 14, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 58, + "color1": "000000", + "color2": "e9ed21", + "color3": "ff0000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 41, + "interval": -1, + "laps_complete": 343, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 188, + "pattern": 4, + "color1": "0073d2", + "color2": "ff5c00", + "color3": "292d33", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "46", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 97, + "new_cpi": 106.09341, + "new_license_level": 20, + "new_sub_level": 461, + "new_ttrating": 1350, + "newi_rating": 1709, + "old_cpi": 127.72311, + "old_license_level": 20, + "old_sub_level": 490, + "old_ttrating": 1350, + "oldi_rating": 1704, + "opt_laps_complete": 0, + "position": 34, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 39, + "starting_position_in_class": 13, + "suit": { + "pattern": 31, + "color1": "000000", + "color2": "0378ff", + "color3": "ff4d00" + }, + "watched": false, + "weight_penalty_kg": 5 + } + ], + "drop_race": false, + "finish_position": 34, + "finish_position_in_class": 14, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 52, + "interval": -1, + "laps_complete": 782, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 188, + "pattern": 4, + "color1": "0073d2", + "color2": "ff5c00", + "color3": "292d33", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "46", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 97, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 34, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 39, + "starting_position_in_class": 13, + "suit": { + "pattern": 31, + "color1": "000000", + "color2": "0378ff", + "color3": "ff4d00" + }, + "watched": false, + "weight_penalty_kg": 5 + }, + { + "team_id": -248147, + "display_name": "IPM Yellow", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 1115711, + "best_lap_num": 269, + "best_lap_time": 1048927, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 173, + "car_name": "Ferrari 296 GT3", + "carcfg": -1, + "champ_points": 75, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -248147, + "cust_id": 19071, + "display_name": "Peter Terrana", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 1076811, + "best_lap_num": 269, + "best_lap_time": 1048927, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 173, + "car_name": "Ferrari 296 GT3", + "carcfg": -1, + "champ_points": 75, + "class_interval": -1, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 35, + "finish_position_in_class": 15, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 34, + "color1": "DAF109", + "color2": "000000", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 30, + "interval": -1, + "laps_complete": 210, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 173, + "pattern": 9, + "color1": "ccf312", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "698", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 69.72993, + "new_license_level": 19, + "new_sub_level": 356, + "new_ttrating": 1350, + "newi_rating": 2620, + "old_cpi": 45.854206, + "old_license_level": 18, + "old_sub_level": 249, + "old_ttrating": 1350, + "oldi_rating": 2617, + "opt_laps_complete": 0, + "position": 35, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 44, + "starting_position_in_class": 18, + "suit": { + "pattern": 27, + "color1": "23231f", + "color2": "131415", + "color3": "f2f12c" + }, + "watched": false, + "weight_penalty_kg": 3 + }, + { + "team_id": -248147, + "cust_id": 816995, + "display_name": "Andrew L King", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 1092993, + "best_lap_num": 440, + "best_lap_time": 1054409, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 173, + "car_name": "Ferrari 296 GT3", + "carcfg": -1, + "champ_points": 75, + "class_interval": -1, + "country_code": "US", + "division": 5, + "division_name": "Division 6", + "drop_race": false, + "finish_position": 35, + "finish_position_in_class": 15, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 22, + "color1": "ffffff", + "color2": "000000", + "color3": "ff0000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 18, + "interval": -1, + "laps_complete": 176, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 173, + "pattern": 9, + "color1": "ccf312", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "698", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 82.34817, + "new_license_level": 16, + "new_sub_level": 481, + "new_ttrating": 1350, + "newi_rating": 1500, + "old_cpi": 42.822727, + "old_license_level": 14, + "old_sub_level": 295, + "old_ttrating": 1350, + "oldi_rating": 1498, + "opt_laps_complete": 0, + "position": 35, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 44, + "starting_position_in_class": 18, + "suit": { + "pattern": 27, + "color1": "23231f", + "color2": "131415", + "color3": "f2f12c" + }, + "watched": false, + "weight_penalty_kg": 3 + }, + { + "team_id": -248147, + "cust_id": 317035, + "display_name": "Riley Hawkins", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 1095546, + "best_lap_num": 649, + "best_lap_time": 1049063, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 173, + "car_name": "Ferrari 296 GT3", + "carcfg": -1, + "champ_points": 75, + "class_interval": -1, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 35, + "finish_position_in_class": 15, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 14, + "color1": "000000", + "color2": "d3f702", + "color3": "1f1f1f", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 10, + "interval": -1, + "laps_complete": 155, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 173, + "pattern": 9, + "color1": "ccf312", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "698", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 91.36659, + "new_license_level": 16, + "new_sub_level": 497, + "new_ttrating": 1350, + "newi_rating": 2143, + "old_cpi": 41.030315, + "old_license_level": 14, + "old_sub_level": 289, + "old_ttrating": 1350, + "oldi_rating": 2141, + "opt_laps_complete": 0, + "position": 35, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 44, + "starting_position_in_class": 18, + "suit": { + "pattern": 27, + "color1": "23231f", + "color2": "131415", + "color3": "f2f12c" + }, + "watched": false, + "weight_penalty_kg": 3 + }, + { + "team_id": -248147, + "cust_id": 231184, + "display_name": "John Szpyt", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 1113514, + "best_lap_num": 525, + "best_lap_time": 1052492, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 173, + "car_name": "Ferrari 296 GT3", + "carcfg": -1, + "champ_points": 75, + "class_interval": -1, + "country_code": "US", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 35, + "finish_position_in_class": 15, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "EFF141", + "color2": "000000", + "color3": "AE7E32", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 18, + "interval": -1, + "laps_complete": 121, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 173, + "pattern": 9, + "color1": "ccf312", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "698", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 92.23367, + "new_license_level": 20, + "new_sub_level": 440, + "new_ttrating": 1350, + "newi_rating": 2928, + "old_cpi": 101.18706, + "old_license_level": 20, + "old_sub_level": 454, + "old_ttrating": 1350, + "oldi_rating": 2927, + "opt_laps_complete": 0, + "position": 35, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 44, + "starting_position_in_class": 18, + "suit": { + "pattern": 27, + "color1": "23231f", + "color2": "131415", + "color3": "f2f12c" + }, + "watched": false, + "weight_penalty_kg": 3 + }, + { + "team_id": -248147, + "cust_id": 203002, + "display_name": "Yusef Rayyan", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 1095641, + "best_lap_num": 298, + "best_lap_time": 1049851, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 173, + "car_name": "Ferrari 296 GT3", + "carcfg": -1, + "champ_points": 75, + "class_interval": -1, + "country_code": "PS", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 35, + "finish_position_in_class": 15, + "flair_id": 160, + "flair_name": "Palestine", + "flair_shortname": "PSE", + "friend": false, + "helmet": { + "pattern": 45, + "color1": "ffffff", + "color2": "0047ff", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 11, + "interval": -1, + "laps_complete": 113, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 173, + "pattern": 9, + "color1": "ccf312", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "698", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 106.409164, + "new_license_level": 20, + "new_sub_level": 462, + "new_ttrating": 1350, + "newi_rating": 2061, + "old_cpi": 98.81735, + "old_license_level": 20, + "old_sub_level": 450, + "old_ttrating": 1350, + "oldi_rating": 2060, + "opt_laps_complete": 0, + "position": 35, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 44, + "starting_position_in_class": 18, + "suit": { + "pattern": 27, + "color1": "23231f", + "color2": "131415", + "color3": "f2f12c" + }, + "watched": false, + "weight_penalty_kg": 3 + } + ], + "drop_race": false, + "finish_position": 35, + "finish_position_in_class": 15, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 87, + "interval": -1, + "laps_complete": 775, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 173, + "pattern": 9, + "color1": "ccf312", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "698", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 35, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 44, + "starting_position_in_class": 18, + "suit": { + "pattern": 27, + "color1": "23231f", + "color2": "131415", + "color3": "f2f12c" + }, + "watched": false, + "weight_penalty_kg": 3 + }, + { + "team_id": -415465, + "display_name": "WFLM Motorsport Vortex", + "aggregate_champ_points": 71, + "ai": false, + "average_lap": 1115907, + "best_lap_num": 27, + "best_lap_time": 1046042, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 71, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -415465, + "cust_id": 884646, + "display_name": "Luc Sarramea", + "aggregate_champ_points": 71, + "ai": false, + "average_lap": 1084141, + "best_lap_num": 414, + "best_lap_time": 1049424, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 71, + "class_interval": -1, + "country_code": "FR", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 36, + "finish_position_in_class": 16, + "flair_id": 71, + "flair_name": "France", + "flair_shortname": "FRA", + "friend": false, + "helmet": { + "pattern": 54, + "color1": "ffffff", + "color2": "ebff00", + "color3": "a60ca5", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 22, + "interval": -1, + "laps_complete": 180, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 3, + "color1": "FF7000", + "color2": "73ECFF", + "color3": "0F0017", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "29", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 88.50855, + "new_license_level": 20, + "new_sub_level": 433, + "new_ttrating": 1350, + "newi_rating": 2035, + "old_cpi": 79.95873, + "old_license_level": 20, + "old_sub_level": 418, + "old_ttrating": 1350, + "oldi_rating": 2035, + "opt_laps_complete": 0, + "position": 36, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 43, + "starting_position_in_class": 17, + "suit": { + "pattern": 28, + "color1": "0f0017", + "color2": "ff0021", + "color3": "ddecec" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -415465, + "cust_id": 412861, + "display_name": "Gabin Berniere", + "aggregate_champ_points": 71, + "ai": false, + "average_lap": 1074226, + "best_lap_num": 331, + "best_lap_time": 1047698, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 71, + "class_interval": -1, + "country_code": "FR", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 36, + "finish_position_in_class": 16, + "flair_id": 71, + "flair_name": "France", + "flair_shortname": "FRA", + "friend": false, + "helmet": { + "pattern": 22, + "color1": "247813", + "color2": "adab00", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 29, + "interval": -1, + "laps_complete": 175, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 3, + "color1": "FF7000", + "color2": "73ECFF", + "color3": "0F0017", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "29", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 72.100784, + "new_license_level": 20, + "new_sub_level": 402, + "new_ttrating": 1350, + "newi_rating": 2364, + "old_cpi": 71.67104, + "old_license_level": 20, + "old_sub_level": 401, + "old_ttrating": 1350, + "oldi_rating": 2363, + "opt_laps_complete": 0, + "position": 36, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 43, + "starting_position_in_class": 17, + "suit": { + "pattern": 28, + "color1": "0f0017", + "color2": "ff0021", + "color3": "ddecec" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -415465, + "cust_id": 66635, + "display_name": "Pascal Chauveau", + "aggregate_champ_points": 71, + "ai": false, + "average_lap": 1119207, + "best_lap_num": 271, + "best_lap_time": 1055925, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 71, + "class_interval": -1, + "country_code": "FR", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 36, + "finish_position_in_class": 16, + "flair_id": 71, + "flair_name": "France", + "flair_shortname": "FRA", + "friend": false, + "helmet": { + "pattern": 34, + "color1": "000000", + "color2": "040405", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 12, + "interval": -1, + "laps_complete": 159, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 3, + "color1": "FF7000", + "color2": "73ECFF", + "color3": "0F0017", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "29", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 109.85736, + "new_license_level": 20, + "new_sub_level": 467, + "new_ttrating": 1350, + "newi_rating": 1897, + "old_cpi": 85.71045, + "old_license_level": 20, + "old_sub_level": 428, + "old_ttrating": 1350, + "oldi_rating": 1896, + "opt_laps_complete": 0, + "position": 36, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 43, + "starting_position_in_class": 17, + "suit": { + "pattern": 28, + "color1": "0f0017", + "color2": "ff0021", + "color3": "ddecec" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -415465, + "cust_id": 916540, + "display_name": "Sylvain Dury", + "aggregate_champ_points": 71, + "ai": false, + "average_lap": 1108767, + "best_lap_num": 599, + "best_lap_time": 1052803, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 71, + "class_interval": -1, + "country_code": "FR", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 36, + "finish_position_in_class": 16, + "flair_id": 71, + "flair_name": "France", + "flair_shortname": "FRA", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "ffffff", + "color2": "000000", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 10, + "interval": -1, + "laps_complete": 141, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 3, + "color1": "FF7000", + "color2": "73ECFF", + "color3": "0F0017", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "29", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 122.00728, + "new_license_level": 20, + "new_sub_level": 483, + "new_ttrating": 1350, + "newi_rating": 2069, + "old_cpi": 100.24075, + "old_license_level": 20, + "old_sub_level": 453, + "old_ttrating": 1350, + "oldi_rating": 2068, + "opt_laps_complete": 0, + "position": 36, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 43, + "starting_position_in_class": 17, + "suit": { + "pattern": 28, + "color1": "0f0017", + "color2": "ff0021", + "color3": "ddecec" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -415465, + "cust_id": 1294295, + "display_name": "Florïan Chevreuïl", + "aggregate_champ_points": 71, + "ai": false, + "average_lap": 1082097, + "best_lap_num": 27, + "best_lap_time": 1046042, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 71, + "class_interval": -1, + "country_code": "FR", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 36, + "finish_position_in_class": 16, + "flair_id": 71, + "flair_name": "France", + "flair_shortname": "FRA", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 42, + "interval": -1, + "laps_complete": 120, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 3, + "color1": "FF7000", + "color2": "73ECFF", + "color3": "0F0017", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "29", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 33.223705, + "new_license_level": 17, + "new_sub_level": 156, + "new_ttrating": 1350, + "newi_rating": 2683, + "old_cpi": 31.96522, + "old_license_level": 17, + "old_sub_level": 150, + "old_ttrating": 1350, + "oldi_rating": 2683, + "opt_laps_complete": 0, + "position": 36, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 43, + "starting_position_in_class": 17, + "suit": { + "pattern": 28, + "color1": "0f0017", + "color2": "ff0021", + "color3": "ddecec" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 36, + "finish_position_in_class": 16, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 115, + "interval": -1, + "laps_complete": 775, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 3, + "color1": "FF7000", + "color2": "73ECFF", + "color3": "0F0017", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "29", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 36, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 43, + "starting_position_in_class": 17, + "suit": { + "pattern": 28, + "color1": "0f0017", + "color2": "ff0021", + "color3": "ddecec" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -471181, + "display_name": "PRS Team Europe", + "aggregate_champ_points": 66, + "ai": false, + "average_lap": 1124011, + "best_lap_num": 199, + "best_lap_time": 1050125, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 185, + "car_name": "Ford Mustang GT3", + "carcfg": -1, + "champ_points": 66, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -471181, + "cust_id": 28014, + "display_name": "Ronny Kuritz", + "aggregate_champ_points": 66, + "ai": false, + "average_lap": 1149100, + "best_lap_num": 199, + "best_lap_time": 1050125, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 185, + "car_name": "Ford Mustang GT3", + "carcfg": -1, + "champ_points": 66, + "class_interval": -1, + "country_code": "DE", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 37, + "finish_position_in_class": 17, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 4, + "color1": "000000", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 30, + "interval": -1, + "laps_complete": 226, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 185, + "pattern": 20, + "color1": "515151", + "color2": "FFFFFF", + "color3": "000000", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "16", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 123.47534, + "new_license_level": 20, + "new_sub_level": 485, + "new_ttrating": 1374, + "newi_rating": 3246, + "old_cpi": 271.7144, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1374, + "oldi_rating": 3248, + "opt_laps_complete": 0, + "position": 37, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 56, + "starting_position_in_class": 30, + "suit": { + "pattern": 3, + "color1": "0083ff", + "color2": "ffffff", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 10 + }, + { + "team_id": -471181, + "cust_id": 524603, + "display_name": "Philip Zangger", + "aggregate_champ_points": 66, + "ai": false, + "average_lap": 1084973, + "best_lap_num": 269, + "best_lap_time": 1055861, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 185, + "car_name": "Ford Mustang GT3", + "carcfg": -1, + "champ_points": 66, + "class_interval": -1, + "country_code": "AT", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 37, + "finish_position_in_class": 17, + "flair_id": 17, + "flair_name": "Austria", + "flair_shortname": "AUT", + "friend": false, + "helmet": { + "pattern": 35, + "color1": "37b7ff", + "color2": "0083ff", + "color3": "0030ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 13, + "interval": -1, + "laps_complete": 193, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 185, + "pattern": 20, + "color1": "515151", + "color2": "FFFFFF", + "color3": "000000", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "16", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 191.81573, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2254, + "old_cpi": 228.99771, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 2255, + "opt_laps_complete": 0, + "position": 37, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 56, + "starting_position_in_class": 30, + "suit": { + "pattern": 3, + "color1": "0083ff", + "color2": "ffffff", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 10 + }, + { + "team_id": -471181, + "cust_id": 360197, + "display_name": "Andreas Herrmann", + "aggregate_champ_points": 66, + "ai": false, + "average_lap": 1133251, + "best_lap_num": 144, + "best_lap_time": 1064588, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 185, + "car_name": "Ford Mustang GT3", + "carcfg": -1, + "champ_points": 66, + "class_interval": -1, + "country_code": "DE", + "division": 6, + "division_name": "Division 7", + "drop_race": false, + "finish_position": 37, + "finish_position_in_class": 17, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 17, + "color1": "e3230d", + "color2": "ccff00", + "color3": "2f1670", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 23, + "interval": -1, + "laps_complete": 185, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 185, + "pattern": 20, + "color1": "515151", + "color2": "FFFFFF", + "color3": "000000", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "16", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 97.70701, + "new_license_level": 20, + "new_sub_level": 449, + "new_ttrating": 1350, + "newi_rating": 1300, + "old_cpi": 98.205894, + "old_license_level": 20, + "old_sub_level": 449, + "old_ttrating": 1350, + "oldi_rating": 1301, + "opt_laps_complete": 0, + "position": 37, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 56, + "starting_position_in_class": 30, + "suit": { + "pattern": 3, + "color1": "0083ff", + "color2": "ffffff", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 10 + }, + { + "team_id": -471181, + "cust_id": 36064, + "display_name": "Holger Kluener", + "aggregate_champ_points": 66, + "ai": false, + "average_lap": 1081909, + "best_lap_num": 112, + "best_lap_time": 1052851, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 185, + "car_name": "Ford Mustang GT3", + "carcfg": -1, + "champ_points": 66, + "class_interval": -1, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 37, + "finish_position_in_class": 17, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "fbf3f3", + "color2": "6a6c6b", + "color3": "2540e9", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 26, + "interval": -1, + "laps_complete": 165, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 185, + "pattern": 20, + "color1": "515151", + "color2": "FFFFFF", + "color3": "000000", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "16", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 93.92481, + "new_license_level": 20, + "new_sub_level": 443, + "new_ttrating": 1364, + "newi_rating": 2459, + "old_cpi": 120.59289, + "old_license_level": 20, + "old_sub_level": 481, + "old_ttrating": 1364, + "oldi_rating": 2460, + "opt_laps_complete": 0, + "position": 37, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 56, + "starting_position_in_class": 30, + "suit": { + "pattern": 3, + "color1": "0083ff", + "color2": "ffffff", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 10 + } + ], + "drop_race": false, + "finish_position": 37, + "finish_position_in_class": 17, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 92, + "interval": -1, + "laps_complete": 769, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 185, + "pattern": 20, + "color1": "515151", + "color2": "FFFFFF", + "color3": "000000", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "16", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 37, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 56, + "starting_position_in_class": 30, + "suit": { + "pattern": 3, + "color1": "0083ff", + "color2": "ffffff", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 10 + }, + { + "team_id": -159911, + "display_name": "Austrian Simracers Blue", + "aggregate_champ_points": 62, + "ai": false, + "average_lap": 1171829, + "best_lap_num": 469, + "best_lap_time": 1043770, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 62, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -159911, + "cust_id": 672284, + "display_name": "Steven Felber", + "aggregate_champ_points": 62, + "ai": false, + "average_lap": 1111150, + "best_lap_num": 541, + "best_lap_time": 1053265, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 62, + "class_interval": -1, + "country_code": "DE", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 38, + "finish_position_in_class": 18, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 67, + "color1": "f00016", + "color2": "07f752", + "color3": "1a4b9b", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 32, + "interval": -1, + "laps_complete": 183, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "ffffff", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "255", + "wheel_color": "7a7767", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 74.18782, + "new_license_level": 19, + "new_sub_level": 365, + "new_ttrating": 1302, + "newi_rating": 2056, + "old_cpi": 85.77246, + "old_license_level": 19, + "old_sub_level": 387, + "old_ttrating": 1302, + "oldi_rating": 2058, + "opt_laps_complete": 0, + "position": 38, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 29, + "starting_position_in_class": 3, + "suit": { + "pattern": 19, + "color1": "000000", + "color2": "FFFFFF", + "color3": "FF0000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -159911, + "cust_id": 393889, + "display_name": "Stefan Kapeller", + "aggregate_champ_points": 62, + "ai": false, + "average_lap": 1080559, + "best_lap_num": 185, + "best_lap_time": 1048693, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 62, + "class_interval": -1, + "country_code": "AT", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 38, + "finish_position_in_class": 18, + "flair_id": 17, + "flair_name": "Austria", + "flair_shortname": "AUT", + "friend": false, + "helmet": { + "pattern": 3, + "color1": "000000", + "color2": "000000", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 21, + "interval": -1, + "laps_complete": 162, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "ffffff", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "255", + "wheel_color": "7a7767", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 73.49295, + "new_license_level": 19, + "new_sub_level": 364, + "new_ttrating": 1350, + "newi_rating": 2665, + "old_cpi": 48.046413, + "old_license_level": 18, + "old_sub_level": 256, + "old_ttrating": 1350, + "oldi_rating": 2667, + "opt_laps_complete": 0, + "position": 38, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 29, + "starting_position_in_class": 3, + "suit": { + "pattern": 19, + "color1": "000000", + "color2": "FFFFFF", + "color3": "FF0000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -159911, + "cust_id": 915496, + "display_name": "Julian Weilguny", + "aggregate_champ_points": 62, + "ai": false, + "average_lap": 1075531, + "best_lap_num": 340, + "best_lap_time": 1047882, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 62, + "class_interval": -1, + "country_code": "AT", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 38, + "finish_position_in_class": 18, + "flair_id": 17, + "flair_name": "Austria", + "flair_shortname": "AUT", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "ffffff", + "color2": "000000", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 47, + "interval": -1, + "laps_complete": 159, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "ffffff", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "255", + "wheel_color": "7a7767", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 37.487766, + "new_license_level": 17, + "new_sub_level": 175, + "new_ttrating": 1137, + "newi_rating": 2163, + "old_cpi": 30.539976, + "old_license_level": 17, + "old_sub_level": 143, + "old_ttrating": 1137, + "oldi_rating": 2165, + "opt_laps_complete": 0, + "position": 38, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 29, + "starting_position_in_class": 3, + "suit": { + "pattern": 19, + "color1": "000000", + "color2": "FFFFFF", + "color3": "FF0000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -159911, + "cust_id": 1356430, + "display_name": "Dominik Aumayr", + "aggregate_champ_points": 62, + "ai": false, + "average_lap": 1121887, + "best_lap_num": 244, + "best_lap_time": 1056552, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 62, + "class_interval": -1, + "country_code": "AT", + "division": 8, + "division_name": "Division 9", + "drop_race": false, + "finish_position": 38, + "finish_position_in_class": 18, + "flair_id": 17, + "flair_name": "Austria", + "flair_shortname": "AUT", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "2e358f", + "color2": "ec232d", + "color3": "0a0a0a", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 12, + "interval": -1, + "laps_complete": 118, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "ffffff", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "255", + "wheel_color": "7a7767", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 59.740463, + "new_license_level": 18, + "new_sub_level": 289, + "new_ttrating": 1350, + "newi_rating": 1560, + "old_cpi": 34.018543, + "old_license_level": 18, + "old_sub_level": 204, + "old_ttrating": 1350, + "oldi_rating": 1562, + "opt_laps_complete": 0, + "position": 38, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 29, + "starting_position_in_class": 3, + "suit": { + "pattern": 19, + "color1": "000000", + "color2": "FFFFFF", + "color3": "FF0000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -159911, + "cust_id": 1003691, + "display_name": "David Kinzlhofer", + "aggregate_champ_points": 62, + "ai": false, + "average_lap": 1113307, + "best_lap_num": 469, + "best_lap_time": 1043770, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 62, + "class_interval": -1, + "country_code": "AT", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 38, + "finish_position_in_class": 18, + "flair_id": 17, + "flair_name": "Austria", + "flair_shortname": "AUT", + "friend": false, + "helmet": { + "pattern": 36, + "color1": "8700ff", + "color2": "b500ff", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 16, + "interval": -1, + "laps_complete": 116, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "ffffff", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "255", + "wheel_color": "7a7767", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 59.09998, + "new_license_level": 18, + "new_sub_level": 287, + "new_ttrating": 1350, + "newi_rating": 2814, + "old_cpi": 39.52622, + "old_license_level": 18, + "old_sub_level": 227, + "old_ttrating": 1350, + "oldi_rating": 2816, + "opt_laps_complete": 0, + "position": 38, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 29, + "starting_position_in_class": 3, + "suit": { + "pattern": 19, + "color1": "000000", + "color2": "FFFFFF", + "color3": "FF0000" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 38, + "finish_position_in_class": 18, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 128, + "interval": -1, + "laps_complete": 738, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "ffffff", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "255", + "wheel_color": "7a7767", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 38, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 29, + "starting_position_in_class": 3, + "suit": { + "pattern": 19, + "color1": "000000", + "color2": "FFFFFF", + "color3": "FF0000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -333656, + "display_name": "Bite Point Racing", + "aggregate_champ_points": 57, + "ai": false, + "average_lap": 1175243, + "best_lap_num": 228, + "best_lap_time": 1045543, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 57, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -333656, + "cust_id": 944341, + "display_name": "Michael T Anderson", + "aggregate_champ_points": 57, + "ai": false, + "average_lap": 1117297, + "best_lap_num": 196, + "best_lap_time": 1049249, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 57, + "class_interval": -1, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 39, + "finish_position_in_class": 19, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 15, + "color1": "000000", + "color2": "7b7b7b", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 26, + "interval": -1, + "laps_complete": 168, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "fd0000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "45", + "wheel_color": "000000", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 65.23408, + "new_license_level": 19, + "new_sub_level": 346, + "new_ttrating": 1350, + "newi_rating": 2432, + "old_cpi": 44.956455, + "old_license_level": 18, + "old_sub_level": 246, + "old_ttrating": 1350, + "oldi_rating": 2437, + "opt_laps_complete": 0, + "position": 39, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 54, + "starting_position_in_class": 28, + "suit": { + "pattern": 32, + "color1": "000000", + "color2": "04db00", + "color3": "9800d7" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -333656, + "cust_id": 1118703, + "display_name": "Zach Houston", + "aggregate_champ_points": 57, + "ai": false, + "average_lap": 1126895, + "best_lap_num": 228, + "best_lap_time": 1045543, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 57, + "class_interval": -1, + "country_code": "US", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 39, + "finish_position_in_class": 19, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 47, + "color1": "ffffff", + "color2": "e3e3e3", + "color3": "fffbfb", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 16, + "interval": -1, + "laps_complete": 145, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "fd0000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "45", + "wheel_color": "000000", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 86.11366, + "new_license_level": 19, + "new_sub_level": 388, + "new_ttrating": 1350, + "newi_rating": 2043, + "old_cpi": 68.1075, + "old_license_level": 19, + "old_sub_level": 352, + "old_ttrating": 1350, + "oldi_rating": 2046, + "opt_laps_complete": 0, + "position": 39, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 54, + "starting_position_in_class": 28, + "suit": { + "pattern": 32, + "color1": "000000", + "color2": "04db00", + "color3": "9800d7" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -333656, + "cust_id": 936022, + "display_name": "Francis Crosby", + "aggregate_champ_points": 57, + "ai": false, + "average_lap": 1078108, + "best_lap_num": 485, + "best_lap_time": 1051367, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 57, + "class_interval": -1, + "country_code": "CA", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 39, + "finish_position_in_class": 19, + "flair_id": 39, + "flair_name": "Canada", + "flair_shortname": "CAN", + "friend": false, + "helmet": { + "pattern": 61, + "color1": "ff0000", + "color2": "f7f7f7", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 25, + "interval": -1, + "laps_complete": 121, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "fd0000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "45", + "wheel_color": "000000", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 57.7853, + "new_license_level": 19, + "new_sub_level": 328, + "new_ttrating": 1350, + "newi_rating": 2454, + "old_cpi": 58.822685, + "old_license_level": 19, + "old_sub_level": 330, + "old_ttrating": 1350, + "oldi_rating": 2457, + "opt_laps_complete": 0, + "position": 39, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 54, + "starting_position_in_class": 28, + "suit": { + "pattern": 32, + "color1": "000000", + "color2": "04db00", + "color3": "9800d7" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -333656, + "cust_id": 1118745, + "display_name": "John Bostwick", + "aggregate_champ_points": 57, + "ai": false, + "average_lap": 1095709, + "best_lap_num": 105, + "best_lap_time": 1052177, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 57, + "class_interval": -1, + "country_code": "US", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 39, + "finish_position_in_class": 19, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 57, + "color1": "ffffff", + "color2": "000000", + "color3": "006510", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 11, + "interval": -1, + "laps_complete": 94, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "fd0000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "45", + "wheel_color": "000000", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 62.90936, + "new_license_level": 18, + "new_sub_level": 297, + "new_ttrating": 1350, + "newi_rating": 1662, + "old_cpi": 44.14429, + "old_license_level": 18, + "old_sub_level": 243, + "old_ttrating": 1350, + "oldi_rating": 1664, + "opt_laps_complete": 0, + "position": 39, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 54, + "starting_position_in_class": 28, + "suit": { + "pattern": 32, + "color1": "000000", + "color2": "04db00", + "color3": "9800d7" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -333656, + "cust_id": 333541, + "display_name": "Jason Holland", + "aggregate_champ_points": 57, + "ai": false, + "average_lap": 1085336, + "best_lap_num": 316, + "best_lap_time": 1059764, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 57, + "class_interval": -1, + "country_code": "US", + "division": 5, + "division_name": "Division 6", + "drop_race": false, + "finish_position": 39, + "finish_position_in_class": 19, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 68, + "color1": "dff000", + "color2": "dbf709", + "color3": "f4f20c", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 6, + "interval": -1, + "laps_complete": 62, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "fd0000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "45", + "wheel_color": "000000", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 46.301888, + "new_license_level": 18, + "new_sub_level": 251, + "new_ttrating": 1350, + "newi_rating": 1758, + "old_cpi": 33.16012, + "old_license_level": 18, + "old_sub_level": 200, + "old_ttrating": 1350, + "oldi_rating": 1759, + "opt_laps_complete": 0, + "position": 39, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 54, + "starting_position_in_class": 28, + "suit": { + "pattern": 32, + "color1": "000000", + "color2": "04db00", + "color3": "9800d7" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -333656, + "cust_id": 76444, + "display_name": "David Turnbull", + "aggregate_champ_points": 57, + "ai": false, + "average_lap": 1339848, + "best_lap_num": 629, + "best_lap_time": 1049164, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 57, + "class_interval": -1, + "country_code": "PS", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 39, + "finish_position_in_class": 19, + "flair_id": 160, + "flair_name": "Palestine", + "flair_shortname": "PSE", + "friend": false, + "helmet": { + "pattern": 68, + "color1": "08ff08", + "color2": "08ff08", + "color3": "08ff08", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 19, + "interval": -1, + "laps_complete": 43, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "fd0000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "45", + "wheel_color": "000000", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 81.29756, + "new_license_level": 20, + "new_sub_level": 420, + "new_ttrating": 1350, + "newi_rating": 3365, + "old_cpi": 130.76617, + "old_license_level": 20, + "old_sub_level": 493, + "old_ttrating": 1350, + "oldi_rating": 3366, + "opt_laps_complete": 0, + "position": 39, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 54, + "starting_position_in_class": 28, + "suit": { + "pattern": 32, + "color1": "000000", + "color2": "04db00", + "color3": "9800d7" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 39, + "finish_position_in_class": 19, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 103, + "interval": -1, + "laps_complete": 633, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "fd0000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "45", + "wheel_color": "000000", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 39, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 54, + "starting_position_in_class": 28, + "suit": { + "pattern": 32, + "color1": "000000", + "color2": "04db00", + "color3": "9800d7" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -332725, + "display_name": "Miracle Kids Success Academy", + "aggregate_champ_points": 53, + "ai": false, + "average_lap": 1096667, + "best_lap_num": 205, + "best_lap_time": 1048784, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 206, + "car_name": "Aston Martin Vantage GT3 EVO", + "carcfg": -1, + "champ_points": 53, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -332725, + "cust_id": 920918, + "display_name": "Justin Noel", + "aggregate_champ_points": 53, + "ai": false, + "average_lap": 1097573, + "best_lap_num": 205, + "best_lap_time": 1048784, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 206, + "car_name": "Aston Martin Vantage GT3 EVO", + "carcfg": -1, + "champ_points": 53, + "class_interval": -1, + "country_code": "US", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 40, + "finish_position_in_class": 20, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 54, + "color1": "ffffff", + "color2": "ff0000", + "color3": "0003ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 19, + "interval": -1, + "laps_complete": 274, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 206, + "pattern": 19, + "color1": "FFFFFF", + "color2": "FF0000", + "color3": "0003FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "24", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 99, + "new_cpi": 133.95572, + "new_license_level": 20, + "new_sub_level": 497, + "new_ttrating": 1350, + "newi_rating": 3078, + "old_cpi": 48.731533, + "old_license_level": 18, + "old_sub_level": 258, + "old_ttrating": 1350, + "oldi_rating": 3089, + "opt_laps_complete": 0, + "position": 40, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 52, + "starting_position_in_class": 26, + "suit": { + "pattern": 0, + "color1": "2a3795", + "color2": "ec1c23", + "color3": "eeeeee" + }, + "watched": false, + "weight_penalty_kg": 12 + }, + { + "team_id": -332725, + "cust_id": 871024, + "display_name": "Oliver Noden-Mayor", + "aggregate_champ_points": 53, + "ai": false, + "average_lap": 1081764, + "best_lap_num": 559, + "best_lap_time": 1051290, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 206, + "car_name": "Aston Martin Vantage GT3 EVO", + "carcfg": -1, + "champ_points": 53, + "class_interval": -1, + "country_code": "GB", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 40, + "finish_position_in_class": 20, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 27, + "color1": "efff00", + "color2": "000000", + "color3": "ff00a1", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 32, + "interval": -1, + "laps_complete": 208, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 206, + "pattern": 19, + "color1": "FFFFFF", + "color2": "FF0000", + "color3": "0003FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "24", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 99, + "new_cpi": 65.09682, + "new_license_level": 19, + "new_sub_level": 346, + "new_ttrating": 1335, + "newi_rating": 1866, + "old_cpi": 38.145134, + "old_license_level": 18, + "old_sub_level": 221, + "old_ttrating": 1335, + "oldi_rating": 1875, + "opt_laps_complete": 0, + "position": 40, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 52, + "starting_position_in_class": 26, + "suit": { + "pattern": 0, + "color1": "2a3795", + "color2": "ec1c23", + "color3": "eeeeee" + }, + "watched": false, + "weight_penalty_kg": 12 + }, + { + "team_id": -332725, + "cust_id": 428248, + "display_name": "Travis Skrumeda", + "aggregate_champ_points": 53, + "ai": false, + "average_lap": 1084930, + "best_lap_num": 330, + "best_lap_time": 1055100, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 206, + "car_name": "Aston Martin Vantage GT3 EVO", + "carcfg": -1, + "champ_points": 53, + "class_interval": -1, + "country_code": "CA", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 40, + "finish_position_in_class": 20, + "flair_id": 39, + "flair_name": "Canada", + "flair_shortname": "CAN", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "000000", + "color2": "ffffff", + "color3": "ff0000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 8, + "interval": -1, + "laps_complete": 150, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 206, + "pattern": 19, + "color1": "FFFFFF", + "color2": "FF0000", + "color3": "0003FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "24", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 99, + "new_cpi": 120.023125, + "new_license_level": 20, + "new_sub_level": 480, + "new_ttrating": 1350, + "newi_rating": 1875, + "old_cpi": 73.85349, + "old_license_level": 19, + "old_sub_level": 365, + "old_ttrating": 1350, + "oldi_rating": 1881, + "opt_laps_complete": 0, + "position": 40, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 52, + "starting_position_in_class": 26, + "suit": { + "pattern": 0, + "color1": "2a3795", + "color2": "ec1c23", + "color3": "eeeeee" + }, + "watched": false, + "weight_penalty_kg": 12 + } + ], + "drop_race": false, + "finish_position": 40, + "finish_position_in_class": 20, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 59, + "interval": -1, + "laps_complete": 632, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 206, + "pattern": 19, + "color1": "FFFFFF", + "color2": "FF0000", + "color3": "0003FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "24", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 99, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 40, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 52, + "starting_position_in_class": 26, + "suit": { + "pattern": 0, + "color1": "2a3795", + "color2": "ec1c23", + "color3": "eeeeee" + }, + "watched": false, + "weight_penalty_kg": 12 + }, + { + "team_id": -142589, + "display_name": "Team Highside - Vette", + "aggregate_champ_points": 48, + "ai": false, + "average_lap": 1096161, + "best_lap_num": 294, + "best_lap_time": 1042746, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 184, + "car_name": "Chevrolet Corvette Z06 GT3.R", + "carcfg": -1, + "champ_points": 48, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -142589, + "cust_id": 45780, + "display_name": "Brandon Hastings", + "aggregate_champ_points": 48, + "ai": false, + "average_lap": 1082297, + "best_lap_num": 438, + "best_lap_time": 1051761, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 184, + "car_name": "Chevrolet Corvette Z06 GT3.R", + "carcfg": -1, + "champ_points": 48, + "class_interval": -1, + "country_code": "US", + "division": 7, + "division_name": "Division 8", + "drop_race": false, + "finish_position": 41, + "finish_position_in_class": 21, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 0, + "color1": "000000", + "color2": "000000", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 17, + "interval": -1, + "laps_complete": 203, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 184, + "pattern": 12, + "color1": "0085ff", + "color2": "0085ff", + "color3": "d50000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "242424", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "216", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 96, + "new_cpi": 108.082184, + "new_license_level": 20, + "new_sub_level": 464, + "new_ttrating": 1296, + "newi_rating": 1209, + "old_cpi": 52.402893, + "old_license_level": 18, + "old_sub_level": 269, + "old_ttrating": 1296, + "oldi_rating": 1216, + "opt_laps_complete": 0, + "position": 41, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 57, + "starting_position_in_class": 31, + "suit": { + "pattern": 25, + "color1": "FA7400", + "color2": "000000", + "color3": "FFFFFF" + }, + "watched": false, + "weight_penalty_kg": 10 + }, + { + "team_id": -142589, + "cust_id": 815454, + "display_name": "Ryszard Mann", + "aggregate_champ_points": 48, + "ai": false, + "average_lap": 1064624, + "best_lap_num": 294, + "best_lap_time": 1042746, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 184, + "car_name": "Chevrolet Corvette Z06 GT3.R", + "carcfg": -1, + "champ_points": 48, + "class_interval": -1, + "country_code": "PL", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 41, + "finish_position_in_class": 21, + "flair_id": 167, + "flair_name": "Poland", + "flair_shortname": "POL", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "111111", + "color2": "000000", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 9, + "interval": -1, + "laps_complete": 149, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 184, + "pattern": 12, + "color1": "0085ff", + "color2": "0085ff", + "color3": "d50000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "242424", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "216", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 96, + "new_cpi": 100.49302, + "new_license_level": 20, + "new_sub_level": 453, + "new_ttrating": 1350, + "newi_rating": 4058, + "old_cpi": 60.732594, + "old_license_level": 19, + "old_sub_level": 335, + "old_ttrating": 1350, + "oldi_rating": 4064, + "opt_laps_complete": 0, + "position": 41, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 57, + "starting_position_in_class": 31, + "suit": { + "pattern": 25, + "color1": "FA7400", + "color2": "000000", + "color3": "FFFFFF" + }, + "watched": false, + "weight_penalty_kg": 10 + }, + { + "team_id": -142589, + "cust_id": 132004, + "display_name": "Adam Benefiel", + "aggregate_champ_points": 48, + "ai": false, + "average_lap": 1074680, + "best_lap_num": 203, + "best_lap_time": 1044341, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 184, + "car_name": "Chevrolet Corvette Z06 GT3.R", + "carcfg": -1, + "champ_points": 48, + "class_interval": -1, + "country_code": "US", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 41, + "finish_position_in_class": 21, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "1495e6", + "color2": "080807", + "color3": "a5aaac", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 7, + "interval": -1, + "laps_complete": 147, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 184, + "pattern": 12, + "color1": "0085ff", + "color2": "0085ff", + "color3": "d50000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "242424", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "216", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 96, + "new_cpi": 202.51263, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 1856, + "old_cpi": 174.75714, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 1862, + "opt_laps_complete": 0, + "position": 41, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 57, + "starting_position_in_class": 31, + "suit": { + "pattern": 25, + "color1": "FA7400", + "color2": "000000", + "color3": "FFFFFF" + }, + "watched": false, + "weight_penalty_kg": 10 + }, + { + "team_id": -142589, + "cust_id": 112242, + "display_name": "Corey Heim", + "aggregate_champ_points": 48, + "ai": false, + "average_lap": 1172460, + "best_lap_num": 506, + "best_lap_time": 1045189, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 184, + "car_name": "Chevrolet Corvette Z06 GT3.R", + "carcfg": -1, + "champ_points": 48, + "class_interval": -1, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 41, + "finish_position_in_class": 21, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "ffffff", + "color2": "ff1a1d", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 9, + "interval": -1, + "laps_complete": 96, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 184, + "pattern": 12, + "color1": "0085ff", + "color2": "0085ff", + "color3": "d50000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "242424", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "216", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 96, + "new_cpi": 40.625633, + "new_license_level": 11, + "new_sub_level": 387, + "new_ttrating": 1350, + "newi_rating": 2624, + "old_cpi": 27.158167, + "old_license_level": 11, + "old_sub_level": 325, + "old_ttrating": 1350, + "oldi_rating": 2628, + "opt_laps_complete": 0, + "position": 41, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 57, + "starting_position_in_class": 31, + "suit": { + "pattern": 25, + "color1": "FA7400", + "color2": "000000", + "color3": "FFFFFF" + }, + "watched": false, + "weight_penalty_kg": 10 + } + ], + "drop_race": false, + "finish_position": 41, + "finish_position_in_class": 21, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 42, + "interval": -1, + "laps_complete": 595, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 184, + "pattern": 12, + "color1": "0085ff", + "color2": "0085ff", + "color3": "d50000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "242424", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "216", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 96, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 41, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 57, + "starting_position_in_class": 31, + "suit": { + "pattern": 25, + "color1": "FA7400", + "color2": "000000", + "color3": "FFFFFF" + }, + "watched": false, + "weight_penalty_kg": 10 + }, + { + "team_id": -467249, + "display_name": "Simtec Racing Team #474", + "aggregate_champ_points": 44, + "ai": false, + "average_lap": 1585841, + "best_lap_num": 23, + "best_lap_time": 1044780, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 44, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -467249, + "cust_id": 1257116, + "display_name": "Ben Milden", + "aggregate_champ_points": 44, + "ai": false, + "average_lap": 1103265, + "best_lap_num": 288, + "best_lap_time": 1051828, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 44, + "class_interval": -1, + "country_code": "GB", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 42, + "finish_position_in_class": 22, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 7, + "color1": "6ae1d3", + "color2": "07f2cf", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 48, + "interval": -1, + "laps_complete": 179, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 3, + "color1": "42c6ef", + "color2": "111111", + "color3": "0b0b0a", + "number_font": 9, + "number_color1": "000000", + "number_color2": "f4f4f4", + "number_color3": "fafafa", + "number_slant": 0, + "sponsor1": 221, + "sponsor2": 0, + "car_number": "472", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 43.59755, + "new_license_level": 14, + "new_sub_level": 298, + "new_ttrating": 1350, + "newi_rating": 1814, + "old_cpi": 40.21797, + "old_license_level": 14, + "old_sub_level": 286, + "old_ttrating": 1350, + "oldi_rating": 1824, + "opt_laps_complete": 0, + "position": 42, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 30, + "starting_position_in_class": 4, + "suit": { + "pattern": 5, + "color1": "11e5e5", + "color2": "030303", + "color3": "030303" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -467249, + "cust_id": 849891, + "display_name": "Neil Woodward", + "aggregate_champ_points": 44, + "ai": false, + "average_lap": 1104196, + "best_lap_num": 322, + "best_lap_time": 1048060, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 44, + "class_interval": -1, + "country_code": "GB", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 42, + "finish_position_in_class": 22, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 68, + "color1": "ffffff", + "color2": "f40a0a", + "color3": "5481fc", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 24, + "interval": -1, + "laps_complete": 178, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 3, + "color1": "42c6ef", + "color2": "111111", + "color3": "0b0b0a", + "number_font": 9, + "number_color1": "000000", + "number_color2": "f4f4f4", + "number_color3": "fafafa", + "number_slant": 0, + "sponsor1": 221, + "sponsor2": 0, + "car_number": "472", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 64.28204, + "new_license_level": 12, + "new_sub_level": 499, + "new_ttrating": 1303, + "newi_rating": 2196, + "old_cpi": 43.666557, + "old_license_level": 11, + "old_sub_level": 398, + "old_ttrating": 1303, + "oldi_rating": 2206, + "opt_laps_complete": 0, + "position": 42, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 30, + "starting_position_in_class": 4, + "suit": { + "pattern": 5, + "color1": "11e5e5", + "color2": "030303", + "color3": "030303" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -467249, + "cust_id": 1174682, + "display_name": "Craig Law", + "aggregate_champ_points": 44, + "ai": false, + "average_lap": 1107913, + "best_lap_num": 23, + "best_lap_time": 1044780, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 44, + "class_interval": -1, + "country_code": "NIR", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 42, + "finish_position_in_class": 22, + "flair_id": 239, + "flair_name": "Northern Ireland", + "flair_shortname": "NIR", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "ffffff", + "color2": "4076bc", + "color3": "c8d92b", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 24, + "interval": -1, + "laps_complete": 128, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 3, + "color1": "42c6ef", + "color2": "111111", + "color3": "0b0b0a", + "number_font": 9, + "number_color1": "000000", + "number_color2": "f4f4f4", + "number_color3": "fafafa", + "number_slant": 0, + "sponsor1": 221, + "sponsor2": 0, + "car_number": "472", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 54.50814, + "new_license_level": 18, + "new_sub_level": 275, + "new_ttrating": 1350, + "newi_rating": 2559, + "old_cpi": 42.040413, + "old_license_level": 18, + "old_sub_level": 236, + "old_ttrating": 1350, + "oldi_rating": 2567, + "opt_laps_complete": 0, + "position": 42, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 30, + "starting_position_in_class": 4, + "suit": { + "pattern": 5, + "color1": "11e5e5", + "color2": "030303", + "color3": "030303" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -467249, + "cust_id": 1250818, + "display_name": "Peter Van Lieshout", + "aggregate_champ_points": 44, + "ai": false, + "average_lap": 1070092, + "best_lap_num": 372, + "best_lap_time": 1048683, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 44, + "class_interval": -1, + "country_code": "NL", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 42, + "finish_position_in_class": 22, + "flair_id": 146, + "flair_name": "Netherlands", + "flair_shortname": "NLD", + "friend": false, + "helmet": { + "pattern": 61, + "color1": "f21818", + "color2": "f1e7e8", + "color3": "0656db", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 6, + "interval": -1, + "laps_complete": 60, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 3, + "color1": "42c6ef", + "color2": "111111", + "color3": "0b0b0a", + "number_font": 9, + "number_color1": "000000", + "number_color2": "f4f4f4", + "number_color3": "fafafa", + "number_slant": 0, + "sponsor1": 221, + "sponsor2": 0, + "car_number": "472", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 47.407192, + "new_license_level": 18, + "new_sub_level": 254, + "new_ttrating": 1350, + "newi_rating": 2355, + "old_cpi": 34.515156, + "old_license_level": 18, + "old_sub_level": 206, + "old_ttrating": 1350, + "oldi_rating": 2359, + "opt_laps_complete": 0, + "position": 42, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 30, + "starting_position_in_class": 4, + "suit": { + "pattern": 5, + "color1": "11e5e5", + "color2": "030303", + "color3": "030303" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 42, + "finish_position_in_class": 22, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 102, + "interval": -1, + "laps_complete": 545, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 3, + "color1": "42c6ef", + "color2": "111111", + "color3": "0b0b0a", + "number_font": 9, + "number_color1": "000000", + "number_color2": "f4f4f4", + "number_color3": "fafafa", + "number_slant": 0, + "sponsor1": 221, + "sponsor2": 0, + "car_number": "472", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 42, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 30, + "starting_position_in_class": 4, + "suit": { + "pattern": 5, + "color1": "11e5e5", + "color2": "030303", + "color3": "030303" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -316329, + "display_name": "Milwauchibre Racing Team", + "aggregate_champ_points": 39, + "ai": false, + "average_lap": 1127442, + "best_lap_num": 40, + "best_lap_time": 1046986, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 39, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -316329, + "cust_id": 879626, + "display_name": "Nicolas De Saint Riquier", + "aggregate_champ_points": 39, + "ai": false, + "average_lap": 1110616, + "best_lap_num": 40, + "best_lap_time": 1046986, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 39, + "class_interval": -1, + "country_code": "FR", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 43, + "finish_position_in_class": 23, + "flair_id": 71, + "flair_name": "France", + "flair_shortname": "FRA", + "friend": false, + "helmet": { + "pattern": 35, + "color1": "000000", + "color2": "ff0000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 59, + "interval": -1, + "laps_complete": 255, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "FFFFFF", + "color2": "6900FF", + "color3": "FF00ED", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "27", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 49.39754, + "new_license_level": 18, + "new_sub_level": 260, + "new_ttrating": 1350, + "newi_rating": 2166, + "old_cpi": 32.16721, + "old_license_level": 17, + "old_sub_level": 151, + "old_ttrating": 1350, + "oldi_rating": 2187, + "opt_laps_complete": 0, + "position": 43, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 45, + "starting_position_in_class": 19, + "suit": { + "pattern": 22, + "color1": "404040", + "color2": "bebebe", + "color3": "b78a00" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -316329, + "cust_id": 371715, + "display_name": "Dimitri Picard", + "aggregate_champ_points": 39, + "ai": false, + "average_lap": 1132295, + "best_lap_num": 423, + "best_lap_time": 1050909, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 39, + "class_interval": -1, + "country_code": "FR", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 43, + "finish_position_in_class": 23, + "flair_id": 71, + "flair_name": "France", + "flair_shortname": "FRA", + "friend": false, + "helmet": { + "pattern": 48, + "color1": "404040", + "color2": "6949e9", + "color3": "b78a00", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 22, + "interval": -1, + "laps_complete": 220, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "FFFFFF", + "color2": "6900FF", + "color3": "FF00ED", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "27", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 94.97356, + "new_license_level": 20, + "new_sub_level": 444, + "new_ttrating": 1350, + "newi_rating": 2222, + "old_cpi": 70.97905, + "old_license_level": 19, + "old_sub_level": 359, + "old_ttrating": 1350, + "oldi_rating": 2241, + "opt_laps_complete": 0, + "position": 43, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 45, + "starting_position_in_class": 19, + "suit": { + "pattern": 22, + "color1": "404040", + "color2": "bebebe", + "color3": "b78a00" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 43, + "finish_position_in_class": 23, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 81, + "interval": -1, + "laps_complete": 475, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "FFFFFF", + "color2": "6900FF", + "color3": "FF00ED", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "27", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 43, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 45, + "starting_position_in_class": 19, + "suit": { + "pattern": 22, + "color1": "404040", + "color2": "bebebe", + "color3": "b78a00" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -246761, + "display_name": "Vortex Racing Alpha", + "aggregate_champ_points": 32, + "ai": false, + "average_lap": 1004897, + "best_lap_num": 361, + "best_lap_time": 936125, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 32, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -246761, + "cust_id": 447778, + "display_name": "craig Benefiel", + "aggregate_champ_points": 32, + "ai": false, + "average_lap": 963605, + "best_lap_num": 361, + "best_lap_time": 936125, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 32, + "class_interval": -1, + "country_code": "US", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 44, + "finish_position_in_class": 10, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "111111", + "color2": "cccccc", + "color3": "ed1c24", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 17, + "interval": -1, + "laps_complete": 168, + "laps_lead": 73, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 5, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 2, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "51", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 76.59716, + "new_license_level": 19, + "new_sub_level": 370, + "new_ttrating": 1350, + "newi_rating": 1974, + "old_cpi": 43.42212, + "old_license_level": 18, + "old_sub_level": 241, + "old_ttrating": 1350, + "oldi_rating": 1991, + "opt_laps_complete": 0, + "position": 44, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 1, + "starting_position_in_class": 1, + "suit": { + "pattern": 27, + "color1": "111111", + "color2": "83ccff", + "color3": "cccccc" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -246761, + "cust_id": 616203, + "display_name": "Bas Schilstra", + "aggregate_champ_points": 32, + "ai": false, + "average_lap": 975688, + "best_lap_num": 328, + "best_lap_time": 943707, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 32, + "class_interval": -1, + "country_code": "NL", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 44, + "finish_position_in_class": 10, + "flair_id": 146, + "flair_name": "Netherlands", + "flair_shortname": "NLD", + "friend": false, + "helmet": { + "pattern": 52, + "color1": "111111", + "color2": "83ccff", + "color3": "cccccc", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 4, + "interval": -1, + "laps_complete": 144, + "laps_lead": 142, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 5, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 2, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "51", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 106.54864, + "new_license_level": 16, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 1948, + "old_cpi": 40.78813, + "old_license_level": 14, + "old_sub_level": 288, + "old_ttrating": 1350, + "oldi_rating": 1963, + "opt_laps_complete": 0, + "position": 44, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 1, + "starting_position_in_class": 1, + "suit": { + "pattern": 27, + "color1": "111111", + "color2": "83ccff", + "color3": "cccccc" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -246761, + "cust_id": 764441, + "display_name": "Craig N Hayes", + "aggregate_champ_points": 32, + "ai": false, + "average_lap": 1052197, + "best_lap_num": 223, + "best_lap_time": 936974, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 32, + "class_interval": -1, + "country_code": "US", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 44, + "finish_position_in_class": 10, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 21, + "color1": "ffffff", + "color2": "447ac0", + "color3": "ee3442", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 24, + "interval": -1, + "laps_complete": 122, + "laps_lead": 83, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 5, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 2, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "51", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 54.297966, + "new_license_level": 18, + "new_sub_level": 275, + "new_ttrating": 1350, + "newi_rating": 3130, + "old_cpi": 45.711266, + "old_license_level": 18, + "old_sub_level": 249, + "old_ttrating": 1350, + "oldi_rating": 3143, + "opt_laps_complete": 0, + "position": 44, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 1, + "starting_position_in_class": 1, + "suit": { + "pattern": 27, + "color1": "111111", + "color2": "83ccff", + "color3": "cccccc" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 44, + "finish_position_in_class": 10, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 45, + "interval": -1, + "laps_complete": 434, + "laps_lead": 298, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 5, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 2, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "51", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 44, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 1, + "starting_position_in_class": 1, + "suit": { + "pattern": 27, + "color1": "111111", + "color2": "83ccff", + "color3": "cccccc" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -385439, + "display_name": "TRC Endurance 01", + "aggregate_champ_points": 12, + "ai": false, + "average_lap": 1087485, + "best_lap_num": 10, + "best_lap_time": 988667, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 12, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -385439, + "cust_id": 1118747, + "display_name": "Zack Heiderstadt", + "aggregate_champ_points": 12, + "ai": false, + "average_lap": 1020198, + "best_lap_num": 10, + "best_lap_time": 988667, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 12, + "class_interval": -1, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 45, + "finish_position_in_class": 10, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "aeaeae", + "color2": "0c00b1", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 10, + "interval": -1, + "laps_complete": 120, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 5, + "color1": "FFFFFF", + "color2": "941FB7", + "color3": "80FF00", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "9", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 70.23805, + "new_license_level": 16, + "new_sub_level": 457, + "new_ttrating": 1295, + "newi_rating": 3101, + "old_cpi": 38.609806, + "old_license_level": 14, + "old_sub_level": 279, + "old_ttrating": 1295, + "oldi_rating": 3129, + "opt_laps_complete": 0, + "position": 45, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 20, + "starting_position_in_class": 6, + "suit": { + "pattern": 30, + "color1": "2508d3", + "color2": "000000", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -385439, + "cust_id": 1242051, + "display_name": "Oliver Bird2", + "aggregate_champ_points": 12, + "ai": false, + "average_lap": 1096795, + "best_lap_num": 281, + "best_lap_time": 990692, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 12, + "class_interval": -1, + "country_code": "GB", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 45, + "finish_position_in_class": 10, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "1f2892", + "color2": "7de54c", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 8, + "interval": -1, + "laps_complete": 118, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 5, + "color1": "FFFFFF", + "color2": "941FB7", + "color3": "80FF00", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "9", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 103.03802, + "new_license_level": 20, + "new_sub_level": 457, + "new_ttrating": 1350, + "newi_rating": 2365, + "old_cpi": 73.883995, + "old_license_level": 19, + "old_sub_level": 365, + "old_ttrating": 1350, + "oldi_rating": 2392, + "opt_laps_complete": 0, + "position": 45, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 20, + "starting_position_in_class": 6, + "suit": { + "pattern": 30, + "color1": "2508d3", + "color2": "000000", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -385439, + "cust_id": 1119763, + "display_name": "Gavin Cambre", + "aggregate_champ_points": 12, + "ai": false, + "average_lap": 1138937, + "best_lap_num": 182, + "best_lap_time": 999036, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 12, + "class_interval": -1, + "country_code": "US", + "division": 5, + "division_name": "Division 6", + "drop_race": false, + "finish_position": 45, + "finish_position_in_class": 10, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 17, + "color1": "000000", + "color2": "fbfbfb", + "color3": "00fff2", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 8, + "interval": -1, + "laps_complete": 81, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 5, + "color1": "FFFFFF", + "color2": "941FB7", + "color3": "80FF00", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "9", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 66.35065, + "new_license_level": 19, + "new_sub_level": 348, + "new_ttrating": 1350, + "newi_rating": 1588, + "old_cpi": 47.03421, + "old_license_level": 18, + "old_sub_level": 253, + "old_ttrating": 1350, + "oldi_rating": 1607, + "opt_laps_complete": 0, + "position": 45, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 20, + "starting_position_in_class": 6, + "suit": { + "pattern": 30, + "color1": "2508d3", + "color2": "000000", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 45, + "finish_position_in_class": 10, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 26, + "interval": -1, + "laps_complete": 319, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 5, + "color1": "FFFFFF", + "color2": "941FB7", + "color3": "80FF00", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "9", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 45, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 20, + "starting_position_in_class": 6, + "suit": { + "pattern": 30, + "color1": "2508d3", + "color2": "000000", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -278104, + "display_name": "Melanzani Racing 102", + "aggregate_champ_points": 21, + "ai": false, + "average_lap": 1027463, + "best_lap_num": 12, + "best_lap_time": 940999, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 21, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -278104, + "cust_id": 119560, + "display_name": "Alvin Frauenknecht", + "aggregate_champ_points": 21, + "ai": false, + "average_lap": 968297, + "best_lap_num": 12, + "best_lap_time": 940999, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 21, + "class_interval": -1, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 46, + "finish_position_in_class": 11, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 63, + "color1": "000000", + "color2": "717171", + "color3": "e5ff00", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 9, + "interval": -1, + "laps_complete": 115, + "laps_lead": 1, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 0, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "cccccc", + "number_color3": "666666", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "4", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 76.36244, + "new_license_level": 19, + "new_sub_level": 370, + "new_ttrating": 1350, + "newi_rating": 2133, + "old_cpi": 31.524208, + "old_license_level": 17, + "old_sub_level": 148, + "old_ttrating": 1350, + "oldi_rating": 2162, + "opt_laps_complete": 0, + "position": 46, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 4, + "starting_position_in_class": 4, + "suit": { + "pattern": 22, + "color1": "000000", + "color2": "69b9eb", + "color3": "fa8c17" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -278104, + "cust_id": 218608, + "display_name": "Iven Daemmrich", + "aggregate_champ_points": 21, + "ai": false, + "average_lap": 1132683, + "best_lap_num": 108, + "best_lap_time": 946685, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 21, + "class_interval": -1, + "country_code": "CN", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 46, + "finish_position_in_class": 11, + "flair_id": 45, + "flair_name": "China", + "flair_shortname": "CHN", + "friend": false, + "helmet": { + "pattern": 68, + "color1": "ffffff", + "color2": "e81114", + "color3": "2A3795", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 8, + "interval": -1, + "laps_complete": 72, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 0, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "cccccc", + "number_color3": "666666", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "4", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 149.12212, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2673, + "old_cpi": 171.62451, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 2692, + "opt_laps_complete": 0, + "position": 46, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 4, + "starting_position_in_class": 4, + "suit": { + "pattern": 22, + "color1": "000000", + "color2": "69b9eb", + "color3": "fa8c17" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -278104, + "cust_id": 946764, + "display_name": "Thomas Vogel", + "aggregate_champ_points": 21, + "ai": false, + "average_lap": 975055, + "best_lap_num": 164, + "best_lap_time": 948854, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 21, + "class_interval": -1, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 46, + "finish_position_in_class": 11, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "020005", + "color2": "000000", + "color3": "6a07da", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 54, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 0, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "cccccc", + "number_color3": "666666", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "4", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 194.06157, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2231, + "old_cpi": 155.29985, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 2245, + "opt_laps_complete": 0, + "position": 46, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 4, + "starting_position_in_class": 4, + "suit": { + "pattern": 22, + "color1": "000000", + "color2": "69b9eb", + "color3": "fa8c17" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 46, + "finish_position_in_class": 11, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 17, + "interval": -1, + "laps_complete": 241, + "laps_lead": 1, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 0, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "cccccc", + "number_color3": "666666", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "4", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 46, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 4, + "starting_position_in_class": 4, + "suit": { + "pattern": 22, + "color1": "000000", + "color2": "69b9eb", + "color3": "fa8c17" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -296646, + "display_name": "Uprise Motorsports", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -296646, + "cust_id": 320315, + "display_name": "AJ Heider", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1073534, + "best_lap_num": 27, + "best_lap_time": 1046940, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "BA", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 47, + "finish_position_in_class": 24, + "flair_id": 29, + "flair_name": "Bosnia and Herzegovina", + "flair_shortname": "BIH", + "friend": false, + "helmet": { + "pattern": 66, + "color1": "000000", + "color2": "0500cb", + "color3": "00d0ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 11, + "interval": -1, + "laps_complete": 91, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 2, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "53", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 94.6242, + "new_license_level": 20, + "new_sub_level": 444, + "new_ttrating": 1350, + "newi_rating": 2675, + "old_cpi": 97.26926, + "old_license_level": 20, + "old_sub_level": 448, + "old_ttrating": 1350, + "oldi_rating": 2698, + "opt_laps_complete": 0, + "position": 47, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 33, + "starting_position_in_class": 7, + "suit": { + "pattern": 4, + "color1": "000000", + "color2": "ff190f", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -296646, + "cust_id": 348147, + "display_name": "Connor Trifari", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1087287, + "best_lap_num": 116, + "best_lap_time": 1045236, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GS", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 47, + "finish_position_in_class": 24, + "flair_id": 196, + "flair_name": "South Georgia & South Sandwich Islands", + "flair_shortname": "SGS", + "friend": false, + "helmet": { + "pattern": 2, + "color1": "ff0000", + "color2": "ffffff", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 19, + "interval": -1, + "laps_complete": 76, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 2, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "53", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 50.541496, + "new_license_level": 18, + "new_sub_level": 264, + "new_ttrating": 1350, + "newi_rating": 3082, + "old_cpi": 56.433605, + "old_license_level": 18, + "old_sub_level": 281, + "old_ttrating": 1350, + "oldi_rating": 3100, + "opt_laps_complete": 0, + "position": 47, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 33, + "starting_position_in_class": 7, + "suit": { + "pattern": 4, + "color1": "000000", + "color2": "ff190f", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -296646, + "cust_id": 448051, + "display_name": "Diego Roldan", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1083250, + "best_lap_num": 191, + "best_lap_time": 1051721, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "MX", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 47, + "finish_position_in_class": 24, + "flair_id": 134, + "flair_name": "Mexico", + "flair_shortname": "MEX", + "friend": false, + "helmet": { + "pattern": 9, + "color1": "0c0c0c", + "color2": "ffffff", + "color3": "de0019", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 11, + "interval": -1, + "laps_complete": 68, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 2, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "53", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 38.158615, + "new_license_level": 14, + "new_sub_level": 278, + "new_ttrating": 1350, + "newi_rating": 1896, + "old_cpi": 28.696474, + "old_license_level": 14, + "old_sub_level": 234, + "old_ttrating": 1350, + "oldi_rating": 1912, + "opt_laps_complete": 0, + "position": 47, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 33, + "starting_position_in_class": 7, + "suit": { + "pattern": 4, + "color1": "000000", + "color2": "ff190f", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -296646, + "cust_id": 252495, + "display_name": "Chris Lilly", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1225282, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "US", + "division": 5, + "division_name": "Division 6", + "drop_race": false, + "finish_position": 47, + "finish_position_in_class": 24, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 46, + "color1": "000000", + "color2": "0057ff", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": -1, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 2, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "53", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 24.062311, + "new_license_level": 14, + "new_sub_level": 206, + "new_ttrating": 1350, + "newi_rating": 1493, + "old_cpi": 24.925983, + "old_license_level": 14, + "old_sub_level": 212, + "old_ttrating": 1350, + "oldi_rating": 1493, + "opt_laps_complete": 0, + "position": 47, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 33, + "starting_position_in_class": 7, + "suit": { + "pattern": 4, + "color1": "000000", + "color2": "ff190f", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 47, + "finish_position_in_class": 24, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 42, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 2, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "53", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 47, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 33, + "starting_position_in_class": 7, + "suit": { + "pattern": 4, + "color1": "000000", + "color2": "ff190f", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -243532, + "display_name": "THLF eSports Multinational by Raceverse.at", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -243532, + "cust_id": 876981, + "display_name": "Bjørn Sundèn", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1083671, + "best_lap_num": 90, + "best_lap_time": 1060103, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "NO", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 48, + "finish_position_in_class": 25, + "flair_id": 156, + "flair_name": "Norway", + "flair_shortname": "NOR", + "friend": false, + "helmet": { + "pattern": 3, + "color1": "ff0000", + "color2": "ccff00", + "color3": "cbeb05", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 3, + "interval": -1, + "laps_complete": 62, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 23, + "color1": "ff9cfd", + "color2": "ffffff", + "color3": "0500ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "444", + "wheel_color": "ffffff", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 109.46123, + "new_license_level": 20, + "new_sub_level": 466, + "new_ttrating": 1350, + "newi_rating": 2002, + "old_cpi": 88.64039, + "old_license_level": 19, + "old_sub_level": 392, + "old_ttrating": 1350, + "oldi_rating": 2021, + "opt_laps_complete": 0, + "position": 48, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 51, + "starting_position_in_class": 25, + "suit": { + "pattern": 10, + "color1": "00ff1e", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -243532, + "cust_id": 1335570, + "display_name": "Jordan Elmore", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1077287, + "best_lap_num": 22, + "best_lap_time": 1050504, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 48, + "finish_position_in_class": 25, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 56, + "color1": "ff0000", + "color2": "000000", + "color3": "acacac", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 10, + "interval": -1, + "laps_complete": 61, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 23, + "color1": "ff9cfd", + "color2": "ffffff", + "color3": "0500ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "444", + "wheel_color": "ffffff", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 61.234966, + "new_license_level": 18, + "new_sub_level": 293, + "new_ttrating": 1325, + "newi_rating": 2474, + "old_cpi": 59.90275, + "old_license_level": 18, + "old_sub_level": 290, + "old_ttrating": 1325, + "oldi_rating": 2494, + "opt_laps_complete": 0, + "position": 48, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 51, + "starting_position_in_class": 25, + "suit": { + "pattern": 10, + "color1": "00ff1e", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -243532, + "cust_id": 204799, + "display_name": "Derek Lanham", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1096959, + "best_lap_num": 149, + "best_lap_time": 1048466, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 48, + "finish_position_in_class": 25, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 5, + "color1": "ffffff", + "color2": "000000", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 7, + "interval": -1, + "laps_complete": 52, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 23, + "color1": "ff9cfd", + "color2": "ffffff", + "color3": "0500ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "444", + "wheel_color": "ffffff", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 68.58949, + "new_license_level": 19, + "new_sub_level": 353, + "new_ttrating": 1350, + "newi_rating": 2577, + "old_cpi": 63.863583, + "old_license_level": 19, + "old_sub_level": 343, + "old_ttrating": 1350, + "oldi_rating": 2594, + "opt_laps_complete": 0, + "position": 48, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 51, + "starting_position_in_class": 25, + "suit": { + "pattern": 10, + "color1": "00ff1e", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -243532, + "cust_id": 110764, + "display_name": "Joshua Bourque Bolin Queen", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "US", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 48, + "finish_position_in_class": 25, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 8, + "color1": "5e0e67", + "color2": "ffffff", + "color3": "200623", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 23, + "color1": "ff9cfd", + "color2": "ffffff", + "color3": "0500ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "444", + "wheel_color": "ffffff", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 48, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 51, + "starting_position_in_class": 25, + "suit": { + "pattern": 10, + "color1": "00ff1e", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 48, + "finish_position_in_class": 25, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 20, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 23, + "color1": "ff9cfd", + "color2": "ffffff", + "color3": "0500ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "444", + "wheel_color": "ffffff", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 48, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 51, + "starting_position_in_class": 25, + "suit": { + "pattern": 10, + "color1": "00ff1e", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -398466, + "display_name": "Leche Condensada Racing Team", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -398466, + "cust_id": 1188331, + "display_name": "Diego Gonzalez Martin", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1159747, + "best_lap_num": 19, + "best_lap_time": 1052482, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "ES", + "division": 4, + "division_name": "Division 5", + "drop_race": true, + "finish_position": 49, + "finish_position_in_class": 26, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 44, + "color1": "000000", + "color2": "ecd108", + "color3": "f00000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 15, + "interval": -1, + "laps_complete": 76, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "F5F9F4", + "color2": "000000", + "color3": "EDF4EE", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "28", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 52.043076, + "new_license_level": 18, + "new_sub_level": 268, + "new_ttrating": 1350, + "newi_rating": 2273, + "old_cpi": 47.192017, + "old_license_level": 18, + "old_sub_level": 254, + "old_ttrating": 1350, + "oldi_rating": 2311, + "opt_laps_complete": 0, + "position": 49, + "qual_lap_time": -1, + "reason_out": "DQ/Scoring Invalidated", + "reason_out_id": 34, + "starting_position": 47, + "starting_position_in_class": 21, + "suit": { + "pattern": 33, + "color1": "103fe6", + "color2": "f3f3f3", + "color3": "f60909" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -398466, + "cust_id": 1107477, + "display_name": "Carlos Saek", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 16068019, + "best_lap_num": 52, + "best_lap_time": 1059580, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "ES", + "division": 4, + "division_name": "Division 5", + "drop_race": true, + "finish_position": 49, + "finish_position_in_class": 26, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 34, + "color1": "000000", + "color2": "7bfcab", + "color3": "515151", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 23, + "interval": -1, + "laps_complete": 23, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "F5F9F4", + "color2": "000000", + "color3": "EDF4EE", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "28", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 28.689007, + "new_license_level": 17, + "new_sub_level": 134, + "new_ttrating": 1350, + "newi_rating": 1833, + "old_cpi": 42.800854, + "old_license_level": 18, + "old_sub_level": 239, + "old_ttrating": 1350, + "oldi_rating": 1845, + "opt_laps_complete": 0, + "position": 49, + "qual_lap_time": -1, + "reason_out": "DQ/Scoring Invalidated", + "reason_out_id": 34, + "starting_position": 47, + "starting_position_in_class": 21, + "suit": { + "pattern": 33, + "color1": "103fe6", + "color2": "f3f3f3", + "color3": "f60909" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -398466, + "cust_id": 1110076, + "display_name": "Abel Ros", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1128765, + "best_lap_num": 60, + "best_lap_time": 1057677, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "ES", + "division": 3, + "division_name": "Division 4", + "drop_race": true, + "finish_position": 49, + "finish_position_in_class": 26, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 58, + "color1": "ee0000", + "color2": "e0fa0c", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 9, + "interval": -1, + "laps_complete": 20, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "F5F9F4", + "color2": "000000", + "color3": "EDF4EE", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "28", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 63.223633, + "new_license_level": 19, + "new_sub_level": 341, + "new_ttrating": 1364, + "newi_rating": 2580, + "old_cpi": 79.276924, + "old_license_level": 19, + "old_sub_level": 375, + "old_ttrating": 1364, + "oldi_rating": 2590, + "opt_laps_complete": 0, + "position": 49, + "qual_lap_time": -1, + "reason_out": "DQ/Scoring Invalidated", + "reason_out_id": 34, + "starting_position": 47, + "starting_position_in_class": 21, + "suit": { + "pattern": 33, + "color1": "103fe6", + "color2": "f3f3f3", + "color3": "f60909" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -398466, + "cust_id": 401283, + "display_name": "Alex Serrano Martinez", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "ES", + "division": 4, + "division_name": "Division 5", + "drop_race": true, + "finish_position": 49, + "finish_position_in_class": 26, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "ffffff", + "color2": "fc0706", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "F5F9F4", + "color2": "000000", + "color3": "EDF4EE", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "28", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 55.97871, + "new_license_level": 19, + "new_sub_level": 323, + "new_ttrating": 1305, + "newi_rating": 2303, + "old_cpi": 56.21595, + "old_license_level": 19, + "old_sub_level": 323, + "old_ttrating": 1305, + "oldi_rating": 2303, + "opt_laps_complete": 0, + "position": 49, + "qual_lap_time": -1, + "reason_out": "DQ/Scoring Invalidated", + "reason_out_id": 34, + "starting_position": 47, + "starting_position_in_class": 21, + "suit": { + "pattern": 33, + "color1": "103fe6", + "color2": "f3f3f3", + "color3": "f60909" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -398466, + "cust_id": 1214818, + "display_name": "Alex Pascual3", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "ES", + "division": 2, + "division_name": "Division 3", + "drop_race": true, + "finish_position": 49, + "finish_position_in_class": 26, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 49, + "color1": "faff04", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "F5F9F4", + "color2": "000000", + "color3": "EDF4EE", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "28", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 49, + "qual_lap_time": -1, + "reason_out": "DQ/Scoring Invalidated", + "reason_out_id": 34, + "starting_position": 47, + "starting_position_in_class": 21, + "suit": { + "pattern": 33, + "color1": "103fe6", + "color2": "f3f3f3", + "color3": "f60909" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": true, + "finish_position": 49, + "finish_position_in_class": 26, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 47, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "F5F9F4", + "color2": "000000", + "color3": "EDF4EE", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "28", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 49, + "qual_lap_time": -1, + "reason_out": "DQ/Scoring Invalidated", + "reason_out_id": 34, + "starting_position": 47, + "starting_position_in_class": 21, + "suit": { + "pattern": 33, + "color1": "103fe6", + "color2": "f3f3f3", + "color3": "f60909" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -379972, + "display_name": "Primal Racing 1", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -379972, + "cust_id": 737050, + "display_name": "Magnus Mortensen2", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1040291, + "best_lap_num": 22, + "best_lap_time": 935397, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "DK", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 50, + "finish_position_in_class": 12, + "flair_id": 56, + "flair_name": "Denmark", + "flair_shortname": "DNK", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "000000", + "color2": "1c1a7b", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 17, + "interval": -1, + "laps_complete": 62, + "laps_lead": 53, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "8", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 75.986855, + "new_license_level": 20, + "new_sub_level": 410, + "new_ttrating": 1350, + "newi_rating": 2622, + "old_cpi": 100.1537, + "old_license_level": 20, + "old_sub_level": 452, + "old_ttrating": 1350, + "oldi_rating": 2672, + "opt_laps_complete": 0, + "position": 50, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 0, + "starting_position_in_class": 0, + "suit": { + "pattern": 1, + "color1": "f1732e", + "color2": "372a75", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -379972, + "cust_id": 728131, + "display_name": "Frederik Juhl Nielsen", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1067603, + "best_lap_num": 97, + "best_lap_time": 937399, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "DK", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 50, + "finish_position_in_class": 12, + "flair_id": 56, + "flair_name": "Denmark", + "flair_shortname": "DNK", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "f1732e", + "color2": "372a75", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 7, + "interval": -1, + "laps_complete": 49, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "8", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 46.074566, + "new_license_level": 18, + "new_sub_level": 250, + "new_ttrating": 1339, + "newi_rating": 2732, + "old_cpi": 38.211376, + "old_license_level": 18, + "old_sub_level": 222, + "old_ttrating": 1339, + "oldi_rating": 2771, + "opt_laps_complete": 0, + "position": 50, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 0, + "starting_position_in_class": 0, + "suit": { + "pattern": 1, + "color1": "f1732e", + "color2": "372a75", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -379972, + "cust_id": 712036, + "display_name": "Darien Lizano", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "PR", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 50, + "finish_position_in_class": 12, + "flair_id": 169, + "flair_name": "Puerto Rico", + "flair_shortname": "PRI", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "cd1ca1", + "color2": "18d7d7", + "color3": "d4dce8", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "8", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 50, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 0, + "starting_position_in_class": 0, + "suit": { + "pattern": 1, + "color1": "f1732e", + "color2": "372a75", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -379972, + "cust_id": 1043553, + "display_name": "Adam Fahim3", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "MY", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 50, + "finish_position_in_class": 12, + "flair_id": 125, + "flair_name": "Malaysia", + "flair_shortname": "MYS", + "friend": false, + "helmet": { + "pattern": 22, + "color1": "fffb00", + "color2": "ffffff", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "8", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 50, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 0, + "starting_position_in_class": 0, + "suit": { + "pattern": 1, + "color1": "f1732e", + "color2": "372a75", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -379972, + "cust_id": 1085548, + "display_name": "Jakob Simesen", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "DK", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 50, + "finish_position_in_class": 12, + "flair_id": 56, + "flair_name": "Denmark", + "flair_shortname": "DNK", + "friend": false, + "helmet": { + "pattern": 48, + "color1": "ff0000", + "color2": "ffffff", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "8", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 50, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 0, + "starting_position_in_class": 0, + "suit": { + "pattern": 1, + "color1": "f1732e", + "color2": "372a75", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 50, + "finish_position_in_class": 12, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 24, + "interval": -1, + "laps_complete": 0, + "laps_lead": 53, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "8", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 50, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 0, + "starting_position_in_class": 0, + "suit": { + "pattern": 1, + "color1": "f1732e", + "color2": "372a75", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -483219, + "display_name": "Velocity X Rhythm Racing Team", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 188, + "car_name": "McLaren 720S GT3 EVO", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -483219, + "cust_id": 1283272, + "display_name": "Mario García Muriel", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1056228, + "best_lap_num": 86, + "best_lap_time": 1045160, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 188, + "car_name": "McLaren 720S GT3 EVO", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "ES", + "division": 1, + "division_name": "Division 2", + "drop_race": true, + "finish_position": 51, + "finish_position_in_class": 27, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "231f20", + "color2": "808080", + "color3": "f26722", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 7, + "interval": -1, + "laps_complete": 61, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 188, + "pattern": 1, + "color1": "FF0000", + "color2": "00FF00", + "color3": "0000FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "31", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 97, + "new_cpi": 43.159573, + "new_license_level": 17, + "new_sub_level": 197, + "new_ttrating": 1350, + "newi_rating": 3435, + "old_cpi": 30.48215, + "old_license_level": 17, + "old_sub_level": 143, + "old_ttrating": 1350, + "oldi_rating": 3486, + "opt_laps_complete": 0, + "position": 51, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 26, + "starting_position_in_class": 0, + "suit": { + "pattern": 1, + "color1": "231f20", + "color2": "808080", + "color3": "f26722" + }, + "watched": false, + "weight_penalty_kg": 5 + }, + { + "team_id": -483219, + "cust_id": 1233001, + "display_name": "Mauro Agustin Arriola Aranela", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1087741, + "best_lap_num": 57, + "best_lap_time": 1055563, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 188, + "car_name": "McLaren 720S GT3 EVO", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "AR", + "division": 3, + "division_name": "Division 4", + "drop_race": true, + "finish_position": 51, + "finish_position_in_class": 27, + "flair_id": 13, + "flair_name": "Argentina", + "flair_shortname": "ARG", + "friend": false, + "helmet": { + "pattern": 9, + "color1": "0222f4", + "color2": "f9f9f9", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 13, + "interval": -1, + "laps_complete": 29, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 188, + "pattern": 1, + "color1": "FF0000", + "color2": "00FF00", + "color3": "0000FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "31", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 97, + "new_cpi": 21.797512, + "new_license_level": 10, + "new_sub_level": 249, + "new_ttrating": 1350, + "newi_rating": 1665, + "old_cpi": 21.029593, + "old_license_level": 10, + "old_sub_level": 243, + "old_ttrating": 1350, + "oldi_rating": 1689, + "opt_laps_complete": 0, + "position": 51, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 26, + "starting_position_in_class": 0, + "suit": { + "pattern": 1, + "color1": "231f20", + "color2": "808080", + "color3": "f26722" + }, + "watched": false, + "weight_penalty_kg": 5 + }, + { + "team_id": -483219, + "cust_id": 1376075, + "display_name": "Darío Llopis", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1264340, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 188, + "car_name": "McLaren 720S GT3 EVO", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "ES", + "division": 5, + "division_name": "Division 6", + "drop_race": true, + "finish_position": 51, + "finish_position_in_class": 27, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 7, + "color1": "8f6b00", + "color2": "b98b00", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 7, + "interval": -1, + "laps_complete": 5, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 188, + "pattern": 1, + "color1": "FF0000", + "color2": "00FF00", + "color3": "0000FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "31", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 97, + "new_cpi": 18.233788, + "new_license_level": 10, + "new_sub_level": 220, + "new_ttrating": 1350, + "newi_rating": 1585, + "old_cpi": 19.105652, + "old_license_level": 10, + "old_sub_level": 228, + "old_ttrating": 1350, + "oldi_rating": 1589, + "opt_laps_complete": 0, + "position": 51, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 26, + "starting_position_in_class": 0, + "suit": { + "pattern": 1, + "color1": "231f20", + "color2": "808080", + "color3": "f26722" + }, + "watched": false, + "weight_penalty_kg": 5 + } + ], + "drop_race": true, + "finish_position": 51, + "finish_position_in_class": 27, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 27, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 188, + "pattern": 1, + "color1": "FF0000", + "color2": "00FF00", + "color3": "0000FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "31", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 97, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 51, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 26, + "starting_position_in_class": 0, + "suit": { + "pattern": 1, + "color1": "231f20", + "color2": "808080", + "color3": "f26722" + }, + "watched": false, + "weight_penalty_kg": 5 + }, + { + "team_id": -467225, + "display_name": "DCS Racing Green", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -467225, + "cust_id": 1193552, + "display_name": "Nikos Nota", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1104297, + "best_lap_num": 65, + "best_lap_time": 1045754, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GR", + "division": 3, + "division_name": "Division 4", + "drop_race": true, + "finish_position": 52, + "finish_position_in_class": 28, + "flair_id": 80, + "flair_name": "Greece", + "flair_shortname": "GRC", + "friend": false, + "helmet": { + "pattern": 67, + "color1": "ffffff", + "color2": "fff500", + "color3": "fff500", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 17, + "interval": -1, + "laps_complete": 61, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "e0aa42", + "color2": "0ea2eb", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "22", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 29.04801, + "new_license_level": 13, + "new_sub_level": 194, + "new_ttrating": 1305, + "newi_rating": 3058, + "old_cpi": 21.94943, + "old_license_level": 13, + "old_sub_level": 150, + "old_ttrating": 1305, + "oldi_rating": 3142, + "opt_laps_complete": 0, + "position": 52, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 35, + "starting_position_in_class": 9, + "suit": { + "pattern": 33, + "color1": "ffffff", + "color2": "60a6c9", + "color3": "1a1f43" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -467225, + "cust_id": 618064, + "display_name": "Lexi Taylor", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1100085, + "best_lap_num": 36, + "best_lap_time": 1066419, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GB", + "division": 7, + "division_name": "Division 8", + "drop_race": true, + "finish_position": 52, + "finish_position_in_class": 28, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 35, + "color1": "ffe116", + "color2": "117900", + "color3": "00046b", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 2, + "interval": -1, + "laps_complete": 7, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "e0aa42", + "color2": "0ea2eb", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "22", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 37.60446, + "new_license_level": 15, + "new_sub_level": 319, + "new_ttrating": 1350, + "newi_rating": 1864, + "old_cpi": 36.71224, + "old_license_level": 15, + "old_sub_level": 316, + "old_ttrating": 1350, + "oldi_rating": 1874, + "opt_laps_complete": 0, + "position": 52, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 35, + "starting_position_in_class": 9, + "suit": { + "pattern": 33, + "color1": "ffffff", + "color2": "60a6c9", + "color3": "1a1f43" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -467225, + "cust_id": 1415804, + "display_name": "Christian Ranzani2", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "SO", + "division": 10, + "division_name": "Rookie", + "drop_race": true, + "finish_position": 52, + "finish_position_in_class": 28, + "flair_id": 194, + "flair_name": "Somalia", + "flair_shortname": "SOM", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "ffffff", + "color2": "2e358f", + "color3": "ec232d", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "e0aa42", + "color2": "0ea2eb", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "22", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 52, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 35, + "starting_position_in_class": 9, + "suit": { + "pattern": 33, + "color1": "ffffff", + "color2": "60a6c9", + "color3": "1a1f43" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": true, + "finish_position": 52, + "finish_position_in_class": 28, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 19, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "e0aa42", + "color2": "0ea2eb", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "22", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 52, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 35, + "starting_position_in_class": 9, + "suit": { + "pattern": 33, + "color1": "ffffff", + "color2": "60a6c9", + "color3": "1a1f43" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -298823, + "display_name": "TEN MAD MEN Alpha", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -298823, + "cust_id": 363120, + "display_name": "Vins Alamar", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1177627, + "best_lap_num": 41, + "best_lap_time": 1049909, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "ES", + "division": 3, + "division_name": "Division 4", + "drop_race": true, + "finish_position": 53, + "finish_position_in_class": 29, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 22, + "color1": "b8b8b8", + "color2": "0010ad", + "color3": "6698ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 8, + "interval": -1, + "laps_complete": 31, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "ffffff", + "color2": "0013a5", + "color3": "ff5c00", + "number_font": 0, + "number_color1": "f3eeeb", + "number_color2": "ffffff", + "number_color3": "ffffff", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "010", + "wheel_color": "32312f", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 30.895468, + "new_license_level": 14, + "new_sub_level": 245, + "new_ttrating": 1336, + "newi_rating": 1893, + "old_cpi": 27.22615, + "old_license_level": 13, + "old_sub_level": 184, + "old_ttrating": 1336, + "oldi_rating": 1931, + "opt_laps_complete": 0, + "position": 53, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 40, + "starting_position_in_class": 14, + "suit": { + "pattern": 1, + "color1": "e1ce30", + "color2": "ebe8e8", + "color3": "1c46ed" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -298823, + "cust_id": 376421, + "display_name": "Jorge Leiva Ruiz", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1064642, + "best_lap_num": 27, + "best_lap_time": 1046539, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "CL", + "division": 2, + "division_name": "Division 3", + "drop_race": true, + "finish_position": 53, + "finish_position_in_class": 29, + "flair_id": 44, + "flair_name": "Chile", + "flair_shortname": "CHL", + "friend": false, + "helmet": { + "pattern": 67, + "color1": "000000", + "color2": "00a0bc", + "color3": "c7c7c7", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 6, + "interval": -1, + "laps_complete": 30, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "ffffff", + "color2": "0013a5", + "color3": "ff5c00", + "number_font": 0, + "number_color1": "f3eeeb", + "number_color2": "ffffff", + "number_color3": "ffffff", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "010", + "wheel_color": "32312f", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 65.18878, + "new_license_level": 19, + "new_sub_level": 346, + "new_ttrating": 1350, + "newi_rating": 2447, + "old_cpi": 66.34217, + "old_license_level": 19, + "old_sub_level": 348, + "old_ttrating": 1350, + "oldi_rating": 2484, + "opt_laps_complete": 0, + "position": 53, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 40, + "starting_position_in_class": 14, + "suit": { + "pattern": 1, + "color1": "e1ce30", + "color2": "ebe8e8", + "color3": "1c46ed" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -298823, + "cust_id": 527810, + "display_name": "Javi Abad", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "ES", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 53, + "finish_position_in_class": 29, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 10, + "color1": "ffffff", + "color2": "000000", + "color3": "41ff00", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "ffffff", + "color2": "0013a5", + "color3": "ff5c00", + "number_font": 0, + "number_color1": "f3eeeb", + "number_color2": "ffffff", + "number_color3": "ffffff", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "010", + "wheel_color": "32312f", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 53, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 40, + "starting_position_in_class": 14, + "suit": { + "pattern": 1, + "color1": "e1ce30", + "color2": "ebe8e8", + "color3": "1c46ed" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -298823, + "cust_id": 554983, + "display_name": "Dan Moreno", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "CH", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 53, + "finish_position_in_class": 29, + "flair_id": 204, + "flair_name": "Switzerland", + "flair_shortname": "CHE", + "friend": false, + "helmet": { + "pattern": 68, + "color1": "b4b640", + "color2": "111111", + "color3": "1a2c6d", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "ffffff", + "color2": "0013a5", + "color3": "ff5c00", + "number_font": 0, + "number_color1": "f3eeeb", + "number_color2": "ffffff", + "number_color3": "ffffff", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "010", + "wheel_color": "32312f", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 53, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 40, + "starting_position_in_class": 14, + "suit": { + "pattern": 1, + "color1": "e1ce30", + "color2": "ebe8e8", + "color3": "1c46ed" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -298823, + "cust_id": 803476, + "display_name": "Jose Carlos Rodriguez", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "ES", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 53, + "finish_position_in_class": 29, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "fc0706", + "color2": "111111", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "ffffff", + "color2": "0013a5", + "color3": "ff5c00", + "number_font": 0, + "number_color1": "f3eeeb", + "number_color2": "ffffff", + "number_color3": "ffffff", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "010", + "wheel_color": "32312f", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 53, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 40, + "starting_position_in_class": 14, + "suit": { + "pattern": 1, + "color1": "e1ce30", + "color2": "ebe8e8", + "color3": "1c46ed" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 53, + "finish_position_in_class": 29, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 14, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "ffffff", + "color2": "0013a5", + "color3": "ff5c00", + "number_font": 0, + "number_color1": "f3eeeb", + "number_color2": "ffffff", + "number_color3": "ffffff", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "010", + "wheel_color": "32312f", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 53, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 40, + "starting_position_in_class": 14, + "suit": { + "pattern": 1, + "color1": "e1ce30", + "color2": "ebe8e8", + "color3": "1c46ed" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -199580, + "display_name": "IntoTheApex.com Gold", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -199580, + "cust_id": 142817, + "display_name": "Charlie Ryan", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 975438, + "best_lap_num": 25, + "best_lap_time": 943009, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": true, + "finish_position": 54, + "finish_position_in_class": 13, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 2, + "color1": "000000", + "color2": "ED2129", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 6, + "interval": -1, + "laps_complete": 47, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "069", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 42.451843, + "new_license_level": 18, + "new_sub_level": 238, + "new_ttrating": 1350, + "newi_rating": 2179, + "old_cpi": 33.555664, + "old_license_level": 18, + "old_sub_level": 202, + "old_ttrating": 1350, + "oldi_rating": 2266, + "opt_laps_complete": 0, + "position": 54, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 7, + "starting_position_in_class": 7, + "suit": { + "pattern": 19, + "color1": "000000", + "color2": "0d1fc5", + "color3": "e3e110" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -199580, + "cust_id": 32703, + "display_name": "Chris Cable", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": true, + "finish_position": 54, + "finish_position_in_class": 13, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 32, + "color1": "000000", + "color2": "ff0605", + "color3": "e0e0e0", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 1, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "069", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 78.61671, + "new_license_level": 19, + "new_sub_level": 374, + "new_ttrating": 1350, + "newi_rating": 2597, + "old_cpi": 78.61671, + "old_license_level": 19, + "old_sub_level": 374, + "old_ttrating": 1350, + "oldi_rating": 2599, + "opt_laps_complete": 0, + "position": 54, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 7, + "starting_position_in_class": 7, + "suit": { + "pattern": 19, + "color1": "000000", + "color2": "0d1fc5", + "color3": "e3e110" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -199580, + "cust_id": 25230, + "display_name": "Bruce Perry", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "US", + "division": 3, + "division_name": "Division 4", + "drop_race": true, + "finish_position": 54, + "finish_position_in_class": 13, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 9, + "color1": "f9f9f9", + "color2": "0098fe", + "color3": "f9ebd7", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "069", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 236.64212, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2155, + "old_cpi": 234.75113, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 2155, + "opt_laps_complete": 0, + "position": 54, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 7, + "starting_position_in_class": 7, + "suit": { + "pattern": 19, + "color1": "000000", + "color2": "0d1fc5", + "color3": "e3e110" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -199580, + "cust_id": 113433, + "display_name": "Joshua Kotten", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": true, + "finish_position": 54, + "finish_position_in_class": 13, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "000000", + "color2": "efac00", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "069", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 54, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 7, + "starting_position_in_class": 7, + "suit": { + "pattern": 19, + "color1": "000000", + "color2": "0d1fc5", + "color3": "e3e110" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": true, + "finish_position": 54, + "finish_position_in_class": 13, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 6, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "069", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 54, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 7, + "starting_position_in_class": 7, + "suit": { + "pattern": 19, + "color1": "000000", + "color2": "0d1fc5", + "color3": "e3e110" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -401232, + "display_name": "Kika Cetasso Racing Team", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -401232, + "cust_id": 127024, + "display_name": "Fernando Cardoso", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1152969, + "best_lap_num": 20, + "best_lap_time": 1049065, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "CA", + "division": 4, + "division_name": "Division 5", + "drop_race": true, + "finish_position": 55, + "finish_position_in_class": 30, + "flair_id": 39, + "flair_name": "Canada", + "flair_shortname": "CAN", + "friend": false, + "helmet": { + "pattern": 42, + "color1": "000000", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 19, + "interval": -1, + "laps_complete": 43, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "ffffff", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 3, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "12", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 46.205784, + "new_license_level": 18, + "new_sub_level": 250, + "new_ttrating": 1350, + "newi_rating": 1513, + "old_cpi": 57.07806, + "old_license_level": 19, + "old_sub_level": 326, + "old_ttrating": 1350, + "oldi_rating": 1571, + "opt_laps_complete": 0, + "position": 55, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 58, + "starting_position_in_class": 32, + "suit": { + "pattern": 2, + "color1": "000000", + "color2": "ffffff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -401232, + "cust_id": 1099564, + "display_name": "Gabriel Cardoso5", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "CA", + "division": 1, + "division_name": "Division 2", + "drop_race": true, + "finish_position": 55, + "finish_position_in_class": 30, + "flair_id": 39, + "flair_name": "Canada", + "flair_shortname": "CAN", + "friend": false, + "helmet": { + "pattern": 56, + "color1": "ccff00", + "color2": "111111", + "color3": "391c83", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "ffffff", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 3, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "12", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 55, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 58, + "starting_position_in_class": 32, + "suit": { + "pattern": 2, + "color1": "000000", + "color2": "ffffff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": true, + "finish_position": 55, + "finish_position_in_class": 30, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 19, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "ffffff", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 3, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "12", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 55, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 58, + "starting_position_in_class": 32, + "suit": { + "pattern": 2, + "color1": "000000", + "color2": "ffffff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -298487, + "display_name": "Parc Motorsport Team Purple", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -298487, + "cust_id": 784148, + "display_name": "Krzysztof Olender2", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1095344, + "best_lap_num": 12, + "best_lap_time": 1045575, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "PL", + "division": 3, + "division_name": "Division 4", + "drop_race": true, + "finish_position": 56, + "finish_position_in_class": 31, + "flair_id": 167, + "flair_name": "Poland", + "flair_shortname": "POL", + "friend": false, + "helmet": { + "pattern": 43, + "color1": "eaff00", + "color2": "00e0ff", + "color3": "db00ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 14, + "interval": -1, + "laps_complete": 38, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 9, + "color1": "000000", + "color2": "8700ff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "97", + "wheel_color": "000000", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 36.04055, + "new_license_level": 14, + "new_sub_level": 269, + "new_ttrating": 1350, + "newi_rating": 2615, + "old_cpi": 42.249332, + "old_license_level": 14, + "old_sub_level": 293, + "old_ttrating": 1350, + "oldi_rating": 2719, + "opt_laps_complete": 0, + "position": 56, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 48, + "starting_position_in_class": 22, + "suit": { + "pattern": 28, + "color1": "000000", + "color2": "7800ff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -298487, + "cust_id": 589222, + "display_name": "Mateusz Boruta5", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "PL", + "division": 3, + "division_name": "Division 4", + "drop_race": true, + "finish_position": 56, + "finish_position_in_class": 31, + "flair_id": 167, + "flair_name": "Poland", + "flair_shortname": "POL", + "friend": false, + "helmet": { + "pattern": 8, + "color1": "fa1c1c", + "color2": "000000", + "color3": "d24f86", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 9, + "color1": "000000", + "color2": "8700ff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "97", + "wheel_color": "000000", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 56, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 48, + "starting_position_in_class": 22, + "suit": { + "pattern": 28, + "color1": "000000", + "color2": "7800ff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -298487, + "cust_id": 972927, + "display_name": "Tomasz Rogacki", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "PL", + "division": 2, + "division_name": "Division 3", + "drop_race": true, + "finish_position": 56, + "finish_position_in_class": 31, + "flair_id": 167, + "flair_name": "Poland", + "flair_shortname": "POL", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "0460eb", + "color2": "f06e34", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 9, + "color1": "000000", + "color2": "8700ff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "97", + "wheel_color": "000000", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 56, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 48, + "starting_position_in_class": 22, + "suit": { + "pattern": 28, + "color1": "000000", + "color2": "7800ff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -298487, + "cust_id": 1056161, + "display_name": "Aleks Rusinek", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "PL", + "division": 3, + "division_name": "Division 4", + "drop_race": true, + "finish_position": 56, + "finish_position_in_class": 31, + "flair_id": 167, + "flair_name": "Poland", + "flair_shortname": "POL", + "friend": false, + "helmet": { + "pattern": 29, + "color1": "8000ff", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 9, + "color1": "000000", + "color2": "8700ff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "97", + "wheel_color": "000000", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 46.348267, + "new_license_level": 18, + "new_sub_level": 251, + "new_ttrating": 1350, + "newi_rating": 2095, + "old_cpi": 46.346268, + "old_license_level": 18, + "old_sub_level": 251, + "old_ttrating": 1350, + "oldi_rating": 2095, + "opt_laps_complete": 0, + "position": 56, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 48, + "starting_position_in_class": 22, + "suit": { + "pattern": 28, + "color1": "000000", + "color2": "7800ff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": true, + "finish_position": 56, + "finish_position_in_class": 31, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 14, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 9, + "color1": "000000", + "color2": "8700ff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "97", + "wheel_color": "000000", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 56, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 48, + "starting_position_in_class": 22, + "suit": { + "pattern": 28, + "color1": "000000", + "color2": "7800ff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -420531, + "display_name": "Angler Racing", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -420531, + "cust_id": 941901, + "display_name": "Paddy Armstrong", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1060695, + "best_lap_num": 23, + "best_lap_time": 1043936, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "SCT", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 57, + "finish_position_in_class": 32, + "flair_id": 237, + "flair_name": "Scotland", + "flair_shortname": "SCT", + "friend": false, + "helmet": { + "pattern": 57, + "color1": "838383", + "color2": "ffffff", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 11, + "interval": -1, + "laps_complete": 29, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "000000", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "6", + "wheel_color": "c8bd9f", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 78.350105, + "new_license_level": 20, + "new_sub_level": 415, + "new_ttrating": 1260, + "newi_rating": 2157, + "old_cpi": 111.6487, + "old_license_level": 20, + "old_sub_level": 469, + "old_ttrating": 1260, + "oldi_rating": 2252, + "opt_laps_complete": 0, + "position": 57, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 36, + "starting_position_in_class": 10, + "suit": { + "pattern": 1, + "color1": "000000", + "color2": "ff00de", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -420531, + "cust_id": 1020483, + "display_name": "Samuel Yoseph", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "US", + "division": 3, + "division_name": "Division 4", + "drop_race": true, + "finish_position": 57, + "finish_position_in_class": 32, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "ffffff", + "color2": "1a4b9b", + "color3": "dff000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "000000", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "6", + "wheel_color": "c8bd9f", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 57, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 36, + "starting_position_in_class": 10, + "suit": { + "pattern": 1, + "color1": "000000", + "color2": "ff00de", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -420531, + "cust_id": 1039541, + "display_name": "Serge Sas", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "BE", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 57, + "finish_position_in_class": 32, + "flair_id": 23, + "flair_name": "Belgium", + "flair_shortname": "BEL", + "friend": false, + "helmet": { + "pattern": 35, + "color1": "000000", + "color2": "fac31e", + "color3": "ff0000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "000000", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "6", + "wheel_color": "c8bd9f", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 57, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 36, + "starting_position_in_class": 10, + "suit": { + "pattern": 1, + "color1": "000000", + "color2": "ff00de", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -420531, + "cust_id": 1218990, + "display_name": "Matt O'Donoghue", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "SCT", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 57, + "finish_position_in_class": 32, + "flair_id": 237, + "flair_name": "Scotland", + "flair_shortname": "SCT", + "friend": false, + "helmet": { + "pattern": 23, + "color1": "000000", + "color2": "ff00e6", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "000000", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "6", + "wheel_color": "c8bd9f", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 57, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 36, + "starting_position_in_class": 10, + "suit": { + "pattern": 1, + "color1": "000000", + "color2": "ff00de", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 57, + "finish_position_in_class": 32, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 11, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "000000", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "6", + "wheel_color": "c8bd9f", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 57, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 36, + "starting_position_in_class": 10, + "suit": { + "pattern": 1, + "color1": "000000", + "color2": "ff00de", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -169135, + "display_name": "BMW M Plower #557", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -169135, + "cust_id": 374188, + "display_name": "Lars Wiele", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "DE", + "division": 1, + "division_name": "Division 2", + "drop_race": true, + "finish_position": 58, + "finish_position_in_class": 11, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 2, + "color1": "6f9556", + "color2": "111111", + "color3": "efd600", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 6, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 1, + "color1": "6f9556", + "color2": "111111", + "color3": "efd600", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "557", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 108.826164, + "new_license_level": 20, + "new_sub_level": 465, + "new_ttrating": 1350, + "newi_rating": 3266, + "old_cpi": 140.98111, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 3386, + "opt_laps_complete": 0, + "position": 58, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 23, + "starting_position_in_class": 9, + "suit": { + "pattern": 19, + "color1": "0c0fb4", + "color2": "299467", + "color3": "d1f100" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -169135, + "cust_id": 441146, + "display_name": "Robert J Besinga", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "US", + "division": 3, + "division_name": "Division 4", + "drop_race": true, + "finish_position": 58, + "finish_position_in_class": 11, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 17, + "color1": "ffffff", + "color2": "000000", + "color3": "001367", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 1, + "color1": "6f9556", + "color2": "111111", + "color3": "efd600", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "557", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 58, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 23, + "starting_position_in_class": 9, + "suit": { + "pattern": 19, + "color1": "0c0fb4", + "color2": "299467", + "color3": "d1f100" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -169135, + "cust_id": 500311, + "display_name": "Joshua Easey", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GB", + "division": 2, + "division_name": "Division 3", + "drop_race": true, + "finish_position": 58, + "finish_position_in_class": 11, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "cccccc", + "color2": "111111", + "color3": "ed1c24", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 1, + "color1": "6f9556", + "color2": "111111", + "color3": "efd600", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "557", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 211.58789, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2446, + "old_cpi": 209.03923, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 2446, + "opt_laps_complete": 0, + "position": 58, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 23, + "starting_position_in_class": 9, + "suit": { + "pattern": 19, + "color1": "0c0fb4", + "color2": "299467", + "color3": "d1f100" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -169135, + "cust_id": 638713, + "display_name": "Barnabás Tóth", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "HU", + "division": 4, + "division_name": "Division 5", + "drop_race": true, + "finish_position": 58, + "finish_position_in_class": 11, + "flair_id": 93, + "flair_name": "Hungary", + "flair_shortname": "HUN", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "ee3442", + "color2": "ffffff", + "color3": "447ac0", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 1, + "color1": "6f9556", + "color2": "111111", + "color3": "efd600", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "557", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 32.60926, + "new_license_level": 17, + "new_sub_level": 153, + "new_ttrating": 1370, + "newi_rating": 1729, + "old_cpi": 33.197025, + "old_license_level": 17, + "old_sub_level": 156, + "old_ttrating": 1370, + "oldi_rating": 1729, + "opt_laps_complete": 0, + "position": 58, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 23, + "starting_position_in_class": 9, + "suit": { + "pattern": 19, + "color1": "0c0fb4", + "color2": "299467", + "color3": "d1f100" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -169135, + "cust_id": 989424, + "display_name": "Kay Bautzmann", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": true, + "finish_position": 58, + "finish_position_in_class": 11, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 35, + "color1": "f5a9b8", + "color2": "5bcefa", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 1, + "color1": "6f9556", + "color2": "111111", + "color3": "efd600", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "557", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 58, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 23, + "starting_position_in_class": 9, + "suit": { + "pattern": 19, + "color1": "0c0fb4", + "color2": "299467", + "color3": "d1f100" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": true, + "finish_position": 58, + "finish_position_in_class": 11, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 6, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 1, + "color1": "6f9556", + "color2": "111111", + "color3": "efd600", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "557", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 58, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 23, + "starting_position_in_class": 9, + "suit": { + "pattern": 19, + "color1": "0c0fb4", + "color2": "299467", + "color3": "d1f100" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ] + } + ], + "session_splits": [ { - "cust_id": 412200, - "display_name": "Connor Clubine", - "aggregate_champ_points": 120, - "ai": false, - "average_lap": 1358616, - "best_lap_num": 2, - "best_lap_time": 1348501, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2025-12-28T20:37:39Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1348501, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 157, - "car_name": "Mercedes-AMG GT4", - "carcfg": -1, - "champ_points": 0, - "class_interval": 29551, - "country_code": "CA", - "division": 0, - "division_name": "Division 1", - "drop_race": false, - "finish_position": 16, - "finish_position_in_class": 16, - "flair_id": 39, - "flair_name": "Canada", - "flair_shortname": "CAN", - "friend": false, - "helmet": { - "pattern": 10, - "color1": "389aff", - "color2": "ff0000", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 29551, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 157, - "pattern": 23, - "color1": "00237d", - "color2": "f2f3fc", - "color3": "d6050e", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "d60500", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "5", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 52.611485, - "new_license_level": 18, - "new_sub_level": 270, - "new_ttrating": 1350, - "newi_rating": 4348, - "old_cpi": 50.59205, - "old_license_level": 18, - "old_sub_level": 264, - "old_ttrating": 1350, - "oldi_rating": 4347, - "opt_laps_complete": 0, - "position": 16, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 21, - "color1": "001f6e", - "color2": "ffffff", - "color3": "d60500" - }, - "watched": false, - "weight_penalty_kg": -1 + "subsession_id": 82799828, + "event_strength_of_field": 8977 }, { - "cust_id": 1197334, - "display_name": "Francisco Cores", - "aggregate_champ_points": 57, - "ai": false, - "average_lap": 1351320, - "best_lap_num": 2, - "best_lap_time": 1349190, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2025-12-28T20:37:52Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1349190, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 189, - "car_name": "BMW M4 G82 GT4 Evo", - "carcfg": -1, - "champ_points": 0, - "class_interval": 30240, - "country_code": "AR", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 17, - "finish_position_in_class": 17, - "flair_id": 13, - "flair_name": "Argentina", - "flair_shortname": "ARG", - "friend": false, - "helmet": { - "pattern": 6, - "color1": "1a1a1a", - "color2": "268d19", - "color3": "1a1a1a", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 30240, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 189, - "pattern": 12, - "color1": "00c1ff", - "color2": "ffffff", - "color3": "00d9ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "1c00ff", - "number_color3": "ff0000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "18", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 27.755468, - "new_license_level": 17, - "new_sub_level": 128, - "new_ttrating": 1350, - "newi_rating": 2476, - "old_cpi": 29.861366, - "old_license_level": 17, - "old_sub_level": 140, - "old_ttrating": 1350, - "oldi_rating": 2495, - "opt_laps_complete": 0, - "position": 17, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 2, - "color1": "000000", - "color2": "000000", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1 + "subsession_id": 82799829, + "event_strength_of_field": 6816 }, { - "cust_id": 354144, - "display_name": "Xavier Abellan", - "aggregate_champ_points": 25, - "ai": false, - "average_lap": 1359539, - "best_lap_num": 2, - "best_lap_time": 1350341, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2025-12-28T20:38:24Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1350341, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 157, - "car_name": "Mercedes-AMG GT4", - "carcfg": -1, - "champ_points": 0, - "class_interval": 31391, - "country_code": "ES", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 18, - "finish_position_in_class": 18, - "flair_id": 198, - "flair_name": "Spain", - "flair_shortname": "ESP", - "friend": false, - "helmet": { - "pattern": 42, - "color1": "e4380c", - "color2": "070808", - "color3": "4100da", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 31391, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 157, - "pattern": 2, - "color1": "e4380c", - "color2": "070808", - "color3": "4100da", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "28", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 30.233068, - "new_license_level": 14, - "new_sub_level": 242, - "new_ttrating": 1350, - "newi_rating": 2095, - "old_cpi": 32.681377, - "old_license_level": 14, - "old_sub_level": 254, - "old_ttrating": 1350, - "oldi_rating": 2137, - "opt_laps_complete": 0, - "position": 18, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 27, - "color1": "2610BC", - "color2": "030202", - "color3": "B91B13" - }, - "watched": false, - "weight_penalty_kg": -1 + "subsession_id": 82799830, + "event_strength_of_field": 5678 }, { - "cust_id": 1326283, - "display_name": "Willian Schilling", - "aggregate_champ_points": 63, - "ai": false, - "average_lap": 1354181, - "best_lap_num": 1, - "best_lap_time": 1354181, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2025-12-28T20:35:46Z", - "best_qual_lap_num": 1, - "best_qual_lap_time": 1354181, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 189, - "car_name": "BMW M4 G82 GT4 Evo", - "carcfg": -1, - "champ_points": 0, - "class_interval": 35231, - "country_code": "BR", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 19, - "finish_position_in_class": 19, - "flair_id": 31, - "flair_name": "Brazil", - "flair_shortname": "BRA", - "friend": false, - "helmet": { - "pattern": 59, - "color1": "9720c8", - "color2": "ffffff", - "color3": "171717", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 3, - "interval": 35231, - "laps_complete": 1, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 189, - "pattern": 14, - "color1": "9720C8", - "color2": "FFFFFF", - "color3": "171717", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "24", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 36.86136, - "new_license_level": 11, - "new_sub_level": 372, - "new_ttrating": 1311, - "newi_rating": 2177, - "old_cpi": 39.81942, - "old_license_level": 11, - "old_sub_level": 384, - "old_ttrating": 1311, - "oldi_rating": 2180, - "opt_laps_complete": 0, - "position": 19, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "b226fd", - "color2": "9a22ff", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1 + "subsession_id": 82799831, + "event_strength_of_field": 5040 }, { - "cust_id": 1258349, - "display_name": "Sebastian Bignasca", - "aggregate_champ_points": 44, - "ai": false, - "average_lap": 1371456, - "best_lap_num": 2, - "best_lap_time": 1354468, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2025-12-28T20:37:42Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1354468, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 119, - "car_name": "Porsche 718 Cayman GT4 Clubsport MR", - "carcfg": -1, - "champ_points": 0, - "class_interval": 35518, - "country_code": "CH", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 20, - "finish_position_in_class": 20, - "flair_id": 204, - "flair_name": "Switzerland", - "flair_shortname": "CHE", - "friend": false, - "helmet": { - "pattern": 66, - "color1": "bd0904", - "color2": "184252", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 1, - "interval": 35518, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 119, - "pattern": 10, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "e12424", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "21", - "wheel_color": "000000", - "rim_type": 1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 35.977398, - "new_license_level": 14, - "new_sub_level": 268, - "new_ttrating": 1284, - "newi_rating": 2226, - "old_cpi": 36.12372, - "old_license_level": 14, - "old_sub_level": 269, - "old_ttrating": 1284, - "oldi_rating": 2251, - "opt_laps_complete": 0, - "position": 20, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "161717", - "color2": "da3727", - "color3": "111111" - }, - "watched": false, - "weight_penalty_kg": -1 + "subsession_id": 82799832, + "event_strength_of_field": 4606 }, { - "cust_id": 404356, - "display_name": "Alexis Montesdeoca", - "aggregate_champ_points": 69, - "ai": false, - "average_lap": 1362814, - "best_lap_num": 2, - "best_lap_time": 1362814, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2025-12-28T20:38:22Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1362814, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 189, - "car_name": "BMW M4 G82 GT4 Evo", - "carcfg": -1, - "champ_points": 0, - "class_interval": 43864, - "country_code": "EC", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 21, - "finish_position_in_class": 21, - "flair_id": 60, - "flair_name": "Ecuador", - "flair_shortname": "ECU", - "friend": false, - "helmet": { - "pattern": 22, - "color1": "2400ff", - "color2": "f2ff00", - "color3": "ff0036", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 2, - "interval": 43864, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 189, - "pattern": 2, - "color1": "FF0000", - "color2": "00FF00", - "color3": "0000FF", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "14", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 21.141125, - "new_license_level": 7, - "new_sub_level": 344, - "new_ttrating": 1350, - "newi_rating": 2770, - "old_cpi": 18.475237, - "old_license_level": 6, - "old_sub_level": 286, - "old_ttrating": 1350, - "oldi_rating": 2784, - "opt_laps_complete": 0, - "position": 21, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 27, - "color1": "e5ff13", - "color2": "0a0dff", - "color3": "ec1305" - }, - "watched": false, - "weight_penalty_kg": -1 + "subsession_id": 82799833, + "event_strength_of_field": 4245 }, { - "cust_id": 745711, - "display_name": "Raul Lopez Gimenez", - "aggregate_champ_points": 107, - "ai": false, - "average_lap": 1363659, - "best_lap_num": 2, - "best_lap_time": 1363659, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2025-12-28T20:38:06Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1363659, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 189, - "car_name": "BMW M4 G82 GT4 Evo", - "carcfg": -1, - "champ_points": 0, - "class_interval": 44709, - "country_code": "ES", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 22, - "finish_position_in_class": 22, - "flair_id": 198, - "flair_name": "Spain", - "flair_shortname": "ESP", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "0ada00", - "color2": "ffffff", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 3, - "interval": 44709, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 189, - "pattern": 8, - "color1": "0ADA00", - "color2": "FFFFFF", - "color3": "111111", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "22", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 43.376335, - "new_license_level": 15, - "new_sub_level": 341, - "new_ttrating": 1350, - "newi_rating": 2286, - "old_cpi": 44.127274, - "old_license_level": 15, - "old_sub_level": 343, - "old_ttrating": 1350, - "oldi_rating": 2245, - "opt_laps_complete": 0, - "position": 22, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "0ada00", - "color2": "ffffff", - "color3": "111111" - }, - "watched": false, - "weight_penalty_kg": -1 + "subsession_id": 82799834, + "event_strength_of_field": 3957 }, { - "cust_id": 1379179, - "display_name": "Christopher Bruchmann", - "aggregate_champ_points": 76, - "ai": false, - "average_lap": 1365579, - "best_lap_num": 1, - "best_lap_time": 1365579, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2025-12-28T20:35:24Z", - "best_qual_lap_num": 1, - "best_qual_lap_time": 1365579, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 150, - "car_name": "Aston Martin Vantage GT4", - "carcfg": -1, - "champ_points": 0, - "class_interval": 46629, - "country_code": "DE", - "division": 4, - "division_name": "Division 5", - "drop_race": false, - "finish_position": 23, - "finish_position_in_class": 23, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 68, - "color1": "000000", - "color2": "ffffff", - "color3": "0011ff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 2, - "interval": 46629, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 150, - "pattern": 10, - "color1": "0500ff", - "color2": "a3d3ff", - "color3": "242424", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "29", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 25.648657, - "new_license_level": 11, - "new_sub_level": 316, - "new_ttrating": 1350, - "newi_rating": 2130, - "old_cpi": 23.869007, - "old_license_level": 11, - "old_sub_level": 305, - "old_ttrating": 1350, - "oldi_rating": 2119, - "opt_laps_complete": 0, - "position": 23, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "ec232d", - "color2": "ffffff", - "color3": "2e358f" - }, - "watched": false, - "weight_penalty_kg": -1 + "subsession_id": 82799835, + "event_strength_of_field": 3742 }, { - "cust_id": 571733, - "display_name": "Eder Incera Tristan", - "aggregate_champ_points": 82, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 157, - "car_name": "Mercedes-AMG GT4", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "ES", - "division": 1, - "division_name": "Division 2", - "drop_race": true, - "finish_position": 24, - "finish_position_in_class": 24, - "flair_id": 198, - "flair_name": "Spain", - "flair_shortname": "ESP", - "friend": false, - "helmet": { - "pattern": 54, - "color1": "13050e", - "color2": "e7ff21", - "color3": "335e91", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 3, - "interval": -1, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 157, - "pattern": 10, - "color1": "d32811", - "color2": "f7f2f2", - "color3": "124bb9", - "number_font": 0, - "number_color1": "db1a1a", - "number_color2": "1682da", - "number_color3": "f7f1f1", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "8", - "wheel_color": "000000", - "rim_type": 3 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 39.171627, - "new_license_level": 17, - "new_sub_level": 182, - "new_ttrating": 1350, - "newi_rating": 3709, - "old_cpi": 43.90397, - "old_license_level": 17, - "old_sub_level": 199, - "old_ttrating": 1350, - "oldi_rating": 3733, - "opt_laps_complete": 0, - "position": 24, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 22, - "color1": "212021", - "color2": "cf3b21", - "color3": "4c4341" - }, - "watched": false, - "weight_penalty_kg": -1 + "subsession_id": 82799836, + "event_strength_of_field": 3564 }, { - "cust_id": 282380, - "display_name": "Andr\u00e9s Bertoni", - "aggregate_champ_points": 31, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 119, - "car_name": "Porsche 718 Cayman GT4 Clubsport MR", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "UY", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 25, - "finish_position_in_class": 25, - "flair_id": 224, - "flair_name": "Uruguay", - "flair_shortname": "URY", - "friend": false, - "helmet": { - "pattern": 4, - "color1": "FFFF1F", - "color2": "FFFFFF", - "color3": "214C9C", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 119, - "pattern": 0, - "color1": "a3a919", - "color2": "33d190", - "color3": "dc22ec", - "number_font": 0, - "number_color1": "000000", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 97, - "car_number": "12", - "wheel_color": "4a4c51", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 18.475933, - "new_license_level": 6, - "new_sub_level": 286, - "new_ttrating": 1350, - "newi_rating": 3323, - "old_cpi": 17.965443, - "old_license_level": 6, - "old_sub_level": 282, - "old_ttrating": 1350, - "oldi_rating": 3392, - "opt_laps_complete": 0, - "position": 25, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 25, - "color1": "FFFFFF", - "color2": "6D6E71", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1 + "subsession_id": 82799837, + "event_strength_of_field": 3399 }, { - "cust_id": 1004165, - "display_name": "Th\u00e9o Barchino", - "aggregate_champ_points": 88, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 157, - "car_name": "Mercedes-AMG GT4", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "FR", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 26, - "finish_position_in_class": 26, - "flair_id": 71, - "flair_name": "France", - "flair_shortname": "FRA", - "friend": false, - "helmet": { - "pattern": 60, - "color1": "1100d7", - "color2": "ffffff", - "color3": "ff0000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 2, - "interval": -1, - "laps_complete": 1, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 157, - "pattern": 14, - "color1": "1100d7", - "color2": "ffffff", - "color3": "ff0000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "17", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 38.19449, - "new_license_level": 11, - "new_sub_level": 378, - "new_ttrating": 1350, - "newi_rating": 2555, - "old_cpi": 38.746334, - "old_license_level": 11, - "old_sub_level": 380, - "old_ttrating": 1350, - "oldi_rating": 2543, - "opt_laps_complete": 0, - "position": 26, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 21, - "color1": "da000f", - "color2": "3521b0", - "color3": "eeeeee" - }, - "watched": false, - "weight_penalty_kg": -1 + "subsession_id": 82799838, + "event_strength_of_field": 3276 }, { - "cust_id": 389959, - "display_name": "William Leblond", - "aggregate_champ_points": 50, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 150, - "car_name": "Aston Martin Vantage GT4", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "CA", - "division": 5, - "division_name": "Division 6", - "drop_race": false, - "finish_position": 27, - "finish_position_in_class": 27, - "flair_id": 39, - "flair_name": "Canada", - "flair_shortname": "CAN", - "friend": false, - "helmet": { - "pattern": 42, - "color1": "053363", - "color2": "ffffff", - "color3": "c61c2b", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 3, - "interval": -1, - "laps_complete": 1, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 150, - "pattern": 24, - "color1": "0092ca", - "color2": "222831", - "color3": "eeeeee", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "012845", - "number_color3": "009fe3", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "20", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 33.43521, - "new_license_level": 18, - "new_sub_level": 201, - "new_ttrating": 1350, - "newi_rating": 2296, - "old_cpi": 34.73366, - "old_license_level": 18, - "old_sub_level": 207, - "old_ttrating": 1350, - "oldi_rating": 2316, - "opt_laps_complete": 0, - "position": 27, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 33, - "color1": "053363", - "color2": "ffffff", - "color3": "c61c2b" - }, - "watched": false, - "weight_penalty_kg": -1 + "subsession_id": 82799839, + "event_strength_of_field": 3129 }, { - "cust_id": 1180318, - "display_name": "Cedric Fuchs", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 157, - "car_name": "Mercedes-AMG GT4", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "DE", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 28, - "finish_position_in_class": 28, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 14, - "color1": "000000", - "color2": "0070ff", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 157, - "pattern": 3, - "color1": "ff0000", - "color2": "00ff00", - "color3": "0000ff", - "number_font": 0, - "number_color1": "000000", - "number_color2": "f50000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "23", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 20.959383, - "new_license_level": 10, - "new_sub_level": 242, - "new_ttrating": 1350, - "newi_rating": 2121, - "old_cpi": 20.959383, - "old_license_level": 10, - "old_sub_level": 242, - "old_ttrating": 1350, - "oldi_rating": 2187, - "opt_laps_complete": 0, - "position": 28, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "0dff00", - "color2": "000000", - "color3": "00ff0a" - }, - "watched": false, - "weight_penalty_kg": -1 + "subsession_id": 82799840, + "event_strength_of_field": 3010 }, { - "cust_id": 399652, - "display_name": "Victor Hansen", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 189, - "car_name": "BMW M4 G82 GT4 Evo", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "DK", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 29, - "finish_position_in_class": 29, - "flair_id": 56, - "flair_name": "Denmark", - "flair_shortname": "DNK", - "friend": false, - "helmet": { - "pattern": 28, - "color1": "a9790e", - "color2": "013e62", - "color3": "0093ff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 189, - "pattern": 2, - "color1": "ff0000", - "color2": "00ff00", - "color3": "0000ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "26", - "wheel_color": "a9790e", - "rim_type": 2 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 21.767754, - "new_license_level": 13, - "new_sub_level": 148, - "new_ttrating": 1350, - "newi_rating": 2105, - "old_cpi": 21.767754, - "old_license_level": 13, - "old_sub_level": 148, - "old_ttrating": 1350, - "oldi_rating": 2171, - "opt_laps_complete": 0, - "position": 29, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 22, - "color1": "013e62", - "color2": "0093ff", - "color3": "a9790e" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ] - }, - { - "simsession_number": 0, - "simsession_name": "RACE", - "simsession_type": 6, - "simsession_type_name": "Race", - "simsession_subtype": 0, - "weather_result": { - "avg_skies": 2, - "avg_cloud_cover_pct": 76.3006, - "min_cloud_cover_pct": 73.463615, - "max_cloud_cover_pct": 78.78811, - "temp_units": 1, - "avg_temp": 18.46056, - "min_temp": 18.458582, - "max_temp": 18.462454, - "avg_rel_humidity": 95.140175, - "wind_units": 1, - "avg_wind_speed": 10.545322, - "min_wind_speed": 9.973377, - "max_wind_speed": 11.128765, - "avg_wind_dir": 0, - "max_fog": 0, - "fog_time_pct": 0, - "precip_time_pct": 100, - "precip_mm": 0, - "precip_mm2hr_before_session": 0, - "simulated_start_time": "2026-04-01T18:55:00" - }, - "results": [ - { - "cust_id": 473030, - "display_name": "Lukas Schwenk", - "aggregate_champ_points": 184, - "ai": false, - "average_lap": 1319436, - "best_lap_num": 4, - "best_lap_time": 1317601, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 204, - "car_name": "Ford Mustang GT4", - "carcfg": -1, - "champ_points": 184, - "class_interval": 0, - "country_code": "DE", - "division": 0, - "division_name": "Division 1", - "drop_race": false, - "finish_position": 0, - "finish_position_in_class": 0, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 57, - "color1": "002bff", - "color2": "f7f7f7", - "color3": "33ff00", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 2, - "interval": 0, - "laps_complete": 10, - "laps_lead": 10, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 204, - "pattern": 24, - "color1": "002BFF", - "color2": "F7F7F7", - "color3": "33FF00", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "3", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 42.273064, - "new_license_level": 15, - "new_sub_level": 337, - "new_ttrating": 1350, - "newi_rating": 6260, - "old_cpi": 40.27555, - "old_license_level": 15, - "old_sub_level": 330, - "old_ttrating": 1350, - "oldi_rating": 6223, - "opt_laps_complete": 0, - "position": 0, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 0, - "starting_position_in_class": 0, - "suit": { - "pattern": 21, - "color1": "0e0044", - "color2": "0139ff", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 + "subsession_id": 82799841, + "event_strength_of_field": 2905 }, { - "cust_id": 432652, - "display_name": "Valentin Kluss", - "aggregate_champ_points": 177, - "ai": false, - "average_lap": 1323191, - "best_lap_num": 3, - "best_lap_time": 1318999, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 204, - "car_name": "Ford Mustang GT4", - "carcfg": -1, - "champ_points": 177, - "class_interval": 37560, - "country_code": "DE", - "division": 0, - "division_name": "Division 1", - "drop_race": false, - "finish_position": 1, - "finish_position_in_class": 1, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 65, - "color1": "000000", - "color2": "000000", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 2, - "interval": 37560, - "laps_complete": 10, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 204, - "pattern": 0, - "color1": "000000", - "color2": "000000", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "1", - "wheel_color": "b3b3b3", - "rim_type": 2 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 32.966415, - "new_license_level": 17, - "new_sub_level": 155, - "new_ttrating": 1350, - "newi_rating": 7102, - "old_cpi": 29.836252, - "old_license_level": 17, - "old_sub_level": 140, - "old_ttrating": 1350, - "oldi_rating": 7082, - "opt_laps_complete": 0, - "position": 1, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 1, - "starting_position_in_class": 1, - "suit": { - "pattern": 32, - "color1": "000000", - "color2": "000000", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1 + "subsession_id": 82799842, + "event_strength_of_field": 2822 }, { - "cust_id": 1009174, - "display_name": "Diego Fern\u00e1ndez5", - "aggregate_champ_points": 171, - "ai": false, - "average_lap": 1331827, - "best_lap_num": 3, - "best_lap_time": 1322543, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 189, - "car_name": "BMW M4 G82 GT4 Evo", - "carcfg": -1, - "champ_points": 171, - "class_interval": 123921, - "country_code": "ES", - "division": 0, - "division_name": "Division 1", - "drop_race": true, - "finish_position": 2, - "finish_position_in_class": 2, - "flair_id": 198, - "flair_name": "Spain", - "flair_shortname": "ESP", - "friend": false, - "helmet": { - "pattern": 14, - "color1": "0021ff", - "color2": "000000", - "color3": "0021ff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 4, - "interval": 123921, - "laps_complete": 10, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 189, - "pattern": 0, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 0, - "number_color1": "000000", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "2", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 79.03055, - "new_license_level": 20, - "new_sub_level": 416, - "new_ttrating": 1295, - "newi_rating": 7084, - "old_cpi": 82.93489, - "old_license_level": 20, - "old_sub_level": 423, - "old_ttrating": 1295, - "oldi_rating": 7070, - "opt_laps_complete": 0, - "position": 2, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 2, - "starting_position_in_class": 2, - "suit": { - "pattern": 31, - "color1": "ff8a00", - "color2": "ffffff", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 + "subsession_id": 82799843, + "event_strength_of_field": 2745 }, { - "cust_id": 447143, - "display_name": "Alex Mohr", - "aggregate_champ_points": 164, - "ai": false, - "average_lap": 1340108, - "best_lap_num": 8, - "best_lap_time": 1328880, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 119, - "car_name": "Porsche 718 Cayman GT4 Clubsport MR", - "carcfg": -1, - "champ_points": 164, - "class_interval": 206757, - "country_code": "DE", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 3, - "finish_position_in_class": 3, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 28, - "color1": "4b2f01", - "color2": "68a117", - "color3": "a600ff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 2, - "interval": 206757, - "laps_complete": 10, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 119, - "pattern": 1, - "color1": "FF0000", - "color2": "00FF00", - "color3": "0000FF", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "9", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 19.493876, - "new_license_level": 6, - "new_sub_level": 295, - "new_ttrating": 1350, - "newi_rating": 3792, - "old_cpi": 17.379528, - "old_license_level": 6, - "old_sub_level": 276, - "old_ttrating": 1350, - "oldi_rating": 3731, - "opt_laps_complete": 0, - "position": 3, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 4, - "starting_position_in_class": 4, - "suit": { - "pattern": 22, - "color1": "000000", - "color2": "ff3324", - "color3": "b82f37" - }, - "watched": false, - "weight_penalty_kg": -1 + "subsession_id": 82799844, + "event_strength_of_field": 2660 }, { - "cust_id": 1253123, - "display_name": "Finley Jones", - "aggregate_champ_points": 158, - "ai": false, - "average_lap": 1343404, - "best_lap_num": 3, - "best_lap_time": 1334109, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 119, - "car_name": "Porsche 718 Cayman GT4 Clubsport MR", - "carcfg": -1, - "champ_points": 158, - "class_interval": 239703, - "country_code": "GB", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 4, - "finish_position_in_class": 4, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 60, - "color1": "eb00ff", - "color2": "03ff05", - "color3": "0643f9", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 6, - "interval": 239703, - "laps_complete": 10, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 119, - "pattern": 0, - "color1": "eb00ff", - "color2": "03ff05", - "color3": "0643f9", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "6", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 37.344536, - "new_license_level": 18, - "new_sub_level": 218, - "new_ttrating": 1300, - "newi_rating": 4087, - "old_cpi": 38.45716, - "old_license_level": 18, - "old_sub_level": 223, - "old_ttrating": 1300, - "oldi_rating": 4039, - "opt_laps_complete": 0, - "position": 4, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 3, - "starting_position_in_class": 3, - "suit": { - "pattern": 1, - "color1": "4ba6db", - "color2": "61520", - "color3": "f08f00" - }, - "watched": false, - "weight_penalty_kg": -1 + "subsession_id": 82799845, + "event_strength_of_field": 2577 }, { - "cust_id": 166182, - "display_name": "Joe Aguilar", - "aggregate_champ_points": 152, - "ai": false, - "average_lap": 1345918, - "best_lap_num": 3, - "best_lap_time": 1330955, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 204, - "car_name": "Ford Mustang GT4", - "carcfg": -1, - "champ_points": 152, - "class_interval": 264941, - "country_code": "US", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 5, - "finish_position_in_class": 5, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 36, - "color1": "ffffff", - "color2": "1400ff", - "color3": "00a3ff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 2, - "interval": 264941, - "laps_complete": 10, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 204, - "pattern": 0, - "color1": "ffffff", - "color2": "ffffff", - "color3": "ffffff", - "number_font": 0, - "number_color1": "000000", - "number_color2": "ffffff", - "number_color3": "777777", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "11", - "wheel_color": "d8804f", - "rim_type": 2 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 53.745346, - "new_license_level": 19, - "new_sub_level": 317, - "new_ttrating": 1318, - "newi_rating": 3616, - "old_cpi": 51.80095, - "old_license_level": 19, - "old_sub_level": 311, - "old_ttrating": 1318, - "oldi_rating": 3564, - "opt_laps_complete": 0, - "position": 5, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 13, - "starting_position_in_class": 13, - "suit": { - "pattern": 32, - "color1": "eeeff0", - "color2": "202020", - "color3": "534741" - }, - "watched": false, - "weight_penalty_kg": -1 + "subsession_id": 82799846, + "event_strength_of_field": 2505 }, { - "cust_id": 956892, - "display_name": "Oliver Holt", - "aggregate_champ_points": 145, - "ai": false, - "average_lap": 1347793, - "best_lap_num": 7, - "best_lap_time": 1335275, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 119, - "car_name": "Porsche 718 Cayman GT4 Clubsport MR", - "carcfg": -1, - "champ_points": 145, - "class_interval": 283672, - "country_code": "GB", - "division": 1, - "division_name": "Division 2", - "drop_race": true, - "finish_position": 6, - "finish_position_in_class": 6, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 60, - "color1": "212121", - "color2": "ff2d2d", - "color3": "ffd033", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 6, - "interval": 283672, - "laps_complete": 10, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 119, - "pattern": 0, - "color1": "ffffff", - "color2": "3897ff", - "color3": "1f1f1f", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "7", - "wheel_color": "daa764", - "rim_type": 2 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 40.849358, - "new_license_level": 18, - "new_sub_level": 232, - "new_ttrating": 1350, - "newi_rating": 3969, - "old_cpi": 43.049812, - "old_license_level": 18, - "old_sub_level": 240, - "old_ttrating": 1350, - "oldi_rating": 3932, - "opt_laps_complete": 0, - "position": 6, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 11, - "starting_position_in_class": 11, - "suit": { - "pattern": 1, - "color1": "dedede", - "color2": "fbaf01", - "color3": "5a5a5a" - }, - "watched": false, - "weight_penalty_kg": -1 + "subsession_id": 82799847, + "event_strength_of_field": 2437 }, { - "cust_id": 567617, - "display_name": "David Lourd", - "aggregate_champ_points": 139, - "ai": false, - "average_lap": 1348038, - "best_lap_num": 4, - "best_lap_time": 1330780, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 157, - "car_name": "Mercedes-AMG GT4", - "carcfg": -1, - "champ_points": 139, - "class_interval": 286073, - "country_code": "US", - "division": 1, - "division_name": "Division 2", - "drop_race": true, - "finish_position": 7, - "finish_position_in_class": 7, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 22, - "color1": "111111", - "color2": "f904de", - "color3": "47ffd4", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 7, - "interval": 286073, - "laps_complete": 10, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 157, - "pattern": 24, - "color1": "ebe1e1", - "color2": "3b9cda", - "color3": "f2f977", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "10", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 22.579052, - "new_license_level": 10, - "new_sub_level": 254, - "new_ttrating": 1350, - "newi_rating": 3699, - "old_cpi": 22.207924, - "old_license_level": 10, - "old_sub_level": 252, - "old_ttrating": 1350, - "oldi_rating": 3663, - "opt_laps_complete": 0, - "position": 7, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 6, - "starting_position_in_class": 6, - "suit": { - "pattern": 15, - "color1": "7e7e7e", - "color2": "ff00f5", - "color3": "ececec" - }, - "watched": false, - "weight_penalty_kg": -1 + "subsession_id": 82799848, + "event_strength_of_field": 2371 }, { - "cust_id": 500287, - "display_name": "Adam Collin", - "aggregate_champ_points": 133, - "ai": false, - "average_lap": 1349251, - "best_lap_num": 4, - "best_lap_time": 1338446, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 135, - "car_name": "McLaren 570S GT4", - "carcfg": -1, - "champ_points": 133, - "class_interval": 298233, - "country_code": "GB", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 8, - "finish_position_in_class": 8, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 67, - "color1": "000000", - "color2": "00ffb0", - "color3": "b8ff00", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 298233, - "laps_complete": 10, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 135, - "pattern": 18, - "color1": "ffffff", - "color2": "d2ff00", - "color3": "5e00ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 106, - "sponsor2": 188, - "car_number": "19", - "wheel_color": "d2ff00", - "rim_type": 3 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 35.164497, - "new_license_level": 11, - "new_sub_level": 365, - "new_ttrating": 1350, - "newi_rating": 2507, - "old_cpi": 32.45349, - "old_license_level": 11, - "old_sub_level": 353, - "old_ttrating": 1350, - "oldi_rating": 2445, - "opt_laps_complete": 0, - "position": 8, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 9, - "starting_position_in_class": 9, - "suit": { - "pattern": 33, - "color1": "000000", - "color2": "000000", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1 + "subsession_id": 82799849, + "event_strength_of_field": 2312 }, { - "cust_id": 170870, - "display_name": "Jonas Sandstede", - "aggregate_champ_points": 126, - "ai": false, - "average_lap": 1349867, - "best_lap_num": 5, - "best_lap_time": 1335871, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 157, - "car_name": "Mercedes-AMG GT4", - "carcfg": -1, - "champ_points": 126, - "class_interval": 304450, - "country_code": "DE", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 9, - "finish_position_in_class": 9, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 45, - "color1": "000000", - "color2": "43462f", - "color3": "b4ba53", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 5, - "interval": 304450, - "laps_complete": 10, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 157, - "pattern": 0, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "16", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 30.390991, - "new_license_level": 17, - "new_sub_level": 142, - "new_ttrating": 1350, - "newi_rating": 2662, - "old_cpi": 29.790945, - "old_license_level": 17, - "old_sub_level": 139, - "old_ttrating": 1350, - "oldi_rating": 2612, - "opt_laps_complete": 0, - "position": 9, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 14, - "starting_position_in_class": 14, - "suit": { - "pattern": 8, - "color1": "000000", - "color2": "ebed21", - "color3": "21291f" - }, - "watched": false, - "weight_penalty_kg": -1 + "subsession_id": 82799850, + "event_strength_of_field": 2259 }, { - "cust_id": 412200, - "display_name": "Connor Clubine", - "aggregate_champ_points": 120, - "ai": false, - "average_lap": 1352057, - "best_lap_num": 9, - "best_lap_time": 1338455, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 157, - "car_name": "Mercedes-AMG GT4", - "carcfg": -1, - "champ_points": 120, - "class_interval": 326365, - "country_code": "CA", - "division": 0, - "division_name": "Division 1", - "drop_race": false, - "finish_position": 10, - "finish_position_in_class": 10, - "flair_id": 39, - "flair_name": "Canada", - "flair_shortname": "CAN", - "friend": false, - "helmet": { - "pattern": 10, - "color1": "389aff", - "color2": "ff0000", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 2, - "interval": 326365, - "laps_complete": 10, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 157, - "pattern": 23, - "color1": "00237d", - "color2": "f2f3fc", - "color3": "d6050e", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "d60500", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "5", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 52.611485, - "new_license_level": 18, - "new_sub_level": 270, - "new_ttrating": 1350, - "newi_rating": 4348, - "old_cpi": 50.59205, - "old_license_level": 18, - "old_sub_level": 264, - "old_ttrating": 1350, - "oldi_rating": 4347, - "opt_laps_complete": 0, - "position": 10, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 16, - "starting_position_in_class": 16, - "suit": { - "pattern": 21, - "color1": "001f6e", - "color2": "ffffff", - "color3": "d60500" - }, - "watched": false, - "weight_penalty_kg": -1 + "subsession_id": 82799851, + "event_strength_of_field": 2207 }, { - "cust_id": 1386334, - "display_name": "Vili Tero", - "aggregate_champ_points": 114, - "ai": false, - "average_lap": 1356555, - "best_lap_num": 9, - "best_lap_time": 1340149, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 157, - "car_name": "Mercedes-AMG GT4", - "carcfg": -1, - "champ_points": 114, - "class_interval": 371336, - "country_code": "FI", - "division": 4, - "division_name": "Division 5", - "drop_race": false, - "finish_position": 11, - "finish_position_in_class": 11, - "flair_id": 70, - "flair_name": "Finland", - "flair_shortname": "FIN", - "friend": false, - "helmet": { - "pattern": 20, - "color1": "00fff0", - "color2": "00e0ff", - "color3": "00e0ff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 1, - "interval": 371336, - "laps_complete": 10, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 157, - "pattern": 15, - "color1": "000000", - "color2": "f1e700", - "color3": "000000", - "number_font": 0, - "number_color1": "f7ee0a", - "number_color2": "ffffff", - "number_color3": "ff0000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "30", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 26.440548, - "new_license_level": 7, - "new_sub_level": 379, - "new_ttrating": 1350, - "newi_rating": 2141, - "old_cpi": 24.163597, - "old_license_level": 7, - "old_sub_level": 365, - "old_ttrating": 1350, - "oldi_rating": 2089, - "opt_laps_complete": 0, - "position": 11, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 15, - "starting_position_in_class": 15, - "suit": { - "pattern": 15, - "color1": "00fff7", - "color2": "00fff7", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1 + "subsession_id": 82799852, + "event_strength_of_field": 2154 }, { - "cust_id": 745711, - "display_name": "Raul Lopez Gimenez", - "aggregate_champ_points": 107, - "ai": false, - "average_lap": 1357456, - "best_lap_num": 4, - "best_lap_time": 1340768, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 189, - "car_name": "BMW M4 G82 GT4 Evo", - "carcfg": -1, - "champ_points": 107, - "class_interval": 380414, - "country_code": "ES", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 12, - "finish_position_in_class": 12, - "flair_id": 198, - "flair_name": "Spain", - "flair_shortname": "ESP", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "0ada00", - "color2": "ffffff", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 4, - "interval": 380414, - "laps_complete": 10, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 189, - "pattern": 8, - "color1": "0ADA00", - "color2": "FFFFFF", - "color3": "111111", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "22", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 43.376335, - "new_license_level": 15, - "new_sub_level": 341, - "new_ttrating": 1350, - "newi_rating": 2286, - "old_cpi": 44.127274, - "old_license_level": 15, - "old_sub_level": 343, - "old_ttrating": 1350, - "oldi_rating": 2245, - "opt_laps_complete": 0, - "position": 12, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 22, - "starting_position_in_class": 22, - "suit": { - "pattern": 1, - "color1": "0ada00", - "color2": "ffffff", - "color3": "111111" - }, - "watched": false, - "weight_penalty_kg": -1 + "subsession_id": 82799853, + "event_strength_of_field": 2096 }, { - "cust_id": 890016, - "display_name": "Hank Belane", - "aggregate_champ_points": 101, - "ai": false, - "average_lap": 1358012, - "best_lap_num": 9, - "best_lap_time": 1346289, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 157, - "car_name": "Mercedes-AMG GT4", - "carcfg": -1, - "champ_points": 101, - "class_interval": 385858, - "country_code": "DE", - "division": 4, - "division_name": "Division 5", - "drop_race": false, - "finish_position": 13, - "finish_position_in_class": 13, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "111111", - "color2": "020059", - "color3": "050062", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 14, - "interval": 385858, - "laps_complete": 10, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 157, - "pattern": 0, - "color1": "ff0000", - "color2": "135324", - "color3": "5e5e5e", - "number_font": 56, - "number_color1": "ff0000", - "number_color2": "000000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "25", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 31.316628, - "new_license_level": 14, - "new_sub_level": 247, - "new_ttrating": 1350, - "newi_rating": 2209, - "old_cpi": 36.14177, - "old_license_level": 15, - "old_sub_level": 313, - "old_ttrating": 1350, - "oldi_rating": 2173, - "opt_laps_complete": 0, - "position": 13, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 10, - "starting_position_in_class": 10, - "suit": { - "pattern": 1, - "color1": "111111", - "color2": "135324", - "color3": "5e5e5e" - }, - "watched": false, - "weight_penalty_kg": -1 + "subsession_id": 82799854, + "event_strength_of_field": 2049 }, { - "cust_id": 733441, - "display_name": "Christian Menezes", - "aggregate_champ_points": 95, - "ai": false, - "average_lap": 1359115, - "best_lap_num": 3, - "best_lap_time": 1340002, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 119, - "car_name": "Porsche 718 Cayman GT4 Clubsport MR", - "carcfg": -1, - "champ_points": 95, - "class_interval": 396858, - "country_code": "CA", - "division": 0, - "division_name": "Division 1", - "drop_race": true, - "finish_position": 14, - "finish_position_in_class": 14, - "flair_id": 39, - "flair_name": "Canada", - "flair_shortname": "CAN", - "friend": false, - "helmet": { - "pattern": 44, - "color1": "b82f37", - "color2": "284a94", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 12, - "interval": 396858, - "laps_complete": 10, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 119, - "pattern": 23, - "color1": "000dff", - "color2": "9b95b5", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "4", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 30.262087, - "new_license_level": 17, - "new_sub_level": 142, - "new_ttrating": 1350, - "newi_rating": 6158, - "old_cpi": 34.74223, - "old_license_level": 18, - "old_sub_level": 207, - "old_ttrating": 1350, - "oldi_rating": 6213, - "opt_laps_complete": 0, - "position": 14, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 7, - "starting_position_in_class": 7, - "suit": { - "pattern": 1, - "color1": "b82f37", - "color2": "284a94", - "color3": "111111" - }, - "watched": false, - "weight_penalty_kg": -1 + "subsession_id": 82799855, + "event_strength_of_field": 2004 }, { - "cust_id": 1004165, - "display_name": "Th\u00e9o Barchino", - "aggregate_champ_points": 88, - "ai": false, - "average_lap": 1359651, - "best_lap_num": 4, - "best_lap_time": 1337682, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 157, - "car_name": "Mercedes-AMG GT4", - "carcfg": -1, - "champ_points": 88, - "class_interval": 402404, - "country_code": "FR", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 15, - "finish_position_in_class": 15, - "flair_id": 71, - "flair_name": "France", - "flair_shortname": "FRA", - "friend": false, - "helmet": { - "pattern": 60, - "color1": "1100d7", - "color2": "ffffff", - "color3": "ff0000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 5, - "interval": 402404, - "laps_complete": 10, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 157, - "pattern": 14, - "color1": "1100d7", - "color2": "ffffff", - "color3": "ff0000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "17", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 38.19449, - "new_license_level": 11, - "new_sub_level": 378, - "new_ttrating": 1350, - "newi_rating": 2555, - "old_cpi": 38.746334, - "old_license_level": 11, - "old_sub_level": 380, - "old_ttrating": 1350, - "oldi_rating": 2543, - "opt_laps_complete": 0, - "position": 15, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 26, - "starting_position_in_class": 26, - "suit": { - "pattern": 21, - "color1": "da000f", - "color2": "3521b0", - "color3": "eeeeee" - }, - "watched": false, - "weight_penalty_kg": -1 + "subsession_id": 82799856, + "event_strength_of_field": 1953 }, { - "cust_id": 571733, - "display_name": "Eder Incera Tristan", - "aggregate_champ_points": 82, - "ai": false, - "average_lap": 1360102, - "best_lap_num": 9, - "best_lap_time": 1336311, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 157, - "car_name": "Mercedes-AMG GT4", - "carcfg": -1, - "champ_points": 82, - "class_interval": 406900, - "country_code": "ES", - "division": 1, - "division_name": "Division 2", - "drop_race": true, - "finish_position": 16, - "finish_position_in_class": 16, - "flair_id": 198, - "flair_name": "Spain", - "flair_shortname": "ESP", - "friend": false, - "helmet": { - "pattern": 54, - "color1": "13050e", - "color2": "e7ff21", - "color3": "335e91", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 6, - "interval": 406900, - "laps_complete": 10, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 157, - "pattern": 10, - "color1": "d32811", - "color2": "f7f2f2", - "color3": "124bb9", - "number_font": 0, - "number_color1": "db1a1a", - "number_color2": "1682da", - "number_color3": "f7f1f1", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "8", - "wheel_color": "000000", - "rim_type": 3 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 39.171627, - "new_license_level": 17, - "new_sub_level": 182, - "new_ttrating": 1350, - "newi_rating": 3709, - "old_cpi": 43.90397, - "old_license_level": 17, - "old_sub_level": 199, - "old_ttrating": 1350, - "oldi_rating": 3733, - "opt_laps_complete": 0, - "position": 16, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 24, - "starting_position_in_class": 24, - "suit": { - "pattern": 22, - "color1": "212021", - "color2": "cf3b21", - "color3": "4c4341" - }, - "watched": false, - "weight_penalty_kg": -1 + "subsession_id": 82799857, + "event_strength_of_field": 1903 }, { - "cust_id": 1379179, - "display_name": "Christopher Bruchmann", - "aggregate_champ_points": 76, - "ai": false, - "average_lap": 1361760, - "best_lap_num": 9, - "best_lap_time": 1339795, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 150, - "car_name": "Aston Martin Vantage GT4", - "carcfg": -1, - "champ_points": 76, - "class_interval": 423470, - "country_code": "DE", - "division": 4, - "division_name": "Division 5", - "drop_race": true, - "finish_position": 17, - "finish_position_in_class": 17, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 68, - "color1": "000000", - "color2": "ffffff", - "color3": "0011ff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 1, - "interval": 423470, - "laps_complete": 10, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 150, - "pattern": 10, - "color1": "0500ff", - "color2": "a3d3ff", - "color3": "242424", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "29", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 25.648657, - "new_license_level": 11, - "new_sub_level": 316, - "new_ttrating": 1350, - "newi_rating": 2130, - "old_cpi": 23.869007, - "old_license_level": 11, - "old_sub_level": 305, - "old_ttrating": 1350, - "oldi_rating": 2119, - "opt_laps_complete": 0, - "position": 17, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 23, - "starting_position_in_class": 23, - "suit": { - "pattern": 1, - "color1": "ec232d", - "color2": "ffffff", - "color3": "2e358f" - }, - "watched": false, - "weight_penalty_kg": -1 + "subsession_id": 82799858, + "event_strength_of_field": 1856 }, { - "cust_id": 404356, - "display_name": "Alexis Montesdeoca", - "aggregate_champ_points": 69, - "ai": false, - "average_lap": 1365096, - "best_lap_num": 4, - "best_lap_time": 1342414, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 189, - "car_name": "BMW M4 G82 GT4 Evo", - "carcfg": -1, - "champ_points": 69, - "class_interval": 456801, - "country_code": "EC", - "division": 1, - "division_name": "Division 2", - "drop_race": true, - "finish_position": 18, - "finish_position_in_class": 18, - "flair_id": 60, - "flair_name": "Ecuador", - "flair_shortname": "ECU", - "friend": false, - "helmet": { - "pattern": 22, - "color1": "2400ff", - "color2": "f2ff00", - "color3": "ff0036", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 456801, - "laps_complete": 10, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 189, - "pattern": 2, - "color1": "FF0000", - "color2": "00FF00", - "color3": "0000FF", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "14", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 21.141125, - "new_license_level": 7, - "new_sub_level": 344, - "new_ttrating": 1350, - "newi_rating": 2770, - "old_cpi": 18.475237, - "old_license_level": 6, - "old_sub_level": 286, - "old_ttrating": 1350, - "oldi_rating": 2784, - "opt_laps_complete": 0, - "position": 18, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 21, - "starting_position_in_class": 21, - "suit": { - "pattern": 27, - "color1": "e5ff13", - "color2": "0a0dff", - "color3": "ec1305" - }, - "watched": false, - "weight_penalty_kg": -1 + "subsession_id": 82799859, + "event_strength_of_field": 1809 }, { - "cust_id": 1326283, - "display_name": "Willian Schilling", - "aggregate_champ_points": 63, - "ai": false, - "average_lap": 1370139, - "best_lap_num": 7, - "best_lap_time": 1346586, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 189, - "car_name": "BMW M4 G82 GT4 Evo", - "carcfg": -1, - "champ_points": 63, - "class_interval": 507216, - "country_code": "BR", - "division": 3, - "division_name": "Division 4", - "drop_race": true, - "finish_position": 19, - "finish_position_in_class": 19, - "flair_id": 31, - "flair_name": "Brazil", - "flair_shortname": "BRA", - "friend": false, - "helmet": { - "pattern": 59, - "color1": "9720c8", - "color2": "ffffff", - "color3": "171717", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 8, - "interval": 507216, - "laps_complete": 10, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 189, - "pattern": 14, - "color1": "9720C8", - "color2": "FFFFFF", - "color3": "171717", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "24", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 36.86136, - "new_license_level": 11, - "new_sub_level": 372, - "new_ttrating": 1311, - "newi_rating": 2177, - "old_cpi": 39.81942, - "old_license_level": 11, - "old_sub_level": 384, - "old_ttrating": 1311, - "oldi_rating": 2180, - "opt_laps_complete": 0, - "position": 19, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 19, - "starting_position_in_class": 19, - "suit": { - "pattern": 1, - "color1": "b226fd", - "color2": "9a22ff", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1 + "subsession_id": 82799860, + "event_strength_of_field": 1769 }, { - "cust_id": 1197334, - "display_name": "Francisco Cores", - "aggregate_champ_points": 57, - "ai": false, - "average_lap": 1381873, - "best_lap_num": 6, - "best_lap_time": 1354486, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 189, - "car_name": "BMW M4 G82 GT4 Evo", - "carcfg": -1, - "champ_points": 57, - "class_interval": 624534, - "country_code": "AR", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 20, - "finish_position_in_class": 20, - "flair_id": 13, - "flair_name": "Argentina", - "flair_shortname": "ARG", - "friend": false, - "helmet": { - "pattern": 6, - "color1": "1a1a1a", - "color2": "268d19", - "color3": "1a1a1a", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 9, - "interval": 624534, - "laps_complete": 10, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 189, - "pattern": 12, - "color1": "00c1ff", - "color2": "ffffff", - "color3": "00d9ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "1c00ff", - "number_color3": "ff0000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "18", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 27.755468, - "new_license_level": 17, - "new_sub_level": 128, - "new_ttrating": 1350, - "newi_rating": 2476, - "old_cpi": 29.861366, - "old_license_level": 17, - "old_sub_level": 140, - "old_ttrating": 1350, - "oldi_rating": 2495, - "opt_laps_complete": 0, - "position": 20, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 17, - "starting_position_in_class": 17, - "suit": { - "pattern": 2, - "color1": "000000", - "color2": "000000", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1 + "subsession_id": 82799861, + "event_strength_of_field": 1724 }, { - "cust_id": 389959, - "display_name": "William Leblond", - "aggregate_champ_points": 50, - "ai": false, - "average_lap": 1391406, - "best_lap_num": 7, - "best_lap_time": 1357373, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 150, - "car_name": "Aston Martin Vantage GT4", - "carcfg": -1, - "champ_points": 50, - "class_interval": 719963, - "country_code": "CA", - "division": 5, - "division_name": "Division 6", - "drop_race": false, - "finish_position": 21, - "finish_position_in_class": 21, - "flair_id": 39, - "flair_name": "Canada", - "flair_shortname": "CAN", - "friend": false, - "helmet": { - "pattern": 42, - "color1": "053363", - "color2": "ffffff", - "color3": "c61c2b", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 6, - "interval": 719963, - "laps_complete": 10, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 150, - "pattern": 24, - "color1": "0092ca", - "color2": "222831", - "color3": "eeeeee", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "012845", - "number_color3": "009fe3", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "20", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 33.43521, - "new_license_level": 18, - "new_sub_level": 201, - "new_ttrating": 1350, - "newi_rating": 2296, - "old_cpi": 34.73366, - "old_license_level": 18, - "old_sub_level": 207, - "old_ttrating": 1350, - "oldi_rating": 2316, - "opt_laps_complete": 0, - "position": 21, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 27, - "starting_position_in_class": 27, - "suit": { - "pattern": 33, - "color1": "053363", - "color2": "ffffff", - "color3": "c61c2b" - }, - "watched": false, - "weight_penalty_kg": -1 + "subsession_id": 82799862, + "event_strength_of_field": 1676 }, { - "cust_id": 1258349, - "display_name": "Sebastian Bignasca", - "aggregate_champ_points": 44, - "ai": false, - "average_lap": 1443826, - "best_lap_num": 9, - "best_lap_time": 1355180, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 119, - "car_name": "Porsche 718 Cayman GT4 Clubsport MR", - "carcfg": -1, - "champ_points": 44, - "class_interval": 1244097, - "country_code": "CH", - "division": 2, - "division_name": "Division 3", - "drop_race": true, - "finish_position": 22, - "finish_position_in_class": 22, - "flair_id": 204, - "flair_name": "Switzerland", - "flair_shortname": "CHE", - "friend": false, - "helmet": { - "pattern": 66, - "color1": "bd0904", - "color2": "184252", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 4, - "interval": 1244097, - "laps_complete": 10, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 119, - "pattern": 10, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "e12424", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "21", - "wheel_color": "000000", - "rim_type": 1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 35.977398, - "new_license_level": 14, - "new_sub_level": 268, - "new_ttrating": 1284, - "newi_rating": 2226, - "old_cpi": 36.12372, - "old_license_level": 14, - "old_sub_level": 269, - "old_ttrating": 1284, - "oldi_rating": 2251, - "opt_laps_complete": 0, - "position": 22, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 20, - "starting_position_in_class": 20, - "suit": { - "pattern": 1, - "color1": "161717", - "color2": "da3727", - "color3": "111111" - }, - "watched": false, - "weight_penalty_kg": -1 + "subsession_id": 82799863, + "event_strength_of_field": 1622 }, { - "cust_id": 1308876, - "display_name": "Kirill Dronkin", - "aggregate_champ_points": 38, - "ai": false, - "average_lap": 1355760, - "best_lap_num": 3, - "best_lap_time": 1338025, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 189, - "car_name": "BMW M4 G82 GT4 Evo", - "carcfg": -1, - "champ_points": 38, - "class_interval": -1, - "country_code": "DE", - "division": 2, - "division_name": "Division 3", - "drop_race": true, - "finish_position": 23, - "finish_position_in_class": 23, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 22, - "color1": "000000", - "color2": "45768d", - "color3": "45768d", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 11, - "interval": -1, - "laps_complete": 9, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 189, - "pattern": 0, - "color1": "45768d", - "color2": "45768d", - "color3": "45768d", - "number_font": 0, - "number_color1": "45768d", - "number_color2": "45768d", - "number_color3": "45768d", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "15", - "wheel_color": "000000", - "rim_type": 2 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 32.477016, - "new_license_level": 14, - "new_sub_level": 253, - "new_ttrating": 1350, - "newi_rating": 2611, - "old_cpi": 37.53504, - "old_license_level": 14, - "old_sub_level": 275, - "old_ttrating": 1350, - "oldi_rating": 2654, - "opt_laps_complete": 0, - "position": 23, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 8, - "starting_position_in_class": 8, - "suit": { - "pattern": 1, - "color1": "231f20", - "color2": "e41e26", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 + "subsession_id": 82799864, + "event_strength_of_field": 1574 }, { - "cust_id": 282380, - "display_name": "Andr\u00e9s Bertoni", - "aggregate_champ_points": 31, - "ai": false, - "average_lap": 1731692, - "best_lap_num": 7, - "best_lap_time": 1372017, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 119, - "car_name": "Porsche 718 Cayman GT4 Clubsport MR", - "carcfg": -1, - "champ_points": 31, - "class_interval": -1, - "country_code": "UY", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 24, - "finish_position_in_class": 24, - "flair_id": 224, - "flair_name": "Uruguay", - "flair_shortname": "URY", - "friend": false, - "helmet": { - "pattern": 4, - "color1": "FFFF1F", - "color2": "FFFFFF", - "color3": "214C9C", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 6, - "interval": -1, - "laps_complete": 8, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 119, - "pattern": 0, - "color1": "a3a919", - "color2": "33d190", - "color3": "dc22ec", - "number_font": 0, - "number_color1": "000000", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 97, - "car_number": "12", - "wheel_color": "4a4c51", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 18.475933, - "new_license_level": 6, - "new_sub_level": 286, - "new_ttrating": 1350, - "newi_rating": 3323, - "old_cpi": 17.965443, - "old_license_level": 6, - "old_sub_level": 282, - "old_ttrating": 1350, - "oldi_rating": 3392, - "opt_laps_complete": 0, - "position": 24, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 25, - "starting_position_in_class": 25, - "suit": { - "pattern": 25, - "color1": "FFFFFF", - "color2": "6D6E71", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1 + "subsession_id": 82799865, + "event_strength_of_field": 1510 }, { - "cust_id": 354144, - "display_name": "Xavier Abellan", - "aggregate_champ_points": 25, - "ai": false, - "average_lap": 1385040, - "best_lap_num": 7, - "best_lap_time": 1358045, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 157, - "car_name": "Mercedes-AMG GT4", - "carcfg": -1, - "champ_points": 25, - "class_interval": -1, - "country_code": "ES", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 25, - "finish_position_in_class": 25, - "flair_id": 198, - "flair_name": "Spain", - "flair_shortname": "ESP", - "friend": false, - "helmet": { - "pattern": 42, - "color1": "e4380c", - "color2": "070808", - "color3": "4100da", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 8, - "interval": -1, - "laps_complete": 7, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 157, - "pattern": 2, - "color1": "e4380c", - "color2": "070808", - "color3": "4100da", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "28", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 30.233068, - "new_license_level": 14, - "new_sub_level": 242, - "new_ttrating": 1350, - "newi_rating": 2095, - "old_cpi": 32.681377, - "old_license_level": 14, - "old_sub_level": 254, - "old_ttrating": 1350, - "oldi_rating": 2137, - "opt_laps_complete": 0, - "position": 25, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 18, - "starting_position_in_class": 18, - "suit": { - "pattern": 27, - "color1": "2610BC", - "color2": "030202", - "color3": "B91B13" - }, - "watched": false, - "weight_penalty_kg": -1 + "subsession_id": 82799866, + "event_strength_of_field": 1435 }, { - "cust_id": 1041380, - "display_name": "Markus Buttliger", - "aggregate_champ_points": 19, - "ai": false, - "average_lap": 1450530, - "best_lap_num": 4, - "best_lap_time": 1344480, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 157, - "car_name": "Mercedes-AMG GT4", - "carcfg": -1, - "champ_points": 19, - "class_interval": -1, - "country_code": "CH", - "division": 2, - "division_name": "Division 3", - "drop_race": true, - "finish_position": 26, - "finish_position_in_class": 26, - "flair_id": 204, - "flair_name": "Switzerland", - "flair_shortname": "CHE", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "ffffff", - "color2": "0ada00", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 5, - "interval": -1, - "laps_complete": 7, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 157, - "pattern": 12, - "color1": "0f0f14", - "color2": "860d0d", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "27", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 31.577557, - "new_license_level": 14, - "new_sub_level": 248, - "new_ttrating": 1350, - "newi_rating": 2114, - "old_cpi": 32.20318, - "old_license_level": 14, - "old_sub_level": 251, - "old_ttrating": 1350, - "oldi_rating": 2163, - "opt_laps_complete": 0, - "position": 26, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 12, - "starting_position_in_class": 12, - "suit": { - "pattern": 1, - "color1": "ffffff", - "color2": "0ada00", - "color3": "111111" - }, - "watched": false, - "weight_penalty_kg": -1 + "subsession_id": 82799867, + "event_strength_of_field": 1357 }, { - "cust_id": 68540, - "display_name": "Erik Tveit", - "aggregate_champ_points": 12, - "ai": false, - "average_lap": 1365189, - "best_lap_num": 4, - "best_lap_time": 1335022, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 157, - "car_name": "Mercedes-AMG GT4", - "carcfg": -1, - "champ_points": 12, - "class_interval": -1, - "country_code": "NO", - "division": 1, - "division_name": "Division 2", - "drop_race": true, - "finish_position": 27, - "finish_position_in_class": 27, - "flair_id": 156, - "flair_name": "Norway", - "flair_shortname": "NOR", - "friend": false, - "helmet": { - "pattern": 49, - "color1": "222222", - "color2": "031adc", - "color3": "0075ff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 6, - "interval": -1, - "laps_complete": 6, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 157, - "pattern": 16, - "color1": "222222", - "color2": "031ADC", - "color3": "0075FF", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "13", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 38.142296, - "new_license_level": 15, - "new_sub_level": 321, - "new_ttrating": 1350, - "newi_rating": 2759, - "old_cpi": 39.981483, - "old_license_level": 15, - "old_sub_level": 328, - "old_ttrating": 1350, - "oldi_rating": 2834, - "opt_laps_complete": 0, - "position": 27, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 5, - "starting_position_in_class": 5, - "suit": { - "pattern": 17, - "color1": "2a3ef7", - "color2": "222222", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 + "subsession_id": 82799868, + "event_strength_of_field": 1247 }, { - "cust_id": 1180318, - "display_name": "Cedric Fuchs", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 157, - "car_name": "Mercedes-AMG GT4", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "DE", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 28, - "finish_position_in_class": 28, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 14, - "color1": "000000", - "color2": "0070ff", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 157, - "pattern": 3, - "color1": "ff0000", - "color2": "00ff00", - "color3": "0000ff", - "number_font": 0, - "number_color1": "000000", - "number_color2": "f50000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "23", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 20.959383, - "new_license_level": 10, - "new_sub_level": 242, - "new_ttrating": 1350, - "newi_rating": 2121, - "old_cpi": 20.959383, - "old_license_level": 10, - "old_sub_level": 242, - "old_ttrating": 1350, - "oldi_rating": 2187, - "opt_laps_complete": 0, - "position": 28, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 28, - "starting_position_in_class": 28, - "suit": { - "pattern": 1, - "color1": "0dff00", - "color2": "000000", - "color3": "00ff0a" - }, - "watched": false, - "weight_penalty_kg": -1 + "subsession_id": 82799869, + "event_strength_of_field": 1208 }, { - "cust_id": 399652, - "display_name": "Victor Hansen", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2268, - "car_class_name": "GT4 Class", - "car_class_short_name": "GT4 Class", - "car_id": 189, - "car_name": "BMW M4 G82 GT4 Evo", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "DK", - "division": 2, - "division_name": "Division 3", - "drop_race": true, - "finish_position": 29, - "finish_position_in_class": 29, - "flair_id": 56, - "flair_name": "Denmark", - "flair_shortname": "DNK", - "friend": false, - "helmet": { - "pattern": 28, - "color1": "a9790e", - "color2": "013e62", - "color3": "0093ff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 189, - "pattern": 2, - "color1": "ff0000", - "color2": "00ff00", - "color3": "0000ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "26", - "wheel_color": "a9790e", - "rim_type": 2 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 21.767754, - "new_license_level": 13, - "new_sub_level": 148, - "new_ttrating": 1350, - "newi_rating": 2105, - "old_cpi": 21.767754, - "old_license_level": 13, - "old_sub_level": 148, - "old_ttrating": 1350, - "oldi_rating": 2171, - "opt_laps_complete": 0, - "position": 29, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 29, - "starting_position_in_class": 29, - "suit": { - "pattern": 22, - "color1": "013e62", - "color2": "0093ff", - "color3": "a9790e" - }, - "watched": false, - "weight_penalty_kg": -1 + "subsession_id": 82799870, + "event_strength_of_field": 960 } - ] - } - ], - "session_splits": [ - { - "subsession_id": 82263872, - "event_strength_of_field": 2965 - }, - { - "subsession_id": 82263873, - "event_strength_of_field": 1811 - }, - { - "subsession_id": 82263874, - "event_strength_of_field": 1604 + ], + "special_event_type": -1, + "start_time": "2026-01-17T12:00:00Z", + "track": { + "category": "Road", + "category_id": 2, + "config_name": "Road Course", + "track_id": 192, + "track_name": "Daytona International Speedway" }, - { - "subsession_id": 82263875, - "event_strength_of_field": 1485 + "track_state": { + "leave_marbles": true, + "practice_rubber": -1, + "qualify_rubber": -1, + "race_rubber": -1, + "warmup_rubber": -1 }, - { - "subsession_id": 82263876, - "event_strength_of_field": 1370 - }, - { - "subsession_id": 82263877, - "event_strength_of_field": 1268 - }, - { - "subsession_id": 82263878, - "event_strength_of_field": 1169 - }, - { - "subsession_id": 82263879, - "event_strength_of_field": 1055 - }, - { - "subsession_id": 82263880, - "event_strength_of_field": 858 - }, - { - "subsession_id": 82263881, - "event_strength_of_field": 531 + "weather": { + "allow_fog": false, + "fog": 0, + "precip_mm2hr_before_final_session": 0, + "precip_mm_final_session": 0, + "precip_option": 8, + "precip_time_pct": 0, + "rel_humidity": 0, + "simulated_start_time": "2026-01-24T13:00:00", + "skies": 3, + "temp_units": 1, + "temp_value": 21, + "time_of_day": 0, + "track_water": 0, + "type": 3, + "version": 1, + "weather_var_initial": 0, + "weather_var_ongoing": 0, + "wind_dir": 0, + "wind_units": 1, + "wind_value": 3 } - ], - "special_event_type": -1, - "start_time": "2025-12-28T20:30:00Z", - "track": { - "category": "Road", - "category_id": 2, - "config_name": "BES/WEC", - "track_id": 255, - "track_name": "N\u00fcrburgring Grand-Prix-Strecke" - }, - "track_state": { - "leave_marbles": false, - "practice_rubber": -1, - "qualify_rubber": -1, - "race_rubber": -1, - "warmup_rubber": -1 - }, - "weather": { - "allow_fog": false, - "fog": 0, - "precip_mm2hr_before_final_session": 0, - "precip_mm_final_session": 0, - "precip_option": 8, - "precip_time_pct": 100, - "rel_humidity": 0, - "simulated_start_time": "2026-04-01T18:20:00", - "skies": 2, - "temp_units": 1, - "temp_value": 18, - "time_of_day": 2, - "track_water": 0, - "type": 3, - "version": 1, - "weather_var_initial": 0, - "weather_var_ongoing": 0, - "wind_dir": 1, - "wind_units": 1, - "wind_value": 3 - } } \ No newline at end of file From 3a899ec930e8ceffbf71f5582e611d3690603e14 Mon Sep 17 00:00:00 2001 From: Joachim Doh Date: Fri, 23 Jan 2026 10:07:48 +0100 Subject: [PATCH 08/10] added results_with_team test. further testing MemberActivity = None --- src/iracingdataapi/models/responses.py | 2 +- tests/mock_return_data/result.json | 59366 +++-------------- tests/mock_return_data/result_with_team.json | 51079 ++++++++++++++ tests/test_client.py | 20 + 4 files changed, 59502 insertions(+), 50965 deletions(-) create mode 100644 tests/mock_return_data/result_with_team.json diff --git a/src/iracingdataapi/models/responses.py b/src/iracingdataapi/models/responses.py index 91d80ce..d1a1eed 100644 --- a/src/iracingdataapi/models/responses.py +++ b/src/iracingdataapi/models/responses.py @@ -213,7 +213,7 @@ class MemberGetResponse(BaseModel): class MemberProfileResponse(BaseModel): - activity: MemberActivity | None = None + activity: MemberActivity cust_id: int disabled: bool follow_counts: MemberFollowCounts diff --git a/tests/mock_return_data/result.json b/tests/mock_return_data/result.json index e9af085..c8e829d 100644 --- a/tests/mock_return_data/result.json +++ b/tests/mock_return_data/result.json @@ -1,51079 +1,8517 @@ { - "subsession_id": 82799850, - "allowed_licenses": [ + "subsession_id": 82263872, + "allowed_licenses": [ + { + "group_name": "Rookie", + "license_group": 1, + "max_license_level": 4, + "min_license_level": 4, + "parent_id": 491 + }, + { + "group_name": "Class D", + "license_group": 2, + "max_license_level": 8, + "min_license_level": 5, + "parent_id": 491 + }, + { + "group_name": "Class C", + "license_group": 3, + "max_license_level": 12, + "min_license_level": 9, + "parent_id": 491 + }, + { + "group_name": "Class B", + "license_group": 4, + "max_license_level": 16, + "min_license_level": 13, + "parent_id": 491 + }, + { + "group_name": "Class A", + "license_group": 5, + "max_license_level": 20, + "min_license_level": 17, + "parent_id": 491 + }, + { + "group_name": "Pro", + "license_group": 6, + "max_license_level": 24, + "min_license_level": 21, + "parent_id": 491 + }, + { + "group_name": "Pro/WC", + "license_group": 7, + "max_license_level": 28, + "min_license_level": 25, + "parent_id": 491 + } + ], + "associated_subsession_ids": [ + 82263872, + 82263873, + 82263874, + 82263875, + 82263876, + 82263877, + 82263878, + 82263879, + 82263880, + 82263881 + ], + "can_protest": true, + "car_classes": [ + { + "car_class_id": 2268, + "short_name": "GT4 Class", + "name": "GT4 Class", + "strength_of_field": 2961, + "num_entries": 30, + "cars_in_class": [ { - "group_name": "Class D", - "license_group": 2, - "max_license_level": 8, - "min_license_level": 8, - "parent_id": 298 + "car_id": 150 }, { - "group_name": "Class C", - "license_group": 3, - "max_license_level": 12, - "min_license_level": 9, - "parent_id": 298 + "car_id": 119 }, { - "group_name": "Class B", - "license_group": 4, - "max_license_level": 16, - "min_license_level": 13, - "parent_id": 298 + "car_id": 135 }, { - "group_name": "Class A", - "license_group": 5, - "max_license_level": 20, - "min_license_level": 17, - "parent_id": 298 + "car_id": 204 }, { - "group_name": "Pro", - "license_group": 6, - "max_license_level": 24, - "min_license_level": 21, - "parent_id": 298 + "car_id": 189 }, { - "group_name": "Pro/WC", - "license_group": 7, - "max_license_level": 28, - "min_license_level": 25, - "parent_id": 298 + "car_id": 157 } - ], - "associated_subsession_ids": [ - 82799828, - 82799829, - 82799830, - 82799831, - 82799832, - 82799833, - 82799834, - 82799835, - 82799836, - 82799837, - 82799838, - 82799839, - 82799840, - 82799841, - 82799842, - 82799843, - 82799844, - 82799845, - 82799846, - 82799847, - 82799848, - 82799849, - 82799850, - 82799851, - 82799852, - 82799853, - 82799854, - 82799855, - 82799856, - 82799857, - 82799858, - 82799859, - 82799860, - 82799861, - 82799862, - 82799863, - 82799864, - 82799865, - 82799866, - 82799867, - 82799868, - 82799869, - 82799870 - ], - "can_protest": true, - "car_classes": [ + ] + } + ], + "caution_type": 2, + "cooldown_minutes": 30, + "corners_per_lap": 16, + "damage_model": 0, + "driver_change_param1": -1, + "driver_change_param2": -1, + "driver_change_rule": 0, + "driver_changes": false, + "end_time": "2025-12-28T21:09:28Z", + "event_average_lap": 1319436, + "event_best_lap_time": 1317601, + "event_laps_complete": 10, + "event_strength_of_field": 2965, + "event_type": 5, + "event_type_name": "Race", + "heat_info_id": -1, + "license_category": "Sports_Car", + "license_category_id": 5, + "limit_minutes": 10080, + "max_team_drivers": 1, + "max_weeks": 12, + "min_team_drivers": 1, + "num_caution_laps": 0, + "num_cautions": 0, + "num_drivers": 30, + "num_laps_for_qual_average": 2, + "num_laps_for_solo_average": 5, + "num_lead_changes": 0, + "official_session": true, + "points_type": "race", + "private_session_id": -1, + "race_summary": { + "subsession_id": 82263872, + "average_lap": 1319436, + "laps_complete": 10, + "num_cautions": 0, + "num_caution_laps": 0, + "num_lead_changes": 0, + "field_strength": 2965, + "num_opt_laps": 0, + "has_opt_path": false, + "special_event_type": 0, + "special_event_type_text": "Not a special event" + }, + "race_week_num": 1, + "results_restricted": false, + "season_id": 5910, + "season_name": "GT4 Falken Tyre Challenge - 2026 Season 1", + "season_quarter": 1, + "season_short_name": "2026 Season 1", + "season_year": 2026, + "series_id": 491, + "series_logo": "gt4falkentirechallenge-logo.png", + "series_name": "GT4 Challenge by Falken Tyre", + "series_short_name": "GT4 Challenge by Falken Tyre", + "session_id": 295895065, + "session_results": [ + { + "simsession_number": -2, + "simsession_name": "PRACTICE", + "simsession_type": 3, + "simsession_type_name": "Open Practice", + "simsession_subtype": 0, + "weather_result": { + "avg_skies": 2, + "avg_cloud_cover_pct": 77.64741, + "min_cloud_cover_pct": 77.64741, + "max_cloud_cover_pct": 77.64741, + "temp_units": 1, + "avg_temp": 18.445652, + "min_temp": 18.445652, + "max_temp": 18.445652, + "avg_rel_humidity": 95.075, + "wind_units": 1, + "avg_wind_speed": 12.777357, + "min_wind_speed": 12.777358, + "max_wind_speed": 12.777358, + "avg_wind_dir": 1, + "max_fog": 0, + "fog_time_pct": 0, + "precip_time_pct": 100, + "precip_mm": 0, + "precip_mm2hr_before_session": 0, + "simulated_start_time": "2026-04-01T18:20:00" + }, + "results": [ { - "car_class_id": 4029, - "short_name": "GTP", - "name": "GTP", - "strength_of_field": 2373, - "num_entries": 14, - "cars_in_class": [ - { - "car_id": 196 - }, - { - "car_id": 168 - }, - { - "car_id": 174 - } - ] + "cust_id": 432652, + "display_name": "Valentin Kluss", + "aggregate_champ_points": 177, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 204, + "car_name": "Ford Mustang GT4", + "carcfg": -1, + "champ_points": 0, + "class_interval": 0, + "country_code": "DE", + "division": 0, + "division_name": "Division 1", + "drop_race": false, + "finish_position": 0, + "finish_position_in_class": 0, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 65, + "color1": "000000", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 0, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 204, + "pattern": 0, + "color1": "000000", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "1", + "wheel_color": "b3b3b3", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 32.966415, + "new_license_level": 17, + "new_sub_level": 155, + "new_ttrating": 1350, + "newi_rating": 7102, + "old_cpi": 29.836252, + "old_license_level": 17, + "old_sub_level": 140, + "old_ttrating": 1350, + "oldi_rating": 7082, + "opt_laps_complete": 0, + "position": 0, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 32, + "color1": "000000", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1.2 }, { - "car_class_id": 2523, - "short_name": "Dallara P217", - "name": "Dallara P217", - "strength_of_field": 2390, - "num_entries": 12, - "cars_in_class": [ - { - "car_id": 128 - } - ] + "cust_id": 1009174, + "display_name": "Diego Fern\u00e1ndez5", + "aggregate_champ_points": 171, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 189, + "car_name": "BMW M4 G82 GT4 Evo", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "ES", + "division": 0, + "division_name": "Division 1", + "drop_race": false, + "finish_position": 1, + "finish_position_in_class": 1, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 14, + "color1": "0021ff", + "color2": "000000", + "color3": "0021ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 189, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "000000", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "2", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 79.03055, + "new_license_level": 20, + "new_sub_level": 416, + "new_ttrating": 1295, + "newi_rating": 7084, + "old_cpi": 82.93489, + "old_license_level": 20, + "old_sub_level": 423, + "old_ttrating": 1295, + "oldi_rating": 7070, + "opt_laps_complete": 0, + "position": 1, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 31, + "color1": "ff8a00", + "color2": "ffffff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 }, { - "car_class_id": 4011, - "short_name": "IMSA23", - "name": "IMSA23", - "strength_of_field": 2259, - "num_entries": 33, - "cars_in_class": [ - { - "car_id": 184 - }, - { - "car_id": 169 - }, - { - "car_id": 185 - }, - { - "car_id": 156 - }, - { - "car_id": 188 - }, - { - "car_id": 173 - }, - { - "car_id": 206 - } - ] + "cust_id": 473030, + "display_name": "Lukas Schwenk", + "aggregate_champ_points": 184, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 204, + "car_name": "Ford Mustang GT4", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "DE", + "division": 0, + "division_name": "Division 1", + "drop_race": false, + "finish_position": 2, + "finish_position_in_class": 2, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 57, + "color1": "002bff", + "color2": "f7f7f7", + "color3": "33ff00", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 204, + "pattern": 24, + "color1": "002BFF", + "color2": "F7F7F7", + "color3": "33FF00", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "3", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 42.273064, + "new_license_level": 15, + "new_sub_level": 337, + "new_ttrating": 1350, + "newi_rating": 6260, + "old_cpi": 40.27555, + "old_license_level": 15, + "old_sub_level": 330, + "old_ttrating": 1350, + "oldi_rating": 6223, + "opt_laps_complete": 0, + "position": 2, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 21, + "color1": "0e0044", + "color2": "0139ff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "cust_id": 733441, + "display_name": "Christian Menezes", + "aggregate_champ_points": 95, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 119, + "car_name": "Porsche 718 Cayman GT4 Clubsport MR", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "CA", + "division": 0, + "division_name": "Division 1", + "drop_race": false, + "finish_position": 3, + "finish_position_in_class": 3, + "flair_id": 39, + "flair_name": "Canada", + "flair_shortname": "CAN", + "friend": false, + "helmet": { + "pattern": 44, + "color1": "b82f37", + "color2": "284a94", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 119, + "pattern": 23, + "color1": "000dff", + "color2": "9b95b5", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "4", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 30.262087, + "new_license_level": 17, + "new_sub_level": 142, + "new_ttrating": 1350, + "newi_rating": 6158, + "old_cpi": 34.74223, + "old_license_level": 18, + "old_sub_level": 207, + "old_ttrating": 1350, + "oldi_rating": 6213, + "opt_laps_complete": 0, + "position": 3, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "b82f37", + "color2": "284a94", + "color3": "111111" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "cust_id": 412200, + "display_name": "Connor Clubine", + "aggregate_champ_points": 120, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 157, + "car_name": "Mercedes-AMG GT4", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "CA", + "division": 0, + "division_name": "Division 1", + "drop_race": false, + "finish_position": 4, + "finish_position_in_class": 4, + "flair_id": 39, + "flair_name": "Canada", + "flair_shortname": "CAN", + "friend": false, + "helmet": { + "pattern": 10, + "color1": "389aff", + "color2": "ff0000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 157, + "pattern": 23, + "color1": "00237d", + "color2": "f2f3fc", + "color3": "d6050e", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "d60500", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "5", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 52.611485, + "new_license_level": 18, + "new_sub_level": 270, + "new_ttrating": 1350, + "newi_rating": 4348, + "old_cpi": 50.59205, + "old_license_level": 18, + "old_sub_level": 264, + "old_ttrating": 1350, + "oldi_rating": 4347, + "opt_laps_complete": 0, + "position": 4, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 21, + "color1": "001f6e", + "color2": "ffffff", + "color3": "d60500" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "cust_id": 1253123, + "display_name": "Finley Jones", + "aggregate_champ_points": 158, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 119, + "car_name": "Porsche 718 Cayman GT4 Clubsport MR", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GB", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 5, + "finish_position_in_class": 5, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 60, + "color1": "eb00ff", + "color2": "03ff05", + "color3": "0643f9", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 119, + "pattern": 0, + "color1": "eb00ff", + "color2": "03ff05", + "color3": "0643f9", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "6", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 37.344536, + "new_license_level": 18, + "new_sub_level": 218, + "new_ttrating": 1300, + "newi_rating": 4087, + "old_cpi": 38.45716, + "old_license_level": 18, + "old_sub_level": 223, + "old_ttrating": 1300, + "oldi_rating": 4039, + "opt_laps_complete": 0, + "position": 5, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "4ba6db", + "color2": "61520", + "color3": "f08f00" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "cust_id": 956892, + "display_name": "Oliver Holt", + "aggregate_champ_points": 145, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 119, + "car_name": "Porsche 718 Cayman GT4 Clubsport MR", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GB", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 6, + "finish_position_in_class": 6, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 60, + "color1": "212121", + "color2": "ff2d2d", + "color3": "ffd033", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 119, + "pattern": 0, + "color1": "ffffff", + "color2": "3897ff", + "color3": "1f1f1f", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "7", + "wheel_color": "daa764", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 40.849358, + "new_license_level": 18, + "new_sub_level": 232, + "new_ttrating": 1350, + "newi_rating": 3969, + "old_cpi": 43.049812, + "old_license_level": 18, + "old_sub_level": 240, + "old_ttrating": 1350, + "oldi_rating": 3932, + "opt_laps_complete": 0, + "position": 6, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "dedede", + "color2": "fbaf01", + "color3": "5a5a5a" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "cust_id": 571733, + "display_name": "Eder Incera Tristan", + "aggregate_champ_points": 82, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 157, + "car_name": "Mercedes-AMG GT4", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "ES", + "division": 1, + "division_name": "Division 2", + "drop_race": true, + "finish_position": 7, + "finish_position_in_class": 7, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 54, + "color1": "13050e", + "color2": "e7ff21", + "color3": "335e91", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 157, + "pattern": 10, + "color1": "d32811", + "color2": "f7f2f2", + "color3": "124bb9", + "number_font": 0, + "number_color1": "db1a1a", + "number_color2": "1682da", + "number_color3": "f7f1f1", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "8", + "wheel_color": "000000", + "rim_type": 3 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 39.171627, + "new_license_level": 17, + "new_sub_level": 182, + "new_ttrating": 1350, + "newi_rating": 3709, + "old_cpi": 43.90397, + "old_license_level": 17, + "old_sub_level": 199, + "old_ttrating": 1350, + "oldi_rating": 3733, + "opt_laps_complete": 0, + "position": 7, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 22, + "color1": "212021", + "color2": "cf3b21", + "color3": "4c4341" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "cust_id": 447143, + "display_name": "Alex Mohr", + "aggregate_champ_points": 164, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 119, + "car_name": "Porsche 718 Cayman GT4 Clubsport MR", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "DE", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 8, + "finish_position_in_class": 8, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "4b2f01", + "color2": "68a117", + "color3": "a600ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 119, + "pattern": 1, + "color1": "FF0000", + "color2": "00FF00", + "color3": "0000FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "9", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 19.493876, + "new_license_level": 6, + "new_sub_level": 295, + "new_ttrating": 1350, + "newi_rating": 3792, + "old_cpi": 17.379528, + "old_license_level": 6, + "old_sub_level": 276, + "old_ttrating": 1350, + "oldi_rating": 3731, + "opt_laps_complete": 0, + "position": 8, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 22, + "color1": "000000", + "color2": "ff3324", + "color3": "b82f37" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "cust_id": 567617, + "display_name": "David Lourd", + "aggregate_champ_points": 139, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 157, + "car_name": "Mercedes-AMG GT4", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "US", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 9, + "finish_position_in_class": 9, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 22, + "color1": "111111", + "color2": "f904de", + "color3": "47ffd4", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 157, + "pattern": 24, + "color1": "ebe1e1", + "color2": "3b9cda", + "color3": "f2f977", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "10", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 22.579052, + "new_license_level": 10, + "new_sub_level": 254, + "new_ttrating": 1350, + "newi_rating": 3699, + "old_cpi": 22.207924, + "old_license_level": 10, + "old_sub_level": 252, + "old_ttrating": 1350, + "oldi_rating": 3663, + "opt_laps_complete": 0, + "position": 9, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 15, + "color1": "7e7e7e", + "color2": "ff00f5", + "color3": "ececec" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "cust_id": 166182, + "display_name": "Joe Aguilar", + "aggregate_champ_points": 152, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 204, + "car_name": "Ford Mustang GT4", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "US", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 10, + "finish_position_in_class": 10, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 36, + "color1": "ffffff", + "color2": "1400ff", + "color3": "00a3ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 204, + "pattern": 0, + "color1": "ffffff", + "color2": "ffffff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "000000", + "number_color2": "ffffff", + "number_color3": "777777", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "11", + "wheel_color": "d8804f", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 53.745346, + "new_license_level": 19, + "new_sub_level": 317, + "new_ttrating": 1318, + "newi_rating": 3616, + "old_cpi": 51.80095, + "old_license_level": 19, + "old_sub_level": 311, + "old_ttrating": 1318, + "oldi_rating": 3564, + "opt_laps_complete": 0, + "position": 10, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 32, + "color1": "eeeff0", + "color2": "202020", + "color3": "534741" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "cust_id": 282380, + "display_name": "Andr\u00e9s Bertoni", + "aggregate_champ_points": 31, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 119, + "car_name": "Porsche 718 Cayman GT4 Clubsport MR", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "UY", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 11, + "finish_position_in_class": 11, + "flair_id": 224, + "flair_name": "Uruguay", + "flair_shortname": "URY", + "friend": false, + "helmet": { + "pattern": 4, + "color1": "FFFF1F", + "color2": "FFFFFF", + "color3": "214C9C", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 119, + "pattern": 0, + "color1": "a3a919", + "color2": "33d190", + "color3": "dc22ec", + "number_font": 0, + "number_color1": "000000", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 97, + "car_number": "12", + "wheel_color": "4a4c51", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 18.475933, + "new_license_level": 6, + "new_sub_level": 286, + "new_ttrating": 1350, + "newi_rating": 3323, + "old_cpi": 17.965443, + "old_license_level": 6, + "old_sub_level": 282, + "old_ttrating": 1350, + "oldi_rating": 3392, + "opt_laps_complete": 0, + "position": 11, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 25, + "color1": "FFFFFF", + "color2": "6D6E71", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "cust_id": 68540, + "display_name": "Erik Tveit", + "aggregate_champ_points": 12, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 157, + "car_name": "Mercedes-AMG GT4", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "NO", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 12, + "finish_position_in_class": 12, + "flair_id": 156, + "flair_name": "Norway", + "flair_shortname": "NOR", + "friend": false, + "helmet": { + "pattern": 49, + "color1": "222222", + "color2": "031adc", + "color3": "0075ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 157, + "pattern": 16, + "color1": "222222", + "color2": "031ADC", + "color3": "0075FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "13", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 38.142296, + "new_license_level": 15, + "new_sub_level": 321, + "new_ttrating": 1350, + "newi_rating": 2759, + "old_cpi": 39.981483, + "old_license_level": 15, + "old_sub_level": 328, + "old_ttrating": 1350, + "oldi_rating": 2834, + "opt_laps_complete": 0, + "position": 12, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 17, + "color1": "2a3ef7", + "color2": "222222", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "cust_id": 404356, + "display_name": "Alexis Montesdeoca", + "aggregate_champ_points": 69, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 189, + "car_name": "BMW M4 G82 GT4 Evo", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "EC", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 13, + "finish_position_in_class": 13, + "flair_id": 60, + "flair_name": "Ecuador", + "flair_shortname": "ECU", + "friend": false, + "helmet": { + "pattern": 22, + "color1": "2400ff", + "color2": "f2ff00", + "color3": "ff0036", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 189, + "pattern": 2, + "color1": "FF0000", + "color2": "00FF00", + "color3": "0000FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "14", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 21.141125, + "new_license_level": 7, + "new_sub_level": 344, + "new_ttrating": 1350, + "newi_rating": 2770, + "old_cpi": 18.475237, + "old_license_level": 6, + "old_sub_level": 286, + "old_ttrating": 1350, + "oldi_rating": 2784, + "opt_laps_complete": 0, + "position": 13, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 27, + "color1": "e5ff13", + "color2": "0a0dff", + "color3": "ec1305" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "cust_id": 1308876, + "display_name": "Kirill Dronkin", + "aggregate_champ_points": 38, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 189, + "car_name": "BMW M4 G82 GT4 Evo", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 14, + "finish_position_in_class": 14, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 22, + "color1": "000000", + "color2": "45768d", + "color3": "45768d", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 189, + "pattern": 0, + "color1": "45768d", + "color2": "45768d", + "color3": "45768d", + "number_font": 0, + "number_color1": "45768d", + "number_color2": "45768d", + "number_color3": "45768d", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "15", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 32.477016, + "new_license_level": 14, + "new_sub_level": 253, + "new_ttrating": 1350, + "newi_rating": 2611, + "old_cpi": 37.53504, + "old_license_level": 14, + "old_sub_level": 275, + "old_ttrating": 1350, + "oldi_rating": 2654, + "opt_laps_complete": 0, + "position": 14, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "231f20", + "color2": "e41e26", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "cust_id": 170870, + "display_name": "Jonas Sandstede", + "aggregate_champ_points": 126, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 157, + "car_name": "Mercedes-AMG GT4", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "DE", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 15, + "finish_position_in_class": 15, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 45, + "color1": "000000", + "color2": "43462f", + "color3": "b4ba53", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 157, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "16", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 30.390991, + "new_license_level": 17, + "new_sub_level": 142, + "new_ttrating": 1350, + "newi_rating": 2662, + "old_cpi": 29.790945, + "old_license_level": 17, + "old_sub_level": 139, + "old_ttrating": 1350, + "oldi_rating": 2612, + "opt_laps_complete": 0, + "position": 15, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 8, + "color1": "000000", + "color2": "ebed21", + "color3": "21291f" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "cust_id": 1004165, + "display_name": "Th\u00e9o Barchino", + "aggregate_champ_points": 88, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 157, + "car_name": "Mercedes-AMG GT4", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "FR", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 16, + "finish_position_in_class": 16, + "flair_id": 71, + "flair_name": "France", + "flair_shortname": "FRA", + "friend": false, + "helmet": { + "pattern": 60, + "color1": "1100d7", + "color2": "ffffff", + "color3": "ff0000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 157, + "pattern": 14, + "color1": "1100d7", + "color2": "ffffff", + "color3": "ff0000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "17", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 38.19449, + "new_license_level": 11, + "new_sub_level": 378, + "new_ttrating": 1350, + "newi_rating": 2555, + "old_cpi": 38.746334, + "old_license_level": 11, + "old_sub_level": 380, + "old_ttrating": 1350, + "oldi_rating": 2543, + "opt_laps_complete": 0, + "position": 16, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 21, + "color1": "da000f", + "color2": "3521b0", + "color3": "eeeeee" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "cust_id": 1197334, + "display_name": "Francisco Cores", + "aggregate_champ_points": 57, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 189, + "car_name": "BMW M4 G82 GT4 Evo", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "AR", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 17, + "finish_position_in_class": 17, + "flair_id": 13, + "flair_name": "Argentina", + "flair_shortname": "ARG", + "friend": false, + "helmet": { + "pattern": 6, + "color1": "1a1a1a", + "color2": "268d19", + "color3": "1a1a1a", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 189, + "pattern": 12, + "color1": "00c1ff", + "color2": "ffffff", + "color3": "00d9ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "1c00ff", + "number_color3": "ff0000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "18", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 27.755468, + "new_license_level": 17, + "new_sub_level": 128, + "new_ttrating": 1350, + "newi_rating": 2476, + "old_cpi": 29.861366, + "old_license_level": 17, + "old_sub_level": 140, + "old_ttrating": 1350, + "oldi_rating": 2495, + "opt_laps_complete": 0, + "position": 17, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 2, + "color1": "000000", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "cust_id": 500287, + "display_name": "Adam Collin", + "aggregate_champ_points": 133, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 135, + "car_name": "McLaren 570S GT4", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GB", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 18, + "finish_position_in_class": 18, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 67, + "color1": "000000", + "color2": "00ffb0", + "color3": "b8ff00", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 135, + "pattern": 18, + "color1": "ffffff", + "color2": "d2ff00", + "color3": "5e00ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 106, + "sponsor2": 188, + "car_number": "19", + "wheel_color": "d2ff00", + "rim_type": 3 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 35.164497, + "new_license_level": 11, + "new_sub_level": 365, + "new_ttrating": 1350, + "newi_rating": 2507, + "old_cpi": 32.45349, + "old_license_level": 11, + "old_sub_level": 353, + "old_ttrating": 1350, + "oldi_rating": 2445, + "opt_laps_complete": 0, + "position": 18, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "000000", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "cust_id": 389959, + "display_name": "William Leblond", + "aggregate_champ_points": 50, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 150, + "car_name": "Aston Martin Vantage GT4", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "CA", + "division": 5, + "division_name": "Division 6", + "drop_race": false, + "finish_position": 19, + "finish_position_in_class": 19, + "flair_id": 39, + "flair_name": "Canada", + "flair_shortname": "CAN", + "friend": false, + "helmet": { + "pattern": 42, + "color1": "053363", + "color2": "ffffff", + "color3": "c61c2b", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 150, + "pattern": 24, + "color1": "0092ca", + "color2": "222831", + "color3": "eeeeee", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "012845", + "number_color3": "009fe3", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "20", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 33.43521, + "new_license_level": 18, + "new_sub_level": 201, + "new_ttrating": 1350, + "newi_rating": 2296, + "old_cpi": 34.73366, + "old_license_level": 18, + "old_sub_level": 207, + "old_ttrating": 1350, + "oldi_rating": 2316, + "opt_laps_complete": 0, + "position": 19, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "053363", + "color2": "ffffff", + "color3": "c61c2b" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "cust_id": 1258349, + "display_name": "Sebastian Bignasca", + "aggregate_champ_points": 44, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 119, + "car_name": "Porsche 718 Cayman GT4 Clubsport MR", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "CH", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 20, + "finish_position_in_class": 20, + "flair_id": 204, + "flair_name": "Switzerland", + "flair_shortname": "CHE", + "friend": false, + "helmet": { + "pattern": 66, + "color1": "bd0904", + "color2": "184252", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 2, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 119, + "pattern": 10, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "e12424", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "21", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 35.977398, + "new_license_level": 14, + "new_sub_level": 268, + "new_ttrating": 1284, + "newi_rating": 2226, + "old_cpi": 36.12372, + "old_license_level": 14, + "old_sub_level": 269, + "old_ttrating": 1284, + "oldi_rating": 2251, + "opt_laps_complete": 0, + "position": 20, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "161717", + "color2": "da3727", + "color3": "111111" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "cust_id": 745711, + "display_name": "Raul Lopez Gimenez", + "aggregate_champ_points": 107, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 189, + "car_name": "BMW M4 G82 GT4 Evo", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "ES", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 21, + "finish_position_in_class": 21, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "0ada00", + "color2": "ffffff", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 189, + "pattern": 8, + "color1": "0ADA00", + "color2": "FFFFFF", + "color3": "111111", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "22", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 43.376335, + "new_license_level": 15, + "new_sub_level": 341, + "new_ttrating": 1350, + "newi_rating": 2286, + "old_cpi": 44.127274, + "old_license_level": 15, + "old_sub_level": 343, + "old_ttrating": 1350, + "oldi_rating": 2245, + "opt_laps_complete": 0, + "position": 21, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "0ada00", + "color2": "ffffff", + "color3": "111111" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "cust_id": 1180318, + "display_name": "Cedric Fuchs", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 157, + "car_name": "Mercedes-AMG GT4", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 22, + "finish_position_in_class": 22, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 14, + "color1": "000000", + "color2": "0070ff", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 157, + "pattern": 3, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "000000", + "number_color2": "f50000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "23", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 20.959383, + "new_license_level": 10, + "new_sub_level": 242, + "new_ttrating": 1350, + "newi_rating": 2121, + "old_cpi": 20.959383, + "old_license_level": 10, + "old_sub_level": 242, + "old_ttrating": 1350, + "oldi_rating": 2187, + "opt_laps_complete": 0, + "position": 22, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "0dff00", + "color2": "000000", + "color3": "00ff0a" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "cust_id": 1326283, + "display_name": "Willian Schilling", + "aggregate_champ_points": 63, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 189, + "car_name": "BMW M4 G82 GT4 Evo", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "BR", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 23, + "finish_position_in_class": 23, + "flair_id": 31, + "flair_name": "Brazil", + "flair_shortname": "BRA", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "9720c8", + "color2": "ffffff", + "color3": "171717", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 189, + "pattern": 14, + "color1": "9720C8", + "color2": "FFFFFF", + "color3": "171717", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "24", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 36.86136, + "new_license_level": 11, + "new_sub_level": 372, + "new_ttrating": 1311, + "newi_rating": 2177, + "old_cpi": 39.81942, + "old_license_level": 11, + "old_sub_level": 384, + "old_ttrating": 1311, + "oldi_rating": 2180, + "opt_laps_complete": 0, + "position": 23, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "b226fd", + "color2": "9a22ff", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "cust_id": 890016, + "display_name": "Hank Belane", + "aggregate_champ_points": 101, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 157, + "car_name": "Mercedes-AMG GT4", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "DE", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 24, + "finish_position_in_class": 24, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "111111", + "color2": "020059", + "color3": "050062", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 157, + "pattern": 0, + "color1": "ff0000", + "color2": "135324", + "color3": "5e5e5e", + "number_font": 56, + "number_color1": "ff0000", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "25", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 31.316628, + "new_license_level": 14, + "new_sub_level": 247, + "new_ttrating": 1350, + "newi_rating": 2209, + "old_cpi": 36.14177, + "old_license_level": 15, + "old_sub_level": 313, + "old_ttrating": 1350, + "oldi_rating": 2173, + "opt_laps_complete": 0, + "position": 24, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "111111", + "color2": "135324", + "color3": "5e5e5e" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "cust_id": 399652, + "display_name": "Victor Hansen", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 189, + "car_name": "BMW M4 G82 GT4 Evo", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "DK", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 25, + "finish_position_in_class": 25, + "flair_id": 56, + "flair_name": "Denmark", + "flair_shortname": "DNK", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "a9790e", + "color2": "013e62", + "color3": "0093ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 189, + "pattern": 2, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "26", + "wheel_color": "a9790e", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 21.767754, + "new_license_level": 13, + "new_sub_level": 148, + "new_ttrating": 1350, + "newi_rating": 2105, + "old_cpi": 21.767754, + "old_license_level": 13, + "old_sub_level": 148, + "old_ttrating": 1350, + "oldi_rating": 2171, + "opt_laps_complete": 0, + "position": 25, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 22, + "color1": "013e62", + "color2": "0093ff", + "color3": "a9790e" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "cust_id": 1041380, + "display_name": "Markus Buttliger", + "aggregate_champ_points": 19, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 157, + "car_name": "Mercedes-AMG GT4", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "CH", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 26, + "finish_position_in_class": 26, + "flair_id": 204, + "flair_name": "Switzerland", + "flair_shortname": "CHE", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "ffffff", + "color2": "0ada00", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 157, + "pattern": 12, + "color1": "0f0f14", + "color2": "860d0d", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "27", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 31.577557, + "new_license_level": 14, + "new_sub_level": 248, + "new_ttrating": 1350, + "newi_rating": 2114, + "old_cpi": 32.20318, + "old_license_level": 14, + "old_sub_level": 251, + "old_ttrating": 1350, + "oldi_rating": 2163, + "opt_laps_complete": 0, + "position": 26, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "ffffff", + "color2": "0ada00", + "color3": "111111" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "cust_id": 354144, + "display_name": "Xavier Abellan", + "aggregate_champ_points": 25, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 157, + "car_name": "Mercedes-AMG GT4", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "ES", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 27, + "finish_position_in_class": 27, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 42, + "color1": "e4380c", + "color2": "070808", + "color3": "4100da", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 157, + "pattern": 2, + "color1": "e4380c", + "color2": "070808", + "color3": "4100da", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "28", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 30.233068, + "new_license_level": 14, + "new_sub_level": 242, + "new_ttrating": 1350, + "newi_rating": 2095, + "old_cpi": 32.681377, + "old_license_level": 14, + "old_sub_level": 254, + "old_ttrating": 1350, + "oldi_rating": 2137, + "opt_laps_complete": 0, + "position": 27, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 27, + "color1": "2610BC", + "color2": "030202", + "color3": "B91B13" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "cust_id": 1379179, + "display_name": "Christopher Bruchmann", + "aggregate_champ_points": 76, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 150, + "car_name": "Aston Martin Vantage GT4", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "DE", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 28, + "finish_position_in_class": 28, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 68, + "color1": "000000", + "color2": "ffffff", + "color3": "0011ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 150, + "pattern": 10, + "color1": "0500ff", + "color2": "a3d3ff", + "color3": "242424", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "29", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 25.648657, + "new_license_level": 11, + "new_sub_level": 316, + "new_ttrating": 1350, + "newi_rating": 2130, + "old_cpi": 23.869007, + "old_license_level": 11, + "old_sub_level": 305, + "old_ttrating": 1350, + "oldi_rating": 2119, + "opt_laps_complete": 0, + "position": 28, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "ec232d", + "color2": "ffffff", + "color3": "2e358f" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "cust_id": 1386334, + "display_name": "Vili Tero", + "aggregate_champ_points": 114, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 157, + "car_name": "Mercedes-AMG GT4", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "FI", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 29, + "finish_position_in_class": 29, + "flair_id": 70, + "flair_name": "Finland", + "flair_shortname": "FIN", + "friend": false, + "helmet": { + "pattern": 20, + "color1": "00fff0", + "color2": "00e0ff", + "color3": "00e0ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 157, + "pattern": 15, + "color1": "000000", + "color2": "f1e700", + "color3": "000000", + "number_font": 0, + "number_color1": "f7ee0a", + "number_color2": "ffffff", + "number_color3": "ff0000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "30", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 26.440548, + "new_license_level": 7, + "new_sub_level": 379, + "new_ttrating": 1350, + "newi_rating": 2141, + "old_cpi": 24.163597, + "old_license_level": 7, + "old_sub_level": 365, + "old_ttrating": 1350, + "oldi_rating": 2089, + "opt_laps_complete": 0, + "position": 29, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 15, + "color1": "00fff7", + "color2": "00fff7", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 } - ], - "caution_type": 2, - "cooldown_minutes": 30, - "corners_per_lap": 12, - "damage_model": 0, - "driver_change_param1": -1, - "driver_change_param2": -1, - "driver_change_rule": 2, - "driver_changes": true, - "end_time": "2026-01-18T12:54:24Z", - "event_average_lap": 978772, - "event_best_lap_time": 934669, - "event_laps_complete": 883, - "event_strength_of_field": 2259, - "event_type": 5, - "event_type_name": "Race", - "heat_info_id": -1, - "license_category": "Sports_Car", - "license_category_id": 5, - "limit_minutes": 10080, - "max_team_drivers": 16, - "max_weeks": 1, - "min_team_drivers": 2, - "num_caution_laps": 0, - "num_cautions": 0, - "num_drivers": 231, - "num_laps_for_qual_average": 2, - "num_laps_for_solo_average": 5, - "num_lead_changes": 39, - "official_session": true, - "points_type": "race", - "private_session_id": -1, - "race_summary": { - "subsession_id": 82799850, - "average_lap": 978772, - "laps_complete": 883, - "num_cautions": 0, - "num_caution_laps": 0, - "num_lead_changes": 39, - "field_strength": 2259, - "num_opt_laps": 0, - "has_opt_path": false, - "special_event_type": 0, - "special_event_type_text": "Not a special event" + ] }, - "race_week_num": 0, - "results_restricted": false, - "season_id": 6072, - "season_name": "2026 24 Hours of Daytona Presented by VCO", - "season_quarter": 1, - "season_short_name": "2026 24 Hours of Daytona", - "season_year": 2026, - "series_id": 298, - "series_logo": "seriesid_298.png", - "series_name": "Daytona 24", - "series_short_name": "Daytona 24", - "session_id": 297959922, - "session_results": [ + { + "simsession_number": -1, + "simsession_name": "QUALIFY", + "simsession_type": 4, + "simsession_type_name": "Lone Qualifying", + "simsession_subtype": 0, + "weather_result": { + "avg_skies": 2, + "avg_cloud_cover_pct": 78.08961, + "min_cloud_cover_pct": 78.08961, + "max_cloud_cover_pct": 78.08961, + "temp_units": 1, + "avg_temp": 18.448698, + "min_temp": 18.448698, + "max_temp": 18.448698, + "avg_rel_humidity": 95.08445, + "wind_units": 1, + "avg_wind_speed": 12.588857, + "min_wind_speed": 12.588857, + "max_wind_speed": 12.588857, + "avg_wind_dir": 1, + "max_fog": 0, + "fog_time_pct": 0, + "precip_time_pct": 100, + "precip_mm": 0, + "precip_mm2hr_before_session": 0, + "simulated_start_time": "2026-04-01T18:35:00" + }, + "results": [ { - "simsession_number": -2, - "simsession_name": "PRACTICE", - "simsession_type": 3, - "simsession_type_name": "Open Practice", - "simsession_subtype": 0, - "weather_result": { - "avg_skies": 3, - "avg_cloud_cover_pct": 99.99993, - "min_cloud_cover_pct": 99.980774, - "max_cloud_cover_pct": 100, - "temp_units": 1, - "avg_temp": 21.189583, - "min_temp": 21.136753, - "max_temp": 21.229076, - "avg_rel_humidity": 63.929794, - "wind_units": 1, - "avg_wind_speed": 10.637684, - "min_wind_speed": 9.83317, - "max_wind_speed": 11.340757, - "avg_wind_dir": 7, - "max_fog": 0, - "fog_time_pct": 0, - "precip_time_pct": 0, - "precip_mm": 0, - "precip_mm2hr_before_session": 0, - "simulated_start_time": "2026-01-24T13:00:00" - }, - "results": [ - { - "team_id": -361961, - "display_name": "Inside Curb Racing", - "aggregate_champ_points": 43, - "ai": false, - "average_lap": 959043, - "best_lap_num": 12, - "best_lap_time": 934875, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 0, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -361961, - "cust_id": 326217, - "display_name": "Wouter M Merks", - "aggregate_champ_points": 43, - "ai": false, - "average_lap": 952224, - "best_lap_num": 12, - "best_lap_time": 934875, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 0, - "country_code": "NL", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 0, - "finish_position_in_class": 0, - "flair_id": 146, - "flair_name": "Netherlands", - "flair_shortname": "NLD", - "friend": false, - "helmet": { - "pattern": 65, - "color1": "14fff8", - "color2": "000000", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 10, - "interval": 0, - "laps_complete": 7, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 10, - "color1": "ffffff", - "color2": "ffffff", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "1", - "wheel_color": "878787", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 139.78241, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 3051, - "old_cpi": 53.386677, - "old_license_level": 19, - "old_sub_level": 316, - "old_ttrating": 1350, - "oldi_rating": 3062, - "opt_laps_complete": 0, - "position": 0, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 2, - "color1": "000000", - "color2": "ffffff", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -361961, - "cust_id": 1049323, - "display_name": "Thijn De Jong", - "aggregate_champ_points": 43, - "ai": false, - "average_lap": 964499, - "best_lap_num": 4, - "best_lap_time": 939916, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 5041, - "country_code": "NL", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 3, - "finish_position_in_class": 3, - "flair_id": 146, - "flair_name": "Netherlands", - "flair_shortname": "NLD", - "friend": false, - "helmet": { - "pattern": 0, - "color1": "ffffff", - "color2": "ffffff", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 4, - "interval": 5041, - "laps_complete": 5, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 10, - "color1": "ffffff", - "color2": "ffffff", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "1", - "wheel_color": "878787", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 56.54951, - "new_license_level": 18, - "new_sub_level": 281, - "new_ttrating": 1374, - "newi_rating": 2575, - "old_cpi": 45.43084, - "old_license_level": 18, - "old_sub_level": 248, - "old_ttrating": 1374, - "oldi_rating": 2585, - "opt_laps_complete": 0, - "position": 3, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 2, - "color1": "000000", - "color2": "ffffff", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 2 - } - ], - "drop_race": false, - "finish_position": 0, - "finish_position_in_class": 0, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 14, - "interval": 0, - "laps_complete": 12, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 10, - "color1": "ffffff", - "color2": "ffffff", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "1", - "wheel_color": "878787", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 0, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 2, - "color1": "000000", - "color2": "ffffff", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -379972, - "display_name": "Primal Racing 1", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 947611, - "best_lap_num": 9, - "best_lap_time": 938695, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 196, - "car_name": "Ferrari 499P", - "carcfg": -1, - "champ_points": 0, - "class_interval": 3820, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -379972, - "cust_id": 737050, - "display_name": "Magnus Mortensen2", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 947611, - "best_lap_num": 9, - "best_lap_time": 938695, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 196, - "car_name": "Ferrari 499P", - "carcfg": -1, - "champ_points": 0, - "class_interval": 3820, - "country_code": "DK", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 1, - "finish_position_in_class": 1, - "flair_id": 56, - "flair_name": "Denmark", - "flair_shortname": "DNK", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "000000", - "color2": "1c1a7b", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 4, - "interval": 3820, - "laps_complete": 10, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 196, - "pattern": 0, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "8", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 75.986855, - "new_license_level": 20, - "new_sub_level": 410, - "new_ttrating": 1350, - "newi_rating": 2622, - "old_cpi": 100.1537, - "old_license_level": 20, - "old_sub_level": 452, - "old_ttrating": 1350, - "oldi_rating": 2672, - "opt_laps_complete": 0, - "position": 1, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "f1732e", - "color2": "372a75", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": false, - "finish_position": 1, - "finish_position_in_class": 1, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 4, - "interval": 3820, - "laps_complete": 10, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 196, - "pattern": 0, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "8", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 1, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "f1732e", - "color2": "372a75", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -246761, - "display_name": "Vortex Racing Alpha", - "aggregate_champ_points": 32, - "ai": false, - "average_lap": 946980, - "best_lap_num": 13, - "best_lap_time": 939223, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 4348, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -246761, - "cust_id": 447778, - "display_name": "craig Benefiel", - "aggregate_champ_points": 32, - "ai": false, - "average_lap": 946980, - "best_lap_num": 13, - "best_lap_time": 939223, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 4348, - "country_code": "US", - "division": 4, - "division_name": "Division 5", - "drop_race": false, - "finish_position": 2, - "finish_position_in_class": 2, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "111111", - "color2": "cccccc", - "color3": "ed1c24", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 14, - "interval": 4348, - "laps_complete": 14, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 5, - "color1": "ffffff", - "color2": "cccccc", - "color3": "666666", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 2, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "51", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 76.59716, - "new_license_level": 19, - "new_sub_level": 370, - "new_ttrating": 1350, - "newi_rating": 1974, - "old_cpi": 43.42212, - "old_license_level": 18, - "old_sub_level": 241, - "old_ttrating": 1350, - "oldi_rating": 1991, - "opt_laps_complete": 0, - "position": 2, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 27, - "color1": "111111", - "color2": "83ccff", - "color3": "cccccc" - }, - "watched": false, - "weight_penalty_kg": 2 - } - ], - "drop_race": false, - "finish_position": 2, - "finish_position_in_class": 2, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 14, - "interval": 4348, - "laps_complete": 14, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 5, - "color1": "ffffff", - "color2": "cccccc", - "color3": "666666", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 2, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "51", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 2, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 27, - "color1": "111111", - "color2": "83ccff", - "color3": "cccccc" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -370856, - "display_name": "Crayola Advanced Engineering", - "aggregate_champ_points": 140, - "ai": false, - "average_lap": 961567, - "best_lap_num": 9, - "best_lap_time": 943057, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 8182, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -370856, - "cust_id": 580584, - "display_name": "Adam W Lewis", - "aggregate_champ_points": 140, - "ai": false, - "average_lap": 950923, - "best_lap_num": 9, - "best_lap_time": 943057, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 8182, - "country_code": "GB", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 4, - "finish_position_in_class": 4, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 23, - "color1": "ff00a4", - "color2": "adff00", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 4, - "interval": 8182, - "laps_complete": 5, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 10, - "color1": "ffffff", - "color2": "0019ff", - "color3": "111111", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "7", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 112.93226, - "new_license_level": 20, - "new_sub_level": 471, - "new_ttrating": 1178, - "newi_rating": 2293, - "old_cpi": 75.35843, - "old_license_level": 20, - "old_sub_level": 409, - "old_ttrating": 1178, - "oldi_rating": 2265, - "opt_laps_complete": 0, - "position": 4, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 26, - "color1": "ffffff", - "color2": "004225", - "color3": "d4af37" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -370856, - "cust_id": 1070827, - "display_name": "Alexander Wainman", - "aggregate_champ_points": 140, - "ai": false, - "average_lap": 970082, - "best_lap_num": 2, - "best_lap_time": 950272, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 15397, - "country_code": "GB", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 14, - "finish_position_in_class": 14, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 35, - "color1": "6e00ff", - "color2": "ff00ff", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 15397, - "laps_complete": 5, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 10, - "color1": "ffffff", - "color2": "0019ff", - "color3": "111111", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "7", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 113.07297, - "new_license_level": 20, - "new_sub_level": 471, - "new_ttrating": 1211, - "newi_rating": 3227, - "old_cpi": 110.732925, - "old_license_level": 20, - "old_sub_level": 468, - "old_ttrating": 1211, - "oldi_rating": 3199, - "opt_laps_complete": 0, - "position": 14, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 26, - "color1": "ffffff", - "color2": "004225", - "color3": "d4af37" - }, - "watched": false, - "weight_penalty_kg": 2 - } - ], - "drop_race": false, - "finish_position": 3, - "finish_position_in_class": 3, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 4, - "interval": 8182, - "laps_complete": 10, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 10, - "color1": "ffffff", - "color2": "0019ff", - "color3": "111111", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "7", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 3, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 26, - "color1": "ffffff", - "color2": "004225", - "color3": "d4af37" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -385527, - "display_name": "EHR Blue", - "aggregate_champ_points": 118, - "ai": false, - "average_lap": 964043, - "best_lap_num": 4, - "best_lap_time": 943196, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 8321, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -385527, - "cust_id": 1126675, - "display_name": "Jack Reed", - "aggregate_champ_points": 118, - "ai": false, - "average_lap": 966450, - "best_lap_num": 4, - "best_lap_time": 943196, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 8321, - "country_code": "ENG", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 5, - "finish_position_in_class": 5, - "flair_id": 236, - "flair_name": "England", - "flair_shortname": "ENG", - "friend": false, - "helmet": { - "pattern": 28, - "color1": "383838", - "color2": "ffffff", - "color3": "2885ff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 9, - "interval": 8321, - "laps_complete": 9, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 0, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 14, - "number_color1": "ffffff", - "number_color2": "cba7f4", - "number_color3": "352e74", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "808", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 163.46672, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1085, - "newi_rating": 2895, - "old_cpi": 60.085476, - "old_license_level": 19, - "old_sub_level": 333, - "old_ttrating": 1085, - "oldi_rating": 2871, - "opt_laps_complete": 0, - "position": 5, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 13, - "color1": "352e74", - "color2": "4C99D3", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -385527, - "cust_id": 289709, - "display_name": "Greyson Oppermann", - "aggregate_champ_points": 118, - "ai": false, - "average_lap": 953212, - "best_lap_num": 11, - "best_lap_time": 949604, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 14729, - "country_code": "US", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 13, - "finish_position_in_class": 13, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 15, - "color1": "ffffff", - "color2": "ffffff", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 4, - "interval": 14729, - "laps_complete": 3, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 0, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 14, - "number_color1": "ffffff", - "number_color2": "cba7f4", - "number_color3": "352e74", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "808", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 121.81984, - "new_license_level": 12, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 2415, - "old_cpi": 28.188484, - "old_license_level": 10, - "old_sub_level": 290, - "old_ttrating": 1350, - "oldi_rating": 2392, - "opt_laps_complete": 0, - "position": 13, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 13, - "color1": "352e74", - "color2": "4C99D3", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -385527, - "cust_id": 611015, - "display_name": "Aaron Knight2", - "aggregate_champ_points": 118, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "GO", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 91, - "finish_position_in_class": 21, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "helmet": { - "pattern": 60, - "color1": "0afc05", - "color2": "121212", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 3, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 0, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 14, - "number_color1": "ffffff", - "number_color2": "cba7f4", - "number_color3": "352e74", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "808", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 45.631496, - "new_license_level": 15, - "new_sub_level": 348, - "new_ttrating": 1350, - "newi_rating": 2184, - "old_cpi": 28.325111, - "old_license_level": 14, - "old_sub_level": 232, - "old_ttrating": 1350, - "oldi_rating": 2178, - "opt_laps_complete": 0, - "position": 91, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 13, - "color1": "352e74", - "color2": "4C99D3", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 2 - } - ], - "drop_race": false, - "finish_position": 4, - "finish_position_in_class": 4, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 16, - "interval": 8321, - "laps_complete": 12, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 0, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 14, - "number_color1": "ffffff", - "number_color2": "cba7f4", - "number_color3": "352e74", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "808", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 4, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 13, - "color1": "352e74", - "color2": "4C99D3", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -440173, - "display_name": "Axis Simsports Blue", - "aggregate_champ_points": 53, - "ai": false, - "average_lap": 959921, - "best_lap_num": 8, - "best_lap_time": 944173, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 9298, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -440173, - "cust_id": 416043, - "display_name": "Thomas Pugh", - "aggregate_champ_points": 53, - "ai": false, - "average_lap": 959921, - "best_lap_num": 8, - "best_lap_time": 944173, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 9298, - "country_code": "GB", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 6, - "finish_position_in_class": 6, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 9, - "color1": "000000", - "color2": "ffffff", - "color3": "ff0000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 17, - "interval": 9298, - "laps_complete": 8, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 22, - "color1": "000000", - "color2": "ffffff", - "color3": "ff0000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "3", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 205.9527, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 3916, - "old_cpi": 120.93353, - "old_license_level": 20, - "old_sub_level": 481, - "old_ttrating": 1350, - "oldi_rating": 3922, - "opt_laps_complete": 0, - "position": 6, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 14, - "color1": "d3d3d3", - "color2": "000000", - "color3": "e70e0e" - }, - "watched": false, - "weight_penalty_kg": 2 - } - ], - "drop_race": false, - "finish_position": 5, - "finish_position_in_class": 5, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 17, - "interval": 9298, - "laps_complete": 8, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 22, - "color1": "000000", - "color2": "ffffff", - "color3": "ff0000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "3", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 5, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 14, - "color1": "d3d3d3", - "color2": "000000", - "color3": "e70e0e" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -278104, - "display_name": "Melanzani Racing 102", - "aggregate_champ_points": 21, - "ai": false, - "average_lap": 956754, - "best_lap_num": 8, - "best_lap_time": 946405, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 11530, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -278104, - "cust_id": 119560, - "display_name": "Alvin Frauenknecht", - "aggregate_champ_points": 21, - "ai": false, - "average_lap": 955919, - "best_lap_num": 8, - "best_lap_time": 946405, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 11530, - "country_code": "DE", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 7, - "finish_position_in_class": 7, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 63, - "color1": "000000", - "color2": "717171", - "color3": "e5ff00", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 1, - "interval": 11530, - "laps_complete": 6, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 0, - "color1": "ffffff", - "color2": "cccccc", - "color3": "666666", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "cccccc", - "number_color3": "666666", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "4", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 76.36244, - "new_license_level": 19, - "new_sub_level": 370, - "new_ttrating": 1350, - "newi_rating": 2133, - "old_cpi": 31.524208, - "old_license_level": 17, - "old_sub_level": 148, - "old_ttrating": 1350, - "oldi_rating": 2162, - "opt_laps_complete": 0, - "position": 7, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 22, - "color1": "000000", - "color2": "69b9eb", - "color3": "fa8c17" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -278104, - "cust_id": 946764, - "display_name": "Thomas Vogel", - "aggregate_champ_points": 21, - "ai": false, - "average_lap": 960929, - "best_lap_num": 2, - "best_lap_time": 960929, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 26054, - "country_code": "DE", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 17, - "finish_position_in_class": 17, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 59, - "color1": "020005", - "color2": "000000", - "color3": "6a07da", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 26054, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 0, - "color1": "ffffff", - "color2": "cccccc", - "color3": "666666", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "cccccc", - "number_color3": "666666", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "4", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 194.06157, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 2231, - "old_cpi": 155.29985, - "old_license_level": 20, - "old_sub_level": 499, - "old_ttrating": 1350, - "oldi_rating": 2245, - "opt_laps_complete": 0, - "position": 17, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 22, - "color1": "000000", - "color2": "69b9eb", - "color3": "fa8c17" - }, - "watched": false, - "weight_penalty_kg": 2 - } - ], - "drop_race": false, - "finish_position": 6, - "finish_position_in_class": 6, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 1, - "interval": 11530, - "laps_complete": 8, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 0, - "color1": "ffffff", - "color2": "cccccc", - "color3": "666666", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "cccccc", - "number_color3": "666666", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "4", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 6, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 22, - "color1": "000000", - "color2": "69b9eb", - "color3": "fa8c17" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -298033, - "display_name": "Piki SCT", - "aggregate_champ_points": 64, - "ai": false, - "average_lap": 953665, - "best_lap_num": 4, - "best_lap_time": 946850, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 196, - "car_name": "Ferrari 499P", - "carcfg": -1, - "champ_points": 0, - "class_interval": 11975, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -298033, - "cust_id": 1094388, - "display_name": "David Orgaz", - "aggregate_champ_points": 64, - "ai": false, - "average_lap": 953665, - "best_lap_num": 4, - "best_lap_time": 946850, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 196, - "car_name": "Ferrari 499P", - "carcfg": -1, - "champ_points": 0, - "class_interval": 11975, - "country_code": "ES", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 8, - "finish_position_in_class": 8, - "flair_id": 198, - "flair_name": "Spain", - "flair_shortname": "ESP", - "friend": false, - "helmet": { - "pattern": 20, - "color1": "111111", - "color2": "30b84e", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 8, - "interval": 11975, - "laps_complete": 9, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 196, - "pattern": 7, - "color1": "6589F4", - "color2": "C91919", - "color3": "F5FF7D", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "5", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 93.97715, - "new_license_level": 20, - "new_sub_level": 443, - "new_ttrating": 1350, - "newi_rating": 2440, - "old_cpi": 62.371994, - "old_license_level": 18, - "old_sub_level": 296, - "old_ttrating": 1350, - "oldi_rating": 2441, - "opt_laps_complete": 0, - "position": 8, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 10, - "color1": "5dddc2", - "color2": "19d137", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -298033, - "cust_id": 384294, - "display_name": "Sergio Gomez Redondo", - "aggregate_champ_points": 64, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 196, - "car_name": "Ferrari 499P", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "ES", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 95, - "finish_position_in_class": 22, - "flair_id": 198, - "flair_name": "Spain", - "flair_shortname": "ESP", - "friend": false, - "helmet": { - "pattern": 26, - "color1": "ea1a1a", - "color2": "000000", - "color3": "ff0000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 196, - "pattern": 7, - "color1": "6589F4", - "color2": "C91919", - "color3": "F5FF7D", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "5", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 149.52426, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 2026, - "old_cpi": 146.89369, - "old_license_level": 20, - "old_sub_level": 499, - "old_ttrating": 1350, - "oldi_rating": 2027, - "opt_laps_complete": 0, - "position": 95, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 10, - "color1": "5dddc2", - "color2": "19d137", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": false, - "finish_position": 7, - "finish_position_in_class": 7, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 8, - "interval": 11975, - "laps_complete": 9, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 196, - "pattern": 7, - "color1": "6589F4", - "color2": "C91919", - "color3": "F5FF7D", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "5", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 7, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 10, - "color1": "5dddc2", - "color2": "19d137", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -346577, - "display_name": "Motorsports Factory YELLOW", - "aggregate_champ_points": 75, - "ai": false, - "average_lap": 993647, - "best_lap_num": 3, - "best_lap_time": 947034, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 168, - "car_name": "Cadillac V-Series.R GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 12159, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -346577, - "cust_id": 600472, - "display_name": "Niklas Ude", - "aggregate_champ_points": 75, - "ai": false, - "average_lap": 999156, - "best_lap_num": 3, - "best_lap_time": 947034, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 168, - "car_name": "Cadillac V-Series.R GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 12159, - "country_code": "DE", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 9, - "finish_position_in_class": 9, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 56, - "color1": "52944d", - "color2": "d2d2d2", - "color3": "5b6a32", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 2, - "interval": 12159, - "laps_complete": 4, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 168, - "pattern": 21, - "color1": "172b21", - "color2": "57f97a", - "color3": "e8f9f0", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 139, - "sponsor2": 2, - "car_number": "194", - "wheel_color": "0a0f0a", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 91.08547, - "new_license_level": 20, - "new_sub_level": 438, - "new_ttrating": 1350, - "newi_rating": 2605, - "old_cpi": 85.72911, - "old_license_level": 20, - "old_sub_level": 429, - "old_ttrating": 1350, - "oldi_rating": 2603, - "opt_laps_complete": 0, - "position": 9, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 32, - "color1": "172b21", - "color2": "e8f9f0", - "color3": "57f97a" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -346577, - "cust_id": 945525, - "display_name": "Benjamin Voigt", - "aggregate_champ_points": 75, - "ai": false, - "average_lap": 982630, - "best_lap_num": 8, - "best_lap_time": 978176, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 168, - "car_name": "Cadillac V-Series.R GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 43301, - "country_code": "DE", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 19, - "finish_position_in_class": 19, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 39, - "color1": "ff0000", - "color2": "000000", - "color3": "ff0000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 43301, - "laps_complete": 4, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 168, - "pattern": 21, - "color1": "172b21", - "color2": "57f97a", - "color3": "e8f9f0", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 139, - "sponsor2": 2, - "car_number": "194", - "wheel_color": "0a0f0a", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 108.77311, - "new_license_level": 20, - "new_sub_level": 465, - "new_ttrating": 1350, - "newi_rating": 1914, - "old_cpi": 75.879616, - "old_license_level": 19, - "old_sub_level": 369, - "old_ttrating": 1350, - "oldi_rating": 1909, - "opt_laps_complete": 0, - "position": 19, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 32, - "color1": "172b21", - "color2": "e8f9f0", - "color3": "57f97a" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": false, - "finish_position": 8, - "finish_position_in_class": 8, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 2, - "interval": 12159, - "laps_complete": 8, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 168, - "pattern": 21, - "color1": "172b21", - "color2": "57f97a", - "color3": "e8f9f0", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 139, - "sponsor2": 2, - "car_number": "194", - "wheel_color": "0a0f0a", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 8, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 32, - "color1": "172b21", - "color2": "e8f9f0", - "color3": "57f97a" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -300070, - "display_name": "Tabula Rasa eSports 901", - "aggregate_champ_points": 96, - "ai": false, - "average_lap": 1001151, - "best_lap_num": 4, - "best_lap_time": 947034, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 12159, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -300070, - "cust_id": 641758, - "display_name": "Adam NS Jones", - "aggregate_champ_points": 96, - "ai": false, - "average_lap": 1001151, - "best_lap_num": 4, - "best_lap_time": 947034, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 12159, - "country_code": "GB", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 10, - "finish_position_in_class": 10, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 56, - "color1": "ffffff", - "color2": "ee3442", - "color3": "447ac0", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 3, - "interval": 12159, - "laps_complete": 5, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 16, - "color1": "000000", - "color2": "ed2129", - "color3": "001ee3", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "901", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 117.47467, - "new_license_level": 20, - "new_sub_level": 477, - "new_ttrating": 1350, - "newi_rating": 2049, - "old_cpi": 54.51905, - "old_license_level": 18, - "old_sub_level": 275, - "old_ttrating": 1350, - "oldi_rating": 2039, - "opt_laps_complete": 0, - "position": 10, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 35, - "color1": "000000", - "color2": "fb0000", - "color3": "0030ff" - }, - "watched": false, - "weight_penalty_kg": 2 - } - ], - "drop_race": false, - "finish_position": 9, - "finish_position_in_class": 9, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 3, - "interval": 12159, - "laps_complete": 5, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 16, - "color1": "000000", - "color2": "ed2129", - "color3": "001ee3", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "901", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 9, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 35, - "color1": "000000", - "color2": "fb0000", - "color3": "0030ff" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -307068, - "display_name": "Azz Tech Racing - 390", - "aggregate_champ_points": 107, - "ai": false, - "average_lap": 970770, - "best_lap_num": 3, - "best_lap_time": 948300, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 13425, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -307068, - "cust_id": 996524, - "display_name": "Gabriel Papaconstantinou", - "aggregate_champ_points": 107, - "ai": false, - "average_lap": 969949, - "best_lap_num": 3, - "best_lap_time": 948300, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 13425, - "country_code": "GB", - "division": 4, - "division_name": "Division 5", - "drop_race": false, - "finish_position": 11, - "finish_position_in_class": 11, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 28, - "color1": "bcf7e2", - "color2": "000000", - "color3": "0012ff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 2, - "interval": 13425, - "laps_complete": 5, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 17, - "color1": "ff0000", - "color2": "ffffff", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "ffffff", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "390", - "wheel_color": "000000", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 169.81465, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 1722, - "old_cpi": 48.918552, - "old_license_level": 18, - "old_sub_level": 259, - "old_ttrating": 1350, - "oldi_rating": 1708, - "opt_laps_complete": 0, - "position": 11, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 33, - "color1": "f00000", - "color2": "faff00", - "color3": "9b9b9b" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -307068, - "cust_id": 846950, - "display_name": "Matthew Cheverton", - "aggregate_champ_points": 107, - "ai": false, - "average_lap": 974878, - "best_lap_num": 7, - "best_lap_time": 974878, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 40003, - "country_code": "GB", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 18, - "finish_position_in_class": 18, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 8, - "color1": "ff0000", - "color2": "000000", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 40003, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 17, - "color1": "ff0000", - "color2": "ffffff", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "ffffff", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "390", - "wheel_color": "000000", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 208.88257, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 3137, - "old_cpi": 75.065544, - "old_license_level": 19, - "old_sub_level": 367, - "old_ttrating": 1350, - "oldi_rating": 3121, - "opt_laps_complete": 0, - "position": 18, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 33, - "color1": "f00000", - "color2": "faff00", - "color3": "9b9b9b" - }, - "watched": false, - "weight_penalty_kg": 2 - } - ], - "drop_race": false, - "finish_position": 10, - "finish_position_in_class": 10, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 2, - "interval": 13425, - "laps_complete": 7, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 17, - "color1": "ff0000", - "color2": "ffffff", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "ffffff", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "390", - "wheel_color": "000000", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 10, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 33, - "color1": "f00000", - "color2": "faff00", - "color3": "9b9b9b" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -303706, - "display_name": "Savage Sim Racing - Team 80HD", - "aggregate_champ_points": 86, - "ai": false, - "average_lap": 960735, - "best_lap_num": 11, - "best_lap_time": 949573, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 14698, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -303706, - "cust_id": 912397, - "display_name": "Clayton Sanchez2", - "aggregate_champ_points": 86, - "ai": false, - "average_lap": 960735, - "best_lap_num": 11, - "best_lap_time": 949573, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 14698, - "country_code": "US", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 12, - "finish_position_in_class": 12, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 28, - "color1": "320159", - "color2": "9705fc", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 4, - "interval": 14698, - "laps_complete": 15, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 22, - "color1": "000000", - "color2": "01ffff", - "color3": "a30dbe", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 239, - "sponsor2": 240, - "car_number": "66", - "wheel_color": "767676", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 267.99796, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 2906, - "old_cpi": 126.12498, - "old_license_level": 20, - "old_sub_level": 488, - "old_ttrating": 1350, - "oldi_rating": 2901, - "opt_laps_complete": 0, - "position": 12, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 28, - "color1": "434343", - "color2": "fbfbfb", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 2 - } - ], - "drop_race": false, - "finish_position": 11, - "finish_position_in_class": 11, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 4, - "interval": 14698, - "laps_complete": 15, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 22, - "color1": "000000", - "color2": "01ffff", - "color3": "a30dbe", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 239, - "sponsor2": 240, - "car_number": "66", - "wheel_color": "767676", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 11, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 28, - "color1": "434343", - "color2": "fbfbfb", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -199580, - "display_name": "IntoTheApex.com Gold", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 970881, - "best_lap_num": 7, - "best_lap_time": 950647, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 15772, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -199580, - "cust_id": 142817, - "display_name": "Charlie Ryan", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 966391, - "best_lap_num": 7, - "best_lap_time": 950647, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 15772, - "country_code": "US", - "division": 2, - "division_name": "Division 3", - "drop_race": true, - "finish_position": 15, - "finish_position_in_class": 15, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 2, - "color1": "000000", - "color2": "ED2129", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 3, - "interval": 15772, - "laps_complete": 7, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 1, - "color1": "ff0000", - "color2": "00ff00", - "color3": "0000ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "069", - "wheel_color": "000000", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 42.451843, - "new_license_level": 18, - "new_sub_level": 238, - "new_ttrating": 1350, - "newi_rating": 2179, - "old_cpi": 33.555664, - "old_license_level": 18, - "old_sub_level": 202, - "old_ttrating": 1350, - "oldi_rating": 2266, - "opt_laps_complete": 0, - "position": 15, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 19, - "color1": "000000", - "color2": "0d1fc5", - "color3": "e3e110" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -199580, - "cust_id": 25230, - "display_name": "Bruce Perry", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 986594, - "best_lap_num": 10, - "best_lap_time": 983094, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 48219, - "country_code": "US", - "division": 3, - "division_name": "Division 4", - "drop_race": true, - "finish_position": 24, - "finish_position_in_class": 20, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 9, - "color1": "f9f9f9", - "color2": "0098fe", - "color3": "f9ebd7", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 48219, - "laps_complete": 3, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 1, - "color1": "ff0000", - "color2": "00ff00", - "color3": "0000ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "069", - "wheel_color": "000000", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 236.64212, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 2155, - "old_cpi": 234.75113, - "old_license_level": 20, - "old_sub_level": 499, - "old_ttrating": 1350, - "oldi_rating": 2155, - "opt_laps_complete": 0, - "position": 24, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 19, - "color1": "000000", - "color2": "0d1fc5", - "color3": "e3e110" - }, - "watched": false, - "weight_penalty_kg": 2 - } - ], - "drop_race": true, - "finish_position": 12, - "finish_position_in_class": 12, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 3, - "interval": 15772, - "laps_complete": 10, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 1, - "color1": "ff0000", - "color2": "00ff00", - "color3": "0000ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "069", - "wheel_color": "000000", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 12, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 19, - "color1": "000000", - "color2": "0d1fc5", - "color3": "e3e110" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -402095, - "display_name": "Granateapfel RT", - "aggregate_champ_points": 129, - "ai": false, - "average_lap": 973169, - "best_lap_num": 11, - "best_lap_time": 950878, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 196, - "car_name": "Ferrari 499P", - "carcfg": -1, - "champ_points": 0, - "class_interval": 16003, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -402095, - "cust_id": 1165346, - "display_name": "Finn Metzler", - "aggregate_champ_points": 129, - "ai": false, - "average_lap": 973169, - "best_lap_num": 11, - "best_lap_time": 950878, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 196, - "car_name": "Ferrari 499P", - "carcfg": -1, - "champ_points": 0, - "class_interval": 16003, - "country_code": "VU", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 16, - "finish_position_in_class": 16, - "flair_id": 226, - "flair_name": "Vanuatu", - "flair_shortname": "VUT", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "372a75", - "color2": "f1732e", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 10, - "interval": 16003, - "laps_complete": 12, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 196, - "pattern": 4, - "color1": "FF0000", - "color2": "00FF00", - "color3": "0000FF", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "2", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 137.59468, - "new_license_level": 16, - "new_sub_level": 499, - "new_ttrating": 1265, - "newi_rating": 1943, - "old_cpi": 28.337646, - "old_license_level": 14, - "old_sub_level": 232, - "old_ttrating": 1265, - "oldi_rating": 1907, - "opt_laps_complete": 0, - "position": 16, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "ffffff", - "color2": "372a75", - "color3": "f1732e" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": false, - "finish_position": 13, - "finish_position_in_class": 13, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 10, - "interval": 16003, - "laps_complete": 12, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 196, - "pattern": 4, - "color1": "FF0000", - "color2": "00FF00", - "color3": "0000FF", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "2", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 13, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "ffffff", - "color2": "372a75", - "color3": "f1732e" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -288965, - "display_name": "Ecurie Col d'Oiseaux Tertre Rouge", - "aggregate_champ_points": 50, - "ai": false, - "average_lap": 1042916, - "best_lap_num": 13, - "best_lap_time": 980240, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 0, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -288965, - "cust_id": 969021, - "display_name": "Brandon Schmidt3", - "aggregate_champ_points": 50, - "ai": false, - "average_lap": 1042916, - "best_lap_num": 13, - "best_lap_time": 980240, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 0, - "country_code": "DE", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 20, - "finish_position_in_class": 0, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 28, - "color1": "9b1a25", - "color2": "798bd8", - "color3": "0b0a0b", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 7, - "interval": 45365, - "laps_complete": 13, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 11, - "color1": "ffffd1", - "color2": "9b0202", - "color3": "0d3860", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "77", - "wheel_color": "b7b7b7", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 111.61723, - "new_license_level": 20, - "new_sub_level": 469, - "new_ttrating": 1375, - "newi_rating": 2923, - "old_cpi": 93.56137, - "old_license_level": 20, - "old_sub_level": 442, - "old_ttrating": 1375, - "oldi_rating": 2926, - "opt_laps_complete": 0, - "position": 20, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 8, - "color1": "ffffd1", - "color2": "a30206", - "color3": "ffd7d1" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": false, - "finish_position": 14, - "finish_position_in_class": 0, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 7, - "interval": 45365, - "laps_complete": 13, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 11, - "color1": "ffffd1", - "color2": "9b0202", - "color3": "0d3860", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "77", - "wheel_color": "b7b7b7", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 14, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 8, - "color1": "ffffd1", - "color2": "a30206", - "color3": "ffd7d1" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -53704, - "display_name": "LITHIUM Motorsports", - "aggregate_champ_points": 125, - "ai": false, - "average_lap": 1008763, - "best_lap_num": 2, - "best_lap_time": 980346, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 106, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -53704, - "cust_id": 639803, - "display_name": "Alexander Secher", - "aggregate_champ_points": 125, - "ai": false, - "average_lap": 1012588, - "best_lap_num": 2, - "best_lap_time": 980346, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 106, - "country_code": "DK", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 21, - "finish_position_in_class": 1, - "flair_id": 56, - "flair_name": "Denmark", - "flair_shortname": "DNK", - "friend": false, - "helmet": { - "pattern": 59, - "color1": "ffffff", - "color2": "ff0505", - "color3": "6d6d6d", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 45471, - "laps_complete": 3, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 0, - "color1": "2c2c2c", - "color2": "000000", - "color3": "484848", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "15", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 100.56424, - "new_license_level": 20, - "new_sub_level": 453, - "new_ttrating": 1350, - "newi_rating": 2336, - "old_cpi": 78.96949, - "old_license_level": 19, - "old_sub_level": 375, - "old_ttrating": 1350, - "oldi_rating": 2316, - "opt_laps_complete": 0, - "position": 21, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 3, - "color1": "104C5F", - "color2": "FFFFFF", - "color3": "F0B100" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -53704, - "cust_id": 59268, - "display_name": "Danni Fugl", - "aggregate_champ_points": 125, - "ai": false, - "average_lap": 1004939, - "best_lap_num": 7, - "best_lap_time": 989535, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 9295, - "country_code": "DK", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 28, - "finish_position_in_class": 7, - "flair_id": 56, - "flair_name": "Denmark", - "flair_shortname": "DNK", - "friend": false, - "helmet": { - "pattern": 42, - "color1": "ffffff", - "color2": "a30000", - "color3": "003b72", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 54660, - "laps_complete": 4, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 0, - "color1": "2c2c2c", - "color2": "000000", - "color3": "484848", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "15", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 192.06525, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 2143, - "old_cpi": 106.53169, - "old_license_level": 20, - "old_sub_level": 462, - "old_ttrating": 1350, - "oldi_rating": 2125, - "opt_laps_complete": 0, - "position": 28, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 3, - "color1": "104C5F", - "color2": "FFFFFF", - "color3": "F0B100" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -53704, - "cust_id": 284176, - "display_name": "Martin Birmele", - "aggregate_champ_points": 125, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "DE", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 96, - "finish_position_in_class": 21, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 42, - "color1": "ffffff", - "color2": "00154c", - "color3": "710098", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 0, - "color1": "2c2c2c", - "color2": "000000", - "color3": "484848", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "15", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 142.29805, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 2430, - "old_cpi": 67.85994, - "old_license_level": 19, - "old_sub_level": 352, - "old_ttrating": 1350, - "oldi_rating": 2411, - "opt_laps_complete": 0, - "position": 96, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 3, - "color1": "104C5F", - "color2": "FFFFFF", - "color3": "F0B100" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": false, - "finish_position": 15, - "finish_position_in_class": 1, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 0, - "interval": 45471, - "laps_complete": 7, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 0, - "color1": "2c2c2c", - "color2": "000000", - "color3": "484848", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "15", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 15, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 3, - "color1": "104C5F", - "color2": "FFFFFF", - "color3": "F0B100" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -134144, - "display_name": "BLOO Racing by VR | 040", - "aggregate_champ_points": 138, - "ai": false, - "average_lap": 1012945, - "best_lap_num": 11, - "best_lap_time": 981629, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 1389, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -134144, - "cust_id": 390389, - "display_name": "Geordi Vermeulen", - "aggregate_champ_points": 138, - "ai": false, - "average_lap": 1007090, - "best_lap_num": 11, - "best_lap_time": 981629, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 1389, - "country_code": "NL", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 22, - "finish_position_in_class": 2, - "flair_id": 146, - "flair_name": "Netherlands", - "flair_shortname": "NLD", - "friend": false, - "helmet": { - "pattern": 38, - "color1": "0094ff", - "color2": "000000", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 2, - "interval": 46754, - "laps_complete": 7, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 23, - "color1": "ffffff", - "color2": "8500ff", - "color3": "2176c0", - "number_font": 7, - "number_color1": "ffffff", - "number_color2": "0094ff", - "number_color3": "000000", - "number_slant": 1, - "sponsor1": 323, - "sponsor2": 245, - "car_number": "040", - "wheel_color": "010101", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 267.66696, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 3669, - "old_cpi": 92.9855, - "old_license_level": 19, - "old_sub_level": 399, - "old_ttrating": 1350, - "oldi_rating": 3639, - "opt_laps_complete": 0, - "position": 22, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 33, - "color1": "000000", - "color2": "c2000b", - "color3": "0094ff" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -134144, - "cust_id": 565681, - "display_name": "Ivan Chambers", - "aggregate_champ_points": 138, - "ai": false, - "average_lap": 1024655, - "best_lap_num": 7, - "best_lap_time": 997208, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 16968, - "country_code": "UA", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 34, - "finish_position_in_class": 13, - "flair_id": 220, - "flair_name": "Ukraine", - "flair_shortname": "UKR", - "friend": false, - "helmet": { - "pattern": 65, - "color1": "0002ff", - "color2": "000000", - "color3": "12ff00", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 5, - "interval": 62333, - "laps_complete": 4, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 23, - "color1": "ffffff", - "color2": "8500ff", - "color3": "2176c0", - "number_font": 7, - "number_color1": "ffffff", - "number_color2": "0094ff", - "number_color3": "000000", - "number_slant": 1, - "sponsor1": 323, - "sponsor2": 245, - "car_number": "040", - "wheel_color": "010101", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 113.62682, - "new_license_level": 20, - "new_sub_level": 472, - "new_ttrating": 1350, - "newi_rating": 1904, - "old_cpi": 59.518505, - "old_license_level": 19, - "old_sub_level": 332, - "old_ttrating": 1350, - "oldi_rating": 1889, - "opt_laps_complete": 0, - "position": 34, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 33, - "color1": "000000", - "color2": "c2000b", - "color3": "0094ff" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": false, - "finish_position": 16, - "finish_position_in_class": 2, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 7, - "interval": 46754, - "laps_complete": 11, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 23, - "color1": "ffffff", - "color2": "8500ff", - "color3": "2176c0", - "number_font": 7, - "number_color1": "ffffff", - "number_color2": "0094ff", - "number_color3": "000000", - "number_slant": 1, - "sponsor1": 323, - "sponsor2": 245, - "car_number": "040", - "wheel_color": "010101", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 16, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 33, - "color1": "000000", - "color2": "c2000b", - "color3": "0094ff" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -385439, - "display_name": "TRC Endurance 01", - "aggregate_champ_points": 12, - "ai": false, - "average_lap": 1014004, - "best_lap_num": 6, - "best_lap_time": 982570, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 2330, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -385439, - "cust_id": 1118747, - "display_name": "Zack Heiderstadt", - "aggregate_champ_points": 12, - "ai": false, - "average_lap": 1014004, - "best_lap_num": 6, - "best_lap_time": 982570, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 2330, - "country_code": "US", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 23, - "finish_position_in_class": 3, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 59, - "color1": "aeaeae", - "color2": "0c00b1", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 5, - "interval": 47695, - "laps_complete": 11, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 5, - "color1": "FFFFFF", - "color2": "941FB7", - "color3": "80FF00", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "9", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 70.23805, - "new_license_level": 16, - "new_sub_level": 457, - "new_ttrating": 1295, - "newi_rating": 3101, - "old_cpi": 38.609806, - "old_license_level": 14, - "old_sub_level": 279, - "old_ttrating": 1295, - "oldi_rating": 3129, - "opt_laps_complete": 0, - "position": 23, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 30, - "color1": "2508d3", - "color2": "000000", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": false, - "finish_position": 17, - "finish_position_in_class": 3, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 5, - "interval": 47695, - "laps_complete": 11, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 5, - "color1": "FFFFFF", - "color2": "941FB7", - "color3": "80FF00", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "9", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 17, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 30, - "color1": "2508d3", - "color2": "000000", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -169135, - "display_name": "BMW M Plower #557", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1028341, - "best_lap_num": 13, - "best_lap_time": 987454, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 7214, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -169135, - "cust_id": 374188, - "display_name": "Lars Wiele", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 993383, - "best_lap_num": 13, - "best_lap_time": 987454, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 7214, - "country_code": "DE", - "division": 1, - "division_name": "Division 2", - "drop_race": true, - "finish_position": 25, - "finish_position_in_class": 4, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 2, - "color1": "6f9556", - "color2": "111111", - "color3": "efd600", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 1, - "interval": 52579, - "laps_complete": 3, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 1, - "color1": "6f9556", - "color2": "111111", - "color3": "efd600", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "557", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 108.826164, - "new_license_level": 20, - "new_sub_level": 465, - "new_ttrating": 1350, - "newi_rating": 3266, - "old_cpi": 140.98111, - "old_license_level": 20, - "old_sub_level": 499, - "old_ttrating": 1350, - "oldi_rating": 3386, - "opt_laps_complete": 0, - "position": 25, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 19, - "color1": "0c0fb4", - "color2": "299467", - "color3": "d1f100" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -169135, - "cust_id": 500311, - "display_name": "Joshua Easey", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1022639, - "best_lap_num": 4, - "best_lap_time": 998269, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 18029, - "country_code": "GB", - "division": 2, - "division_name": "Division 3", - "drop_race": true, - "finish_position": 35, - "finish_position_in_class": 14, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "cccccc", - "color2": "111111", - "color3": "ed1c24", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 63394, - "laps_complete": 5, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 1, - "color1": "6f9556", - "color2": "111111", - "color3": "efd600", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "557", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 211.58789, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 2446, - "old_cpi": 209.03923, - "old_license_level": 20, - "old_sub_level": 499, - "old_ttrating": 1350, - "oldi_rating": 2446, - "opt_laps_complete": 0, - "position": 35, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 19, - "color1": "0c0fb4", - "color2": "299467", - "color3": "d1f100" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -169135, - "cust_id": 638713, - "display_name": "Barnabás Tóth", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1052948, - "best_lap_num": 8, - "best_lap_time": 1002428, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 22188, - "country_code": "HU", - "division": 4, - "division_name": "Division 5", - "drop_race": true, - "finish_position": 38, - "finish_position_in_class": 17, - "flair_id": 93, - "flair_name": "Hungary", - "flair_shortname": "HUN", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "ee3442", - "color2": "ffffff", - "color3": "447ac0", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 3, - "interval": 67553, - "laps_complete": 5, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 1, - "color1": "6f9556", - "color2": "111111", - "color3": "efd600", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "557", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 32.60926, - "new_license_level": 17, - "new_sub_level": 153, - "new_ttrating": 1370, - "newi_rating": 1729, - "old_cpi": 33.197025, - "old_license_level": 17, - "old_sub_level": 156, - "old_ttrating": 1370, - "oldi_rating": 1729, - "opt_laps_complete": 0, - "position": 38, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 19, - "color1": "0c0fb4", - "color2": "299467", - "color3": "d1f100" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": true, - "finish_position": 18, - "finish_position_in_class": 4, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 4, - "interval": 52579, - "laps_complete": 13, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 1, - "color1": "6f9556", - "color2": "111111", - "color3": "efd600", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "557", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 18, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 19, - "color1": "0c0fb4", - "color2": "299467", - "color3": "d1f100" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -348667, - "display_name": "Speed Eagles Gold", - "aggregate_champ_points": 75, - "ai": false, - "average_lap": 1007844, - "best_lap_num": 4, - "best_lap_time": 987545, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 7305, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -348667, - "cust_id": 532947, - "display_name": "Dawid Dlugokecki", - "aggregate_champ_points": 75, - "ai": false, - "average_lap": 1007844, - "best_lap_num": 4, - "best_lap_time": 987545, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 7305, - "country_code": "PL", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 26, - "finish_position_in_class": 5, - "flair_id": 167, - "flair_name": "Poland", - "flair_shortname": "POL", - "friend": false, - "helmet": { - "pattern": 26, - "color1": "740004", - "color2": "000000", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 11, - "interval": 52670, - "laps_complete": 10, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 6, - "color1": "23548f", - "color2": "000000", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "000000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "44", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 79.3237, - "new_license_level": 19, - "new_sub_level": 375, - "new_ttrating": 1350, - "newi_rating": 2670, - "old_cpi": 65.30674, - "old_license_level": 19, - "old_sub_level": 346, - "old_ttrating": 1350, - "oldi_rating": 2667, - "opt_laps_complete": 0, - "position": 26, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 25, - "color1": "000000", - "color2": "1d70b8", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": false, - "finish_position": 19, - "finish_position_in_class": 5, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 11, - "interval": 52670, - "laps_complete": 10, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 6, - "color1": "23548f", - "color2": "000000", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "000000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "44", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 19, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 25, - "color1": "000000", - "color2": "1d70b8", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -217878, - "display_name": "Katzes Racing League #Beta", - "aggregate_champ_points": 62, - "ai": false, - "average_lap": 1004644, - "best_lap_num": 2, - "best_lap_time": 988732, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 8492, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -217878, - "cust_id": 936404, - "display_name": "Alexander Kraft", - "aggregate_champ_points": 62, - "ai": false, - "average_lap": 1009909, - "best_lap_num": 2, - "best_lap_time": 988732, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 8492, - "country_code": "DE", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 27, - "finish_position_in_class": 6, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "ffffff", - "color2": "f06e34", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 3, - "interval": 53857, - "laps_complete": 6, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 22, - "color1": "000000", - "color2": "ff7800", - "color3": "005f99", - "number_font": 3, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "042", - "wheel_color": "ffffff", - "rim_type": 3 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 130.4349, - "new_license_level": 20, - "new_sub_level": 493, - "new_ttrating": 1350, - "newi_rating": 3381, - "old_cpi": 176.48804, - "old_license_level": 20, - "old_sub_level": 499, - "old_ttrating": 1350, - "oldi_rating": 3383, - "opt_laps_complete": 0, - "position": 27, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 21, - "color1": "000000", - "color2": "ededed", - "color3": "F98E1D" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -217878, - "cust_id": 240174, - "display_name": "Steven Lexow", - "aggregate_champ_points": 62, - "ai": false, - "average_lap": 998326, - "best_lap_num": 11, - "best_lap_time": 991687, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 11447, - "country_code": "DE", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 31, - "finish_position_in_class": 10, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 9, - "color1": "a80000", - "color2": "000000", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 2, - "interval": 56812, - "laps_complete": 6, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 22, - "color1": "000000", - "color2": "ff7800", - "color3": "005f99", - "number_font": 3, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "042", - "wheel_color": "ffffff", - "rim_type": 3 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 151.4998, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 2787, - "old_cpi": 86.411354, - "old_license_level": 20, - "old_sub_level": 430, - "old_ttrating": 1350, - "oldi_rating": 2788, - "opt_laps_complete": 0, - "position": 31, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 21, - "color1": "000000", - "color2": "ededed", - "color3": "F98E1D" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": false, - "finish_position": 20, - "finish_position_in_class": 6, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 5, - "interval": 53857, - "laps_complete": 12, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 22, - "color1": "000000", - "color2": "ff7800", - "color3": "005f99", - "number_font": 3, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "042", - "wheel_color": "ffffff", - "rim_type": 3 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 20, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 21, - "color1": "000000", - "color2": "ededed", - "color3": "F98E1D" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -433705, - "display_name": "SIM RACING GRID ACADEMY - Obsidian", - "aggregate_champ_points": 37, - "ai": false, - "average_lap": 1007342, - "best_lap_num": 4, - "best_lap_time": 990616, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 10376, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -433705, - "cust_id": 1048672, - "display_name": "Joshua De Lange", - "aggregate_champ_points": 37, - "ai": false, - "average_lap": 1009998, - "best_lap_num": 4, - "best_lap_time": 990616, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 10376, - "country_code": "NL", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 29, - "finish_position_in_class": 8, - "flair_id": 146, - "flair_name": "Netherlands", - "flair_shortname": "NLD", - "friend": false, - "helmet": { - "pattern": 59, - "color1": "07a9e5", - "color2": "981a53", - "color3": "f981a5", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 2, - "interval": 55741, - "laps_complete": 7, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 0, - "color1": "ffffff", - "color2": "cccccc", - "color3": "666666", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "10", - "wheel_color": "ffb649", - "rim_type": 2 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 94.37405, - "new_license_level": 20, - "new_sub_level": 443, - "new_ttrating": 1350, - "newi_rating": 2529, - "old_cpi": 76.501915, - "old_license_level": 20, - "old_sub_level": 411, - "old_ttrating": 1350, - "oldi_rating": 2540, - "opt_laps_complete": 0, - "position": 29, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 4, - "color1": "4a98ff", - "color2": "0012fa", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -433705, - "cust_id": 1049578, - "display_name": "Tim Rupp", - "aggregate_champ_points": 37, - "ai": false, - "average_lap": 1003625, - "best_lap_num": 13, - "best_lap_time": 994376, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 14136, - "country_code": "DE", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 33, - "finish_position_in_class": 12, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 22, - "color1": "9f0202", - "color2": "111111", - "color3": "d9f357", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 9, - "interval": 59501, - "laps_complete": 6, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 0, - "color1": "ffffff", - "color2": "cccccc", - "color3": "666666", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "10", - "wheel_color": "ffb649", - "rim_type": 2 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 63.569153, - "new_license_level": 18, - "new_sub_level": 298, - "new_ttrating": 1369, - "newi_rating": 2203, - "old_cpi": 27.171917, - "old_license_level": 17, - "old_sub_level": 125, - "old_ttrating": 1369, - "oldi_rating": 2212, - "opt_laps_complete": 0, - "position": 33, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 4, - "color1": "4a98ff", - "color2": "0012fa", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": false, - "finish_position": 21, - "finish_position_in_class": 7, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 11, - "interval": 55741, - "laps_complete": 13, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 0, - "color1": "ffffff", - "color2": "cccccc", - "color3": "666666", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "10", - "wheel_color": "ffb649", - "rim_type": 2 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 21, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 4, - "color1": "4a98ff", - "color2": "0012fa", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -479845, - "display_name": "DSDF Racing LMP2", - "aggregate_champ_points": 25, - "ai": false, - "average_lap": 1026472, - "best_lap_num": 1, - "best_lap_time": 991685, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 11445, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -479845, - "cust_id": 1010930, - "display_name": "James Seale", - "aggregate_champ_points": 25, - "ai": false, - "average_lap": 1026472, - "best_lap_num": 1, - "best_lap_time": 991685, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 11445, - "country_code": "GB", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 30, - "finish_position_in_class": 9, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 4, - "color1": "0a0a0a", - "color2": "ffffff", - "color3": "ff0000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 4, - "interval": 56810, - "laps_complete": 8, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 21, - "color1": "ffffff", - "color2": "ff0000", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "ff0000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 221, - "sponsor2": 7, - "car_number": "155", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 59.186558, - "new_license_level": 12, - "new_sub_level": 488, - "new_ttrating": 1649, - "newi_rating": 2544, - "old_cpi": 26.148556, - "old_license_level": 11, - "old_sub_level": 319, - "old_ttrating": 1649, - "oldi_rating": 2563, - "opt_laps_complete": 0, - "position": 30, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 32, - "color1": "000000", - "color2": "ff0000", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": false, - "finish_position": 22, - "finish_position_in_class": 8, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 4, - "interval": 56810, - "laps_complete": 8, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 21, - "color1": "ffffff", - "color2": "ff0000", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "ff0000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 221, - "sponsor2": 7, - "car_number": "155", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 22, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 32, - "color1": "000000", - "color2": "ff0000", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -479098, - "display_name": "Lightning Racing Team - #86", - "aggregate_champ_points": 100, - "ai": false, - "average_lap": 1064942, - "best_lap_num": 14, - "best_lap_time": 993290, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 13050, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -479098, - "cust_id": 1133857, - "display_name": "Pierre Peytral Yagüe", - "aggregate_champ_points": 100, - "ai": false, - "average_lap": 1063393, - "best_lap_num": 14, - "best_lap_time": 993290, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 13050, - "country_code": "FR", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 32, - "finish_position_in_class": 11, - "flair_id": 71, - "flair_name": "France", - "flair_shortname": "FRA", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "fc0706", - "color2": "111111", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 6, - "interval": 58415, - "laps_complete": 7, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 12, - "color1": "ff78ff", - "color2": "000000", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "43", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 189.7976, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 2834, - "old_cpi": 46.85185, - "old_license_level": 18, - "old_sub_level": 252, - "old_ttrating": 1350, - "oldi_rating": 2816, - "opt_laps_complete": 0, - "position": 32, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 21, - "color1": "f200ff", - "color2": "ffffff", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -479098, - "cust_id": 1172993, - "display_name": "Àngel García", - "aggregate_champ_points": 100, - "ai": false, - "average_lap": 1056511, - "best_lap_num": 4, - "best_lap_time": 1004239, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 23999, - "country_code": "ES", - "division": 5, - "division_name": "Division 6", - "drop_race": false, - "finish_position": 39, - "finish_position_in_class": 18, - "flair_id": 198, - "flair_name": "Spain", - "flair_shortname": "ESP", - "friend": false, - "helmet": { - "pattern": 59, - "color1": "0a0a0a", - "color2": "0c0ce3", - "color3": "e20aff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 3, - "interval": 69364, - "laps_complete": 4, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 12, - "color1": "ff78ff", - "color2": "000000", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "43", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 118.58717, - "new_license_level": 16, - "new_sub_level": 499, - "new_ttrating": 1304, - "newi_rating": 1676, - "old_cpi": 36.530888, - "old_license_level": 15, - "old_sub_level": 315, - "old_ttrating": 1304, - "oldi_rating": 1662, - "opt_laps_complete": 0, - "position": 39, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 21, - "color1": "f200ff", - "color2": "ffffff", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -479098, - "cust_id": 1168652, - "display_name": "Eric Bigas", - "aggregate_champ_points": 100, - "ai": false, - "average_lap": 1077731, - "best_lap_num": 8, - "best_lap_time": 1008009, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 27769, - "country_code": "ES", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 40, - "finish_position_in_class": 19, - "flair_id": 198, - "flair_name": "Spain", - "flair_shortname": "ESP", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "1f2892", - "color2": "7de54c", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 3, - "interval": 73134, - "laps_complete": 4, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 12, - "color1": "ff78ff", - "color2": "000000", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "43", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 113.96372, - "new_license_level": 16, - "new_sub_level": 499, - "new_ttrating": 1423, - "newi_rating": 2502, - "old_cpi": 33.72117, - "old_license_level": 14, - "old_sub_level": 258, - "old_ttrating": 1423, - "oldi_rating": 2490, - "opt_laps_complete": 0, - "position": 40, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 21, - "color1": "f200ff", - "color2": "ffffff", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": false, - "finish_position": 23, - "finish_position_in_class": 9, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 12, - "interval": 58415, - "laps_complete": 15, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 12, - "color1": "ff78ff", - "color2": "000000", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "43", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 23, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 21, - "color1": "f200ff", - "color2": "ffffff", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -188879, - "display_name": "Wildfire Racing Dragon", - "aggregate_champ_points": 112, - "ai": false, - "average_lap": 1029244, - "best_lap_num": 5, - "best_lap_time": 998926, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 18686, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -188879, - "cust_id": 788035, - "display_name": "Devon Allies2", - "aggregate_champ_points": 112, - "ai": false, - "average_lap": 1015115, - "best_lap_num": 5, - "best_lap_time": 998926, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 18686, - "country_code": "ZA", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 36, - "finish_position_in_class": 15, - "flair_id": 195, - "flair_name": "South Africa", - "flair_shortname": "ZAF", - "friend": false, - "helmet": { - "pattern": 34, - "color1": "ffffff", - "color2": "ff0909", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 3, - "interval": 64051, - "laps_complete": 8, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 1, - "color1": "0db700", - "color2": "ffffff", - "color3": "000000", - "number_font": 16, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "129", - "wheel_color": "929292", - "rim_type": 2 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 97.231285, - "new_license_level": 20, - "new_sub_level": 448, - "new_ttrating": 1350, - "newi_rating": 2077, - "old_cpi": 48.267376, - "old_license_level": 18, - "old_sub_level": 257, - "old_ttrating": 1350, - "oldi_rating": 2063, - "opt_laps_complete": 0, - "position": 36, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 20, - "color1": "000000", - "color2": "06ff00", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -188879, - "cust_id": 751768, - "display_name": "Sean Nisizaka Smit", - "aggregate_champ_points": 112, - "ai": false, - "average_lap": 1066922, - "best_lap_num": 11, - "best_lap_time": 1009109, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 28869, - "country_code": "AU", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 41, - "finish_position_in_class": 20, - "flair_id": 16, - "flair_name": "Australia", - "flair_shortname": "AUS", - "friend": false, - "helmet": { - "pattern": 6, - "color1": "ffffff", - "color2": "ff0000", - "color3": "0075ff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 8, - "interval": 74234, - "laps_complete": 4, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 1, - "color1": "0db700", - "color2": "ffffff", - "color3": "000000", - "number_font": 16, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "129", - "wheel_color": "929292", - "rim_type": 2 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 61.77475, - "new_license_level": 18, - "new_sub_level": 294, - "new_ttrating": 1336, - "newi_rating": 2123, - "old_cpi": 44.15168, - "old_license_level": 18, - "old_sub_level": 243, - "old_ttrating": 1336, - "oldi_rating": 2114, - "opt_laps_complete": 0, - "position": 41, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 20, - "color1": "000000", - "color2": "06ff00", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": false, - "finish_position": 24, - "finish_position_in_class": 10, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 11, - "interval": 64051, - "laps_complete": 12, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 1, - "color1": "0db700", - "color2": "ffffff", - "color3": "000000", - "number_font": 16, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "129", - "wheel_color": "929292", - "rim_type": 2 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 24, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 20, - "color1": "000000", - "color2": "06ff00", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -310391, - "display_name": "4ORGE Lions", - "aggregate_champ_points": 87, - "ai": false, - "average_lap": 1035818, - "best_lap_num": 4, - "best_lap_time": 1000900, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 20660, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -310391, - "cust_id": 635525, - "display_name": "Rich Gregory", - "aggregate_champ_points": 87, - "ai": false, - "average_lap": 1035818, - "best_lap_num": 4, - "best_lap_time": 1000900, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 20660, - "country_code": "GB", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 37, - "finish_position_in_class": 16, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 45, - "color1": "ffffff", - "color2": "000000", - "color3": "ff0000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 2, - "interval": 66025, - "laps_complete": 6, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 7, - "color1": "ff0000", - "color2": "ffffff", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "11", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 79.90745, - "new_license_level": 19, - "new_sub_level": 377, - "new_ttrating": 1350, - "newi_rating": 2137, - "old_cpi": 61.902596, - "old_license_level": 19, - "old_sub_level": 338, - "old_ttrating": 1350, - "oldi_rating": 2129, - "opt_laps_complete": 0, - "position": 37, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 13, - "color1": "ff0000", - "color2": "870005", - "color3": "2900ef" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": false, - "finish_position": 25, - "finish_position_in_class": 11, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 2, - "interval": 66025, - "laps_complete": 6, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 7, - "color1": "ff0000", - "color2": "ffffff", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "11", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 25, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 13, - "color1": "ff0000", - "color2": "870005", - "color3": "2900ef" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -159911, - "display_name": "Austrian Simracers Blue", - "aggregate_champ_points": 62, - "ai": false, - "average_lap": 1068447, - "best_lap_num": 2, - "best_lap_time": 1042431, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 0, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -159911, - "cust_id": 1003691, - "display_name": "David Kinzlhofer", - "aggregate_champ_points": 62, - "ai": false, - "average_lap": 1066432, - "best_lap_num": 2, - "best_lap_time": 1042431, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 0, - "country_code": "AT", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 42, - "finish_position_in_class": 0, - "flair_id": 17, - "flair_name": "Austria", - "flair_shortname": "AUT", - "friend": false, - "helmet": { - "pattern": 36, - "color1": "8700ff", - "color2": "b500ff", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 2, - "interval": 107556, - "laps_complete": 5, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "ffffff", - "color2": "000000", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "000000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "255", - "wheel_color": "7a7767", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 59.09998, - "new_license_level": 18, - "new_sub_level": 287, - "new_ttrating": 1350, - "newi_rating": 2814, - "old_cpi": 39.52622, - "old_license_level": 18, - "old_sub_level": 227, - "old_ttrating": 1350, - "oldi_rating": 2816, - "opt_laps_complete": 0, - "position": 42, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 19, - "color1": "000000", - "color2": "FFFFFF", - "color3": "FF0000" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -159911, - "cust_id": 915496, - "display_name": "Julian Weilguny", - "aggregate_champ_points": 62, - "ai": false, - "average_lap": 1076507, - "best_lap_num": 8, - "best_lap_time": 1076507, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 34076, - "country_code": "AT", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 87, - "finish_position_in_class": 45, - "flair_id": 17, - "flair_name": "Austria", - "flair_shortname": "AUT", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "ffffff", - "color2": "000000", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 11, - "interval": 141632, - "laps_complete": 4, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "ffffff", - "color2": "000000", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "000000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "255", - "wheel_color": "7a7767", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 37.487766, - "new_license_level": 17, - "new_sub_level": 175, - "new_ttrating": 1137, - "newi_rating": 2163, - "old_cpi": 30.539976, - "old_license_level": 17, - "old_sub_level": 143, - "old_ttrating": 1137, - "oldi_rating": 2165, - "opt_laps_complete": 0, - "position": 87, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 19, - "color1": "000000", - "color2": "FFFFFF", - "color3": "FF0000" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 26, - "finish_position_in_class": 0, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 13, - "interval": 107556, - "laps_complete": 9, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "ffffff", - "color2": "000000", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "000000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "255", - "wheel_color": "7a7767", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 26, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 19, - "color1": "000000", - "color2": "FFFFFF", - "color3": "FF0000" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -316329, - "display_name": "Milwauchibre Racing Team", - "aggregate_champ_points": 39, - "ai": false, - "average_lap": 1046166, - "best_lap_num": 2, - "best_lap_time": 1043678, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 1247, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -316329, - "cust_id": 879626, - "display_name": "Nicolas De Saint Riquier", - "aggregate_champ_points": 39, - "ai": false, - "average_lap": 1046166, - "best_lap_num": 2, - "best_lap_time": 1043678, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 1247, - "country_code": "FR", - "division": 4, - "division_name": "Division 5", - "drop_race": false, - "finish_position": 43, - "finish_position_in_class": 1, - "flair_id": 71, - "flair_name": "France", - "flair_shortname": "FRA", - "friend": false, - "helmet": { - "pattern": 35, - "color1": "000000", - "color2": "ff0000", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 14, - "interval": 108803, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 8, - "color1": "FFFFFF", - "color2": "6900FF", - "color3": "FF00ED", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "27", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 49.39754, - "new_license_level": 18, - "new_sub_level": 260, - "new_ttrating": 1350, - "newi_rating": 2166, - "old_cpi": 32.16721, - "old_license_level": 17, - "old_sub_level": 151, - "old_ttrating": 1350, - "oldi_rating": 2187, - "opt_laps_complete": 0, - "position": 43, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 22, - "color1": "404040", - "color2": "bebebe", - "color3": "b78a00" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -316329, - "cust_id": 371715, - "display_name": "Dimitri Picard", - "aggregate_champ_points": 39, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "FR", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 88, - "finish_position_in_class": 46, - "flair_id": 71, - "flair_name": "France", - "flair_shortname": "FRA", - "friend": false, - "helmet": { - "pattern": 48, - "color1": "404040", - "color2": "6949e9", - "color3": "b78a00", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 8, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 8, - "color1": "FFFFFF", - "color2": "6900FF", - "color3": "FF00ED", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "27", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 94.97356, - "new_license_level": 20, - "new_sub_level": 444, - "new_ttrating": 1350, - "newi_rating": 2222, - "old_cpi": 70.97905, - "old_license_level": 19, - "old_sub_level": 359, - "old_ttrating": 1350, - "oldi_rating": 2241, - "opt_laps_complete": 0, - "position": 88, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 22, - "color1": "404040", - "color2": "bebebe", - "color3": "b78a00" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 27, - "finish_position_in_class": 1, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 22, - "interval": 108803, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 8, - "color1": "FFFFFF", - "color2": "6900FF", - "color3": "FF00ED", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "27", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 27, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 22, - "color1": "404040", - "color2": "bebebe", - "color3": "b78a00" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -480134, - "display_name": "Club 100 Sim Racers", - "aggregate_champ_points": 119, - "ai": false, - "average_lap": 1108602, - "best_lap_num": 12, - "best_lap_time": 1044537, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 2106, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -480134, - "cust_id": 133722, - "display_name": "James DeHavillande", - "aggregate_champ_points": 119, - "ai": false, - "average_lap": 1111329, - "best_lap_num": 12, - "best_lap_time": 1044537, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 2106, - "country_code": "GB", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 44, - "finish_position_in_class": 2, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 60, - "color1": "eb0000", - "color2": "0009db", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 12, - "interval": 109662, - "laps_complete": 9, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 11, - "color1": "000000", - "color2": "ff0000", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "125", - "wheel_color": "b32e2e", - "rim_type": 3 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 92.82705, - "new_license_level": 19, - "new_sub_level": 399, - "new_ttrating": 1350, - "newi_rating": 3886, - "old_cpi": 38.696655, - "old_license_level": 18, - "old_sub_level": 224, - "old_ttrating": 1350, - "oldi_rating": 3868, - "opt_laps_complete": 0, - "position": 44, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 3, - "color1": "000000", - "color2": "ee6b00", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -480134, - "cust_id": 1183749, - "display_name": "Jack Mitchell-Lowe", - "aggregate_champ_points": 119, - "ai": false, - "average_lap": 1104058, - "best_lap_num": 3, - "best_lap_time": 1049790, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 7359, - "country_code": "GB", - "division": 4, - "division_name": "Division 5", - "drop_race": false, - "finish_position": 57, - "finish_position_in_class": 15, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 62, - "color1": "006ee0", - "color2": "e0af00", - "color3": "ff5c00", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 114915, - "laps_complete": 3, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 11, - "color1": "000000", - "color2": "ff0000", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "125", - "wheel_color": "b32e2e", - "rim_type": 3 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 81.00438, - "new_license_level": 16, - "new_sub_level": 479, - "new_ttrating": 1350, - "newi_rating": 2129, - "old_cpi": 52.43604, - "old_license_level": 15, - "old_sub_level": 369, - "old_ttrating": 1350, - "oldi_rating": 2117, - "opt_laps_complete": 0, - "position": 57, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 3, - "color1": "000000", - "color2": "ee6b00", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 28, - "finish_position_in_class": 2, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 12, - "interval": 109662, - "laps_complete": 12, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 11, - "color1": "000000", - "color2": "ff0000", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "125", - "wheel_color": "b32e2e", - "rim_type": 3 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 28, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 3, - "color1": "000000", - "color2": "ee6b00", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -287336, - "display_name": "W2W Racing Red", - "aggregate_champ_points": 133, - "ai": false, - "average_lap": 1049212, - "best_lap_num": 4, - "best_lap_time": 1045639, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 3208, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -287336, - "cust_id": 392017, - "display_name": "Jorge Reyes3", - "aggregate_champ_points": 133, - "ai": false, - "average_lap": 1049212, - "best_lap_num": 4, - "best_lap_time": 1045639, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 3208, - "country_code": "BO", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 45, - "finish_position_in_class": 3, - "flair_id": 28, - "flair_name": "Bolivia", - "flair_shortname": "BES", - "friend": false, - "helmet": { - "pattern": 28, - "color1": "0012ff", - "color2": "3145a5", - "color3": "f00000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 13, - "interval": 110764, - "laps_complete": 7, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 15, - "color1": "f3ff06", - "color2": "0e9720", - "color3": "f3ff06", - "number_font": 53, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 2, - "sponsor1": 221, - "sponsor2": 0, - "car_number": "26", - "wheel_color": "000000", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 45.28575, - "new_license_level": 18, - "new_sub_level": 247, - "new_ttrating": 1350, - "newi_rating": 2245, - "old_cpi": 32.465076, - "old_license_level": 17, - "old_sub_level": 153, - "old_ttrating": 1350, - "oldi_rating": 2221, - "opt_laps_complete": 0, - "position": 45, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 10, - "color1": "ad1210", - "color2": "000000", - "color3": "ad1210" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 29, - "finish_position_in_class": 3, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 13, - "interval": 110764, - "laps_complete": 7, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 15, - "color1": "f3ff06", - "color2": "0e9720", - "color3": "f3ff06", - "number_font": 53, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 2, - "sponsor1": 221, - "sponsor2": 0, - "car_number": "26", - "wheel_color": "000000", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 29, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 10, - "color1": "ad1210", - "color2": "000000", - "color3": "ad1210" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -420531, - "display_name": "Angler Racing", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1057651, - "best_lap_num": 5, - "best_lap_time": 1046825, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 4394, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -420531, - "cust_id": 941901, - "display_name": "Paddy Armstrong", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1057651, - "best_lap_num": 5, - "best_lap_time": 1046825, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 4394, - "country_code": "SCT", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 46, - "finish_position_in_class": 4, - "flair_id": 237, - "flair_name": "Scotland", - "flair_shortname": "SCT", - "friend": false, - "helmet": { - "pattern": 57, - "color1": "838383", - "color2": "ffffff", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 10, - "interval": 111950, - "laps_complete": 10, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "000000", - "color2": "000000", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "6", - "wheel_color": "c8bd9f", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 78.350105, - "new_license_level": 20, - "new_sub_level": 415, - "new_ttrating": 1260, - "newi_rating": 2157, - "old_cpi": 111.6487, - "old_license_level": 20, - "old_sub_level": 469, - "old_ttrating": 1260, - "oldi_rating": 2252, - "opt_laps_complete": 0, - "position": 46, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "000000", - "color2": "ff00de", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 30, - "finish_position_in_class": 4, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 10, - "interval": 111950, - "laps_complete": 10, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "000000", - "color2": "000000", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "6", - "wheel_color": "c8bd9f", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 30, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "000000", - "color2": "ff00de", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -467249, - "display_name": "Simtec Racing Team #474", - "aggregate_champ_points": 44, - "ai": false, - "average_lap": 1051535, - "best_lap_num": 2, - "best_lap_time": 1047236, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 4805, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -467249, - "cust_id": 1174682, - "display_name": "Craig Law", - "aggregate_champ_points": 44, - "ai": false, - "average_lap": 1051535, - "best_lap_num": 2, - "best_lap_time": 1047236, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 4805, - "country_code": "NIR", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 47, - "finish_position_in_class": 5, - "flair_id": 239, - "flair_name": "Northern Ireland", - "flair_shortname": "NIR", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "ffffff", - "color2": "4076bc", - "color3": "c8d92b", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 1, - "interval": 112361, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 3, - "color1": "42c6ef", - "color2": "111111", - "color3": "0b0b0a", - "number_font": 9, - "number_color1": "000000", - "number_color2": "f4f4f4", - "number_color3": "fafafa", - "number_slant": 0, - "sponsor1": 221, - "sponsor2": 0, - "car_number": "472", - "wheel_color": "000000", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 54.50814, - "new_license_level": 18, - "new_sub_level": 275, - "new_ttrating": 1350, - "newi_rating": 2559, - "old_cpi": 42.040413, - "old_license_level": 18, - "old_sub_level": 236, - "old_ttrating": 1350, - "oldi_rating": 2567, - "opt_laps_complete": 0, - "position": 47, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 5, - "color1": "11e5e5", - "color2": "030303", - "color3": "030303" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 31, - "finish_position_in_class": 5, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 1, - "interval": 112361, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 3, - "color1": "42c6ef", - "color2": "111111", - "color3": "0b0b0a", - "number_font": 9, - "number_color1": "000000", - "number_color2": "f4f4f4", - "number_color3": "fafafa", - "number_slant": 0, - "sponsor1": 221, - "sponsor2": 0, - "car_number": "472", - "wheel_color": "000000", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 31, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 5, - "color1": "11e5e5", - "color2": "030303", - "color3": "030303" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -296646, - "display_name": "Uprise Motorsports", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1058787, - "best_lap_num": 2, - "best_lap_time": 1047907, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 5476, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -296646, - "cust_id": 448051, - "display_name": "Diego Roldan", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1054415, - "best_lap_num": 2, - "best_lap_time": 1047907, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 5476, - "country_code": "MX", - "division": 4, - "division_name": "Division 5", - "drop_race": false, - "finish_position": 48, - "finish_position_in_class": 6, - "flair_id": 134, - "flair_name": "Mexico", - "flair_shortname": "MEX", - "friend": false, - "helmet": { - "pattern": 9, - "color1": "0c0c0c", - "color2": "ffffff", - "color3": "de0019", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 3, - "interval": 113032, - "laps_complete": 3, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 2, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "53", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 38.158615, - "new_license_level": 14, - "new_sub_level": 278, - "new_ttrating": 1350, - "newi_rating": 1896, - "old_cpi": 28.696474, - "old_license_level": 14, - "old_sub_level": 234, - "old_ttrating": 1350, - "oldi_rating": 1912, - "opt_laps_complete": 0, - "position": 48, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 4, - "color1": "000000", - "color2": "ff190f", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -296646, - "cust_id": 320315, - "display_name": "AJ Heider", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1060108, - "best_lap_num": 9, - "best_lap_time": 1050840, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 8409, - "country_code": "BA", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 63, - "finish_position_in_class": 21, - "flair_id": 29, - "flair_name": "Bosnia and Herzegovina", - "flair_shortname": "BIH", - "friend": false, - "helmet": { - "pattern": 66, - "color1": "000000", - "color2": "0500cb", - "color3": "00d0ff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 4, - "interval": 115965, - "laps_complete": 4, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 2, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "53", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 94.6242, - "new_license_level": 20, - "new_sub_level": 444, - "new_ttrating": 1350, - "newi_rating": 2675, - "old_cpi": 97.26926, - "old_license_level": 20, - "old_sub_level": 448, - "old_ttrating": 1350, - "oldi_rating": 2698, - "opt_laps_complete": 0, - "position": 63, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 4, - "color1": "000000", - "color2": "ff190f", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -296646, - "cust_id": 252495, - "display_name": "Chris Lilly", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1067941, - "best_lap_num": 5, - "best_lap_time": 1067941, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 25510, - "country_code": "US", - "division": 5, - "division_name": "Division 6", - "drop_race": false, - "finish_position": 86, - "finish_position_in_class": 44, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 46, - "color1": "000000", - "color2": "0057ff", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 5, - "interval": 133066, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 2, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "53", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 24.062311, - "new_license_level": 14, - "new_sub_level": 206, - "new_ttrating": 1350, - "newi_rating": 1493, - "old_cpi": 24.925983, - "old_license_level": 14, - "old_sub_level": 212, - "old_ttrating": 1350, - "oldi_rating": 1493, - "opt_laps_complete": 0, - "position": 86, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 4, - "color1": "000000", - "color2": "ff190f", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -296646, - "cust_id": 348147, - "display_name": "Connor Trifari", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "GS", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 98, - "finish_position_in_class": 53, - "flair_id": 196, - "flair_name": "South Georgia & South Sandwich Islands", - "flair_shortname": "SGS", - "friend": false, - "helmet": { - "pattern": 2, - "color1": "ff0000", - "color2": "ffffff", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 4, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 2, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "53", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 50.541496, - "new_license_level": 18, - "new_sub_level": 264, - "new_ttrating": 1350, - "newi_rating": 3082, - "old_cpi": 56.433605, - "old_license_level": 18, - "old_sub_level": 281, - "old_ttrating": 1350, - "oldi_rating": 3100, - "opt_laps_complete": 0, - "position": 98, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 4, - "color1": "000000", - "color2": "ff190f", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 32, - "finish_position_in_class": 6, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 16, - "interval": 113032, - "laps_complete": 9, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 2, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "53", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 32, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 4, - "color1": "000000", - "color2": "ff190f", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -398466, - "display_name": "Leche Condensada Racing Team", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1055351, - "best_lap_num": 2, - "best_lap_time": 1047918, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 5487, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -398466, - "cust_id": 1110076, - "display_name": "Abel Ros", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1051451, - "best_lap_num": 2, - "best_lap_time": 1047918, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 5487, - "country_code": "ES", - "division": 3, - "division_name": "Division 4", - "drop_race": true, - "finish_position": 49, - "finish_position_in_class": 7, - "flair_id": 198, - "flair_name": "Spain", - "flair_shortname": "ESP", - "friend": false, - "helmet": { - "pattern": 58, - "color1": "ee0000", - "color2": "e0fa0c", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 3, - "interval": 113043, - "laps_complete": 4, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 8, - "color1": "F5F9F4", - "color2": "000000", - "color3": "EDF4EE", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "28", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 63.223633, - "new_license_level": 19, - "new_sub_level": 341, - "new_ttrating": 1364, - "newi_rating": 2580, - "old_cpi": 79.276924, - "old_license_level": 19, - "old_sub_level": 375, - "old_ttrating": 1364, - "oldi_rating": 2590, - "opt_laps_complete": 0, - "position": 49, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 33, - "color1": "103fe6", - "color2": "f3f3f3", - "color3": "f60909" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -398466, - "cust_id": 401283, - "display_name": "Alex Serrano Martinez", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1057837, - "best_lap_num": 10, - "best_lap_time": 1056746, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 14315, - "country_code": "ES", - "division": 4, - "division_name": "Division 5", - "drop_race": true, - "finish_position": 78, - "finish_position_in_class": 36, - "flair_id": 198, - "flair_name": "Spain", - "flair_shortname": "ESP", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "ffffff", - "color2": "fc0706", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 1, - "interval": 121871, - "laps_complete": 3, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 8, - "color1": "F5F9F4", - "color2": "000000", - "color3": "EDF4EE", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "28", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 55.97871, - "new_license_level": 19, - "new_sub_level": 323, - "new_ttrating": 1305, - "newi_rating": 2303, - "old_cpi": 56.21595, - "old_license_level": 19, - "old_sub_level": 323, - "old_ttrating": 1305, - "oldi_rating": 2303, - "opt_laps_complete": 0, - "position": 78, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 33, - "color1": "103fe6", - "color2": "f3f3f3", - "color3": "f60909" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -398466, - "cust_id": 1107477, - "display_name": "Carlos Saek", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1062077, - "best_lap_num": 7, - "best_lap_time": 1062077, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 19646, - "country_code": "ES", - "division": 4, - "division_name": "Division 5", - "drop_race": true, - "finish_position": 83, - "finish_position_in_class": 41, - "flair_id": 198, - "flair_name": "Spain", - "flair_shortname": "ESP", - "friend": false, - "helmet": { - "pattern": 34, - "color1": "000000", - "color2": "7bfcab", - "color3": "515151", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 6, - "interval": 127202, - "laps_complete": 3, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 8, - "color1": "F5F9F4", - "color2": "000000", - "color3": "EDF4EE", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "28", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 28.689007, - "new_license_level": 17, - "new_sub_level": 134, - "new_ttrating": 1350, - "newi_rating": 1833, - "old_cpi": 42.800854, - "old_license_level": 18, - "old_sub_level": 239, - "old_ttrating": 1350, - "oldi_rating": 1845, - "opt_laps_complete": 0, - "position": 83, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 33, - "color1": "103fe6", - "color2": "f3f3f3", - "color3": "f60909" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": true, - "finish_position": 33, - "finish_position_in_class": 7, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 10, - "interval": 113043, - "laps_complete": 10, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 8, - "color1": "F5F9F4", - "color2": "000000", - "color3": "EDF4EE", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "28", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 33, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 33, - "color1": "103fe6", - "color2": "f3f3f3", - "color3": "f60909" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -175849, - "display_name": "Maniti Racing Yellow", - "aggregate_champ_points": 93, - "ai": false, - "average_lap": 1173438, - "best_lap_num": 5, - "best_lap_time": 1047997, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 156, - "car_name": "Mercedes-AMG GT3 2020", - "carcfg": -1, - "champ_points": 0, - "class_interval": 5566, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -175849, - "cust_id": 1060062, - "display_name": "Marvin Bär", - "aggregate_champ_points": 93, - "ai": false, - "average_lap": 1173438, - "best_lap_num": 5, - "best_lap_time": 1047997, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 156, - "car_name": "Mercedes-AMG GT3 2020", - "carcfg": -1, - "champ_points": 0, - "class_interval": 5566, - "country_code": "DE", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 50, - "finish_position_in_class": 8, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 49, - "color1": "ffffff", - "color2": "bbbbbb", - "color3": "4a4a4a", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 6, - "interval": 113122, - "laps_complete": 7, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 156, - "pattern": 0, - "color1": "000000", - "color2": "08ad22", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "78", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 99, - "new_cpi": 92.41379, - "new_license_level": 19, - "new_sub_level": 399, - "new_ttrating": 1350, - "newi_rating": 3092, - "old_cpi": 42.426422, - "old_license_level": 18, - "old_sub_level": 237, - "old_ttrating": 1350, - "oldi_rating": 3083, - "opt_laps_complete": 0, - "position": 50, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 29, - "color1": "00ff19", - "color2": "04ff00", - "color3": "42ff00" - }, - "watched": false, - "weight_penalty_kg": 3 - }, - { - "team_id": -175849, - "cust_id": 1347955, - "display_name": "Kai Kuhlmann", - "aggregate_champ_points": 93, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 156, - "car_name": "Mercedes-AMG GT3 2020", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "DE", - "division": 5, - "division_name": "Division 6", - "drop_race": false, - "finish_position": 92, - "finish_position_in_class": 49, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "000000", - "color2": "000000", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 1, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 156, - "pattern": 0, - "color1": "000000", - "color2": "08ad22", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "78", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 99, - "new_cpi": 81.67377, - "new_license_level": 19, - "new_sub_level": 380, - "new_ttrating": 1350, - "newi_rating": 1918, - "old_cpi": 63.97849, - "old_license_level": 19, - "old_sub_level": 343, - "old_ttrating": 1350, - "oldi_rating": 1911, - "opt_laps_complete": 0, - "position": 92, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 29, - "color1": "00ff19", - "color2": "04ff00", - "color3": "42ff00" - }, - "watched": false, - "weight_penalty_kg": 3 - }, - { - "team_id": -175849, - "cust_id": 314054, - "display_name": "Jan-Eike Zanders", - "aggregate_champ_points": 93, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 156, - "car_name": "Mercedes-AMG GT3 2020", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "DE", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 99, - "finish_position_in_class": 54, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": true, - "helmet": { - "pattern": 8, - "color1": "47190b", - "color2": "111111", - "color3": "ffee47", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 1, - "interval": -1, - "laps_complete": 1, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 156, - "pattern": 0, - "color1": "000000", - "color2": "08ad22", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "78", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 99, - "new_cpi": 53.88748, - "new_license_level": 18, - "new_sub_level": 274, - "new_ttrating": 1350, - "newi_rating": 2504, - "old_cpi": 40.080284, - "old_license_level": 18, - "old_sub_level": 229, - "old_ttrating": 1350, - "oldi_rating": 2496, - "opt_laps_complete": 0, - "position": 99, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 29, - "color1": "00ff19", - "color2": "04ff00", - "color3": "42ff00" - }, - "watched": false, - "weight_penalty_kg": 3 - } - ], - "drop_race": false, - "finish_position": 34, - "finish_position_in_class": 8, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 7, - "interval": 113122, - "laps_complete": 9, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 156, - "pattern": 0, - "color1": "000000", - "color2": "08ad22", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "78", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 99, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 34, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 29, - "color1": "00ff19", - "color2": "04ff00", - "color3": "42ff00" - }, - "watched": false, - "weight_penalty_kg": 3 - }, - { - "team_id": -472037, - "display_name": "APEXNOVA SIMRACING PURPLE", - "aggregate_champ_points": 97, - "ai": false, - "average_lap": 1070368, - "best_lap_num": 11, - "best_lap_time": 1048121, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 5690, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -472037, - "cust_id": 363097, - "display_name": "Tobias Kracht", - "aggregate_champ_points": 97, - "ai": false, - "average_lap": 1075986, - "best_lap_num": 11, - "best_lap_time": 1048121, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 5690, - "country_code": "DE", - "division": 6, - "division_name": "Division 7", - "drop_race": false, - "finish_position": 51, - "finish_position_in_class": 9, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 35, - "color1": "2575b0", - "color2": "7e1c6e", - "color3": "f90000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 8, - "interval": 113246, - "laps_complete": 7, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 8, - "color1": "fb0ead", - "color2": "424242", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "17", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 57.572872, - "new_license_level": 15, - "new_sub_level": 384, - "new_ttrating": 1350, - "newi_rating": 2797, - "old_cpi": 31.962917, - "old_license_level": 14, - "old_sub_level": 250, - "old_ttrating": 1350, - "oldi_rating": 2783, - "opt_laps_complete": 0, - "position": 51, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 17, - "color1": "2F2F2F", - "color2": "404334", - "color3": "2F4F4F" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -472037, - "cust_id": 1375930, - "display_name": "Bartosz Swiechowicz2", - "aggregate_champ_points": 97, - "ai": false, - "average_lap": 1063346, - "best_lap_num": 4, - "best_lap_time": 1053114, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 10683, - "country_code": "DE", - "division": 4, - "division_name": "Division 5", - "drop_race": false, - "finish_position": 71, - "finish_position_in_class": 29, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "2e358f", - "color2": "ec232d", - "color3": "0a0a0a", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 5, - "interval": 118239, - "laps_complete": 4, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 8, - "color1": "fb0ead", - "color2": "424242", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "17", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 96.417336, - "new_license_level": 20, - "new_sub_level": 447, - "new_ttrating": 1350, - "newi_rating": 2294, - "old_cpi": 48.92359, - "old_license_level": 19, - "old_sub_level": 302, - "old_ttrating": 1350, - "oldi_rating": 2282, - "opt_laps_complete": 0, - "position": 71, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 17, - "color1": "2F2F2F", - "color2": "404334", - "color3": "2F4F4F" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 35, - "finish_position_in_class": 9, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 13, - "interval": 113246, - "laps_complete": 11, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 8, - "color1": "fb0ead", - "color2": "424242", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "17", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 35, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 17, - "color1": "2F2F2F", - "color2": "404334", - "color3": "2F4F4F" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -457552, - "display_name": "DB3 MOTORSPORT | REMESI", - "aggregate_champ_points": 137, - "ai": false, - "average_lap": 1054360, - "best_lap_num": 5, - "best_lap_time": 1048264, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 5833, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -457552, - "cust_id": 673113, - "display_name": "Gerd Zechner", - "aggregate_champ_points": 137, - "ai": false, - "average_lap": 1051391, - "best_lap_num": 5, - "best_lap_time": 1048264, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 5833, - "country_code": "AT", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 52, - "finish_position_in_class": 10, - "flair_id": 17, - "flair_name": "Austria", - "flair_shortname": "AUT", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "111111", - "color2": "ffffff", - "color3": "fc0706", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 6, - "interval": 113389, - "laps_complete": 6, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "77fa03", - "color2": "ed2129", - "color3": "b0ec02", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "13", - "wheel_color": "000000", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 83.24767, - "new_license_level": 19, - "new_sub_level": 383, - "new_ttrating": 1350, - "newi_rating": 3031, - "old_cpi": 65.06985, - "old_license_level": 19, - "old_sub_level": 346, - "old_ttrating": 1350, - "oldi_rating": 3014, - "opt_laps_complete": 0, - "position": 52, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 11, - "color1": "d9003b", - "color2": "ffffff", - "color3": "0011f9" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -457552, - "cust_id": 1366564, - "display_name": "Christian Seibold", - "aggregate_champ_points": 137, - "ai": false, - "average_lap": 1060299, - "best_lap_num": 8, - "best_lap_time": 1050531, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 8100, - "country_code": "AT", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 61, - "finish_position_in_class": 19, - "flair_id": 17, - "flair_name": "Austria", - "flair_shortname": "AUT", - "friend": false, - "helmet": { - "pattern": 67, - "color1": "393939", - "color2": "ea6500", - "color3": "0a0a0a", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 9, - "interval": 115656, - "laps_complete": 3, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "77fa03", - "color2": "ed2129", - "color3": "b0ec02", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "13", - "wheel_color": "000000", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 92.53391, - "new_license_level": 19, - "new_sub_level": 399, - "new_ttrating": 1358, - "newi_rating": 2464, - "old_cpi": 69.27189, - "old_license_level": 19, - "old_sub_level": 355, - "old_ttrating": 1358, - "oldi_rating": 2437, - "opt_laps_complete": 0, - "position": 61, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 11, - "color1": "d9003b", - "color2": "ffffff", - "color3": "0011f9" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 36, - "finish_position_in_class": 10, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 15, - "interval": 113389, - "laps_complete": 9, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "77fa03", - "color2": "ed2129", - "color3": "b0ec02", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "13", - "wheel_color": "000000", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 36, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 11, - "color1": "d9003b", - "color2": "ffffff", - "color3": "0011f9" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -415465, - "display_name": "WFLM Motorsport Vortex", - "aggregate_champ_points": 71, - "ai": false, - "average_lap": 1107063, - "best_lap_num": 6, - "best_lap_time": 1048837, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 6406, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -415465, - "cust_id": 1294295, - "display_name": "Florïan Chevreuïl", - "aggregate_champ_points": 71, - "ai": false, - "average_lap": 1107063, - "best_lap_num": 6, - "best_lap_time": 1048837, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 6406, - "country_code": "FR", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 53, - "finish_position_in_class": 11, - "flair_id": 71, - "flair_name": "France", - "flair_shortname": "FRA", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 7, - "interval": 113962, - "laps_complete": 10, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 3, - "color1": "FF7000", - "color2": "73ECFF", - "color3": "0F0017", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "29", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 33.223705, - "new_license_level": 17, - "new_sub_level": 156, - "new_ttrating": 1350, - "newi_rating": 2683, - "old_cpi": 31.96522, - "old_license_level": 17, - "old_sub_level": 150, - "old_ttrating": 1350, - "oldi_rating": 2683, - "opt_laps_complete": 0, - "position": 53, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 28, - "color1": "0f0017", - "color2": "ff0021", - "color3": "ddecec" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 37, - "finish_position_in_class": 11, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 7, - "interval": 113962, - "laps_complete": 10, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 3, - "color1": "FF7000", - "color2": "73ECFF", - "color3": "0F0017", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "29", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 37, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 28, - "color1": "0f0017", - "color2": "ff0021", - "color3": "ddecec" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -327700, - "display_name": "SFR ITALIA", - "aggregate_champ_points": 84, - "ai": false, - "average_lap": 1105839, - "best_lap_num": 10, - "best_lap_time": 1048852, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 6421, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -327700, - "cust_id": 1005007, - "display_name": "Andrea Lamponi", - "aggregate_champ_points": 84, - "ai": false, - "average_lap": 1127052, - "best_lap_num": 10, - "best_lap_time": 1048852, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 6421, - "country_code": "IT", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 54, - "finish_position_in_class": 12, - "flair_id": 101, - "flair_name": "Italy", - "flair_shortname": "ITA", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "5481fc", - "color2": "ffffff", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 4, - "interval": 113977, - "laps_complete": 7, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 11, - "color1": "D4FF0F", - "color2": "00FF00", - "color3": "111111", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "19", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 75.235085, - "new_license_level": 19, - "new_sub_level": 367, - "new_ttrating": 1302, - "newi_rating": 2284, - "old_cpi": 72.3915, - "old_license_level": 19, - "old_sub_level": 362, - "old_ttrating": 1302, - "oldi_rating": 2276, - "opt_laps_complete": 0, - "position": 54, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 22, - "color1": "faff00", - "color2": "000000", - "color3": "7ef22e" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -327700, - "cust_id": 814236, - "display_name": "Alan Binacchi", - "aggregate_champ_points": 84, - "ai": false, - "average_lap": 1088869, - "best_lap_num": 5, - "best_lap_time": 1051913, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 9482, - "country_code": "IT", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 66, - "finish_position_in_class": 24, - "flair_id": 101, - "flair_name": "Italy", - "flair_shortname": "ITA", - "friend": false, - "helmet": { - "pattern": 11, - "color1": "10e632", - "color2": "daed1c", - "color3": "cccccc", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 2, - "interval": 117038, - "laps_complete": 5, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 11, - "color1": "D4FF0F", - "color2": "00FF00", - "color3": "111111", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "19", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 77.29383, - "new_license_level": 19, - "new_sub_level": 372, - "new_ttrating": 1309, - "newi_rating": 2487, - "old_cpi": 67.18803, - "old_license_level": 19, - "old_sub_level": 350, - "old_ttrating": 1309, - "oldi_rating": 2481, - "opt_laps_complete": 0, - "position": 66, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 22, - "color1": "faff00", - "color2": "000000", - "color3": "7ef22e" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 38, - "finish_position_in_class": 12, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 6, - "interval": 113977, - "laps_complete": 12, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 11, - "color1": "D4FF0F", - "color2": "00FF00", - "color3": "111111", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "19", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 38, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 22, - "color1": "faff00", - "color2": "000000", - "color3": "7ef22e" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -480821, - "display_name": "Team PaceLab - Red", - "aggregate_champ_points": 115, - "ai": false, - "average_lap": 1057834, - "best_lap_num": 6, - "best_lap_time": 1049090, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 6659, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -480821, - "cust_id": 1287257, - "display_name": "Burak Egemen Yılmaz", - "aggregate_champ_points": 115, - "ai": false, - "average_lap": 1056422, - "best_lap_num": 6, - "best_lap_time": 1049090, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 6659, - "country_code": "TR", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 55, - "finish_position_in_class": 13, - "flair_id": 215, - "flair_name": "Türkiye", - "flair_shortname": "TUR", - "friend": false, - "helmet": { - "pattern": 36, - "color1": "ffffff", - "color2": "ff0000", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 8, - "interval": 114215, - "laps_complete": 7, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 1, - "color1": "ff0000", - "color2": "00ff00", - "color3": "0000ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "23", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 77.44804, - "new_license_level": 16, - "new_sub_level": 472, - "new_ttrating": 1307, - "newi_rating": 2450, - "old_cpi": 26.810757, - "old_license_level": 14, - "old_sub_level": 223, - "old_ttrating": 1307, - "oldi_rating": 2426, - "opt_laps_complete": 0, - "position": 55, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 21, - "color1": "000000", - "color2": "de00ff", - "color3": "230057" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -480821, - "cust_id": 1082557, - "display_name": "Ömer Baykal", - "aggregate_champ_points": 115, - "ai": false, - "average_lap": 1060657, - "best_lap_num": 9, - "best_lap_time": 1056041, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 13610, - "country_code": "TR", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 77, - "finish_position_in_class": 35, - "flair_id": 215, - "flair_name": "Türkiye", - "flair_shortname": "TUR", - "friend": false, - "helmet": { - "pattern": 14, - "color1": "000000", - "color2": "ffa100", - "color3": "ff9100", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 6, - "interval": 121166, - "laps_complete": 3, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 1, - "color1": "ff0000", - "color2": "00ff00", - "color3": "0000ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "23", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 75.97765, - "new_license_level": 19, - "new_sub_level": 369, - "new_ttrating": 1353, - "newi_rating": 2634, - "old_cpi": 37.180595, - "old_license_level": 17, - "old_sub_level": 174, - "old_ttrating": 1353, - "oldi_rating": 2611, - "opt_laps_complete": 0, - "position": 77, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 21, - "color1": "000000", - "color2": "de00ff", - "color3": "230057" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 39, - "finish_position_in_class": 13, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 14, - "interval": 114215, - "laps_complete": 10, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 1, - "color1": "ff0000", - "color2": "00ff00", - "color3": "0000ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "23", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 39, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 21, - "color1": "000000", - "color2": "de00ff", - "color3": "230057" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -467225, - "display_name": "DCS Racing Green", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1107588, - "best_lap_num": 11, - "best_lap_time": 1049592, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 7161, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -467225, - "cust_id": 1193552, - "display_name": "Nikos Nota", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1126673, - "best_lap_num": 11, - "best_lap_time": 1049592, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 7161, - "country_code": "GR", - "division": 3, - "division_name": "Division 4", - "drop_race": true, - "finish_position": 56, - "finish_position_in_class": 14, - "flair_id": 80, - "flair_name": "Greece", - "flair_shortname": "GRC", - "friend": false, - "helmet": { - "pattern": 67, - "color1": "ffffff", - "color2": "fff500", - "color3": "fff500", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 5, - "interval": 114717, - "laps_complete": 7, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "e0aa42", - "color2": "0ea2eb", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "22", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 29.04801, - "new_license_level": 13, - "new_sub_level": 194, - "new_ttrating": 1305, - "newi_rating": 3058, - "old_cpi": 21.94943, - "old_license_level": 13, - "old_sub_level": 150, - "old_ttrating": 1305, - "oldi_rating": 3142, - "opt_laps_complete": 0, - "position": 56, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 33, - "color1": "ffffff", - "color2": "60a6c9", - "color3": "1a1f43" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -467225, - "cust_id": 618064, - "display_name": "Lexi Taylor", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1094864, - "best_lap_num": 4, - "best_lap_time": 1057606, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 15175, - "country_code": "GB", - "division": 7, - "division_name": "Division 8", - "drop_race": true, - "finish_position": 79, - "finish_position_in_class": 37, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 35, - "color1": "ffe116", - "color2": "117900", - "color3": "00046b", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 122731, - "laps_complete": 6, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "e0aa42", - "color2": "0ea2eb", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "22", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 37.60446, - "new_license_level": 15, - "new_sub_level": 319, - "new_ttrating": 1350, - "newi_rating": 1864, - "old_cpi": 36.71224, - "old_license_level": 15, - "old_sub_level": 316, - "old_ttrating": 1350, - "oldi_rating": 1874, - "opt_laps_complete": 0, - "position": 79, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 33, - "color1": "ffffff", - "color2": "60a6c9", - "color3": "1a1f43" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": true, - "finish_position": 40, - "finish_position_in_class": 14, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 5, - "interval": 114717, - "laps_complete": 13, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "e0aa42", - "color2": "0ea2eb", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "22", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 40, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 33, - "color1": "ffffff", - "color2": "60a6c9", - "color3": "1a1f43" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -298823, - "display_name": "TEN MAD MEN Alpha", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1135797, - "best_lap_num": 7, - "best_lap_time": 1050137, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 7706, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -298823, - "cust_id": 376421, - "display_name": "Jorge Leiva Ruiz", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1135797, - "best_lap_num": 7, - "best_lap_time": 1050137, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 7706, - "country_code": "CL", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 58, - "finish_position_in_class": 16, - "flair_id": 44, - "flair_name": "Chile", - "flair_shortname": "CHL", - "friend": false, - "helmet": { - "pattern": 67, - "color1": "000000", - "color2": "00a0bc", - "color3": "c7c7c7", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 2, - "interval": 115262, - "laps_complete": 9, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "ffffff", - "color2": "0013a5", - "color3": "ff5c00", - "number_font": 0, - "number_color1": "f3eeeb", - "number_color2": "ffffff", - "number_color3": "ffffff", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "010", - "wheel_color": "32312f", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 65.18878, - "new_license_level": 19, - "new_sub_level": 346, - "new_ttrating": 1350, - "newi_rating": 2447, - "old_cpi": 66.34217, - "old_license_level": 19, - "old_sub_level": 348, - "old_ttrating": 1350, - "oldi_rating": 2484, - "opt_laps_complete": 0, - "position": 58, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "e1ce30", - "color2": "ebe8e8", - "color3": "1c46ed" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 41, - "finish_position_in_class": 15, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 2, - "interval": 115262, - "laps_complete": 9, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "ffffff", - "color2": "0013a5", - "color3": "ff5c00", - "number_font": 0, - "number_color1": "f3eeeb", - "number_color2": "ffffff", - "number_color3": "ffffff", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "010", - "wheel_color": "32312f", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 41, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "e1ce30", - "color2": "ebe8e8", - "color3": "1c46ed" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -413546, - "display_name": "Should be Fine Motorsports", - "aggregate_champ_points": 110, - "ai": false, - "average_lap": 1154469, - "best_lap_num": 3, - "best_lap_time": 1050330, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 7899, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -413546, - "cust_id": 1092119, - "display_name": "Chris Singh", - "aggregate_champ_points": 110, - "ai": false, - "average_lap": 1154469, - "best_lap_num": 3, - "best_lap_time": 1050330, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 7899, - "country_code": "US", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 59, - "finish_position_in_class": 17, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 22, - "color1": "f9ff00", - "color2": "ff0000", - "color3": "00c341", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 17, - "interval": 115455, - "laps_complete": 15, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 17, - "color1": "efd600", - "color2": "111111", - "color3": "d7162d", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "25", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 54.59016, - "new_license_level": 18, - "new_sub_level": 275, - "new_ttrating": 1350, - "newi_rating": 2797, - "old_cpi": 36.08681, - "old_license_level": 17, - "old_sub_level": 169, - "old_ttrating": 1350, - "oldi_rating": 2777, - "opt_laps_complete": 0, - "position": 59, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 33, - "color1": "00f035", - "color2": "020101", - "color3": "e61010" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 42, - "finish_position_in_class": 16, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 17, - "interval": 115455, - "laps_complete": 15, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 17, - "color1": "efd600", - "color2": "111111", - "color3": "d7162d", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "25", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 42, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 33, - "color1": "00f035", - "color2": "020101", - "color3": "e61010" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -454234, - "display_name": "TKG Simsport PRO", - "aggregate_champ_points": 128, - "ai": false, - "average_lap": 1140863, - "best_lap_num": 6, - "best_lap_time": 1050431, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 8000, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -454234, - "cust_id": 678081, - "display_name": "Carter A Thompson", - "aggregate_champ_points": 128, - "ai": false, - "average_lap": 1155048, - "best_lap_num": 6, - "best_lap_time": 1050431, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 8000, - "country_code": "US", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 60, - "finish_position_in_class": 18, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 59, - "color1": "ff2202", - "color2": "000000", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 6, - "interval": 115556, - "laps_complete": 6, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 1, - "color1": "ff0000", - "color2": "00ff00", - "color3": "0000ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "20", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 31.197826, - "new_license_level": 14, - "new_sub_level": 246, - "new_ttrating": 1350, - "newi_rating": 2617, - "old_cpi": 24.810728, - "old_license_level": 14, - "old_sub_level": 211, - "old_ttrating": 1350, - "oldi_rating": 2600, - "opt_laps_complete": 0, - "position": 60, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 8, - "color1": "000000", - "color2": "000000", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -454234, - "cust_id": 698537, - "display_name": "Ben Garey2", - "aggregate_champ_points": 128, - "ai": false, - "average_lap": 1131406, - "best_lap_num": 11, - "best_lap_time": 1059621, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 17190, - "country_code": "US", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 81, - "finish_position_in_class": 39, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 49, - "color1": "ffffff", - "color2": "ffffff", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 5, - "interval": 124746, - "laps_complete": 9, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 1, - "color1": "ff0000", - "color2": "00ff00", - "color3": "0000ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "20", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 25.255388, - "new_license_level": 10, - "new_sub_level": 272, - "new_ttrating": 1350, - "newi_rating": 1750, - "old_cpi": 17.60599, - "old_license_level": 9, - "old_sub_level": 178, - "old_ttrating": 1350, - "oldi_rating": 1733, - "opt_laps_complete": 0, - "position": 81, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 8, - "color1": "000000", - "color2": "000000", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 43, - "finish_position_in_class": 17, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 11, - "interval": 115556, - "laps_complete": 15, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 1, - "color1": "ff0000", - "color2": "00ff00", - "color3": "0000ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "20", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 43, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 8, - "color1": "000000", - "color2": "000000", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -483219, - "display_name": "Velocity X Rhythm Racing Team", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1103325, - "best_lap_num": 3, - "best_lap_time": 1050561, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 188, - "car_name": "McLaren 720S GT3 EVO", - "carcfg": -1, - "champ_points": 0, - "class_interval": 8130, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -483219, - "cust_id": 1283272, - "display_name": "Mario García Muriel", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1103325, - "best_lap_num": 3, - "best_lap_time": 1050561, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 188, - "car_name": "McLaren 720S GT3 EVO", - "carcfg": -1, - "champ_points": 0, - "class_interval": 8130, - "country_code": "ES", - "division": 1, - "division_name": "Division 2", - "drop_race": true, - "finish_position": 62, - "finish_position_in_class": 20, - "flair_id": 198, - "flair_name": "Spain", - "flair_shortname": "ESP", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "231f20", - "color2": "808080", - "color3": "f26722", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 13, - "interval": 115686, - "laps_complete": 3, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 188, - "pattern": 1, - "color1": "FF0000", - "color2": "00FF00", - "color3": "0000FF", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "31", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 97, - "new_cpi": 43.159573, - "new_license_level": 17, - "new_sub_level": 197, - "new_ttrating": 1350, - "newi_rating": 3435, - "old_cpi": 30.48215, - "old_license_level": 17, - "old_sub_level": 143, - "old_ttrating": 1350, - "oldi_rating": 3486, - "opt_laps_complete": 0, - "position": 62, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "231f20", - "color2": "808080", - "color3": "f26722" - }, - "watched": false, - "weight_penalty_kg": 5 - }, - { - "team_id": -483219, - "cust_id": 1233001, - "display_name": "Mauro Agustin Arriola Aranela", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 188, - "car_name": "McLaren 720S GT3 EVO", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "AR", - "division": 3, - "division_name": "Division 4", - "drop_race": true, - "finish_position": 94, - "finish_position_in_class": 51, - "flair_id": 13, - "flair_name": "Argentina", - "flair_shortname": "ARG", - "friend": false, - "helmet": { - "pattern": 9, - "color1": "0222f4", - "color2": "f9f9f9", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 2, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 188, - "pattern": 1, - "color1": "FF0000", - "color2": "00FF00", - "color3": "0000FF", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "31", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 97, - "new_cpi": 21.797512, - "new_license_level": 10, - "new_sub_level": 249, - "new_ttrating": 1350, - "newi_rating": 1665, - "old_cpi": 21.029593, - "old_license_level": 10, - "old_sub_level": 243, - "old_ttrating": 1350, - "oldi_rating": 1689, - "opt_laps_complete": 0, - "position": 94, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "231f20", - "color2": "808080", - "color3": "f26722" - }, - "watched": false, - "weight_penalty_kg": 5 - } - ], - "drop_race": true, - "finish_position": 44, - "finish_position_in_class": 18, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 15, - "interval": 115686, - "laps_complete": 3, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 188, - "pattern": 1, - "color1": "FF0000", - "color2": "00FF00", - "color3": "0000FF", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "31", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 97, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 44, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "231f20", - "color2": "808080", - "color3": "f26722" - }, - "watched": false, - "weight_penalty_kg": 5 - }, - { - "team_id": -287243, - "display_name": "Team MFM - SURVIVE!", - "aggregate_champ_points": 142, - "ai": false, - "average_lap": 1076492, - "best_lap_num": 9, - "best_lap_time": 1050900, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 8469, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -287243, - "cust_id": 585611, - "display_name": "Finley Fitzsimmons", - "aggregate_champ_points": 142, - "ai": false, - "average_lap": 1076492, - "best_lap_num": 9, - "best_lap_time": 1050900, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 8469, - "country_code": "GB", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 64, - "finish_position_in_class": 22, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 24, - "color1": "000000", - "color2": "c9fc00", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 3, - "interval": 116025, - "laps_complete": 9, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 17, - "color1": "dddddd", - "color2": "ffff00", - "color3": "252525", - "number_font": 0, - "number_color1": "000000", - "number_color2": "737373", - "number_color3": "ffffff", - "number_slant": 4, - "sponsor1": 138, - "sponsor2": 7, - "car_number": "21", - "wheel_color": "ffff00", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 73.801315, - "new_license_level": 19, - "new_sub_level": 365, - "new_ttrating": 1350, - "newi_rating": 2703, - "old_cpi": 48.809418, - "old_license_level": 18, - "old_sub_level": 259, - "old_ttrating": 1350, - "oldi_rating": 2685, - "opt_laps_complete": 0, - "position": 64, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 7, - "color1": "252525", - "color2": "DDDDDD", - "color3": "004895" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -287243, - "cust_id": 638036, - "display_name": "Cody Gayer", - "aggregate_champ_points": 142, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "US", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 90, - "finish_position_in_class": 48, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 67, - "color1": "01020e", - "color2": "d5c325", - "color3": "c91b20", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 1, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 17, - "color1": "dddddd", - "color2": "ffff00", - "color3": "252525", - "number_font": 0, - "number_color1": "000000", - "number_color2": "737373", - "number_color3": "ffffff", - "number_slant": 4, - "sponsor1": 138, - "sponsor2": 7, - "car_number": "21", - "wheel_color": "ffff00", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 81.2526, - "new_license_level": 20, - "new_sub_level": 420, - "new_ttrating": 1350, - "newi_rating": 3094, - "old_cpi": 86.255455, - "old_license_level": 20, - "old_sub_level": 429, - "old_ttrating": 1350, - "oldi_rating": 3072, - "opt_laps_complete": 0, - "position": 90, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 7, - "color1": "252525", - "color2": "DDDDDD", - "color3": "004895" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 45, - "finish_position_in_class": 19, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 3, - "interval": 116025, - "laps_complete": 10, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 17, - "color1": "dddddd", - "color2": "ffff00", - "color3": "252525", - "number_font": 0, - "number_color1": "000000", - "number_color2": "737373", - "number_color3": "ffffff", - "number_slant": 4, - "sponsor1": 138, - "sponsor2": 7, - "car_number": "21", - "wheel_color": "ffff00", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 45, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 7, - "color1": "252525", - "color2": "DDDDDD", - "color3": "004895" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -243532, - "display_name": "THLF eSports Multinational by Raceverse.at", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1107856, - "best_lap_num": 5, - "best_lap_time": 1051821, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 9390, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -243532, - "cust_id": 1335570, - "display_name": "Jordan Elmore", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1107856, - "best_lap_num": 5, - "best_lap_time": 1051821, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 9390, - "country_code": "US", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 65, - "finish_position_in_class": 23, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 56, - "color1": "ff0000", - "color2": "000000", - "color3": "acacac", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 7, - "interval": 116946, - "laps_complete": 9, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 23, - "color1": "ff9cfd", - "color2": "ffffff", - "color3": "0500ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "000000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "444", - "wheel_color": "ffffff", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 61.234966, - "new_license_level": 18, - "new_sub_level": 293, - "new_ttrating": 1325, - "newi_rating": 2474, - "old_cpi": 59.90275, - "old_license_level": 18, - "old_sub_level": 290, - "old_ttrating": 1325, - "oldi_rating": 2494, - "opt_laps_complete": 0, - "position": 65, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 10, - "color1": "00ff1e", - "color2": "000000", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 46, - "finish_position_in_class": 20, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 7, - "interval": 116946, - "laps_complete": 9, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 23, - "color1": "ff9cfd", - "color2": "ffffff", - "color3": "0500ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "000000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "444", - "wheel_color": "ffffff", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 46, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 10, - "color1": "00ff1e", - "color2": "000000", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -248147, - "display_name": "IPM Yellow", - "aggregate_champ_points": 75, - "ai": false, - "average_lap": 1078228, - "best_lap_num": 2, - "best_lap_time": 1051935, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 173, - "car_name": "Ferrari 296 GT3", - "carcfg": -1, - "champ_points": 0, - "class_interval": 9504, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -248147, - "cust_id": 19071, - "display_name": "Peter Terrana", - "aggregate_champ_points": 75, - "ai": false, - "average_lap": 1078228, - "best_lap_num": 2, - "best_lap_time": 1051935, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 173, - "car_name": "Ferrari 296 GT3", - "carcfg": -1, - "champ_points": 0, - "class_interval": 9504, - "country_code": "US", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 67, - "finish_position_in_class": 25, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 34, - "color1": "DAF109", - "color2": "000000", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 13, - "interval": 117060, - "laps_complete": 9, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 173, - "pattern": 9, - "color1": "ccf312", - "color2": "000000", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "698", - "wheel_color": "000000", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 69.72993, - "new_license_level": 19, - "new_sub_level": 356, - "new_ttrating": 1350, - "newi_rating": 2620, - "old_cpi": 45.854206, - "old_license_level": 18, - "old_sub_level": 249, - "old_ttrating": 1350, - "oldi_rating": 2617, - "opt_laps_complete": 0, - "position": 67, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 27, - "color1": "23231f", - "color2": "131415", - "color3": "f2f12c" - }, - "watched": false, - "weight_penalty_kg": 3 - } - ], - "drop_race": false, - "finish_position": 47, - "finish_position_in_class": 21, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 13, - "interval": 117060, - "laps_complete": 9, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 173, - "pattern": 9, - "color1": "ccf312", - "color2": "000000", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "698", - "wheel_color": "000000", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 47, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 27, - "color1": "23231f", - "color2": "131415", - "color3": "f2f12c" - }, - "watched": false, - "weight_penalty_kg": 3 - }, - { - "team_id": -454924, - "display_name": "Top Tier Motorsport #222", - "aggregate_champ_points": 102, - "ai": false, - "average_lap": 1150731, - "best_lap_num": 1, - "best_lap_time": 1052436, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 10005, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -454924, - "cust_id": 855270, - "display_name": "Dan Munro", - "aggregate_champ_points": 102, - "ai": false, - "average_lap": 1106966, - "best_lap_num": 1, - "best_lap_time": 1052436, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 10005, - "country_code": "GB", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 68, - "finish_position_in_class": 26, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "111111", - "color2": "ed1c24", - "color3": "cccccc", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 4, - "interval": 117561, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 4, - "color1": "efd600", - "color2": "111111", - "color3": "d7162d", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "222", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 37.095116, - "new_license_level": 11, - "new_sub_level": 373, - "new_ttrating": 1350, - "newi_rating": 2026, - "old_cpi": 19.39725, - "old_license_level": 10, - "old_sub_level": 230, - "old_ttrating": 1350, - "oldi_rating": 2017, - "opt_laps_complete": 0, - "position": 68, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 33, - "color1": "9500f0", - "color2": "111111", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -454924, - "cust_id": 212484, - "display_name": "Thomas Knapton", - "aggregate_champ_points": 102, - "ai": false, - "average_lap": 1058250, - "best_lap_num": 9, - "best_lap_time": 1053767, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 11336, - "country_code": "TH", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 75, - "finish_position_in_class": 33, - "flair_id": 208, - "flair_name": "Thailand", - "flair_shortname": "THA", - "friend": false, - "helmet": { - "pattern": 49, - "color1": "ffffff", - "color2": "ed2129", - "color3": "2a3795", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 1, - "interval": 118892, - "laps_complete": 3, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 4, - "color1": "efd600", - "color2": "111111", - "color3": "d7162d", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "222", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 81.22818, - "new_license_level": 20, - "new_sub_level": 420, - "new_ttrating": 1391, - "newi_rating": 2462, - "old_cpi": 83.66629, - "old_license_level": 20, - "old_sub_level": 425, - "old_ttrating": 1391, - "oldi_rating": 2450, - "opt_laps_complete": 0, - "position": 75, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 33, - "color1": "9500f0", - "color2": "111111", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -454924, - "cust_id": 1093170, - "display_name": "Tyler Parslow", - "aggregate_champ_points": 102, - "ai": false, - "average_lap": 1241562, - "best_lap_num": 6, - "best_lap_time": 1059563, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 17132, - "country_code": "GB", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 80, - "finish_position_in_class": 38, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 28, - "color1": "9c00f0", - "color2": "000000", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 3, - "interval": 124688, - "laps_complete": 4, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 4, - "color1": "efd600", - "color2": "111111", - "color3": "d7162d", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "222", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 82.85521, - "new_license_level": 19, - "new_sub_level": 382, - "new_ttrating": 1323, - "newi_rating": 2073, - "old_cpi": 57.45987, - "old_license_level": 19, - "old_sub_level": 327, - "old_ttrating": 1323, - "oldi_rating": 2063, - "opt_laps_complete": 0, - "position": 80, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 33, - "color1": "9500f0", - "color2": "111111", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 48, - "finish_position_in_class": 22, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 8, - "interval": 117561, - "laps_complete": 9, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 4, - "color1": "efd600", - "color2": "111111", - "color3": "d7162d", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "222", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 48, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 33, - "color1": "9500f0", - "color2": "111111", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -298487, - "display_name": "Parc Motorsport Team Purple", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1092090, - "best_lap_num": 3, - "best_lap_time": 1052492, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 10061, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -298487, - "cust_id": 784148, - "display_name": "Krzysztof Olender2", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1092090, - "best_lap_num": 3, - "best_lap_time": 1052492, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 10061, - "country_code": "PL", - "division": 3, - "division_name": "Division 4", - "drop_race": true, - "finish_position": 69, - "finish_position_in_class": 27, - "flair_id": 167, - "flair_name": "Poland", - "flair_shortname": "POL", - "friend": false, - "helmet": { - "pattern": 43, - "color1": "eaff00", - "color2": "00e0ff", - "color3": "db00ff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 13, - "interval": 117617, - "laps_complete": 7, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 9, - "color1": "000000", - "color2": "8700ff", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "97", - "wheel_color": "000000", - "rim_type": 3 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 36.04055, - "new_license_level": 14, - "new_sub_level": 269, - "new_ttrating": 1350, - "newi_rating": 2615, - "old_cpi": 42.249332, - "old_license_level": 14, - "old_sub_level": 293, - "old_ttrating": 1350, - "oldi_rating": 2719, - "opt_laps_complete": 0, - "position": 69, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 28, - "color1": "000000", - "color2": "7800ff", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -298487, - "cust_id": 1056161, - "display_name": "Aleks Rusinek", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "PL", - "division": 3, - "division_name": "Division 4", - "drop_race": true, - "finish_position": 97, - "finish_position_in_class": 52, - "flair_id": 167, - "flair_name": "Poland", - "flair_shortname": "POL", - "friend": false, - "helmet": { - "pattern": 29, - "color1": "8000ff", - "color2": "000000", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 9, - "color1": "000000", - "color2": "8700ff", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "97", - "wheel_color": "000000", - "rim_type": 3 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 46.348267, - "new_license_level": 18, - "new_sub_level": 251, - "new_ttrating": 1350, - "newi_rating": 2095, - "old_cpi": 46.346268, - "old_license_level": 18, - "old_sub_level": 251, - "old_ttrating": 1350, - "oldi_rating": 2095, - "opt_laps_complete": 0, - "position": 97, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 28, - "color1": "000000", - "color2": "7800ff", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": true, - "finish_position": 49, - "finish_position_in_class": 23, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 13, - "interval": 117617, - "laps_complete": 7, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 9, - "color1": "000000", - "color2": "8700ff", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "97", - "wheel_color": "000000", - "rim_type": 3 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 49, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 28, - "color1": "000000", - "color2": "7800ff", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -332725, - "display_name": "Miracle Kids Success Academy", - "aggregate_champ_points": 53, - "ai": false, - "average_lap": 1114172, - "best_lap_num": 3, - "best_lap_time": 1052654, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 206, - "car_name": "Aston Martin Vantage GT3 EVO", - "carcfg": -1, - "champ_points": 0, - "class_interval": 10223, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -332725, - "cust_id": 920918, - "display_name": "Justin Noel", - "aggregate_champ_points": 53, - "ai": false, - "average_lap": 1114172, - "best_lap_num": 3, - "best_lap_time": 1052654, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 206, - "car_name": "Aston Martin Vantage GT3 EVO", - "carcfg": -1, - "champ_points": 0, - "class_interval": 10223, - "country_code": "US", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 70, - "finish_position_in_class": 28, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 54, - "color1": "ffffff", - "color2": "ff0000", - "color3": "0003ff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 3, - "interval": 117779, - "laps_complete": 8, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 206, - "pattern": 19, - "color1": "FFFFFF", - "color2": "FF0000", - "color3": "0003FF", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "24", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 99, - "new_cpi": 133.95572, - "new_license_level": 20, - "new_sub_level": 497, - "new_ttrating": 1350, - "newi_rating": 3078, - "old_cpi": 48.731533, - "old_license_level": 18, - "old_sub_level": 258, - "old_ttrating": 1350, - "oldi_rating": 3089, - "opt_laps_complete": 0, - "position": 70, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 0, - "color1": "2a3795", - "color2": "ec1c23", - "color3": "eeeeee" - }, - "watched": false, - "weight_penalty_kg": 12 - } - ], - "drop_race": false, - "finish_position": 50, - "finish_position_in_class": 24, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 3, - "interval": 117779, - "laps_complete": 8, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 206, - "pattern": 19, - "color1": "FFFFFF", - "color2": "FF0000", - "color3": "0003FF", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "24", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 99, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 50, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 0, - "color1": "2a3795", - "color2": "ec1c23", - "color3": "eeeeee" - }, - "watched": false, - "weight_penalty_kg": 12 - }, - { - "team_id": -224061, - "display_name": "Pineapple Racing Club", - "aggregate_champ_points": 88, - "ai": false, - "average_lap": 1090464, - "best_lap_num": 4, - "best_lap_time": 1053318, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 185, - "car_name": "Ford Mustang GT3", - "carcfg": -1, - "champ_points": 0, - "class_interval": 10887, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -224061, - "cust_id": 301782, - "display_name": "Ben Cooper5", - "aggregate_champ_points": 88, - "ai": false, - "average_lap": 1090464, - "best_lap_num": 4, - "best_lap_time": 1053318, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 185, - "car_name": "Ford Mustang GT3", - "carcfg": -1, - "champ_points": 0, - "class_interval": 10887, - "country_code": "GB", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 72, - "finish_position_in_class": 30, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 46, - "color1": "565555", - "color2": "fff500", - "color3": "ae0077", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 4, - "interval": 118443, - "laps_complete": 6, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 185, - "pattern": 12, - "color1": "e3ff54", - "color2": "000000", - "color3": "004092", - "number_font": 0, - "number_color1": "004092", - "number_color2": "ffffff", - "number_color3": "777777", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "14", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 158.22897, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 3233, - "old_cpi": 202.223, - "old_license_level": 20, - "old_sub_level": 499, - "old_ttrating": 1350, - "oldi_rating": 3228, - "opt_laps_complete": 0, - "position": 72, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 19, - "color1": "252525", - "color2": "7952a2", - "color3": "ecef00" - }, - "watched": false, - "weight_penalty_kg": 10 - } - ], - "drop_race": false, - "finish_position": 51, - "finish_position_in_class": 25, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 4, - "interval": 118443, - "laps_complete": 6, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 185, - "pattern": 12, - "color1": "e3ff54", - "color2": "000000", - "color3": "004092", - "number_font": 0, - "number_color1": "004092", - "number_color2": "ffffff", - "number_color3": "777777", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "14", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 51, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 19, - "color1": "252525", - "color2": "7952a2", - "color3": "ecef00" - }, - "watched": false, - "weight_penalty_kg": 10 - }, - { - "team_id": -480346, - "display_name": "Almeida Endurance Racing Black", - "aggregate_champ_points": 124, - "ai": false, - "average_lap": 1095252, - "best_lap_num": 11, - "best_lap_time": 1053439, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 11008, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -480346, - "cust_id": 346886, - "display_name": "Adrian Hopp", - "aggregate_champ_points": 124, - "ai": false, - "average_lap": 1095252, - "best_lap_num": 11, - "best_lap_time": 1053439, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 11008, - "country_code": "DE", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 73, - "finish_position_in_class": 31, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 21, - "color1": "000000", - "color2": "ffffff", - "color3": "fa0200", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 3, - "interval": 118564, - "laps_complete": 12, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 14, - "color1": "FFED00", - "color2": "00C4FF", - "color3": "87C42E", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "18", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 161.57109, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1311, - "newi_rating": 3055, - "old_cpi": 84.49169, - "old_license_level": 19, - "old_sub_level": 385, - "old_ttrating": 1311, - "oldi_rating": 3033, - "opt_laps_complete": 0, - "position": 73, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 32, - "color1": "ffffff", - "color2": "fff200", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -480346, - "cust_id": 770894, - "display_name": "Alexander Eger", - "aggregate_champ_points": 124, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "DE", - "division": 5, - "division_name": "Division 6", - "drop_race": false, - "finish_position": 89, - "finish_position_in_class": 47, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "111111", - "color2": "b82f37", - "color3": "284a94", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 1, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 14, - "color1": "FFED00", - "color2": "00C4FF", - "color3": "87C42E", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "18", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 100.03695, - "new_license_level": 20, - "new_sub_level": 452, - "new_ttrating": 1350, - "newi_rating": 2036, - "old_cpi": 38.330452, - "old_license_level": 18, - "old_sub_level": 222, - "old_ttrating": 1350, - "oldi_rating": 2017, - "opt_laps_complete": 0, - "position": 89, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 32, - "color1": "ffffff", - "color2": "fff200", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 52, - "finish_position_in_class": 26, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 3, - "interval": 118564, - "laps_complete": 13, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 14, - "color1": "FFED00", - "color2": "00C4FF", - "color3": "87C42E", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "18", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 52, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 32, - "color1": "ffffff", - "color2": "fff200", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -434794, - "display_name": "Rag1ng Dragons e-Sports #Team Gold", - "aggregate_champ_points": 106, - "ai": false, - "average_lap": 1121741, - "best_lap_num": 4, - "best_lap_time": 1053675, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 11244, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -434794, - "cust_id": 785721, - "display_name": "Lucas Benini", - "aggregate_champ_points": 106, - "ai": false, - "average_lap": 1121741, - "best_lap_num": 4, - "best_lap_time": 1053675, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 11244, - "country_code": "BR", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 74, - "finish_position_in_class": 32, - "flair_id": 31, - "flair_name": "Brazil", - "flair_shortname": "BRA", - "friend": false, - "helmet": { - "pattern": 22, - "color1": "ffed00", - "color2": "008cff", - "color3": "1cff00", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 5, - "interval": 118800, - "laps_complete": 9, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 4, - "color1": "effc53", - "color2": "43cd41", - "color3": "1e42db", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "30", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 108.44981, - "new_license_level": 20, - "new_sub_level": 465, - "new_ttrating": 1291, - "newi_rating": 2547, - "old_cpi": 54.275417, - "old_license_level": 19, - "old_sub_level": 318, - "old_ttrating": 1291, - "oldi_rating": 2534, - "opt_laps_complete": 0, - "position": 74, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "22b428", - "color2": "353bcc", - "color3": "d3f118" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 53, - "finish_position_in_class": 27, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 5, - "interval": 118800, - "laps_complete": 9, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 4, - "color1": "effc53", - "color2": "43cd41", - "color3": "1e42db", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "30", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 53, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "22b428", - "color2": "353bcc", - "color3": "d3f118" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -142589, - "display_name": "Team Highside - Vette", - "aggregate_champ_points": 48, - "ai": false, - "average_lap": 1089525, - "best_lap_num": 6, - "best_lap_time": 1055619, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 184, - "car_name": "Chevrolet Corvette Z06 GT3.R", - "carcfg": -1, - "champ_points": 0, - "class_interval": 13188, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -142589, - "cust_id": 45780, - "display_name": "Brandon Hastings", - "aggregate_champ_points": 48, - "ai": false, - "average_lap": 1089525, - "best_lap_num": 6, - "best_lap_time": 1055619, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 184, - "car_name": "Chevrolet Corvette Z06 GT3.R", - "carcfg": -1, - "champ_points": 0, - "class_interval": 13188, - "country_code": "US", - "division": 7, - "division_name": "Division 8", - "drop_race": false, - "finish_position": 76, - "finish_position_in_class": 34, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 0, - "color1": "000000", - "color2": "000000", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 120744, - "laps_complete": 6, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 184, - "pattern": 12, - "color1": "0085ff", - "color2": "0085ff", - "color3": "d50000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "242424", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "216", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": 96, - "new_cpi": 108.082184, - "new_license_level": 20, - "new_sub_level": 464, - "new_ttrating": 1296, - "newi_rating": 1209, - "old_cpi": 52.402893, - "old_license_level": 18, - "old_sub_level": 269, - "old_ttrating": 1296, - "oldi_rating": 1216, - "opt_laps_complete": 0, - "position": 76, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 25, - "color1": "FA7400", - "color2": "000000", - "color3": "FFFFFF" - }, - "watched": false, - "weight_penalty_kg": 10 - } - ], - "drop_race": false, - "finish_position": 54, - "finish_position_in_class": 28, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 0, - "interval": 120744, - "laps_complete": 6, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 184, - "pattern": 12, - "color1": "0085ff", - "color2": "0085ff", - "color3": "d50000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "242424", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "216", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": 96, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 54, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 25, - "color1": "FA7400", - "color2": "000000", - "color3": "FFFFFF" - }, - "watched": false, - "weight_penalty_kg": 10 - }, - { - "team_id": -298205, - "display_name": "CDLC", - "aggregate_champ_points": 79, - "ai": false, - "average_lap": 1080851, - "best_lap_num": 10, - "best_lap_time": 1060042, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 188, - "car_name": "McLaren 720S GT3 EVO", - "carcfg": -1, - "champ_points": 0, - "class_interval": 17611, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -298205, - "cust_id": 692986, - "display_name": "Andreas Carlsson", - "aggregate_champ_points": 79, - "ai": false, - "average_lap": 1071648, - "best_lap_num": 10, - "best_lap_time": 1060042, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 188, - "car_name": "McLaren 720S GT3 EVO", - "carcfg": -1, - "champ_points": 0, - "class_interval": 17611, - "country_code": "SE", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 82, - "finish_position_in_class": 40, - "flair_id": 203, - "flair_name": "Sweden", - "flair_shortname": "SWE", - "friend": false, - "helmet": { - "pattern": 59, - "color1": "000000", - "color2": "1e1e1e", - "color3": "007dff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 1, - "interval": 125167, - "laps_complete": 4, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 188, - "pattern": 4, - "color1": "0073d2", - "color2": "ff5c00", - "color3": "292d33", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "46", - "wheel_color": "000000", - "rim_type": 2 - }, - "max_pct_fuel_fill": 97, - "new_cpi": 336.55923, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1375, - "newi_rating": 2873, - "old_cpi": 138.13417, - "old_license_level": 20, - "old_sub_level": 499, - "old_ttrating": 1375, - "oldi_rating": 2867, - "opt_laps_complete": 0, - "position": 82, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 31, - "color1": "000000", - "color2": "0378ff", - "color3": "ff4d00" - }, - "watched": false, - "weight_penalty_kg": 5 - }, - { - "team_id": -298205, - "cust_id": 340070, - "display_name": "Marco Henderson", - "aggregate_champ_points": 79, - "ai": false, - "average_lap": 1084795, - "best_lap_num": 6, - "best_lap_time": 1065605, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 188, - "car_name": "McLaren 720S GT3 EVO", - "carcfg": -1, - "champ_points": 0, - "class_interval": 23174, - "country_code": "DE", - "division": 4, - "division_name": "Division 5", - "drop_race": false, - "finish_position": 85, - "finish_position_in_class": 43, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 58, - "color1": "000000", - "color2": "e9ed21", - "color3": "ff0000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 1, - "interval": 130730, - "laps_complete": 7, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 188, - "pattern": 4, - "color1": "0073d2", - "color2": "ff5c00", - "color3": "292d33", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "46", - "wheel_color": "000000", - "rim_type": 2 - }, - "max_pct_fuel_fill": 97, - "new_cpi": 106.09341, - "new_license_level": 20, - "new_sub_level": 461, - "new_ttrating": 1350, - "newi_rating": 1709, - "old_cpi": 127.72311, - "old_license_level": 20, - "old_sub_level": 490, - "old_ttrating": 1350, - "oldi_rating": 1704, - "opt_laps_complete": 0, - "position": 85, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 31, - "color1": "000000", - "color2": "0378ff", - "color3": "ff4d00" - }, - "watched": false, - "weight_penalty_kg": 5 - } - ], - "drop_race": false, - "finish_position": 55, - "finish_position_in_class": 29, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 2, - "interval": 125167, - "laps_complete": 11, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 188, - "pattern": 4, - "color1": "0073d2", - "color2": "ff5c00", - "color3": "292d33", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "46", - "wheel_color": "000000", - "rim_type": 2 - }, - "max_pct_fuel_fill": 97, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 55, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 31, - "color1": "000000", - "color2": "0378ff", - "color3": "ff4d00" - }, - "watched": false, - "weight_penalty_kg": 5 - }, - { - "team_id": -471181, - "display_name": "PRS Team Europe", - "aggregate_champ_points": 66, - "ai": false, - "average_lap": 1083933, - "best_lap_num": 7, - "best_lap_time": 1063126, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 185, - "car_name": "Ford Mustang GT3", - "carcfg": -1, - "champ_points": 0, - "class_interval": 20695, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -471181, - "cust_id": 524603, - "display_name": "Philip Zangger", - "aggregate_champ_points": 66, - "ai": false, - "average_lap": 1083933, - "best_lap_num": 7, - "best_lap_time": 1063126, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 185, - "car_name": "Ford Mustang GT3", - "carcfg": -1, - "champ_points": 0, - "class_interval": 20695, - "country_code": "AT", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 84, - "finish_position_in_class": 42, - "flair_id": 17, - "flair_name": "Austria", - "flair_shortname": "AUT", - "friend": false, - "helmet": { - "pattern": 35, - "color1": "37b7ff", - "color2": "0083ff", - "color3": "0030ff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 3, - "interval": 128251, - "laps_complete": 11, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 185, - "pattern": 20, - "color1": "515151", - "color2": "FFFFFF", - "color3": "000000", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "16", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 191.81573, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 2254, - "old_cpi": 228.99771, - "old_license_level": 20, - "old_sub_level": 499, - "old_ttrating": 1350, - "oldi_rating": 2255, - "opt_laps_complete": 0, - "position": 84, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 3, - "color1": "0083ff", - "color2": "ffffff", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 10 - } - ], - "drop_race": false, - "finish_position": 56, - "finish_position_in_class": 30, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 3, - "interval": 128251, - "laps_complete": 11, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 185, - "pattern": 20, - "color1": "515151", - "color2": "FFFFFF", - "color3": "000000", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "16", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 56, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 3, - "color1": "0083ff", - "color2": "ffffff", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 10 - }, - { - "team_id": -333656, - "display_name": "Bite Point Racing", - "aggregate_champ_points": 57, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -333656, - "cust_id": 936022, - "display_name": "Francis Crosby", - "aggregate_champ_points": 57, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "CA", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 93, - "finish_position_in_class": 50, - "flair_id": 39, - "flair_name": "Canada", - "flair_shortname": "CAN", - "friend": false, - "helmet": { - "pattern": 61, - "color1": "ff0000", - "color2": "f7f7f7", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 2, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "fd0000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "45", - "wheel_color": "000000", - "rim_type": 3 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 57.7853, - "new_license_level": 19, - "new_sub_level": 328, - "new_ttrating": 1350, - "newi_rating": 2454, - "old_cpi": 58.822685, - "old_license_level": 19, - "old_sub_level": 330, - "old_ttrating": 1350, - "oldi_rating": 2457, - "opt_laps_complete": 0, - "position": 93, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 32, - "color1": "000000", - "color2": "04db00", - "color3": "9800d7" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 57, - "finish_position_in_class": 31, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 2, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "fd0000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "45", - "wheel_color": "000000", - "rim_type": 3 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 57, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 32, - "color1": "000000", - "color2": "04db00", - "color3": "9800d7" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -401232, - "display_name": "Kika Cetasso Racing Team", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [], - "drop_race": false, - "finish_position": 58, - "finish_position_in_class": 32, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 8, - "color1": "ffffff", - "color2": "000000", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 3, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "12", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 58, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 2, - "color1": "000000", - "color2": "ffffff", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ] + "cust_id": 473030, + "display_name": "Lukas Schwenk", + "aggregate_champ_points": 184, + "ai": false, + "average_lap": 1319967, + "best_lap_num": 2, + "best_lap_time": 1318950, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2025-12-28T20:37:22Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1318950, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 204, + "car_name": "Ford Mustang GT4", + "carcfg": -1, + "champ_points": 0, + "class_interval": 0, + "country_code": "DE", + "division": 0, + "division_name": "Division 1", + "drop_race": false, + "finish_position": 0, + "finish_position_in_class": 0, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 57, + "color1": "002bff", + "color2": "f7f7f7", + "color3": "33ff00", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 0, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 204, + "pattern": 24, + "color1": "002BFF", + "color2": "F7F7F7", + "color3": "33FF00", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "3", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 42.273064, + "new_license_level": 15, + "new_sub_level": 337, + "new_ttrating": 1350, + "newi_rating": 6260, + "old_cpi": 40.27555, + "old_license_level": 15, + "old_sub_level": 330, + "old_ttrating": 1350, + "oldi_rating": 6223, + "opt_laps_complete": 0, + "position": 0, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 21, + "color1": "0e0044", + "color2": "0139ff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 }, { - "simsession_number": -1, - "simsession_name": "QUALIFY", - "simsession_type": 4, - "simsession_type_name": "Lone Qualifying", - "simsession_subtype": 0, - "weather_result": { - "avg_skies": 3, - "avg_cloud_cover_pct": 98.8582, - "min_cloud_cover_pct": 98.669365, - "max_cloud_cover_pct": 99.11291, - "temp_units": 1, - "avg_temp": 21.040504, - "min_temp": 21.02674, - "max_temp": 21.063948, - "avg_rel_humidity": 60.48371, - "wind_units": 1, - "avg_wind_speed": 10.450963, - "min_wind_speed": 10.255288, - "max_wind_speed": 10.732762, - "avg_wind_dir": 0, - "max_fog": 0, - "fog_time_pct": 0, - "precip_time_pct": 0, - "precip_mm": 0, - "precip_mm2hr_before_session": 0, - "simulated_start_time": "2026-01-24T13:40:00" - }, - "results": [ - { - "team_id": -379972, - "display_name": "Primal Racing 1", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 935258, - "best_lap_num": 2, - "best_lap_time": 932813, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:06:53Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 932813, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 196, - "car_name": "Ferrari 499P", - "carcfg": -1, - "champ_points": 0, - "class_interval": 0, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -379972, - "cust_id": 737050, - "display_name": "Magnus Mortensen2", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 935258, - "best_lap_num": 2, - "best_lap_time": 932813, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:06:53Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 932813, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 196, - "car_name": "Ferrari 499P", - "carcfg": -1, - "champ_points": 0, - "class_interval": 0, - "country_code": "DK", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 0, - "finish_position_in_class": 0, - "flair_id": 56, - "flair_name": "Denmark", - "flair_shortname": "DNK", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "000000", - "color2": "1c1a7b", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 0, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 196, - "pattern": 0, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "8", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 75.986855, - "new_license_level": 20, - "new_sub_level": 410, - "new_ttrating": 1350, - "newi_rating": 2622, - "old_cpi": 100.1537, - "old_license_level": 20, - "old_sub_level": 452, - "old_ttrating": 1350, - "oldi_rating": 2672, - "opt_laps_complete": 0, - "position": 0, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "f1732e", - "color2": "372a75", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": false, - "finish_position": 0, - "finish_position_in_class": 0, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 0, - "interval": 0, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 196, - "pattern": 0, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "8", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 0, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "f1732e", - "color2": "372a75", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -246761, - "display_name": "Vortex Racing Alpha", - "aggregate_champ_points": 32, - "ai": false, - "average_lap": 938462, - "best_lap_num": 2, - "best_lap_time": 932973, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:04Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 932973, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 160, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -246761, - "cust_id": 447778, - "display_name": "craig Benefiel", - "aggregate_champ_points": 32, - "ai": false, - "average_lap": 938462, - "best_lap_num": 2, - "best_lap_time": 932973, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:04Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 932973, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 160, - "country_code": "US", - "division": 4, - "division_name": "Division 5", - "drop_race": false, - "finish_position": 1, - "finish_position_in_class": 1, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "111111", - "color2": "cccccc", - "color3": "ed1c24", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 160, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 5, - "color1": "ffffff", - "color2": "cccccc", - "color3": "666666", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 2, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "51", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 76.59716, - "new_license_level": 19, - "new_sub_level": 370, - "new_ttrating": 1350, - "newi_rating": 1974, - "old_cpi": 43.42212, - "old_license_level": 18, - "old_sub_level": 241, - "old_ttrating": 1350, - "oldi_rating": 1991, - "opt_laps_complete": 0, - "position": 1, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 27, - "color1": "111111", - "color2": "83ccff", - "color3": "cccccc" - }, - "watched": false, - "weight_penalty_kg": 2 - } - ], - "drop_race": false, - "finish_position": 1, - "finish_position_in_class": 1, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 0, - "interval": 160, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 5, - "color1": "ffffff", - "color2": "cccccc", - "color3": "666666", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 2, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "51", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 1, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 27, - "color1": "111111", - "color2": "83ccff", - "color3": "cccccc" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -361961, - "display_name": "Inside Curb Racing", - "aggregate_champ_points": 43, - "ai": false, - "average_lap": 940545, - "best_lap_num": 2, - "best_lap_time": 936948, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:22Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 936948, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 4135, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -361961, - "cust_id": 326217, - "display_name": "Wouter M Merks", - "aggregate_champ_points": 43, - "ai": false, - "average_lap": 940545, - "best_lap_num": 2, - "best_lap_time": 936948, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:22Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 936948, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 4135, - "country_code": "NL", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 2, - "finish_position_in_class": 2, - "flair_id": 146, - "flair_name": "Netherlands", - "flair_shortname": "NLD", - "friend": false, - "helmet": { - "pattern": 65, - "color1": "14fff8", - "color2": "000000", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 4135, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 10, - "color1": "ffffff", - "color2": "ffffff", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "1", - "wheel_color": "878787", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 139.78241, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 3051, - "old_cpi": 53.386677, - "old_license_level": 19, - "old_sub_level": 316, - "old_ttrating": 1350, - "oldi_rating": 3062, - "opt_laps_complete": 0, - "position": 2, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 2, - "color1": "000000", - "color2": "ffffff", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 2 - } - ], - "drop_race": false, - "finish_position": 2, - "finish_position_in_class": 2, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 0, - "interval": 4135, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 10, - "color1": "ffffff", - "color2": "ffffff", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "1", - "wheel_color": "878787", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 2, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 2, - "color1": "000000", - "color2": "ffffff", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -385527, - "display_name": "EHR Blue", - "aggregate_champ_points": 118, - "ai": false, - "average_lap": 940941, - "best_lap_num": 2, - "best_lap_time": 937986, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:07Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 937986, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 5173, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -385527, - "cust_id": 289709, - "display_name": "Greyson Oppermann", - "aggregate_champ_points": 118, - "ai": false, - "average_lap": 940941, - "best_lap_num": 2, - "best_lap_time": 937986, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:07Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 937986, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 5173, - "country_code": "US", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 3, - "finish_position_in_class": 3, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 15, - "color1": "ffffff", - "color2": "ffffff", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 5173, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 0, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 14, - "number_color1": "ffffff", - "number_color2": "cba7f4", - "number_color3": "352e74", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "808", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 121.81984, - "new_license_level": 12, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 2415, - "old_cpi": 28.188484, - "old_license_level": 10, - "old_sub_level": 290, - "old_ttrating": 1350, - "oldi_rating": 2392, - "opt_laps_complete": 0, - "position": 3, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 13, - "color1": "352e74", - "color2": "4C99D3", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 2 - } - ], - "drop_race": false, - "finish_position": 3, - "finish_position_in_class": 3, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 0, - "interval": 5173, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 0, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 14, - "number_color1": "ffffff", - "number_color2": "cba7f4", - "number_color3": "352e74", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "808", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 3, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 13, - "color1": "352e74", - "color2": "4C99D3", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -278104, - "display_name": "Melanzani Racing 102", - "aggregate_champ_points": 21, - "ai": false, - "average_lap": 940995, - "best_lap_num": 2, - "best_lap_time": 938535, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:39Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 938535, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 5722, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -278104, - "cust_id": 119560, - "display_name": "Alvin Frauenknecht", - "aggregate_champ_points": 21, - "ai": false, - "average_lap": 940995, - "best_lap_num": 2, - "best_lap_time": 938535, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:39Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 938535, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 5722, - "country_code": "DE", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 4, - "finish_position_in_class": 4, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 63, - "color1": "000000", - "color2": "717171", - "color3": "e5ff00", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 5722, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 0, - "color1": "ffffff", - "color2": "cccccc", - "color3": "666666", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "cccccc", - "number_color3": "666666", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "4", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 76.36244, - "new_license_level": 19, - "new_sub_level": 370, - "new_ttrating": 1350, - "newi_rating": 2133, - "old_cpi": 31.524208, - "old_license_level": 17, - "old_sub_level": 148, - "old_ttrating": 1350, - "oldi_rating": 2162, - "opt_laps_complete": 0, - "position": 4, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 22, - "color1": "000000", - "color2": "69b9eb", - "color3": "fa8c17" - }, - "watched": false, - "weight_penalty_kg": 2 - } - ], - "drop_race": false, - "finish_position": 4, - "finish_position_in_class": 4, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 0, - "interval": 5722, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 0, - "color1": "ffffff", - "color2": "cccccc", - "color3": "666666", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "cccccc", - "number_color3": "666666", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "4", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 4, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 22, - "color1": "000000", - "color2": "69b9eb", - "color3": "fa8c17" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -303706, - "display_name": "Savage Sim Racing - Team 80HD", - "aggregate_champ_points": 86, - "ai": false, - "average_lap": 943662, - "best_lap_num": 2, - "best_lap_time": 939928, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:06:51Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 939928, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 7115, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -303706, - "cust_id": 912397, - "display_name": "Clayton Sanchez2", - "aggregate_champ_points": 86, - "ai": false, - "average_lap": 943662, - "best_lap_num": 2, - "best_lap_time": 939928, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:06:51Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 939928, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 7115, - "country_code": "US", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 5, - "finish_position_in_class": 5, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 28, - "color1": "320159", - "color2": "9705fc", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 7115, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 22, - "color1": "000000", - "color2": "01ffff", - "color3": "a30dbe", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 239, - "sponsor2": 240, - "car_number": "66", - "wheel_color": "767676", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 267.99796, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 2906, - "old_cpi": 126.12498, - "old_license_level": 20, - "old_sub_level": 488, - "old_ttrating": 1350, - "oldi_rating": 2901, - "opt_laps_complete": 0, - "position": 5, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 28, - "color1": "434343", - "color2": "fbfbfb", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 2 - } - ], - "drop_race": false, - "finish_position": 5, - "finish_position_in_class": 5, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 0, - "interval": 7115, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 22, - "color1": "000000", - "color2": "01ffff", - "color3": "a30dbe", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 239, - "sponsor2": 240, - "car_number": "66", - "wheel_color": "767676", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 5, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 28, - "color1": "434343", - "color2": "fbfbfb", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -298033, - "display_name": "Piki SCT", - "aggregate_champ_points": 64, - "ai": false, - "average_lap": 944128, - "best_lap_num": 2, - "best_lap_time": 940384, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:06:58Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 940384, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 196, - "car_name": "Ferrari 499P", - "carcfg": -1, - "champ_points": 0, - "class_interval": 7571, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -298033, - "cust_id": 1094388, - "display_name": "David Orgaz", - "aggregate_champ_points": 64, - "ai": false, - "average_lap": 944128, - "best_lap_num": 2, - "best_lap_time": 940384, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:06:58Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 940384, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 196, - "car_name": "Ferrari 499P", - "carcfg": -1, - "champ_points": 0, - "class_interval": 7571, - "country_code": "ES", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 6, - "finish_position_in_class": 6, - "flair_id": 198, - "flair_name": "Spain", - "flair_shortname": "ESP", - "friend": false, - "helmet": { - "pattern": 20, - "color1": "111111", - "color2": "30b84e", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 7571, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 196, - "pattern": 7, - "color1": "6589F4", - "color2": "C91919", - "color3": "F5FF7D", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "5", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 93.97715, - "new_license_level": 20, - "new_sub_level": 443, - "new_ttrating": 1350, - "newi_rating": 2440, - "old_cpi": 62.371994, - "old_license_level": 18, - "old_sub_level": 296, - "old_ttrating": 1350, - "oldi_rating": 2441, - "opt_laps_complete": 0, - "position": 6, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 10, - "color1": "5dddc2", - "color2": "19d137", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": false, - "finish_position": 6, - "finish_position_in_class": 6, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 0, - "interval": 7571, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 196, - "pattern": 7, - "color1": "6589F4", - "color2": "C91919", - "color3": "F5FF7D", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "5", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 6, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 10, - "color1": "5dddc2", - "color2": "19d137", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -199580, - "display_name": "IntoTheApex.com Gold", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 944584, - "best_lap_num": 2, - "best_lap_time": 940787, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:06:59Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 940787, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 7974, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -199580, - "cust_id": 142817, - "display_name": "Charlie Ryan", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 944584, - "best_lap_num": 2, - "best_lap_time": 940787, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:06:59Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 940787, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 7974, - "country_code": "US", - "division": 2, - "division_name": "Division 3", - "drop_race": true, - "finish_position": 7, - "finish_position_in_class": 7, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 2, - "color1": "000000", - "color2": "ED2129", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 7974, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 1, - "color1": "ff0000", - "color2": "00ff00", - "color3": "0000ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "069", - "wheel_color": "000000", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 42.451843, - "new_license_level": 18, - "new_sub_level": 238, - "new_ttrating": 1350, - "newi_rating": 2179, - "old_cpi": 33.555664, - "old_license_level": 18, - "old_sub_level": 202, - "old_ttrating": 1350, - "oldi_rating": 2266, - "opt_laps_complete": 0, - "position": 7, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 19, - "color1": "000000", - "color2": "0d1fc5", - "color3": "e3e110" - }, - "watched": false, - "weight_penalty_kg": 2 - } - ], - "drop_race": true, - "finish_position": 7, - "finish_position_in_class": 7, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 0, - "interval": 7974, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 1, - "color1": "ff0000", - "color2": "00ff00", - "color3": "0000ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "069", - "wheel_color": "000000", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 7, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 19, - "color1": "000000", - "color2": "0d1fc5", - "color3": "e3e110" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -346577, - "display_name": "Motorsports Factory YELLOW", - "aggregate_champ_points": 75, - "ai": false, - "average_lap": 941881, - "best_lap_num": 2, - "best_lap_time": 940826, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:05Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 940826, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 168, - "car_name": "Cadillac V-Series.R GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 8013, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -346577, - "cust_id": 945525, - "display_name": "Benjamin Voigt", - "aggregate_champ_points": 75, - "ai": false, - "average_lap": 941881, - "best_lap_num": 2, - "best_lap_time": 940826, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:05Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 940826, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 168, - "car_name": "Cadillac V-Series.R GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 8013, - "country_code": "DE", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 8, - "finish_position_in_class": 8, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 39, - "color1": "ff0000", - "color2": "000000", - "color3": "ff0000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 8013, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 168, - "pattern": 21, - "color1": "172b21", - "color2": "57f97a", - "color3": "e8f9f0", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 139, - "sponsor2": 2, - "car_number": "194", - "wheel_color": "0a0f0a", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 108.77311, - "new_license_level": 20, - "new_sub_level": 465, - "new_ttrating": 1350, - "newi_rating": 1914, - "old_cpi": 75.879616, - "old_license_level": 19, - "old_sub_level": 369, - "old_ttrating": 1350, - "oldi_rating": 1909, - "opt_laps_complete": 0, - "position": 8, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 32, - "color1": "172b21", - "color2": "e8f9f0", - "color3": "57f97a" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": false, - "finish_position": 8, - "finish_position_in_class": 8, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 0, - "interval": 8013, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 168, - "pattern": 21, - "color1": "172b21", - "color2": "57f97a", - "color3": "e8f9f0", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 139, - "sponsor2": 2, - "car_number": "194", - "wheel_color": "0a0f0a", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 8, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 32, - "color1": "172b21", - "color2": "e8f9f0", - "color3": "57f97a" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -307068, - "display_name": "Azz Tech Racing - 390", - "aggregate_champ_points": 107, - "ai": false, - "average_lap": 945802, - "best_lap_num": 2, - "best_lap_time": 941177, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:16Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 941177, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 8364, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -307068, - "cust_id": 846950, - "display_name": "Matthew Cheverton", - "aggregate_champ_points": 107, - "ai": false, - "average_lap": 945802, - "best_lap_num": 2, - "best_lap_time": 941177, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:16Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 941177, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 8364, - "country_code": "GB", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 9, - "finish_position_in_class": 9, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 8, - "color1": "ff0000", - "color2": "000000", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 8364, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 17, - "color1": "ff0000", - "color2": "ffffff", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "ffffff", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "390", - "wheel_color": "000000", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 208.88257, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 3137, - "old_cpi": 75.065544, - "old_license_level": 19, - "old_sub_level": 367, - "old_ttrating": 1350, - "oldi_rating": 3121, - "opt_laps_complete": 0, - "position": 9, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 33, - "color1": "f00000", - "color2": "faff00", - "color3": "9b9b9b" - }, - "watched": false, - "weight_penalty_kg": 2 - } - ], - "drop_race": false, - "finish_position": 9, - "finish_position_in_class": 9, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 0, - "interval": 8364, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 17, - "color1": "ff0000", - "color2": "ffffff", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "ffffff", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "390", - "wheel_color": "000000", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 9, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 33, - "color1": "f00000", - "color2": "faff00", - "color3": "9b9b9b" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -440173, - "display_name": "Axis Simsports Blue", - "aggregate_champ_points": 53, - "ai": false, - "average_lap": 944596, - "best_lap_num": 2, - "best_lap_time": 941189, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:25Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 941189, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 8376, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -440173, - "cust_id": 416043, - "display_name": "Thomas Pugh", - "aggregate_champ_points": 53, - "ai": false, - "average_lap": 944596, - "best_lap_num": 2, - "best_lap_time": 941189, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:25Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 941189, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": 8376, - "country_code": "GB", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 10, - "finish_position_in_class": 10, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 9, - "color1": "000000", - "color2": "ffffff", - "color3": "ff0000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 1, - "interval": 8376, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 22, - "color1": "000000", - "color2": "ffffff", - "color3": "ff0000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "3", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 205.9527, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 3916, - "old_cpi": 120.93353, - "old_license_level": 20, - "old_sub_level": 481, - "old_ttrating": 1350, - "oldi_rating": 3922, - "opt_laps_complete": 0, - "position": 10, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 14, - "color1": "d3d3d3", - "color2": "000000", - "color3": "e70e0e" - }, - "watched": false, - "weight_penalty_kg": 2 - } - ], - "drop_race": false, - "finish_position": 10, - "finish_position_in_class": 10, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 1, - "interval": 8376, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 22, - "color1": "000000", - "color2": "ffffff", - "color3": "ff0000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "3", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 10, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 14, - "color1": "d3d3d3", - "color2": "000000", - "color3": "e70e0e" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -402095, - "display_name": "Granateapfel RT", - "aggregate_champ_points": 129, - "ai": false, - "average_lap": 946909, - "best_lap_num": 2, - "best_lap_time": 941819, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:40Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 941819, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 196, - "car_name": "Ferrari 499P", - "carcfg": -1, - "champ_points": 0, - "class_interval": 9006, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -402095, - "cust_id": 1165346, - "display_name": "Finn Metzler", - "aggregate_champ_points": 129, - "ai": false, - "average_lap": 946909, - "best_lap_num": 2, - "best_lap_time": 941819, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:40Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 941819, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 196, - "car_name": "Ferrari 499P", - "carcfg": -1, - "champ_points": 0, - "class_interval": 9006, - "country_code": "VU", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 11, - "finish_position_in_class": 11, - "flair_id": 226, - "flair_name": "Vanuatu", - "flair_shortname": "VUT", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "372a75", - "color2": "f1732e", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 9006, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 196, - "pattern": 4, - "color1": "FF0000", - "color2": "00FF00", - "color3": "0000FF", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "2", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 137.59468, - "new_license_level": 16, - "new_sub_level": 499, - "new_ttrating": 1265, - "newi_rating": 1943, - "old_cpi": 28.337646, - "old_license_level": 14, - "old_sub_level": 232, - "old_ttrating": 1265, - "oldi_rating": 1907, - "opt_laps_complete": 0, - "position": 11, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "ffffff", - "color2": "372a75", - "color3": "f1732e" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": false, - "finish_position": 11, - "finish_position_in_class": 11, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 0, - "interval": 9006, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 196, - "pattern": 4, - "color1": "FF0000", - "color2": "00FF00", - "color3": "0000FF", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "2", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 11, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "ffffff", - "color2": "372a75", - "color3": "f1732e" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -288965, - "display_name": "Ecurie Col d'Oiseaux Tertre Rouge", - "aggregate_champ_points": 50, - "ai": false, - "average_lap": 983180, - "best_lap_num": 2, - "best_lap_time": 979415, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:23Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 979415, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 0, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -288965, - "cust_id": 969021, - "display_name": "Brandon Schmidt3", - "aggregate_champ_points": 50, - "ai": false, - "average_lap": 983180, - "best_lap_num": 2, - "best_lap_time": 979415, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:23Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 979415, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 0, - "country_code": "DE", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 12, - "finish_position_in_class": 0, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 28, - "color1": "9b1a25", - "color2": "798bd8", - "color3": "0b0a0b", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 46602, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 11, - "color1": "ffffd1", - "color2": "9b0202", - "color3": "0d3860", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "77", - "wheel_color": "b7b7b7", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 111.61723, - "new_license_level": 20, - "new_sub_level": 469, - "new_ttrating": 1375, - "newi_rating": 2923, - "old_cpi": 93.56137, - "old_license_level": 20, - "old_sub_level": 442, - "old_ttrating": 1375, - "oldi_rating": 2926, - "opt_laps_complete": 0, - "position": 12, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 8, - "color1": "ffffd1", - "color2": "a30206", - "color3": "ffd7d1" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": false, - "finish_position": 12, - "finish_position_in_class": 0, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 0, - "interval": 46602, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 11, - "color1": "ffffd1", - "color2": "9b0202", - "color3": "0d3860", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "77", - "wheel_color": "b7b7b7", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 12, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 8, - "color1": "ffffd1", - "color2": "a30206", - "color3": "ffd7d1" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -433705, - "display_name": "SIM RACING GRID ACADEMY - Obsidian", - "aggregate_champ_points": 37, - "ai": false, - "average_lap": 983057, - "best_lap_num": 2, - "best_lap_time": 979448, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:33Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 979448, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 33, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -433705, - "cust_id": 1048672, - "display_name": "Joshua De Lange", - "aggregate_champ_points": 37, - "ai": false, - "average_lap": 983057, - "best_lap_num": 2, - "best_lap_time": 979448, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:33Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 979448, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 33, - "country_code": "NL", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 13, - "finish_position_in_class": 1, - "flair_id": 146, - "flair_name": "Netherlands", - "flair_shortname": "NLD", - "friend": false, - "helmet": { - "pattern": 59, - "color1": "07a9e5", - "color2": "981a53", - "color3": "f981a5", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 46635, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 0, - "color1": "ffffff", - "color2": "cccccc", - "color3": "666666", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "10", - "wheel_color": "ffb649", - "rim_type": 2 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 94.37405, - "new_license_level": 20, - "new_sub_level": 443, - "new_ttrating": 1350, - "newi_rating": 2529, - "old_cpi": 76.501915, - "old_license_level": 20, - "old_sub_level": 411, - "old_ttrating": 1350, - "oldi_rating": 2540, - "opt_laps_complete": 0, - "position": 13, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 4, - "color1": "4a98ff", - "color2": "0012fa", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": false, - "finish_position": 13, - "finish_position_in_class": 1, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 0, - "interval": 46635, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 0, - "color1": "ffffff", - "color2": "cccccc", - "color3": "666666", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "10", - "wheel_color": "ffb649", - "rim_type": 2 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 13, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 4, - "color1": "4a98ff", - "color2": "0012fa", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -134144, - "display_name": "BLOO Racing by VR | 040", - "aggregate_champ_points": 138, - "ai": false, - "average_lap": 982958, - "best_lap_num": 2, - "best_lap_time": 980672, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:09Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 980672, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 1257, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -134144, - "cust_id": 390389, - "display_name": "Geordi Vermeulen", - "aggregate_champ_points": 138, - "ai": false, - "average_lap": 982958, - "best_lap_num": 2, - "best_lap_time": 980672, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:09Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 980672, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 1257, - "country_code": "NL", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 14, - "finish_position_in_class": 2, - "flair_id": 146, - "flair_name": "Netherlands", - "flair_shortname": "NLD", - "friend": false, - "helmet": { - "pattern": 38, - "color1": "0094ff", - "color2": "000000", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 47859, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 23, - "color1": "ffffff", - "color2": "8500ff", - "color3": "2176c0", - "number_font": 7, - "number_color1": "ffffff", - "number_color2": "0094ff", - "number_color3": "000000", - "number_slant": 1, - "sponsor1": 323, - "sponsor2": 245, - "car_number": "040", - "wheel_color": "010101", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 267.66696, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 3669, - "old_cpi": 92.9855, - "old_license_level": 19, - "old_sub_level": 399, - "old_ttrating": 1350, - "oldi_rating": 3639, - "opt_laps_complete": 0, - "position": 14, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 33, - "color1": "000000", - "color2": "c2000b", - "color3": "0094ff" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": false, - "finish_position": 14, - "finish_position_in_class": 2, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 0, - "interval": 47859, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 23, - "color1": "ffffff", - "color2": "8500ff", - "color3": "2176c0", - "number_font": 7, - "number_color1": "ffffff", - "number_color2": "0094ff", - "number_color3": "000000", - "number_slant": 1, - "sponsor1": 323, - "sponsor2": 245, - "car_number": "040", - "wheel_color": "010101", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 14, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 33, - "color1": "000000", - "color2": "c2000b", - "color3": "0094ff" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -348667, - "display_name": "Speed Eagles Gold", - "aggregate_champ_points": 75, - "ai": false, - "average_lap": 985377, - "best_lap_num": 2, - "best_lap_time": 981374, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:26Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 981374, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 1959, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -348667, - "cust_id": 532947, - "display_name": "Dawid Dlugokecki", - "aggregate_champ_points": 75, - "ai": false, - "average_lap": 985377, - "best_lap_num": 2, - "best_lap_time": 981374, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:26Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 981374, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 1959, - "country_code": "PL", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 15, - "finish_position_in_class": 3, - "flair_id": 167, - "flair_name": "Poland", - "flair_shortname": "POL", - "friend": false, - "helmet": { - "pattern": 26, - "color1": "740004", - "color2": "000000", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 48561, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 6, - "color1": "23548f", - "color2": "000000", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "000000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "44", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 79.3237, - "new_license_level": 19, - "new_sub_level": 375, - "new_ttrating": 1350, - "newi_rating": 2670, - "old_cpi": 65.30674, - "old_license_level": 19, - "old_sub_level": 346, - "old_ttrating": 1350, - "oldi_rating": 2667, - "opt_laps_complete": 0, - "position": 15, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 25, - "color1": "000000", - "color2": "1d70b8", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": false, - "finish_position": 15, - "finish_position_in_class": 3, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 0, - "interval": 48561, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 6, - "color1": "23548f", - "color2": "000000", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "000000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "44", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 15, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 25, - "color1": "000000", - "color2": "1d70b8", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -217878, - "display_name": "Katzes Racing League #Beta", - "aggregate_champ_points": 62, - "ai": false, - "average_lap": 984565, - "best_lap_num": 2, - "best_lap_time": 983051, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:08Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 983051, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 3636, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -217878, - "cust_id": 240174, - "display_name": "Steven Lexow", - "aggregate_champ_points": 62, - "ai": false, - "average_lap": 984565, - "best_lap_num": 2, - "best_lap_time": 983051, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:08Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 983051, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 3636, - "country_code": "DE", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 16, - "finish_position_in_class": 4, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 9, - "color1": "a80000", - "color2": "000000", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 50238, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 22, - "color1": "000000", - "color2": "ff7800", - "color3": "005f99", - "number_font": 3, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "042", - "wheel_color": "ffffff", - "rim_type": 3 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 151.4998, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 2787, - "old_cpi": 86.411354, - "old_license_level": 20, - "old_sub_level": 430, - "old_ttrating": 1350, - "oldi_rating": 2788, - "opt_laps_complete": 0, - "position": 16, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 21, - "color1": "000000", - "color2": "ededed", - "color3": "F98E1D" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": false, - "finish_position": 16, - "finish_position_in_class": 4, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 0, - "interval": 50238, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 22, - "color1": "000000", - "color2": "ff7800", - "color3": "005f99", - "number_font": 3, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "042", - "wheel_color": "ffffff", - "rim_type": 3 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 16, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 21, - "color1": "000000", - "color2": "ededed", - "color3": "F98E1D" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -53704, - "display_name": "LITHIUM Motorsports", - "aggregate_champ_points": 125, - "ai": false, - "average_lap": 995711, - "best_lap_num": 2, - "best_lap_time": 983248, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:10Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 983248, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 3833, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -53704, - "cust_id": 639803, - "display_name": "Alexander Secher", - "aggregate_champ_points": 125, - "ai": false, - "average_lap": 995711, - "best_lap_num": 2, - "best_lap_time": 983248, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:10Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 983248, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 3833, - "country_code": "DK", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 17, - "finish_position_in_class": 5, - "flair_id": 56, - "flair_name": "Denmark", - "flair_shortname": "DNK", - "friend": false, - "helmet": { - "pattern": 59, - "color1": "ffffff", - "color2": "ff0505", - "color3": "6d6d6d", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 50435, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 0, - "color1": "2c2c2c", - "color2": "000000", - "color3": "484848", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "15", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 100.56424, - "new_license_level": 20, - "new_sub_level": 453, - "new_ttrating": 1350, - "newi_rating": 2336, - "old_cpi": 78.96949, - "old_license_level": 19, - "old_sub_level": 375, - "old_ttrating": 1350, - "oldi_rating": 2316, - "opt_laps_complete": 0, - "position": 17, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 3, - "color1": "104C5F", - "color2": "FFFFFF", - "color3": "F0B100" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": false, - "finish_position": 17, - "finish_position_in_class": 5, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 0, - "interval": 50435, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 0, - "color1": "2c2c2c", - "color2": "000000", - "color3": "484848", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "15", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 17, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 3, - "color1": "104C5F", - "color2": "FFFFFF", - "color3": "F0B100" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -385439, - "display_name": "TRC Endurance 01", - "aggregate_champ_points": 12, - "ai": false, - "average_lap": 985444, - "best_lap_num": 2, - "best_lap_time": 984061, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:27Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 984061, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 4646, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -385439, - "cust_id": 1118747, - "display_name": "Zack Heiderstadt", - "aggregate_champ_points": 12, - "ai": false, - "average_lap": 985444, - "best_lap_num": 2, - "best_lap_time": 984061, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:27Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 984061, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 4646, - "country_code": "US", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 18, - "finish_position_in_class": 6, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 59, - "color1": "aeaeae", - "color2": "0c00b1", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 51248, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 5, - "color1": "FFFFFF", - "color2": "941FB7", - "color3": "80FF00", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "9", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 70.23805, - "new_license_level": 16, - "new_sub_level": 457, - "new_ttrating": 1295, - "newi_rating": 3101, - "old_cpi": 38.609806, - "old_license_level": 14, - "old_sub_level": 279, - "old_ttrating": 1295, - "oldi_rating": 3129, - "opt_laps_complete": 0, - "position": 18, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 30, - "color1": "2508d3", - "color2": "000000", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": false, - "finish_position": 18, - "finish_position_in_class": 6, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 0, - "interval": 51248, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 5, - "color1": "FFFFFF", - "color2": "941FB7", - "color3": "80FF00", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "9", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 18, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 30, - "color1": "2508d3", - "color2": "000000", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -310391, - "display_name": "4ORGE Lions", - "aggregate_champ_points": 87, - "ai": false, - "average_lap": 988712, - "best_lap_num": 2, - "best_lap_time": 986231, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:11Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 986231, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 6816, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -310391, - "cust_id": 635525, - "display_name": "Rich Gregory", - "aggregate_champ_points": 87, - "ai": false, - "average_lap": 988712, - "best_lap_num": 2, - "best_lap_time": 986231, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:11Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 986231, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 6816, - "country_code": "GB", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 19, - "finish_position_in_class": 7, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 45, - "color1": "ffffff", - "color2": "000000", - "color3": "ff0000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 53418, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 7, - "color1": "ff0000", - "color2": "ffffff", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "11", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 79.90745, - "new_license_level": 19, - "new_sub_level": 377, - "new_ttrating": 1350, - "newi_rating": 2137, - "old_cpi": 61.902596, - "old_license_level": 19, - "old_sub_level": 338, - "old_ttrating": 1350, - "oldi_rating": 2129, - "opt_laps_complete": 0, - "position": 19, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 13, - "color1": "ff0000", - "color2": "870005", - "color3": "2900ef" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": false, - "finish_position": 19, - "finish_position_in_class": 7, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 0, - "interval": 53418, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 7, - "color1": "ff0000", - "color2": "ffffff", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "11", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 19, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 13, - "color1": "ff0000", - "color2": "870005", - "color3": "2900ef" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -188879, - "display_name": "Wildfire Racing Dragon", - "aggregate_champ_points": 112, - "ai": false, - "average_lap": 988722, - "best_lap_num": 2, - "best_lap_time": 986302, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:08:11Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 986302, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 6887, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -188879, - "cust_id": 751768, - "display_name": "Sean Nisizaka Smit", - "aggregate_champ_points": 112, - "ai": false, - "average_lap": 988722, - "best_lap_num": 2, - "best_lap_time": 986302, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:08:11Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 986302, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 6887, - "country_code": "AU", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 20, - "finish_position_in_class": 8, - "flair_id": 16, - "flair_name": "Australia", - "flair_shortname": "AUS", - "friend": false, - "helmet": { - "pattern": 6, - "color1": "ffffff", - "color2": "ff0000", - "color3": "0075ff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 53489, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 1, - "color1": "0db700", - "color2": "ffffff", - "color3": "000000", - "number_font": 16, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "129", - "wheel_color": "929292", - "rim_type": 2 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 61.77475, - "new_license_level": 18, - "new_sub_level": 294, - "new_ttrating": 1336, - "newi_rating": 2123, - "old_cpi": 44.15168, - "old_license_level": 18, - "old_sub_level": 243, - "old_ttrating": 1336, - "oldi_rating": 2114, - "opt_laps_complete": 0, - "position": 20, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 20, - "color1": "000000", - "color2": "06ff00", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": false, - "finish_position": 20, - "finish_position_in_class": 8, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 0, - "interval": 53489, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 1, - "color1": "0db700", - "color2": "ffffff", - "color3": "000000", - "number_font": 16, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "129", - "wheel_color": "929292", - "rim_type": 2 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 20, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 20, - "color1": "000000", - "color2": "06ff00", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -169135, - "display_name": "BMW M Plower #557", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 989894, - "best_lap_num": 2, - "best_lap_time": 986850, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:15Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 986850, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 7435, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -169135, - "cust_id": 374188, - "display_name": "Lars Wiele", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 989894, - "best_lap_num": 2, - "best_lap_time": 986850, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:15Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 986850, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 7435, - "country_code": "DE", - "division": 1, - "division_name": "Division 2", - "drop_race": true, - "finish_position": 21, - "finish_position_in_class": 9, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 2, - "color1": "6f9556", - "color2": "111111", - "color3": "efd600", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 54037, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 1, - "color1": "6f9556", - "color2": "111111", - "color3": "efd600", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "557", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 108.826164, - "new_license_level": 20, - "new_sub_level": 465, - "new_ttrating": 1350, - "newi_rating": 3266, - "old_cpi": 140.98111, - "old_license_level": 20, - "old_sub_level": 499, - "old_ttrating": 1350, - "oldi_rating": 3386, - "opt_laps_complete": 0, - "position": 21, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 19, - "color1": "0c0fb4", - "color2": "299467", - "color3": "d1f100" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": true, - "finish_position": 21, - "finish_position_in_class": 9, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 0, - "interval": 54037, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 1, - "color1": "6f9556", - "color2": "111111", - "color3": "efd600", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "557", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 21, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 19, - "color1": "0c0fb4", - "color2": "299467", - "color3": "d1f100" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -479098, - "display_name": "Lightning Racing Team - #86", - "aggregate_champ_points": 100, - "ai": false, - "average_lap": 989709, - "best_lap_num": 2, - "best_lap_time": 988744, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:31Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 988744, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 9329, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -479098, - "cust_id": 1133857, - "display_name": "Pierre Peytral Yagüe", - "aggregate_champ_points": 100, - "ai": false, - "average_lap": 989709, - "best_lap_num": 2, - "best_lap_time": 988744, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:31Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 988744, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 9329, - "country_code": "FR", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 22, - "finish_position_in_class": 10, - "flair_id": 71, - "flair_name": "France", - "flair_shortname": "FRA", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "fc0706", - "color2": "111111", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 55931, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 12, - "color1": "ff78ff", - "color2": "000000", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "43", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 189.7976, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 2834, - "old_cpi": 46.85185, - "old_license_level": 18, - "old_sub_level": 252, - "old_ttrating": 1350, - "oldi_rating": 2816, - "opt_laps_complete": 0, - "position": 22, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 21, - "color1": "f200ff", - "color2": "ffffff", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": false, - "finish_position": 22, - "finish_position_in_class": 10, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 0, - "interval": 55931, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 12, - "color1": "ff78ff", - "color2": "000000", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "43", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 22, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 21, - "color1": "f200ff", - "color2": "ffffff", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -479845, - "display_name": "DSDF Racing LMP2", - "aggregate_champ_points": 25, - "ai": false, - "average_lap": 990339, - "best_lap_num": 1, - "best_lap_time": 990018, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:05:31Z", - "best_qual_lap_num": 1, - "best_qual_lap_time": 990018, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 10603, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -479845, - "cust_id": 1010930, - "display_name": "James Seale", - "aggregate_champ_points": 25, - "ai": false, - "average_lap": 990339, - "best_lap_num": 1, - "best_lap_time": 990018, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:05:31Z", - "best_qual_lap_num": 1, - "best_qual_lap_time": 990018, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": 10603, - "country_code": "GB", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 23, - "finish_position_in_class": 11, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 4, - "color1": "0a0a0a", - "color2": "ffffff", - "color3": "ff0000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 57205, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 21, - "color1": "ffffff", - "color2": "ff0000", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "ff0000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 221, - "sponsor2": 7, - "car_number": "155", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 59.186558, - "new_license_level": 12, - "new_sub_level": 488, - "new_ttrating": 1649, - "newi_rating": 2544, - "old_cpi": 26.148556, - "old_license_level": 11, - "old_sub_level": 319, - "old_ttrating": 1649, - "oldi_rating": 2563, - "opt_laps_complete": 0, - "position": 23, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 32, - "color1": "000000", - "color2": "ff0000", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": false, - "finish_position": 23, - "finish_position_in_class": 11, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 0, - "interval": 57205, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 21, - "color1": "ffffff", - "color2": "ff0000", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "ff0000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 221, - "sponsor2": 7, - "car_number": "155", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 23, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 32, - "color1": "000000", - "color2": "ff0000", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -483219, - "display_name": "Velocity X Rhythm Racing Team", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1045454, - "best_lap_num": 2, - "best_lap_time": 1042763, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:08:01Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1042763, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 188, - "car_name": "McLaren 720S GT3 EVO", - "carcfg": -1, - "champ_points": 0, - "class_interval": 0, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -483219, - "cust_id": 1283272, - "display_name": "Mario García Muriel", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1045454, - "best_lap_num": 2, - "best_lap_time": 1042763, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:08:01Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1042763, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 188, - "car_name": "McLaren 720S GT3 EVO", - "carcfg": -1, - "champ_points": 0, - "class_interval": 0, - "country_code": "ES", - "division": 1, - "division_name": "Division 2", - "drop_race": true, - "finish_position": 24, - "finish_position_in_class": 0, - "flair_id": 198, - "flair_name": "Spain", - "flair_shortname": "ESP", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "231f20", - "color2": "808080", - "color3": "f26722", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 109950, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 188, - "pattern": 1, - "color1": "FF0000", - "color2": "00FF00", - "color3": "0000FF", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "31", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 97, - "new_cpi": 43.159573, - "new_license_level": 17, - "new_sub_level": 197, - "new_ttrating": 1350, - "newi_rating": 3435, - "old_cpi": 30.48215, - "old_license_level": 17, - "old_sub_level": 143, - "old_ttrating": 1350, - "oldi_rating": 3486, - "opt_laps_complete": 0, - "position": 24, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "231f20", - "color2": "808080", - "color3": "f26722" - }, - "watched": false, - "weight_penalty_kg": 5 - } - ], - "drop_race": true, - "finish_position": 24, - "finish_position_in_class": 0, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 0, - "interval": 109950, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 188, - "pattern": 1, - "color1": "FF0000", - "color2": "00FF00", - "color3": "0000FF", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "31", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 97, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 24, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "231f20", - "color2": "808080", - "color3": "f26722" - }, - "watched": false, - "weight_penalty_kg": 5 - }, - { - "team_id": -457552, - "display_name": "DB3 MOTORSPORT | REMESI", - "aggregate_champ_points": 137, - "ai": false, - "average_lap": 1046141, - "best_lap_num": 2, - "best_lap_time": 1043422, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:51Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1043422, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 659, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -457552, - "cust_id": 673113, - "display_name": "Gerd Zechner", - "aggregate_champ_points": 137, - "ai": false, - "average_lap": 1046141, - "best_lap_num": 2, - "best_lap_time": 1043422, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:51Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1043422, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 659, - "country_code": "AT", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 25, - "finish_position_in_class": 1, - "flair_id": 17, - "flair_name": "Austria", - "flair_shortname": "AUT", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "111111", - "color2": "ffffff", - "color3": "fc0706", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 110609, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "77fa03", - "color2": "ed2129", - "color3": "b0ec02", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "13", - "wheel_color": "000000", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 83.24767, - "new_license_level": 19, - "new_sub_level": 383, - "new_ttrating": 1350, - "newi_rating": 3031, - "old_cpi": 65.06985, - "old_license_level": 19, - "old_sub_level": 346, - "old_ttrating": 1350, - "oldi_rating": 3014, - "opt_laps_complete": 0, - "position": 25, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 11, - "color1": "d9003b", - "color2": "ffffff", - "color3": "0011f9" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 25, - "finish_position_in_class": 1, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 0, - "interval": 110609, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "77fa03", - "color2": "ed2129", - "color3": "b0ec02", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "13", - "wheel_color": "000000", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 25, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 11, - "color1": "d9003b", - "color2": "ffffff", - "color3": "0011f9" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -287336, - "display_name": "W2W Racing Red", - "aggregate_champ_points": 133, - "ai": false, - "average_lap": 1050018, - "best_lap_num": 2, - "best_lap_time": 1044323, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:09:22Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1044323, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 1560, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -287336, - "cust_id": 392017, - "display_name": "Jorge Reyes3", - "aggregate_champ_points": 133, - "ai": false, - "average_lap": 1050018, - "best_lap_num": 2, - "best_lap_time": 1044323, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:09:22Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1044323, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 1560, - "country_code": "BO", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 26, - "finish_position_in_class": 2, - "flair_id": 28, - "flair_name": "Bolivia", - "flair_shortname": "BES", - "friend": false, - "helmet": { - "pattern": 28, - "color1": "0012ff", - "color2": "3145a5", - "color3": "f00000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 2, - "interval": 111510, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 15, - "color1": "f3ff06", - "color2": "0e9720", - "color3": "f3ff06", - "number_font": 53, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 2, - "sponsor1": 221, - "sponsor2": 0, - "car_number": "26", - "wheel_color": "000000", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 45.28575, - "new_license_level": 18, - "new_sub_level": 247, - "new_ttrating": 1350, - "newi_rating": 2245, - "old_cpi": 32.465076, - "old_license_level": 17, - "old_sub_level": 153, - "old_ttrating": 1350, - "oldi_rating": 2221, - "opt_laps_complete": 0, - "position": 26, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 10, - "color1": "ad1210", - "color2": "000000", - "color3": "ad1210" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 26, - "finish_position_in_class": 2, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 2, - "interval": 111510, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 15, - "color1": "f3ff06", - "color2": "0e9720", - "color3": "f3ff06", - "number_font": 53, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 2, - "sponsor1": 221, - "sponsor2": 0, - "car_number": "26", - "wheel_color": "000000", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 26, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 10, - "color1": "ad1210", - "color2": "000000", - "color3": "ad1210" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -159911, - "display_name": "Austrian Simracers Blue", - "aggregate_champ_points": 62, - "ai": false, - "average_lap": 1046353, - "best_lap_num": 2, - "best_lap_time": 1044381, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:55Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1044381, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 1618, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -159911, - "cust_id": 1003691, - "display_name": "David Kinzlhofer", - "aggregate_champ_points": 62, - "ai": false, - "average_lap": 1046353, - "best_lap_num": 2, - "best_lap_time": 1044381, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:55Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1044381, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 1618, - "country_code": "AT", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 27, - "finish_position_in_class": 3, - "flair_id": 17, - "flair_name": "Austria", - "flair_shortname": "AUT", - "friend": false, - "helmet": { - "pattern": 36, - "color1": "8700ff", - "color2": "b500ff", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 111568, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "ffffff", - "color2": "000000", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "000000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "255", - "wheel_color": "7a7767", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 59.09998, - "new_license_level": 18, - "new_sub_level": 287, - "new_ttrating": 1350, - "newi_rating": 2814, - "old_cpi": 39.52622, - "old_license_level": 18, - "old_sub_level": 227, - "old_ttrating": 1350, - "oldi_rating": 2816, - "opt_laps_complete": 0, - "position": 27, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 19, - "color1": "000000", - "color2": "FFFFFF", - "color3": "FF0000" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 27, - "finish_position_in_class": 3, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 0, - "interval": 111568, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "ffffff", - "color2": "000000", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "000000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "255", - "wheel_color": "7a7767", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 27, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 19, - "color1": "000000", - "color2": "FFFFFF", - "color3": "FF0000" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -467249, - "display_name": "Simtec Racing Team #474", - "aggregate_champ_points": 44, - "ai": false, - "average_lap": 1047601, - "best_lap_num": 2, - "best_lap_time": 1044829, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:27Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1044829, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 2066, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -467249, - "cust_id": 1174682, - "display_name": "Craig Law", - "aggregate_champ_points": 44, - "ai": false, - "average_lap": 1047601, - "best_lap_num": 2, - "best_lap_time": 1044829, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:27Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1044829, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 2066, - "country_code": "NIR", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 28, - "finish_position_in_class": 4, - "flair_id": 239, - "flair_name": "Northern Ireland", - "flair_shortname": "NIR", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "ffffff", - "color2": "4076bc", - "color3": "c8d92b", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 112016, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 3, - "color1": "42c6ef", - "color2": "111111", - "color3": "0b0b0a", - "number_font": 9, - "number_color1": "000000", - "number_color2": "f4f4f4", - "number_color3": "fafafa", - "number_slant": 0, - "sponsor1": 221, - "sponsor2": 0, - "car_number": "472", - "wheel_color": "000000", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 54.50814, - "new_license_level": 18, - "new_sub_level": 275, - "new_ttrating": 1350, - "newi_rating": 2559, - "old_cpi": 42.040413, - "old_license_level": 18, - "old_sub_level": 236, - "old_ttrating": 1350, - "oldi_rating": 2567, - "opt_laps_complete": 0, - "position": 28, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 5, - "color1": "11e5e5", - "color2": "030303", - "color3": "030303" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 28, - "finish_position_in_class": 4, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 0, - "interval": 112016, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 3, - "color1": "42c6ef", - "color2": "111111", - "color3": "0b0b0a", - "number_font": 9, - "number_color1": "000000", - "number_color2": "f4f4f4", - "number_color3": "fafafa", - "number_slant": 0, - "sponsor1": 221, - "sponsor2": 0, - "car_number": "472", - "wheel_color": "000000", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 28, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 5, - "color1": "11e5e5", - "color2": "030303", - "color3": "030303" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -480134, - "display_name": "Club 100 Sim Racers", - "aggregate_champ_points": 119, - "ai": false, - "average_lap": 1048121, - "best_lap_num": 2, - "best_lap_time": 1045060, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:40Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1045060, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 2297, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -480134, - "cust_id": 133722, - "display_name": "James DeHavillande", - "aggregate_champ_points": 119, - "ai": false, - "average_lap": 1048121, - "best_lap_num": 2, - "best_lap_time": 1045060, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:40Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1045060, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 2297, - "country_code": "GB", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 29, - "finish_position_in_class": 5, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 60, - "color1": "eb0000", - "color2": "0009db", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 112247, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 11, - "color1": "000000", - "color2": "ff0000", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "125", - "wheel_color": "b32e2e", - "rim_type": 3 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 92.82705, - "new_license_level": 19, - "new_sub_level": 399, - "new_ttrating": 1350, - "newi_rating": 3886, - "old_cpi": 38.696655, - "old_license_level": 18, - "old_sub_level": 224, - "old_ttrating": 1350, - "oldi_rating": 3868, - "opt_laps_complete": 0, - "position": 29, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 3, - "color1": "000000", - "color2": "ee6b00", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 29, - "finish_position_in_class": 5, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 0, - "interval": 112247, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 11, - "color1": "000000", - "color2": "ff0000", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "125", - "wheel_color": "b32e2e", - "rim_type": 3 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 29, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 3, - "color1": "000000", - "color2": "ee6b00", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -454234, - "display_name": "TKG Simsport PRO", - "aggregate_champ_points": 128, - "ai": false, - "average_lap": 1045186, - "best_lap_num": 2, - "best_lap_time": 1045186, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:41Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1045186, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 2423, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -454234, - "cust_id": 678081, - "display_name": "Carter A Thompson", - "aggregate_champ_points": 128, - "ai": false, - "average_lap": 1045186, - "best_lap_num": 2, - "best_lap_time": 1045186, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:41Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1045186, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 2423, - "country_code": "US", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 30, - "finish_position_in_class": 6, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 59, - "color1": "ff2202", - "color2": "000000", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 1, - "interval": 112373, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 1, - "color1": "ff0000", - "color2": "00ff00", - "color3": "0000ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "20", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 31.197826, - "new_license_level": 14, - "new_sub_level": 246, - "new_ttrating": 1350, - "newi_rating": 2617, - "old_cpi": 24.810728, - "old_license_level": 14, - "old_sub_level": 211, - "old_ttrating": 1350, - "oldi_rating": 2600, - "opt_laps_complete": 0, - "position": 30, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 8, - "color1": "000000", - "color2": "000000", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 30, - "finish_position_in_class": 6, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 1, - "interval": 112373, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 1, - "color1": "ff0000", - "color2": "00ff00", - "color3": "0000ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "20", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 30, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 8, - "color1": "000000", - "color2": "000000", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -296646, - "display_name": "Uprise Motorsports", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1047057, - "best_lap_num": 2, - "best_lap_time": 1045382, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:30Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1045382, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 2619, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -296646, - "cust_id": 348147, - "display_name": "Connor Trifari", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1047057, - "best_lap_num": 2, - "best_lap_time": 1045382, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:30Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1045382, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 2619, - "country_code": "GS", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 31, - "finish_position_in_class": 7, - "flair_id": 196, - "flair_name": "South Georgia & South Sandwich Islands", - "flair_shortname": "SGS", - "friend": false, - "helmet": { - "pattern": 2, - "color1": "ff0000", - "color2": "ffffff", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 112569, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 2, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "53", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 50.541496, - "new_license_level": 18, - "new_sub_level": 264, - "new_ttrating": 1350, - "newi_rating": 3082, - "old_cpi": 56.433605, - "old_license_level": 18, - "old_sub_level": 281, - "old_ttrating": 1350, - "oldi_rating": 3100, - "opt_laps_complete": 0, - "position": 31, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 4, - "color1": "000000", - "color2": "ff190f", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 31, - "finish_position_in_class": 7, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 0, - "interval": 112569, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 2, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "53", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 31, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 4, - "color1": "000000", - "color2": "ff190f", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -472037, - "display_name": "APEXNOVA SIMRACING PURPLE", - "aggregate_champ_points": 97, - "ai": false, - "average_lap": 1045496, - "best_lap_num": 2, - "best_lap_time": 1045496, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:08:00Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1045496, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 2733, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -472037, - "cust_id": 363097, - "display_name": "Tobias Kracht", - "aggregate_champ_points": 97, - "ai": false, - "average_lap": 1045496, - "best_lap_num": 2, - "best_lap_time": 1045496, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:08:00Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1045496, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 2733, - "country_code": "DE", - "division": 6, - "division_name": "Division 7", - "drop_race": false, - "finish_position": 32, - "finish_position_in_class": 8, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 35, - "color1": "2575b0", - "color2": "7e1c6e", - "color3": "f90000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 1, - "interval": 112683, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 8, - "color1": "fb0ead", - "color2": "424242", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "17", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 57.572872, - "new_license_level": 15, - "new_sub_level": 384, - "new_ttrating": 1350, - "newi_rating": 2797, - "old_cpi": 31.962917, - "old_license_level": 14, - "old_sub_level": 250, - "old_ttrating": 1350, - "oldi_rating": 2783, - "opt_laps_complete": 0, - "position": 32, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 17, - "color1": "2F2F2F", - "color2": "404334", - "color3": "2F4F4F" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 32, - "finish_position_in_class": 8, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 1, - "interval": 112683, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 8, - "color1": "fb0ead", - "color2": "424242", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "17", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 32, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 17, - "color1": "2F2F2F", - "color2": "404334", - "color3": "2F4F4F" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -467225, - "display_name": "DCS Racing Green", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1049066, - "best_lap_num": 2, - "best_lap_time": 1046120, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:38Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1046120, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 3357, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -467225, - "cust_id": 1193552, - "display_name": "Nikos Nota", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1049066, - "best_lap_num": 2, - "best_lap_time": 1046120, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:38Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1046120, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 3357, - "country_code": "GR", - "division": 3, - "division_name": "Division 4", - "drop_race": true, - "finish_position": 33, - "finish_position_in_class": 9, - "flair_id": 80, - "flair_name": "Greece", - "flair_shortname": "GRC", - "friend": false, - "helmet": { - "pattern": 67, - "color1": "ffffff", - "color2": "fff500", - "color3": "fff500", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 113307, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "e0aa42", - "color2": "0ea2eb", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "22", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 29.04801, - "new_license_level": 13, - "new_sub_level": 194, - "new_ttrating": 1305, - "newi_rating": 3058, - "old_cpi": 21.94943, - "old_license_level": 13, - "old_sub_level": 150, - "old_ttrating": 1305, - "oldi_rating": 3142, - "opt_laps_complete": 0, - "position": 33, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 33, - "color1": "ffffff", - "color2": "60a6c9", - "color3": "1a1f43" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": true, - "finish_position": 33, - "finish_position_in_class": 9, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 0, - "interval": 113307, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "e0aa42", - "color2": "0ea2eb", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "22", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 33, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 33, - "color1": "ffffff", - "color2": "60a6c9", - "color3": "1a1f43" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -420531, - "display_name": "Angler Racing", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1048234, - "best_lap_num": 1, - "best_lap_time": 1048234, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:05:52Z", - "best_qual_lap_num": 1, - "best_qual_lap_time": 1048234, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 5471, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -420531, - "cust_id": 941901, - "display_name": "Paddy Armstrong", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1048234, - "best_lap_num": 1, - "best_lap_time": 1048234, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:05:52Z", - "best_qual_lap_num": 1, - "best_qual_lap_time": 1048234, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 5471, - "country_code": "SCT", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 34, - "finish_position_in_class": 10, - "flair_id": 237, - "flair_name": "Scotland", - "flair_shortname": "SCT", - "friend": false, - "helmet": { - "pattern": 57, - "color1": "838383", - "color2": "ffffff", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 1, - "interval": 115421, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "000000", - "color2": "000000", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "6", - "wheel_color": "c8bd9f", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 78.350105, - "new_license_level": 20, - "new_sub_level": 415, - "new_ttrating": 1260, - "newi_rating": 2157, - "old_cpi": 111.6487, - "old_license_level": 20, - "old_sub_level": 469, - "old_ttrating": 1260, - "oldi_rating": 2252, - "opt_laps_complete": 0, - "position": 34, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "000000", - "color2": "ff00de", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 34, - "finish_position_in_class": 10, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 1, - "interval": 115421, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "000000", - "color2": "000000", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "6", - "wheel_color": "c8bd9f", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 34, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "000000", - "color2": "ff00de", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -175849, - "display_name": "Maniti Racing Yellow", - "aggregate_champ_points": 93, - "ai": false, - "average_lap": 1048305, - "best_lap_num": 2, - "best_lap_time": 1048305, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:48Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1048305, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 156, - "car_name": "Mercedes-AMG GT3 2020", - "carcfg": -1, - "champ_points": 0, - "class_interval": 5542, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -175849, - "cust_id": 1060062, - "display_name": "Marvin Bär", - "aggregate_champ_points": 93, - "ai": false, - "average_lap": 1048305, - "best_lap_num": 2, - "best_lap_time": 1048305, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:48Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1048305, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 156, - "car_name": "Mercedes-AMG GT3 2020", - "carcfg": -1, - "champ_points": 0, - "class_interval": 5542, - "country_code": "DE", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 35, - "finish_position_in_class": 11, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 49, - "color1": "ffffff", - "color2": "bbbbbb", - "color3": "4a4a4a", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 1, - "interval": 115492, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 156, - "pattern": 0, - "color1": "000000", - "color2": "08ad22", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "78", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 99, - "new_cpi": 92.41379, - "new_license_level": 19, - "new_sub_level": 399, - "new_ttrating": 1350, - "newi_rating": 3092, - "old_cpi": 42.426422, - "old_license_level": 18, - "old_sub_level": 237, - "old_ttrating": 1350, - "oldi_rating": 3083, - "opt_laps_complete": 0, - "position": 35, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 29, - "color1": "00ff19", - "color2": "04ff00", - "color3": "42ff00" - }, - "watched": false, - "weight_penalty_kg": 3 - } - ], - "drop_race": false, - "finish_position": 35, - "finish_position_in_class": 11, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 1, - "interval": 115492, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 156, - "pattern": 0, - "color1": "000000", - "color2": "08ad22", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "78", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 99, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 35, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 29, - "color1": "00ff19", - "color2": "04ff00", - "color3": "42ff00" - }, - "watched": false, - "weight_penalty_kg": 3 - }, - { - "team_id": -224061, - "display_name": "Pineapple Racing Club", - "aggregate_champ_points": 88, - "ai": false, - "average_lap": 1051001, - "best_lap_num": 2, - "best_lap_time": 1048770, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:08:23Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1048770, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 185, - "car_name": "Ford Mustang GT3", - "carcfg": -1, - "champ_points": 0, - "class_interval": 6007, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -224061, - "cust_id": 301782, - "display_name": "Ben Cooper5", - "aggregate_champ_points": 88, - "ai": false, - "average_lap": 1051001, - "best_lap_num": 2, - "best_lap_time": 1048770, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:08:23Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1048770, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 185, - "car_name": "Ford Mustang GT3", - "carcfg": -1, - "champ_points": 0, - "class_interval": 6007, - "country_code": "GB", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 36, - "finish_position_in_class": 12, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 46, - "color1": "565555", - "color2": "fff500", - "color3": "ae0077", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 115957, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 185, - "pattern": 12, - "color1": "e3ff54", - "color2": "000000", - "color3": "004092", - "number_font": 0, - "number_color1": "004092", - "number_color2": "ffffff", - "number_color3": "777777", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "14", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 158.22897, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 3233, - "old_cpi": 202.223, - "old_license_level": 20, - "old_sub_level": 499, - "old_ttrating": 1350, - "oldi_rating": 3228, - "opt_laps_complete": 0, - "position": 36, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 19, - "color1": "252525", - "color2": "7952a2", - "color3": "ecef00" - }, - "watched": false, - "weight_penalty_kg": 10 - } - ], - "drop_race": false, - "finish_position": 36, - "finish_position_in_class": 12, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 0, - "interval": 115957, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 185, - "pattern": 12, - "color1": "e3ff54", - "color2": "000000", - "color3": "004092", - "number_font": 0, - "number_color1": "004092", - "number_color2": "ffffff", - "number_color3": "777777", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "14", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 36, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 19, - "color1": "252525", - "color2": "7952a2", - "color3": "ecef00" - }, - "watched": false, - "weight_penalty_kg": 10 - }, - { - "team_id": -298205, - "display_name": "CDLC", - "aggregate_champ_points": 79, - "ai": false, - "average_lap": 1052936, - "best_lap_num": 2, - "best_lap_time": 1048987, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:49Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1048987, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 188, - "car_name": "McLaren 720S GT3 EVO", - "carcfg": -1, - "champ_points": 0, - "class_interval": 6224, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -298205, - "cust_id": 692986, - "display_name": "Andreas Carlsson", - "aggregate_champ_points": 79, - "ai": false, - "average_lap": 1052936, - "best_lap_num": 2, - "best_lap_time": 1048987, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:49Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1048987, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 188, - "car_name": "McLaren 720S GT3 EVO", - "carcfg": -1, - "champ_points": 0, - "class_interval": 6224, - "country_code": "SE", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 37, - "finish_position_in_class": 13, - "flair_id": 203, - "flair_name": "Sweden", - "flair_shortname": "SWE", - "friend": false, - "helmet": { - "pattern": 59, - "color1": "000000", - "color2": "1e1e1e", - "color3": "007dff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 116174, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 188, - "pattern": 4, - "color1": "0073d2", - "color2": "ff5c00", - "color3": "292d33", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "46", - "wheel_color": "000000", - "rim_type": 2 - }, - "max_pct_fuel_fill": 97, - "new_cpi": 336.55923, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1375, - "newi_rating": 2873, - "old_cpi": 138.13417, - "old_license_level": 20, - "old_sub_level": 499, - "old_ttrating": 1375, - "oldi_rating": 2867, - "opt_laps_complete": 0, - "position": 37, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 31, - "color1": "000000", - "color2": "0378ff", - "color3": "ff4d00" - }, - "watched": false, - "weight_penalty_kg": 5 - } - ], - "drop_race": false, - "finish_position": 37, - "finish_position_in_class": 13, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 0, - "interval": 116174, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 188, - "pattern": 4, - "color1": "0073d2", - "color2": "ff5c00", - "color3": "292d33", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "46", - "wheel_color": "000000", - "rim_type": 2 - }, - "max_pct_fuel_fill": 97, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 37, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 31, - "color1": "000000", - "color2": "0378ff", - "color3": "ff4d00" - }, - "watched": false, - "weight_penalty_kg": 5 - }, - { - "team_id": -298823, - "display_name": "TEN MAD MEN Alpha", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1051828, - "best_lap_num": 2, - "best_lap_time": 1049400, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:08:15Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1049400, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 6637, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -298823, - "cust_id": 376421, - "display_name": "Jorge Leiva Ruiz", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1051828, - "best_lap_num": 2, - "best_lap_time": 1049400, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:08:15Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1049400, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 6637, - "country_code": "CL", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 38, - "finish_position_in_class": 14, - "flair_id": 44, - "flair_name": "Chile", - "flair_shortname": "CHL", - "friend": false, - "helmet": { - "pattern": 67, - "color1": "000000", - "color2": "00a0bc", - "color3": "c7c7c7", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 116587, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "ffffff", - "color2": "0013a5", - "color3": "ff5c00", - "number_font": 0, - "number_color1": "f3eeeb", - "number_color2": "ffffff", - "number_color3": "ffffff", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "010", - "wheel_color": "32312f", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 65.18878, - "new_license_level": 19, - "new_sub_level": 346, - "new_ttrating": 1350, - "newi_rating": 2447, - "old_cpi": 66.34217, - "old_license_level": 19, - "old_sub_level": 348, - "old_ttrating": 1350, - "oldi_rating": 2484, - "opt_laps_complete": 0, - "position": 38, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "e1ce30", - "color2": "ebe8e8", - "color3": "1c46ed" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 38, - "finish_position_in_class": 14, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 0, - "interval": 116587, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "ffffff", - "color2": "0013a5", - "color3": "ff5c00", - "number_font": 0, - "number_color1": "f3eeeb", - "number_color2": "ffffff", - "number_color3": "ffffff", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "010", - "wheel_color": "32312f", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 38, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "e1ce30", - "color2": "ebe8e8", - "color3": "1c46ed" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -287243, - "display_name": "Team MFM - SURVIVE!", - "aggregate_champ_points": 142, - "ai": false, - "average_lap": 1051770, - "best_lap_num": 2, - "best_lap_time": 1049415, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:08:43Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1049415, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 6652, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -287243, - "cust_id": 638036, - "display_name": "Cody Gayer", - "aggregate_champ_points": 142, - "ai": false, - "average_lap": 1051770, - "best_lap_num": 2, - "best_lap_time": 1049415, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:08:43Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1049415, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 6652, - "country_code": "US", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 39, - "finish_position_in_class": 15, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 67, - "color1": "01020e", - "color2": "d5c325", - "color3": "c91b20", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 116602, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 17, - "color1": "dddddd", - "color2": "ffff00", - "color3": "252525", - "number_font": 0, - "number_color1": "000000", - "number_color2": "737373", - "number_color3": "ffffff", - "number_slant": 4, - "sponsor1": 138, - "sponsor2": 7, - "car_number": "21", - "wheel_color": "ffff00", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 81.2526, - "new_license_level": 20, - "new_sub_level": 420, - "new_ttrating": 1350, - "newi_rating": 3094, - "old_cpi": 86.255455, - "old_license_level": 20, - "old_sub_level": 429, - "old_ttrating": 1350, - "oldi_rating": 3072, - "opt_laps_complete": 0, - "position": 39, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 7, - "color1": "252525", - "color2": "DDDDDD", - "color3": "004895" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 39, - "finish_position_in_class": 15, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 0, - "interval": 116602, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 17, - "color1": "dddddd", - "color2": "ffff00", - "color3": "252525", - "number_font": 0, - "number_color1": "000000", - "number_color2": "737373", - "number_color3": "ffffff", - "number_slant": 4, - "sponsor1": 138, - "sponsor2": 7, - "car_number": "21", - "wheel_color": "ffff00", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 39, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 7, - "color1": "252525", - "color2": "DDDDDD", - "color3": "004895" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -413546, - "display_name": "Should be Fine Motorsports", - "aggregate_champ_points": 110, - "ai": false, - "average_lap": 1049602, - "best_lap_num": 2, - "best_lap_time": 1049602, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:44Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1049602, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 6839, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -413546, - "cust_id": 1092119, - "display_name": "Chris Singh", - "aggregate_champ_points": 110, - "ai": false, - "average_lap": 1049602, - "best_lap_num": 2, - "best_lap_time": 1049602, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:44Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1049602, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 6839, - "country_code": "US", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 40, - "finish_position_in_class": 16, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 22, - "color1": "f9ff00", - "color2": "ff0000", - "color3": "00c341", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 2, - "interval": 116789, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 17, - "color1": "efd600", - "color2": "111111", - "color3": "d7162d", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "25", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 54.59016, - "new_license_level": 18, - "new_sub_level": 275, - "new_ttrating": 1350, - "newi_rating": 2797, - "old_cpi": 36.08681, - "old_license_level": 17, - "old_sub_level": 169, - "old_ttrating": 1350, - "oldi_rating": 2777, - "opt_laps_complete": 0, - "position": 40, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 33, - "color1": "00f035", - "color2": "020101", - "color3": "e61010" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 40, - "finish_position_in_class": 16, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 2, - "interval": 116789, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 17, - "color1": "efd600", - "color2": "111111", - "color3": "d7162d", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "25", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 40, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 33, - "color1": "00f035", - "color2": "020101", - "color3": "e61010" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -415465, - "display_name": "WFLM Motorsport Vortex", - "aggregate_champ_points": 71, - "ai": false, - "average_lap": 1050260, - "best_lap_num": 1, - "best_lap_time": 1050260, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:06:00Z", - "best_qual_lap_num": 1, - "best_qual_lap_time": 1050260, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 7497, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -415465, - "cust_id": 1294295, - "display_name": "Florïan Chevreuïl", - "aggregate_champ_points": 71, - "ai": false, - "average_lap": 1050260, - "best_lap_num": 1, - "best_lap_time": 1050260, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:06:00Z", - "best_qual_lap_num": 1, - "best_qual_lap_time": 1050260, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 7497, - "country_code": "FR", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 41, - "finish_position_in_class": 17, - "flair_id": 71, - "flair_name": "France", - "flair_shortname": "FRA", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 1, - "interval": 117447, - "laps_complete": 1, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 3, - "color1": "FF7000", - "color2": "73ECFF", - "color3": "0F0017", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "29", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 33.223705, - "new_license_level": 17, - "new_sub_level": 156, - "new_ttrating": 1350, - "newi_rating": 2683, - "old_cpi": 31.96522, - "old_license_level": 17, - "old_sub_level": 150, - "old_ttrating": 1350, - "oldi_rating": 2683, - "opt_laps_complete": 0, - "position": 41, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 28, - "color1": "0f0017", - "color2": "ff0021", - "color3": "ddecec" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 41, - "finish_position_in_class": 17, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 1, - "interval": 117447, - "laps_complete": 1, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 3, - "color1": "FF7000", - "color2": "73ECFF", - "color3": "0F0017", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "29", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 41, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 28, - "color1": "0f0017", - "color2": "ff0021", - "color3": "ddecec" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -248147, - "display_name": "IPM Yellow", - "aggregate_champ_points": 75, - "ai": false, - "average_lap": 1056932, - "best_lap_num": 2, - "best_lap_time": 1051171, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:42Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1051171, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 173, - "car_name": "Ferrari 296 GT3", - "carcfg": -1, - "champ_points": 0, - "class_interval": 8408, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -248147, - "cust_id": 19071, - "display_name": "Peter Terrana", - "aggregate_champ_points": 75, - "ai": false, - "average_lap": 1056932, - "best_lap_num": 2, - "best_lap_time": 1051171, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:42Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1051171, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 173, - "car_name": "Ferrari 296 GT3", - "carcfg": -1, - "champ_points": 0, - "class_interval": 8408, - "country_code": "US", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 42, - "finish_position_in_class": 18, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 34, - "color1": "DAF109", - "color2": "000000", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 118358, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 173, - "pattern": 9, - "color1": "ccf312", - "color2": "000000", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "698", - "wheel_color": "000000", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 69.72993, - "new_license_level": 19, - "new_sub_level": 356, - "new_ttrating": 1350, - "newi_rating": 2620, - "old_cpi": 45.854206, - "old_license_level": 18, - "old_sub_level": 249, - "old_ttrating": 1350, - "oldi_rating": 2617, - "opt_laps_complete": 0, - "position": 42, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 27, - "color1": "23231f", - "color2": "131415", - "color3": "f2f12c" - }, - "watched": false, - "weight_penalty_kg": 3 - } - ], - "drop_race": false, - "finish_position": 42, - "finish_position_in_class": 18, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 0, - "interval": 118358, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 173, - "pattern": 9, - "color1": "ccf312", - "color2": "000000", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "698", - "wheel_color": "000000", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 42, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 27, - "color1": "23231f", - "color2": "131415", - "color3": "f2f12c" - }, - "watched": false, - "weight_penalty_kg": 3 - }, - { - "team_id": -316329, - "display_name": "Milwauchibre Racing Team", - "aggregate_champ_points": 39, - "ai": false, - "average_lap": 1051295, - "best_lap_num": 2, - "best_lap_time": 1051295, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:40Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1051295, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 8532, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -316329, - "cust_id": 879626, - "display_name": "Nicolas De Saint Riquier", - "aggregate_champ_points": 39, - "ai": false, - "average_lap": 1051295, - "best_lap_num": 2, - "best_lap_time": 1051295, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:40Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1051295, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 8532, - "country_code": "FR", - "division": 4, - "division_name": "Division 5", - "drop_race": false, - "finish_position": 43, - "finish_position_in_class": 19, - "flair_id": 71, - "flair_name": "France", - "flair_shortname": "FRA", - "friend": false, - "helmet": { - "pattern": 35, - "color1": "000000", - "color2": "ff0000", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 1, - "interval": 118482, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 8, - "color1": "FFFFFF", - "color2": "6900FF", - "color3": "FF00ED", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "27", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 49.39754, - "new_license_level": 18, - "new_sub_level": 260, - "new_ttrating": 1350, - "newi_rating": 2166, - "old_cpi": 32.16721, - "old_license_level": 17, - "old_sub_level": 151, - "old_ttrating": 1350, - "oldi_rating": 2187, - "opt_laps_complete": 0, - "position": 43, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 22, - "color1": "404040", - "color2": "bebebe", - "color3": "b78a00" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 43, - "finish_position_in_class": 19, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 1, - "interval": 118482, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 8, - "color1": "FFFFFF", - "color2": "6900FF", - "color3": "FF00ED", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "27", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 43, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 22, - "color1": "404040", - "color2": "bebebe", - "color3": "b78a00" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -480346, - "display_name": "Almeida Endurance Racing Black", - "aggregate_champ_points": 124, - "ai": false, - "average_lap": 1054056, - "best_lap_num": 2, - "best_lap_time": 1051444, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:08:00Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1051444, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 8681, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -480346, - "cust_id": 346886, - "display_name": "Adrian Hopp", - "aggregate_champ_points": 124, - "ai": false, - "average_lap": 1054056, - "best_lap_num": 2, - "best_lap_time": 1051444, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:08:00Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1051444, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 8681, - "country_code": "DE", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 44, - "finish_position_in_class": 20, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 21, - "color1": "000000", - "color2": "ffffff", - "color3": "fa0200", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 1, - "interval": 118631, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 14, - "color1": "FFED00", - "color2": "00C4FF", - "color3": "87C42E", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "18", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 161.57109, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1311, - "newi_rating": 3055, - "old_cpi": 84.49169, - "old_license_level": 19, - "old_sub_level": 385, - "old_ttrating": 1311, - "oldi_rating": 3033, - "opt_laps_complete": 0, - "position": 44, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 32, - "color1": "ffffff", - "color2": "fff200", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 44, - "finish_position_in_class": 20, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 1, - "interval": 118631, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 14, - "color1": "FFED00", - "color2": "00C4FF", - "color3": "87C42E", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "18", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 44, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 32, - "color1": "ffffff", - "color2": "fff200", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -398466, - "display_name": "Leche Condensada Racing Team", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1052560, - "best_lap_num": 1, - "best_lap_time": 1052560, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:05:54Z", - "best_qual_lap_num": 1, - "best_qual_lap_time": 1052560, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 9797, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -398466, - "cust_id": 1110076, - "display_name": "Abel Ros", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1052560, - "best_lap_num": 1, - "best_lap_time": 1052560, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:05:54Z", - "best_qual_lap_num": 1, - "best_qual_lap_time": 1052560, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 9797, - "country_code": "ES", - "division": 3, - "division_name": "Division 4", - "drop_race": true, - "finish_position": 45, - "finish_position_in_class": 21, - "flair_id": 198, - "flair_name": "Spain", - "flair_shortname": "ESP", - "friend": false, - "helmet": { - "pattern": 58, - "color1": "ee0000", - "color2": "e0fa0c", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 1, - "interval": 119747, - "laps_complete": 1, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 8, - "color1": "F5F9F4", - "color2": "000000", - "color3": "EDF4EE", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "28", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 63.223633, - "new_license_level": 19, - "new_sub_level": 341, - "new_ttrating": 1364, - "newi_rating": 2580, - "old_cpi": 79.276924, - "old_license_level": 19, - "old_sub_level": 375, - "old_ttrating": 1364, - "oldi_rating": 2590, - "opt_laps_complete": 0, - "position": 45, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 33, - "color1": "103fe6", - "color2": "f3f3f3", - "color3": "f60909" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": true, - "finish_position": 45, - "finish_position_in_class": 21, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 1, - "interval": 119747, - "laps_complete": 1, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 8, - "color1": "F5F9F4", - "color2": "000000", - "color3": "EDF4EE", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "28", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 45, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 33, - "color1": "103fe6", - "color2": "f3f3f3", - "color3": "f60909" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -298487, - "display_name": "Parc Motorsport Team Purple", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1074633, - "best_lap_num": 2, - "best_lap_time": 1052591, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:08:19Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1052591, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 9828, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -298487, - "cust_id": 784148, - "display_name": "Krzysztof Olender2", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1074633, - "best_lap_num": 2, - "best_lap_time": 1052591, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:08:19Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1052591, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 9828, - "country_code": "PL", - "division": 3, - "division_name": "Division 4", - "drop_race": true, - "finish_position": 46, - "finish_position_in_class": 22, - "flair_id": 167, - "flair_name": "Poland", - "flair_shortname": "POL", - "friend": false, - "helmet": { - "pattern": 43, - "color1": "eaff00", - "color2": "00e0ff", - "color3": "db00ff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 119778, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 9, - "color1": "000000", - "color2": "8700ff", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "97", - "wheel_color": "000000", - "rim_type": 3 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 36.04055, - "new_license_level": 14, - "new_sub_level": 269, - "new_ttrating": 1350, - "newi_rating": 2615, - "old_cpi": 42.249332, - "old_license_level": 14, - "old_sub_level": 293, - "old_ttrating": 1350, - "oldi_rating": 2719, - "opt_laps_complete": 0, - "position": 46, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 28, - "color1": "000000", - "color2": "7800ff", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": true, - "finish_position": 46, - "finish_position_in_class": 22, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 0, - "interval": 119778, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 9, - "color1": "000000", - "color2": "8700ff", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "97", - "wheel_color": "000000", - "rim_type": 3 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 46, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 28, - "color1": "000000", - "color2": "7800ff", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -454924, - "display_name": "Top Tier Motorsport #222", - "aggregate_champ_points": 102, - "ai": false, - "average_lap": 1054291, - "best_lap_num": 1, - "best_lap_time": 1052970, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:06:05Z", - "best_qual_lap_num": 1, - "best_qual_lap_time": 1052970, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 10207, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -454924, - "cust_id": 855270, - "display_name": "Dan Munro", - "aggregate_champ_points": 102, - "ai": false, - "average_lap": 1054291, - "best_lap_num": 1, - "best_lap_time": 1052970, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:06:05Z", - "best_qual_lap_num": 1, - "best_qual_lap_time": 1052970, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 10207, - "country_code": "GB", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 47, - "finish_position_in_class": 23, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "111111", - "color2": "ed1c24", - "color3": "cccccc", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 120157, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 4, - "color1": "efd600", - "color2": "111111", - "color3": "d7162d", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "222", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 37.095116, - "new_license_level": 11, - "new_sub_level": 373, - "new_ttrating": 1350, - "newi_rating": 2026, - "old_cpi": 19.39725, - "old_license_level": 10, - "old_sub_level": 230, - "old_ttrating": 1350, - "oldi_rating": 2017, - "opt_laps_complete": 0, - "position": 47, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 33, - "color1": "9500f0", - "color2": "111111", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 47, - "finish_position_in_class": 23, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 0, - "interval": 120157, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 4, - "color1": "efd600", - "color2": "111111", - "color3": "d7162d", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "222", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 47, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 33, - "color1": "9500f0", - "color2": "111111", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -480821, - "display_name": "Team PaceLab - Red", - "aggregate_champ_points": 115, - "ai": false, - "average_lap": 1053828, - "best_lap_num": 1, - "best_lap_time": 1053828, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:06:04Z", - "best_qual_lap_num": 1, - "best_qual_lap_time": 1053828, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 11065, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -480821, - "cust_id": 1287257, - "display_name": "Burak Egemen Yılmaz", - "aggregate_champ_points": 115, - "ai": false, - "average_lap": 1053828, - "best_lap_num": 1, - "best_lap_time": 1053828, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:06:04Z", - "best_qual_lap_num": 1, - "best_qual_lap_time": 1053828, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 11065, - "country_code": "TR", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 48, - "finish_position_in_class": 24, - "flair_id": 215, - "flair_name": "Türkiye", - "flair_shortname": "TUR", - "friend": false, - "helmet": { - "pattern": 36, - "color1": "ffffff", - "color2": "ff0000", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 1, - "interval": 121015, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 1, - "color1": "ff0000", - "color2": "00ff00", - "color3": "0000ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "23", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 77.44804, - "new_license_level": 16, - "new_sub_level": 472, - "new_ttrating": 1307, - "newi_rating": 2450, - "old_cpi": 26.810757, - "old_license_level": 14, - "old_sub_level": 223, - "old_ttrating": 1307, - "oldi_rating": 2426, - "opt_laps_complete": 0, - "position": 48, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 21, - "color1": "000000", - "color2": "de00ff", - "color3": "230057" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 48, - "finish_position_in_class": 24, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 1, - "interval": 121015, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 1, - "color1": "ff0000", - "color2": "00ff00", - "color3": "0000ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "23", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 48, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 21, - "color1": "000000", - "color2": "de00ff", - "color3": "230057" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -243532, - "display_name": "THLF eSports Multinational by Raceverse.at", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1055788, - "best_lap_num": 2, - "best_lap_time": 1054138, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:38Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1054138, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 11375, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -243532, - "cust_id": 1335570, - "display_name": "Jordan Elmore", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1055788, - "best_lap_num": 2, - "best_lap_time": 1054138, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:38Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1054138, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 11375, - "country_code": "US", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 49, - "finish_position_in_class": 25, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 56, - "color1": "ff0000", - "color2": "000000", - "color3": "acacac", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 121325, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 23, - "color1": "ff9cfd", - "color2": "ffffff", - "color3": "0500ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "000000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "444", - "wheel_color": "ffffff", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 61.234966, - "new_license_level": 18, - "new_sub_level": 293, - "new_ttrating": 1325, - "newi_rating": 2474, - "old_cpi": 59.90275, - "old_license_level": 18, - "old_sub_level": 290, - "old_ttrating": 1325, - "oldi_rating": 2494, - "opt_laps_complete": 0, - "position": 49, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 10, - "color1": "00ff1e", - "color2": "000000", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 49, - "finish_position_in_class": 25, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 0, - "interval": 121325, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 23, - "color1": "ff9cfd", - "color2": "ffffff", - "color3": "0500ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "000000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "444", - "wheel_color": "ffffff", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 49, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 10, - "color1": "00ff1e", - "color2": "000000", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -332725, - "display_name": "Miracle Kids Success Academy", - "aggregate_champ_points": 53, - "ai": false, - "average_lap": 1056874, - "best_lap_num": 2, - "best_lap_time": 1055901, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:36Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1055901, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 206, - "car_name": "Aston Martin Vantage GT3 EVO", - "carcfg": -1, - "champ_points": 0, - "class_interval": 13138, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -332725, - "cust_id": 920918, - "display_name": "Justin Noel", - "aggregate_champ_points": 53, - "ai": false, - "average_lap": 1056874, - "best_lap_num": 2, - "best_lap_time": 1055901, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:07:36Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1055901, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 206, - "car_name": "Aston Martin Vantage GT3 EVO", - "carcfg": -1, - "champ_points": 0, - "class_interval": 13138, - "country_code": "US", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 50, - "finish_position_in_class": 26, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 54, - "color1": "ffffff", - "color2": "ff0000", - "color3": "0003ff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": 123088, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 206, - "pattern": 19, - "color1": "FFFFFF", - "color2": "FF0000", - "color3": "0003FF", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "24", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 99, - "new_cpi": 133.95572, - "new_license_level": 20, - "new_sub_level": 497, - "new_ttrating": 1350, - "newi_rating": 3078, - "old_cpi": 48.731533, - "old_license_level": 18, - "old_sub_level": 258, - "old_ttrating": 1350, - "oldi_rating": 3089, - "opt_laps_complete": 0, - "position": 50, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 0, - "color1": "2a3795", - "color2": "ec1c23", - "color3": "eeeeee" - }, - "watched": false, - "weight_penalty_kg": 12 - } - ], - "drop_race": false, - "finish_position": 50, - "finish_position_in_class": 26, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 0, - "interval": 123088, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 206, - "pattern": 19, - "color1": "FFFFFF", - "color2": "FF0000", - "color3": "0003FF", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "24", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 99, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 50, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 0, - "color1": "2a3795", - "color2": "ec1c23", - "color3": "eeeeee" - }, - "watched": false, - "weight_penalty_kg": 12 - }, - { - "team_id": -327700, - "display_name": "SFR ITALIA", - "aggregate_champ_points": 84, - "ai": false, - "average_lap": 1058590, - "best_lap_num": 2, - "best_lap_time": 1058590, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:09:21Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1058590, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 15827, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -327700, - "cust_id": 1005007, - "display_name": "Andrea Lamponi", - "aggregate_champ_points": 84, - "ai": false, - "average_lap": 1058590, - "best_lap_num": 2, - "best_lap_time": 1058590, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:09:21Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1058590, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 15827, - "country_code": "IT", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 51, - "finish_position_in_class": 27, - "flair_id": 101, - "flair_name": "Italy", - "flair_shortname": "ITA", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "5481fc", - "color2": "ffffff", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 2, - "interval": 125777, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 11, - "color1": "D4FF0F", - "color2": "00FF00", - "color3": "111111", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "19", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 75.235085, - "new_license_level": 19, - "new_sub_level": 367, - "new_ttrating": 1302, - "newi_rating": 2284, - "old_cpi": 72.3915, - "old_license_level": 19, - "old_sub_level": 362, - "old_ttrating": 1302, - "oldi_rating": 2276, - "opt_laps_complete": 0, - "position": 51, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 22, - "color1": "faff00", - "color2": "000000", - "color3": "7ef22e" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 51, - "finish_position_in_class": 27, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 2, - "interval": 125777, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 11, - "color1": "D4FF0F", - "color2": "00FF00", - "color3": "111111", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "19", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 51, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 22, - "color1": "faff00", - "color2": "000000", - "color3": "7ef22e" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -333656, - "display_name": "Bite Point Racing", - "aggregate_champ_points": 57, - "ai": false, - "average_lap": 1059644, - "best_lap_num": 2, - "best_lap_time": 1059644, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:09:26Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1059644, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 16881, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -333656, - "cust_id": 936022, - "display_name": "Francis Crosby", - "aggregate_champ_points": 57, - "ai": false, - "average_lap": 1059644, - "best_lap_num": 2, - "best_lap_time": 1059644, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:09:26Z", - "best_qual_lap_num": 2, - "best_qual_lap_time": 1059644, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 16881, - "country_code": "CA", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 52, - "finish_position_in_class": 28, - "flair_id": 39, - "flair_name": "Canada", - "flair_shortname": "CAN", - "friend": false, - "helmet": { - "pattern": 61, - "color1": "ff0000", - "color2": "f7f7f7", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 1, - "interval": 126831, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "fd0000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "45", - "wheel_color": "000000", - "rim_type": 3 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 57.7853, - "new_license_level": 19, - "new_sub_level": 328, - "new_ttrating": 1350, - "newi_rating": 2454, - "old_cpi": 58.822685, - "old_license_level": 19, - "old_sub_level": 330, - "old_ttrating": 1350, - "oldi_rating": 2457, - "opt_laps_complete": 0, - "position": 52, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 32, - "color1": "000000", - "color2": "04db00", - "color3": "9800d7" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 52, - "finish_position_in_class": 28, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 1, - "interval": 126831, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "fd0000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "45", - "wheel_color": "000000", - "rim_type": 3 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 52, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 32, - "color1": "000000", - "color2": "04db00", - "color3": "9800d7" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -434794, - "display_name": "Rag1ng Dragons e-Sports #Team Gold", - "aggregate_champ_points": 106, - "ai": false, - "average_lap": 1063191, - "best_lap_num": 1, - "best_lap_time": 1063191, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:06:32Z", - "best_qual_lap_num": 1, - "best_qual_lap_time": 1063191, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 20428, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -434794, - "cust_id": 785721, - "display_name": "Lucas Benini", - "aggregate_champ_points": 106, - "ai": false, - "average_lap": 1063191, - "best_lap_num": 1, - "best_lap_time": 1063191, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "2026-01-17T12:06:32Z", - "best_qual_lap_num": 1, - "best_qual_lap_time": 1063191, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": 20428, - "country_code": "BR", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 53, - "finish_position_in_class": 29, - "flair_id": 31, - "flair_name": "Brazil", - "flair_shortname": "BRA", - "friend": false, - "helmet": { - "pattern": 22, - "color1": "ffed00", - "color2": "008cff", - "color3": "1cff00", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 1, - "interval": 130378, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 4, - "color1": "effc53", - "color2": "43cd41", - "color3": "1e42db", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "30", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 108.44981, - "new_license_level": 20, - "new_sub_level": 465, - "new_ttrating": 1291, - "newi_rating": 2547, - "old_cpi": 54.275417, - "old_license_level": 19, - "old_sub_level": 318, - "old_ttrating": 1291, - "oldi_rating": 2534, - "opt_laps_complete": 0, - "position": 53, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "22b428", - "color2": "353bcc", - "color3": "d3f118" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 53, - "finish_position_in_class": 29, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 1, - "interval": 130378, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 4, - "color1": "effc53", - "color2": "43cd41", - "color3": "1e42db", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "30", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 53, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 1, - "color1": "22b428", - "color2": "353bcc", - "color3": "d3f118" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -370856, - "display_name": "Crayola Advanced Engineering", - "aggregate_champ_points": 140, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -370856, - "cust_id": 1070827, - "display_name": "Alexander Wainman", - "aggregate_champ_points": 140, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "GB", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 56, - "finish_position_in_class": 13, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 35, - "color1": "6e00ff", - "color2": "ff00ff", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 4, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 10, - "color1": "ffffff", - "color2": "0019ff", - "color3": "111111", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "7", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 113.07297, - "new_license_level": 20, - "new_sub_level": 471, - "new_ttrating": 1211, - "newi_rating": 3227, - "old_cpi": 110.732925, - "old_license_level": 20, - "old_sub_level": 468, - "old_ttrating": 1211, - "oldi_rating": 3199, - "opt_laps_complete": 0, - "position": 56, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 26, - "color1": "ffffff", - "color2": "004225", - "color3": "d4af37" - }, - "watched": false, - "weight_penalty_kg": 2 - } - ], - "drop_race": false, - "finish_position": 54, - "finish_position_in_class": 12, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 4, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 10, - "color1": "ffffff", - "color2": "0019ff", - "color3": "111111", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "7", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 54, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 26, - "color1": "ffffff", - "color2": "004225", - "color3": "d4af37" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -401232, - "display_name": "Kika Cetasso Racing Team", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -401232, - "cust_id": 127024, - "display_name": "Fernando Cardoso", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "CA", - "division": 4, - "division_name": "Division 5", - "drop_race": false, - "finish_position": 54, - "finish_position_in_class": 30, - "flair_id": 39, - "flair_name": "Canada", - "flair_shortname": "CAN", - "friend": false, - "helmet": { - "pattern": 42, - "color1": "000000", - "color2": "000000", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 8, - "color1": "ffffff", - "color2": "000000", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 3, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "12", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 46.205784, - "new_license_level": 18, - "new_sub_level": 250, - "new_ttrating": 1350, - "newi_rating": 1513, - "old_cpi": 57.07806, - "old_license_level": 19, - "old_sub_level": 326, - "old_ttrating": 1350, - "oldi_rating": 1571, - "opt_laps_complete": 0, - "position": 54, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 2, - "color1": "000000", - "color2": "ffffff", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 58, - "finish_position_in_class": 32, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 8, - "color1": "ffffff", - "color2": "000000", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 3, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "12", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 58, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 2, - "color1": "000000", - "color2": "ffffff", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -300070, - "display_name": "Tabula Rasa eSports 901", - "aggregate_champ_points": 96, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -300070, - "cust_id": 641758, - "display_name": "Adam NS Jones", - "aggregate_champ_points": 96, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "GB", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 55, - "finish_position_in_class": 12, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 56, - "color1": "ffffff", - "color2": "ee3442", - "color3": "447ac0", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 16, - "color1": "000000", - "color2": "ed2129", - "color3": "001ee3", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "901", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 117.47467, - "new_license_level": 20, - "new_sub_level": 477, - "new_ttrating": 1350, - "newi_rating": 2049, - "old_cpi": 54.51905, - "old_license_level": 18, - "old_sub_level": 275, - "old_ttrating": 1350, - "oldi_rating": 2039, - "opt_laps_complete": 0, - "position": 55, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 35, - "color1": "000000", - "color2": "fb0000", - "color3": "0030ff" - }, - "watched": false, - "weight_penalty_kg": 2 - } - ], - "drop_race": false, - "finish_position": 55, - "finish_position_in_class": 13, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 16, - "color1": "000000", - "color2": "ed2129", - "color3": "001ee3", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "901", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 55, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 35, - "color1": "000000", - "color2": "fb0000", - "color3": "0030ff" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -471181, - "display_name": "PRS Team Europe", - "aggregate_champ_points": 66, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 185, - "car_name": "Ford Mustang GT3", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [], - "drop_race": false, - "finish_position": 56, - "finish_position_in_class": 30, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 185, - "pattern": 20, - "color1": "515151", - "color2": "FFFFFF", - "color3": "000000", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "16", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 56, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 3, - "color1": "0083ff", - "color2": "ffffff", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 10 - }, - { - "team_id": -142589, - "display_name": "Team Highside - Vette", - "aggregate_champ_points": 48, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 184, - "car_name": "Chevrolet Corvette Z06 GT3.R", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [], - "drop_race": false, - "finish_position": 57, - "finish_position_in_class": 31, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 184, - "pattern": 12, - "color1": "0085ff", - "color2": "0085ff", - "color3": "d50000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "242424", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "216", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": 96, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 57, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": -1, - "starting_position_in_class": -1, - "suit": { - "pattern": 25, - "color1": "FA7400", - "color2": "000000", - "color3": "FFFFFF" - }, - "watched": false, - "weight_penalty_kg": 10 - } - ] + "cust_id": 432652, + "display_name": "Valentin Kluss", + "aggregate_champ_points": 177, + "ai": false, + "average_lap": 1326327, + "best_lap_num": 2, + "best_lap_time": 1326327, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2025-12-28T20:37:25Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1326327, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 204, + "car_name": "Ford Mustang GT4", + "carcfg": -1, + "champ_points": 0, + "class_interval": 7377, + "country_code": "DE", + "division": 0, + "division_name": "Division 1", + "drop_race": false, + "finish_position": 1, + "finish_position_in_class": 1, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 65, + "color1": "000000", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": 7377, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 204, + "pattern": 0, + "color1": "000000", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "1", + "wheel_color": "b3b3b3", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 32.966415, + "new_license_level": 17, + "new_sub_level": 155, + "new_ttrating": 1350, + "newi_rating": 7102, + "old_cpi": 29.836252, + "old_license_level": 17, + "old_sub_level": 140, + "old_ttrating": 1350, + "oldi_rating": 7082, + "opt_laps_complete": 0, + "position": 1, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 32, + "color1": "000000", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 }, { - "simsession_number": 0, - "simsession_name": "RACE", - "simsession_type": 6, - "simsession_type_name": "Race", - "simsession_subtype": 0, - "weather_result": { - "avg_skies": 2, - "avg_cloud_cover_pct": 86.42999, - "min_cloud_cover_pct": 33.080578, - "max_cloud_cover_pct": 100, - "temp_units": 1, - "avg_temp": 20.332977, - "min_temp": 19.306164, - "max_temp": 23.79765, - "avg_rel_humidity": 68.905235, - "wind_units": 1, - "avg_wind_speed": 9.205517, - "min_wind_speed": 3.9293036, - "max_wind_speed": 17.688026, - "avg_wind_dir": 7, - "max_fog": 0, - "fog_time_pct": 0, - "precip_time_pct": 0, - "precip_mm": 0, - "precip_mm2hr_before_session": 0, - "simulated_start_time": "2026-01-24T14:00:00" - }, - "results": [ - { - "team_id": -370856, - "display_name": "Crayola Advanced Engineering", - "aggregate_champ_points": 140, - "ai": false, - "average_lap": 978772, - "best_lap_num": 690, - "best_lap_time": 934669, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 140, - "class_interval": 0, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -370856, - "cust_id": 1070827, - "display_name": "Alexander Wainman", - "aggregate_champ_points": 140, - "ai": false, - "average_lap": 963449, - "best_lap_num": 690, - "best_lap_time": 934669, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 140, - "class_interval": 0, - "country_code": "GB", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 0, - "finish_position_in_class": 0, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 35, - "color1": "6e00ff", - "color2": "ff00ff", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 29, - "interval": 0, - "laps_complete": 279, - "laps_lead": 95, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 10, - "color1": "ffffff", - "color2": "0019ff", - "color3": "111111", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "7", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 113.07297, - "new_license_level": 20, - "new_sub_level": 471, - "new_ttrating": 1211, - "newi_rating": 3227, - "old_cpi": 110.732925, - "old_license_level": 20, - "old_sub_level": 468, - "old_ttrating": 1211, - "oldi_rating": 3199, - "opt_laps_complete": 0, - "position": 0, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 12, - "starting_position_in_class": 12, - "suit": { - "pattern": 26, - "color1": "ffffff", - "color2": "004225", - "color3": "d4af37" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -370856, - "cust_id": 580584, - "display_name": "Adam W Lewis", - "aggregate_champ_points": 140, - "ai": false, - "average_lap": 966750, - "best_lap_num": 324, - "best_lap_time": 934988, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 140, - "class_interval": 0, - "country_code": "GB", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 0, - "finish_position_in_class": 0, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 23, - "color1": "ff00a4", - "color2": "adff00", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 21, - "interval": 0, - "laps_complete": 271, - "laps_lead": 77, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 10, - "color1": "ffffff", - "color2": "0019ff", - "color3": "111111", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "7", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 112.93226, - "new_license_level": 20, - "new_sub_level": 471, - "new_ttrating": 1178, - "newi_rating": 2293, - "old_cpi": 75.35843, - "old_license_level": 20, - "old_sub_level": 409, - "old_ttrating": 1178, - "oldi_rating": 2265, - "opt_laps_complete": 0, - "position": 0, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 12, - "starting_position_in_class": 12, - "suit": { - "pattern": 26, - "color1": "ffffff", - "color2": "004225", - "color3": "d4af37" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -370856, - "cust_id": 693405, - "display_name": "William Wadsworth", - "aggregate_champ_points": 140, - "ai": false, - "average_lap": 977716, - "best_lap_num": 509, - "best_lap_time": 940937, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 140, - "class_interval": 0, - "country_code": "US", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 0, - "finish_position_in_class": 0, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 11, - "color1": "000000", - "color2": "0094ff", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 20, - "interval": 0, - "laps_complete": 192, - "laps_lead": 48, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 10, - "color1": "ffffff", - "color2": "0019ff", - "color3": "111111", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "7", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 107.11224, - "new_license_level": 20, - "new_sub_level": 463, - "new_ttrating": 1313, - "newi_rating": 2064, - "old_cpi": 92.5777, - "old_license_level": 19, - "old_sub_level": 399, - "old_ttrating": 1313, - "oldi_rating": 2044, - "opt_laps_complete": 0, - "position": 0, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 12, - "starting_position_in_class": 12, - "suit": { - "pattern": 26, - "color1": "ffffff", - "color2": "004225", - "color3": "d4af37" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -370856, - "cust_id": 1065424, - "display_name": "Cameron Gapinski", - "aggregate_champ_points": 140, - "ai": false, - "average_lap": 971898, - "best_lap_num": 433, - "best_lap_time": 944286, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 140, - "class_interval": 0, - "country_code": "US", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 0, - "finish_position_in_class": 0, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 34, - "color1": "000000", - "color2": "000000", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 5, - "interval": 0, - "laps_complete": 141, - "laps_lead": 48, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 10, - "color1": "ffffff", - "color2": "0019ff", - "color3": "111111", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "7", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 124.50656, - "new_license_level": 20, - "new_sub_level": 486, - "new_ttrating": 1350, - "newi_rating": 2043, - "old_cpi": 83.14618, - "old_license_level": 20, - "old_sub_level": 424, - "old_ttrating": 1350, - "oldi_rating": 2029, - "opt_laps_complete": 0, - "position": 0, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 12, - "starting_position_in_class": 12, - "suit": { - "pattern": 26, - "color1": "ffffff", - "color2": "004225", - "color3": "d4af37" - }, - "watched": false, - "weight_penalty_kg": 2 - } - ], - "drop_race": false, - "finish_position": 0, - "finish_position_in_class": 0, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 75, - "interval": 0, - "laps_complete": 883, - "laps_lead": 270, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 10, - "color1": "ffffff", - "color2": "0019ff", - "color3": "111111", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "7", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 0, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 12, - "starting_position_in_class": 12, - "suit": { - "pattern": 26, - "color1": "ffffff", - "color2": "004225", - "color3": "d4af37" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -402095, - "display_name": "Granateapfel RT", - "aggregate_champ_points": 129, - "ai": false, - "average_lap": 983506, - "best_lap_num": 496, - "best_lap_time": 936208, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 196, - "car_name": "Ferrari 499P", - "carcfg": -1, - "champ_points": 129, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -402095, - "cust_id": 1128144, - "display_name": "Georg Raach", - "aggregate_champ_points": 129, - "ai": false, - "average_lap": 976476, - "best_lap_num": 496, - "best_lap_time": 936208, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 196, - "car_name": "Ferrari 499P", - "carcfg": -1, - "champ_points": 129, - "class_interval": -1, - "country_code": "DE", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 1, - "finish_position_in_class": 1, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 43, - "color1": "ffffff", - "color2": "372a75", - "color3": "f1732e", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 16, - "interval": -1, - "laps_complete": 473, - "laps_lead": 148, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 196, - "pattern": 4, - "color1": "FF0000", - "color2": "00FF00", - "color3": "0000FF", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "2", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 276.91815, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1294, - "newi_rating": 2896, - "old_cpi": 67.67536, - "old_license_level": 19, - "old_sub_level": 351, - "old_ttrating": 1294, - "oldi_rating": 2853, - "opt_laps_complete": 0, - "position": 1, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 11, - "starting_position_in_class": 11, - "suit": { - "pattern": 1, - "color1": "ffffff", - "color2": "372a75", - "color3": "f1732e" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -402095, - "cust_id": 1165346, - "display_name": "Finn Metzler", - "aggregate_champ_points": 129, - "ai": false, - "average_lap": 974099, - "best_lap_num": 606, - "best_lap_time": 939734, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 196, - "car_name": "Ferrari 499P", - "carcfg": -1, - "champ_points": 129, - "class_interval": -1, - "country_code": "VU", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 1, - "finish_position_in_class": 1, - "flair_id": 226, - "flair_name": "Vanuatu", - "flair_shortname": "VUT", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "372a75", - "color2": "f1732e", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 30, - "interval": -1, - "laps_complete": 406, - "laps_lead": 111, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 196, - "pattern": 4, - "color1": "FF0000", - "color2": "00FF00", - "color3": "0000FF", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "2", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 137.59468, - "new_license_level": 16, - "new_sub_level": 499, - "new_ttrating": 1265, - "newi_rating": 1943, - "old_cpi": 28.337646, - "old_license_level": 14, - "old_sub_level": 232, - "old_ttrating": 1265, - "oldi_rating": 1907, - "opt_laps_complete": 0, - "position": 1, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 11, - "starting_position_in_class": 11, - "suit": { - "pattern": 1, - "color1": "ffffff", - "color2": "372a75", - "color3": "f1732e" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": false, - "finish_position": 1, - "finish_position_in_class": 1, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 46, - "interval": -1, - "laps_complete": 879, - "laps_lead": 261, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 196, - "pattern": 4, - "color1": "FF0000", - "color2": "00FF00", - "color3": "0000FF", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "2", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 1, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 11, - "starting_position_in_class": 11, - "suit": { - "pattern": 1, - "color1": "ffffff", - "color2": "372a75", - "color3": "f1732e" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -385527, - "display_name": "EHR Blue", - "aggregate_champ_points": 118, - "ai": false, - "average_lap": 985069, - "best_lap_num": 654, - "best_lap_time": 938935, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 118, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -385527, - "cust_id": 1126675, - "display_name": "Jack Reed", - "aggregate_champ_points": 118, - "ai": false, - "average_lap": 968399, - "best_lap_num": 654, - "best_lap_time": 938935, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 118, - "class_interval": -1, - "country_code": "ENG", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 2, - "finish_position_in_class": 2, - "flair_id": 236, - "flair_name": "England", - "flair_shortname": "ENG", - "friend": false, - "helmet": { - "pattern": 28, - "color1": "383838", - "color2": "ffffff", - "color3": "2885ff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 18, - "interval": -1, - "laps_complete": 352, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 0, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 14, - "number_color1": "ffffff", - "number_color2": "cba7f4", - "number_color3": "352e74", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "808", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 163.46672, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1085, - "newi_rating": 2895, - "old_cpi": 60.085476, - "old_license_level": 19, - "old_sub_level": 333, - "old_ttrating": 1085, - "oldi_rating": 2871, - "opt_laps_complete": 0, - "position": 2, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 3, - "starting_position_in_class": 3, - "suit": { - "pattern": 13, - "color1": "352e74", - "color2": "4C99D3", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -385527, - "cust_id": 289709, - "display_name": "Greyson Oppermann", - "aggregate_champ_points": 118, - "ai": false, - "average_lap": 979322, - "best_lap_num": 424, - "best_lap_time": 939079, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 118, - "class_interval": -1, - "country_code": "US", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 2, - "finish_position_in_class": 2, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 15, - "color1": "ffffff", - "color2": "ffffff", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 25, - "interval": -1, - "laps_complete": 335, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 0, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 14, - "number_color1": "ffffff", - "number_color2": "cba7f4", - "number_color3": "352e74", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "808", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 121.81984, - "new_license_level": 12, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 2415, - "old_cpi": 28.188484, - "old_license_level": 10, - "old_sub_level": 290, - "old_ttrating": 1350, - "oldi_rating": 2392, - "opt_laps_complete": 0, - "position": 2, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 3, - "starting_position_in_class": 3, - "suit": { - "pattern": 13, - "color1": "352e74", - "color2": "4C99D3", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -385527, - "cust_id": 1021414, - "display_name": "Linus Wise", - "aggregate_champ_points": 118, - "ai": false, - "average_lap": 971852, - "best_lap_num": 525, - "best_lap_time": 943240, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 118, - "class_interval": -1, - "country_code": "US", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 2, - "finish_position_in_class": 2, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 20, - "color1": "ff0000", - "color2": "1200ff", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 7, - "interval": -1, - "laps_complete": 107, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 0, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 14, - "number_color1": "ffffff", - "number_color2": "cba7f4", - "number_color3": "352e74", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "808", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 80.80387, - "new_license_level": 19, - "new_sub_level": 378, - "new_ttrating": 1350, - "newi_rating": 2087, - "old_cpi": 35.06846, - "old_license_level": 17, - "old_sub_level": 165, - "old_ttrating": 1350, - "oldi_rating": 2080, - "opt_laps_complete": 0, - "position": 2, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 3, - "starting_position_in_class": 3, - "suit": { - "pattern": 13, - "color1": "352e74", - "color2": "4C99D3", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -385527, - "cust_id": 611015, - "display_name": "Aaron Knight2", - "aggregate_champ_points": 118, - "ai": false, - "average_lap": 976704, - "best_lap_num": 45, - "best_lap_time": 946215, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 118, - "class_interval": -1, - "country_code": "GO", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 2, - "finish_position_in_class": 2, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "helmet": { - "pattern": 60, - "color1": "0afc05", - "color2": "121212", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 7, - "interval": -1, - "laps_complete": 84, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 0, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 14, - "number_color1": "ffffff", - "number_color2": "cba7f4", - "number_color3": "352e74", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "808", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 45.631496, - "new_license_level": 15, - "new_sub_level": 348, - "new_ttrating": 1350, - "newi_rating": 2184, - "old_cpi": 28.325111, - "old_license_level": 14, - "old_sub_level": 232, - "old_ttrating": 1350, - "oldi_rating": 2178, - "opt_laps_complete": 0, - "position": 2, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 3, - "starting_position_in_class": 3, - "suit": { - "pattern": 13, - "color1": "352e74", - "color2": "4C99D3", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 2 - } - ], - "drop_race": false, - "finish_position": 2, - "finish_position_in_class": 2, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 57, - "interval": -1, - "laps_complete": 878, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 0, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 14, - "number_color1": "ffffff", - "number_color2": "cba7f4", - "number_color3": "352e74", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "808", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 2, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 3, - "starting_position_in_class": 3, - "suit": { - "pattern": 13, - "color1": "352e74", - "color2": "4C99D3", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -307068, - "display_name": "Azz Tech Racing - 390", - "aggregate_champ_points": 107, - "ai": false, - "average_lap": 987296, - "best_lap_num": 600, - "best_lap_time": 936353, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 107, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -307068, - "cust_id": 846950, - "display_name": "Matthew Cheverton", - "aggregate_champ_points": 107, - "ai": false, - "average_lap": 974631, - "best_lap_num": 185, - "best_lap_time": 940898, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 107, - "class_interval": -1, - "country_code": "GB", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 3, - "finish_position_in_class": 3, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 8, - "color1": "ff0000", - "color2": "000000", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 9, - "interval": -1, - "laps_complete": 279, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 17, - "color1": "ff0000", - "color2": "ffffff", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "ffffff", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "390", - "wheel_color": "000000", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 208.88257, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 3137, - "old_cpi": 75.065544, - "old_license_level": 19, - "old_sub_level": 367, - "old_ttrating": 1350, - "oldi_rating": 3121, - "opt_laps_complete": 0, - "position": 3, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 9, - "starting_position_in_class": 9, - "suit": { - "pattern": 33, - "color1": "f00000", - "color2": "faff00", - "color3": "9b9b9b" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -307068, - "cust_id": 996524, - "display_name": "Gabriel Papaconstantinou", - "aggregate_champ_points": 107, - "ai": false, - "average_lap": 992047, - "best_lap_num": 270, - "best_lap_time": 938007, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 107, - "class_interval": -1, - "country_code": "GB", - "division": 4, - "division_name": "Division 5", - "drop_race": false, - "finish_position": 3, - "finish_position_in_class": 3, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 28, - "color1": "bcf7e2", - "color2": "000000", - "color3": "0012ff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 10, - "interval": -1, - "laps_complete": 243, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 17, - "color1": "ff0000", - "color2": "ffffff", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "ffffff", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "390", - "wheel_color": "000000", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 169.81465, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 1722, - "old_cpi": 48.918552, - "old_license_level": 18, - "old_sub_level": 259, - "old_ttrating": 1350, - "oldi_rating": 1708, - "opt_laps_complete": 0, - "position": 3, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 9, - "starting_position_in_class": 9, - "suit": { - "pattern": 33, - "color1": "f00000", - "color2": "faff00", - "color3": "9b9b9b" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -307068, - "cust_id": 361745, - "display_name": "Jake Pitt", - "aggregate_champ_points": 107, - "ai": false, - "average_lap": 972125, - "best_lap_num": 600, - "best_lap_time": 936353, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 107, - "class_interval": -1, - "country_code": "WLS", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 3, - "finish_position_in_class": 3, - "flair_id": 238, - "flair_name": "Wales", - "flair_shortname": "WLS", - "friend": false, - "helmet": { - "pattern": 68, - "color1": "b38703", - "color2": "ff0000", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 13, - "interval": -1, - "laps_complete": 191, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 17, - "color1": "ff0000", - "color2": "ffffff", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "ffffff", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "390", - "wheel_color": "000000", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 118.637, - "new_license_level": 20, - "new_sub_level": 478, - "new_ttrating": 1350, - "newi_rating": 2709, - "old_cpi": 53.686394, - "old_license_level": 18, - "old_sub_level": 273, - "old_ttrating": 1350, - "oldi_rating": 2698, - "opt_laps_complete": 0, - "position": 3, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 9, - "starting_position_in_class": 9, - "suit": { - "pattern": 33, - "color1": "f00000", - "color2": "faff00", - "color3": "9b9b9b" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -307068, - "cust_id": 953940, - "display_name": "Alejandro Ulate Alfaro", - "aggregate_champ_points": 107, - "ai": false, - "average_lap": 979383, - "best_lap_num": 349, - "best_lap_time": 943167, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 107, - "class_interval": -1, - "country_code": "CR", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 3, - "finish_position_in_class": 3, - "flair_id": 51, - "flair_name": "Costa Rica", - "flair_shortname": "CRI", - "friend": false, - "helmet": { - "pattern": 28, - "color1": "3d3d3d", - "color2": "000000", - "color3": "f46a29", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 10, - "interval": -1, - "laps_complete": 163, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 17, - "color1": "ff0000", - "color2": "ffffff", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "ffffff", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "390", - "wheel_color": "000000", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 102.35704, - "new_license_level": 20, - "new_sub_level": 456, - "new_ttrating": 1350, - "newi_rating": 2050, - "old_cpi": 58.770905, - "old_license_level": 19, - "old_sub_level": 330, - "old_ttrating": 1350, - "oldi_rating": 2041, - "opt_laps_complete": 0, - "position": 3, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 9, - "starting_position_in_class": 9, - "suit": { - "pattern": 33, - "color1": "f00000", - "color2": "faff00", - "color3": "9b9b9b" - }, - "watched": false, - "weight_penalty_kg": 2 - } - ], - "drop_race": false, - "finish_position": 3, - "finish_position_in_class": 3, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 42, - "interval": -1, - "laps_complete": 876, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 17, - "color1": "ff0000", - "color2": "ffffff", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "ffffff", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "390", - "wheel_color": "000000", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 3, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 9, - "starting_position_in_class": 9, - "suit": { - "pattern": 33, - "color1": "f00000", - "color2": "faff00", - "color3": "9b9b9b" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -300070, - "display_name": "Tabula Rasa eSports 901", - "aggregate_champ_points": 96, - "ai": false, - "average_lap": 990756, - "best_lap_num": 544, - "best_lap_time": 936837, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 96, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -300070, - "cust_id": 164594, - "display_name": "Taylor Strawbridge", - "aggregate_champ_points": 96, - "ai": false, - "average_lap": 978387, - "best_lap_num": 320, - "best_lap_time": 945466, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 96, - "class_interval": -1, - "country_code": "CA", - "division": 4, - "division_name": "Division 5", - "drop_race": false, - "finish_position": 4, - "finish_position_in_class": 4, - "flair_id": 39, - "flair_name": "Canada", - "flair_shortname": "CAN", - "friend": false, - "helmet": { - "pattern": 45, - "color1": "2d2d2d", - "color2": "8000ff", - "color3": "fe00ff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 9, - "interval": -1, - "laps_complete": 224, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 16, - "color1": "000000", - "color2": "ed2129", - "color3": "001ee3", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "901", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 219.1369, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 1873, - "old_cpi": 156.40717, - "old_license_level": 20, - "old_sub_level": 499, - "old_ttrating": 1350, - "oldi_rating": 1864, - "opt_laps_complete": 0, - "position": 4, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 13, - "starting_position_in_class": 13, - "suit": { - "pattern": 35, - "color1": "000000", - "color2": "fb0000", - "color3": "0030ff" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -300070, - "cust_id": 635328, - "display_name": "Clarke January", - "aggregate_champ_points": 96, - "ai": false, - "average_lap": 969940, - "best_lap_num": 212, - "best_lap_time": 942485, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 96, - "class_interval": -1, - "country_code": "US", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 4, - "finish_position_in_class": 4, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 3, - "color1": "000000", - "color2": "ffffff", - "color3": "489aef", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 8, - "interval": -1, - "laps_complete": 222, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 16, - "color1": "000000", - "color2": "ed2129", - "color3": "001ee3", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "901", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 160.35382, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1345, - "newi_rating": 2415, - "old_cpi": 90.475494, - "old_license_level": 20, - "old_sub_level": 437, - "old_ttrating": 1345, - "oldi_rating": 2405, - "opt_laps_complete": 0, - "position": 4, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 13, - "starting_position_in_class": 13, - "suit": { - "pattern": 35, - "color1": "000000", - "color2": "fb0000", - "color3": "0030ff" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -300070, - "cust_id": 641758, - "display_name": "Adam NS Jones", - "aggregate_champ_points": 96, - "ai": false, - "average_lap": 1005455, - "best_lap_num": 18, - "best_lap_time": 943795, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 96, - "class_interval": -1, - "country_code": "GB", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 4, - "finish_position_in_class": 4, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 56, - "color1": "ffffff", - "color2": "ee3442", - "color3": "447ac0", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 17, - "interval": -1, - "laps_complete": 220, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 16, - "color1": "000000", - "color2": "ed2129", - "color3": "001ee3", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "901", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 117.47467, - "new_license_level": 20, - "new_sub_level": 477, - "new_ttrating": 1350, - "newi_rating": 2049, - "old_cpi": 54.51905, - "old_license_level": 18, - "old_sub_level": 275, - "old_ttrating": 1350, - "oldi_rating": 2039, - "opt_laps_complete": 0, - "position": 4, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 13, - "starting_position_in_class": 13, - "suit": { - "pattern": 35, - "color1": "000000", - "color2": "fb0000", - "color3": "0030ff" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -300070, - "cust_id": 451212, - "display_name": "Christian Bryant Hill", - "aggregate_champ_points": 96, - "ai": false, - "average_lap": 970996, - "best_lap_num": 544, - "best_lap_time": 936837, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 96, - "class_interval": -1, - "country_code": "US", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 4, - "finish_position_in_class": 4, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 43, - "color1": "002855", - "color2": "ffffff", - "color3": "84754e", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 20, - "interval": -1, - "laps_complete": 207, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 16, - "color1": "000000", - "color2": "ed2129", - "color3": "001ee3", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "901", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 105.671295, - "new_license_level": 20, - "new_sub_level": 461, - "new_ttrating": 1350, - "newi_rating": 3231, - "old_cpi": 87.057236, - "old_license_level": 20, - "old_sub_level": 431, - "old_ttrating": 1350, - "oldi_rating": 3222, - "opt_laps_complete": 0, - "position": 4, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 13, - "starting_position_in_class": 13, - "suit": { - "pattern": 35, - "color1": "000000", - "color2": "fb0000", - "color3": "0030ff" - }, - "watched": false, - "weight_penalty_kg": 2 - } - ], - "drop_race": false, - "finish_position": 4, - "finish_position_in_class": 4, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 54, - "interval": -1, - "laps_complete": 873, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 16, - "color1": "000000", - "color2": "ed2129", - "color3": "001ee3", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "901", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 4, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 13, - "starting_position_in_class": 13, - "suit": { - "pattern": 35, - "color1": "000000", - "color2": "fb0000", - "color3": "0030ff" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -303706, - "display_name": "Savage Sim Racing - Team 80HD", - "aggregate_champ_points": 86, - "ai": false, - "average_lap": 996107, - "best_lap_num": 126, - "best_lap_time": 937014, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 86, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -303706, - "cust_id": 912397, - "display_name": "Clayton Sanchez2", - "aggregate_champ_points": 86, - "ai": false, - "average_lap": 969412, - "best_lap_num": 592, - "best_lap_time": 938936, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 86, - "class_interval": -1, - "country_code": "US", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 5, - "finish_position_in_class": 5, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 28, - "color1": "320159", - "color2": "9705fc", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 196, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 22, - "color1": "000000", - "color2": "01ffff", - "color3": "a30dbe", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 239, - "sponsor2": 240, - "car_number": "66", - "wheel_color": "767676", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 267.99796, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 2906, - "old_cpi": 126.12498, - "old_license_level": 20, - "old_sub_level": 488, - "old_ttrating": 1350, - "oldi_rating": 2901, - "opt_laps_complete": 0, - "position": 5, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 5, - "starting_position_in_class": 5, - "suit": { - "pattern": 28, - "color1": "434343", - "color2": "fbfbfb", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -303706, - "cust_id": 871012, - "display_name": "Ian Miller10", - "aggregate_champ_points": 86, - "ai": false, - "average_lap": 991773, - "best_lap_num": 126, - "best_lap_time": 937014, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 86, - "class_interval": -1, - "country_code": "US", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 5, - "finish_position_in_class": 5, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 9, - "color1": "ff0000", - "color2": "8000ff", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 2, - "interval": -1, - "laps_complete": 185, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 22, - "color1": "000000", - "color2": "01ffff", - "color3": "a30dbe", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 239, - "sponsor2": 240, - "car_number": "66", - "wheel_color": "767676", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 257.09753, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 2339, - "old_cpi": 137.9408, - "old_license_level": 20, - "old_sub_level": 499, - "old_ttrating": 1350, - "oldi_rating": 2334, - "opt_laps_complete": 0, - "position": 5, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 5, - "starting_position_in_class": 5, - "suit": { - "pattern": 28, - "color1": "434343", - "color2": "fbfbfb", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -303706, - "cust_id": 788684, - "display_name": "Nate Halastik", - "aggregate_champ_points": 86, - "ai": false, - "average_lap": 1017825, - "best_lap_num": 293, - "best_lap_time": 945898, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 86, - "class_interval": -1, - "country_code": "CZ", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 5, - "finish_position_in_class": 5, - "flair_id": 54, - "flair_name": "Czechia", - "flair_shortname": "CZE", - "friend": false, - "helmet": { - "pattern": 44, - "color1": "000000", - "color2": "01ffff", - "color3": "a30dbe", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 13, - "interval": -1, - "laps_complete": 167, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 22, - "color1": "000000", - "color2": "01ffff", - "color3": "a30dbe", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 239, - "sponsor2": 240, - "car_number": "66", - "wheel_color": "767676", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 84.42449, - "new_license_level": 19, - "new_sub_level": 385, - "new_ttrating": 1350, - "newi_rating": 2003, - "old_cpi": 36.808407, - "old_license_level": 18, - "old_sub_level": 216, - "old_ttrating": 1350, - "oldi_rating": 1999, - "opt_laps_complete": 0, - "position": 5, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 5, - "starting_position_in_class": 5, - "suit": { - "pattern": 28, - "color1": "434343", - "color2": "fbfbfb", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -303706, - "cust_id": 683317, - "display_name": "Parker Clardy", - "aggregate_champ_points": 86, - "ai": false, - "average_lap": 974879, - "best_lap_num": 754, - "best_lap_time": 945403, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 86, - "class_interval": -1, - "country_code": "US", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 5, - "finish_position_in_class": 5, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 54, - "color1": "ff0000", - "color2": "ffe500", - "color3": "484849", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 25, - "interval": -1, - "laps_complete": 163, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 22, - "color1": "000000", - "color2": "01ffff", - "color3": "a30dbe", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 239, - "sponsor2": 240, - "car_number": "66", - "wheel_color": "767676", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 58.683918, - "new_license_level": 18, - "new_sub_level": 286, - "new_ttrating": 1350, - "newi_rating": 2302, - "old_cpi": 34.697445, - "old_license_level": 18, - "old_sub_level": 207, - "old_ttrating": 1350, - "oldi_rating": 2298, - "opt_laps_complete": 0, - "position": 5, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 5, - "starting_position_in_class": 5, - "suit": { - "pattern": 28, - "color1": "434343", - "color2": "fbfbfb", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -303706, - "cust_id": 38029, - "display_name": "Richard Swiderski", - "aggregate_champ_points": 86, - "ai": false, - "average_lap": 975832, - "best_lap_num": 181, - "best_lap_time": 946192, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 86, - "class_interval": -1, - "country_code": "US", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 5, - "finish_position_in_class": 5, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 50, - "color1": "4e0c56", - "color2": "0921f5", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 13, - "interval": -1, - "laps_complete": 157, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 22, - "color1": "000000", - "color2": "01ffff", - "color3": "a30dbe", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 239, - "sponsor2": 240, - "car_number": "66", - "wheel_color": "767676", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 126.51591, - "new_license_level": 20, - "new_sub_level": 488, - "new_ttrating": 1350, - "newi_rating": 2290, - "old_cpi": 112.80723, - "old_license_level": 20, - "old_sub_level": 471, - "old_ttrating": 1350, - "oldi_rating": 2286, - "opt_laps_complete": 0, - "position": 5, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 5, - "starting_position_in_class": 5, - "suit": { - "pattern": 28, - "color1": "434343", - "color2": "fbfbfb", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 2 - } - ], - "drop_race": false, - "finish_position": 5, - "finish_position_in_class": 5, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 53, - "interval": -1, - "laps_complete": 868, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 22, - "color1": "000000", - "color2": "01ffff", - "color3": "a30dbe", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 239, - "sponsor2": 240, - "car_number": "66", - "wheel_color": "767676", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 5, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 5, - "starting_position_in_class": 5, - "suit": { - "pattern": 28, - "color1": "434343", - "color2": "fbfbfb", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -346577, - "display_name": "Motorsports Factory YELLOW", - "aggregate_champ_points": 75, - "ai": false, - "average_lap": 1001714, - "best_lap_num": 645, - "best_lap_time": 937891, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 168, - "car_name": "Cadillac V-Series.R GTP", - "carcfg": -1, - "champ_points": 75, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -346577, - "cust_id": 945525, - "display_name": "Benjamin Voigt", - "aggregate_champ_points": 75, - "ai": false, - "average_lap": 999123, - "best_lap_num": 645, - "best_lap_time": 937891, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 168, - "car_name": "Cadillac V-Series.R GTP", - "carcfg": -1, - "champ_points": 75, - "class_interval": -1, - "country_code": "DE", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 6, - "finish_position_in_class": 6, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 39, - "color1": "ff0000", - "color2": "000000", - "color3": "ff0000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 41, - "interval": -1, - "laps_complete": 388, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 168, - "pattern": 21, - "color1": "172b21", - "color2": "57f97a", - "color3": "e8f9f0", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 139, - "sponsor2": 2, - "car_number": "194", - "wheel_color": "0a0f0a", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 108.77311, - "new_license_level": 20, - "new_sub_level": 465, - "new_ttrating": 1350, - "newi_rating": 1914, - "old_cpi": 75.879616, - "old_license_level": 19, - "old_sub_level": 369, - "old_ttrating": 1350, - "oldi_rating": 1909, - "opt_laps_complete": 0, - "position": 6, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 8, - "starting_position_in_class": 8, - "suit": { - "pattern": 32, - "color1": "172b21", - "color2": "e8f9f0", - "color3": "57f97a" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -346577, - "cust_id": 824375, - "display_name": "Marco Cherdron", - "aggregate_champ_points": 75, - "ai": false, - "average_lap": 972851, - "best_lap_num": 326, - "best_lap_time": 942727, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 168, - "car_name": "Cadillac V-Series.R GTP", - "carcfg": -1, - "champ_points": 75, - "class_interval": -1, - "country_code": "DE", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 6, - "finish_position_in_class": 6, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 60, - "color1": "d7162d", - "color2": "ffffff", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 6, - "interval": -1, - "laps_complete": 167, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 168, - "pattern": 21, - "color1": "172b21", - "color2": "57f97a", - "color3": "e8f9f0", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 139, - "sponsor2": 2, - "car_number": "194", - "wheel_color": "0a0f0a", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 133.82549, - "new_license_level": 20, - "new_sub_level": 497, - "new_ttrating": 1350, - "newi_rating": 2813, - "old_cpi": 84.033134, - "old_license_level": 20, - "old_sub_level": 425, - "old_ttrating": 1350, - "oldi_rating": 2811, - "opt_laps_complete": 0, - "position": 6, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 8, - "starting_position_in_class": 8, - "suit": { - "pattern": 32, - "color1": "172b21", - "color2": "e8f9f0", - "color3": "57f97a" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -346577, - "cust_id": 600472, - "display_name": "Niklas Ude", - "aggregate_champ_points": 75, - "ai": false, - "average_lap": 996812, - "best_lap_num": 683, - "best_lap_time": 941270, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 168, - "car_name": "Cadillac V-Series.R GTP", - "carcfg": -1, - "champ_points": 75, - "class_interval": -1, - "country_code": "DE", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 6, - "finish_position_in_class": 6, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 56, - "color1": "52944d", - "color2": "d2d2d2", - "color3": "5b6a32", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 20, - "interval": -1, - "laps_complete": 165, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 168, - "pattern": 21, - "color1": "172b21", - "color2": "57f97a", - "color3": "e8f9f0", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 139, - "sponsor2": 2, - "car_number": "194", - "wheel_color": "0a0f0a", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 91.08547, - "new_license_level": 20, - "new_sub_level": 438, - "new_ttrating": 1350, - "newi_rating": 2605, - "old_cpi": 85.72911, - "old_license_level": 20, - "old_sub_level": 429, - "old_ttrating": 1350, - "oldi_rating": 2603, - "opt_laps_complete": 0, - "position": 6, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 8, - "starting_position_in_class": 8, - "suit": { - "pattern": 32, - "color1": "172b21", - "color2": "e8f9f0", - "color3": "57f97a" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -346577, - "cust_id": 1157826, - "display_name": "Sven Cherdron", - "aggregate_champ_points": 75, - "ai": false, - "average_lap": 975465, - "best_lap_num": 556, - "best_lap_time": 942991, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 168, - "car_name": "Cadillac V-Series.R GTP", - "carcfg": -1, - "champ_points": 75, - "class_interval": -1, - "country_code": "DE", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 6, - "finish_position_in_class": 6, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "ffffff", - "color2": "52b5f6", - "color3": "52b5f6", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 6, - "interval": -1, - "laps_complete": 140, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 168, - "pattern": 21, - "color1": "172b21", - "color2": "57f97a", - "color3": "e8f9f0", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 139, - "sponsor2": 2, - "car_number": "194", - "wheel_color": "0a0f0a", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 83.77542, - "new_license_level": 19, - "new_sub_level": 384, - "new_ttrating": 1350, - "newi_rating": 2246, - "old_cpi": 33.8601, - "old_license_level": 18, - "old_sub_level": 203, - "old_ttrating": 1350, - "oldi_rating": 2244, - "opt_laps_complete": 0, - "position": 6, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 8, - "starting_position_in_class": 8, - "suit": { - "pattern": 32, - "color1": "172b21", - "color2": "e8f9f0", - "color3": "57f97a" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": false, - "finish_position": 6, - "finish_position_in_class": 6, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 73, - "interval": -1, - "laps_complete": 860, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 168, - "pattern": 21, - "color1": "172b21", - "color2": "57f97a", - "color3": "e8f9f0", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 139, - "sponsor2": 2, - "car_number": "194", - "wheel_color": "0a0f0a", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 6, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 8, - "starting_position_in_class": 8, - "suit": { - "pattern": 32, - "color1": "172b21", - "color2": "e8f9f0", - "color3": "57f97a" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -298033, - "display_name": "Piki SCT", - "aggregate_champ_points": 64, - "ai": false, - "average_lap": 1007992, - "best_lap_num": 491, - "best_lap_time": 939188, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 196, - "car_name": "Ferrari 499P", - "carcfg": -1, - "champ_points": 64, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -298033, - "cust_id": 635842, - "display_name": "Rolf Olmo", - "aggregate_champ_points": 64, - "ai": false, - "average_lap": 975559, - "best_lap_num": 491, - "best_lap_time": 939188, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 196, - "car_name": "Ferrari 499P", - "carcfg": -1, - "champ_points": 64, - "class_interval": -1, - "country_code": "DE", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 7, - "finish_position_in_class": 7, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 12, - "color1": "6589f4", - "color2": "c91919", - "color3": "f5ff7d", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 29, - "interval": -1, - "laps_complete": 224, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 196, - "pattern": 7, - "color1": "6589F4", - "color2": "C91919", - "color3": "F5FF7D", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "5", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 84.67596, - "new_license_level": 19, - "new_sub_level": 385, - "new_ttrating": 1350, - "newi_rating": 2993, - "old_cpi": 68.22165, - "old_license_level": 19, - "old_sub_level": 353, - "old_ttrating": 1350, - "oldi_rating": 2995, - "opt_laps_complete": 0, - "position": 7, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 6, - "starting_position_in_class": 6, - "suit": { - "pattern": 10, - "color1": "5dddc2", - "color2": "19d137", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -298033, - "cust_id": 733468, - "display_name": "Adrià Navarro", - "aggregate_champ_points": 64, - "ai": false, - "average_lap": 1021278, - "best_lap_num": 691, - "best_lap_time": 943125, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 196, - "car_name": "Ferrari 499P", - "carcfg": -1, - "champ_points": 64, - "class_interval": -1, - "country_code": "ES", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 7, - "finish_position_in_class": 7, - "flair_id": 198, - "flair_name": "Spain", - "flair_shortname": "ESP", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "ffee47", - "color2": "0300c2", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 16, - "interval": -1, - "laps_complete": 223, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 196, - "pattern": 7, - "color1": "6589F4", - "color2": "C91919", - "color3": "F5FF7D", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "5", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 102.440506, - "new_license_level": 20, - "new_sub_level": 456, - "new_ttrating": 1350, - "newi_rating": 2074, - "old_cpi": 51.119064, - "old_license_level": 19, - "old_sub_level": 309, - "old_ttrating": 1350, - "oldi_rating": 2076, - "opt_laps_complete": 0, - "position": 7, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 6, - "starting_position_in_class": 6, - "suit": { - "pattern": 10, - "color1": "5dddc2", - "color2": "19d137", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -298033, - "cust_id": 384294, - "display_name": "Sergio Gomez Redondo", - "aggregate_champ_points": 64, - "ai": false, - "average_lap": 988534, - "best_lap_num": 134, - "best_lap_time": 946718, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 196, - "car_name": "Ferrari 499P", - "carcfg": -1, - "champ_points": 64, - "class_interval": -1, - "country_code": "ES", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 7, - "finish_position_in_class": 7, - "flair_id": 198, - "flair_name": "Spain", - "flair_shortname": "ESP", - "friend": false, - "helmet": { - "pattern": 26, - "color1": "ea1a1a", - "color2": "000000", - "color3": "ff0000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 17, - "interval": -1, - "laps_complete": 213, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 196, - "pattern": 7, - "color1": "6589F4", - "color2": "C91919", - "color3": "F5FF7D", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "5", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 149.52426, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 2026, - "old_cpi": 146.89369, - "old_license_level": 20, - "old_sub_level": 499, - "old_ttrating": 1350, - "oldi_rating": 2027, - "opt_laps_complete": 0, - "position": 7, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 6, - "starting_position_in_class": 6, - "suit": { - "pattern": 10, - "color1": "5dddc2", - "color2": "19d137", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -298033, - "cust_id": 1094388, - "display_name": "David Orgaz", - "aggregate_champ_points": 64, - "ai": false, - "average_lap": 987887, - "best_lap_num": 600, - "best_lap_time": 940536, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 196, - "car_name": "Ferrari 499P", - "carcfg": -1, - "champ_points": 64, - "class_interval": -1, - "country_code": "ES", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 7, - "finish_position_in_class": 7, - "flair_id": 198, - "flair_name": "Spain", - "flair_shortname": "ESP", - "friend": false, - "helmet": { - "pattern": 20, - "color1": "111111", - "color2": "30b84e", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 21, - "interval": -1, - "laps_complete": 198, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 196, - "pattern": 7, - "color1": "6589F4", - "color2": "C91919", - "color3": "F5FF7D", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "5", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 93.97715, - "new_license_level": 20, - "new_sub_level": 443, - "new_ttrating": 1350, - "newi_rating": 2440, - "old_cpi": 62.371994, - "old_license_level": 18, - "old_sub_level": 296, - "old_ttrating": 1350, - "oldi_rating": 2441, - "opt_laps_complete": 0, - "position": 7, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 6, - "starting_position_in_class": 6, - "suit": { - "pattern": 10, - "color1": "5dddc2", - "color2": "19d137", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": false, - "finish_position": 7, - "finish_position_in_class": 7, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 83, - "interval": -1, - "laps_complete": 858, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 196, - "pattern": 7, - "color1": "6589F4", - "color2": "C91919", - "color3": "F5FF7D", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "5", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 7, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 6, - "starting_position_in_class": 6, - "suit": { - "pattern": 10, - "color1": "5dddc2", - "color2": "19d137", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -440173, - "display_name": "Axis Simsports Blue", - "aggregate_champ_points": 53, - "ai": false, - "average_lap": 1016964, - "best_lap_num": 140, - "best_lap_time": 943923, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 53, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -440173, - "cust_id": 416043, - "display_name": "Thomas Pugh", - "aggregate_champ_points": 53, - "ai": false, - "average_lap": 975127, - "best_lap_num": 140, - "best_lap_time": 943923, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 53, - "class_interval": -1, - "country_code": "GB", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 8, - "finish_position_in_class": 8, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 9, - "color1": "000000", - "color2": "ffffff", - "color3": "ff0000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 4, - "interval": -1, - "laps_complete": 249, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 22, - "color1": "000000", - "color2": "ffffff", - "color3": "ff0000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "3", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 205.9527, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 3916, - "old_cpi": 120.93353, - "old_license_level": 20, - "old_sub_level": 481, - "old_ttrating": 1350, - "oldi_rating": 3922, - "opt_laps_complete": 0, - "position": 8, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 10, - "starting_position_in_class": 10, - "suit": { - "pattern": 14, - "color1": "d3d3d3", - "color2": "000000", - "color3": "e70e0e" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -440173, - "cust_id": 967657, - "display_name": "Andrew Larkman3", - "aggregate_champ_points": 53, - "ai": false, - "average_lap": 1009568, - "best_lap_num": 557, - "best_lap_time": 948919, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 53, - "class_interval": -1, - "country_code": "SCT", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 8, - "finish_position_in_class": 8, - "flair_id": 237, - "flair_name": "Scotland", - "flair_shortname": "SCT", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "ffffff", - "color2": "372a75", - "color3": "f1732e", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 30, - "interval": -1, - "laps_complete": 222, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 22, - "color1": "000000", - "color2": "ffffff", - "color3": "ff0000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "3", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 77.56901, - "new_license_level": 19, - "new_sub_level": 372, - "new_ttrating": 1268, - "newi_rating": 1848, - "old_cpi": 57.908264, - "old_license_level": 19, - "old_sub_level": 328, - "old_ttrating": 1268, - "oldi_rating": 1854, - "opt_laps_complete": 0, - "position": 8, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 10, - "starting_position_in_class": 10, - "suit": { - "pattern": 14, - "color1": "d3d3d3", - "color2": "000000", - "color3": "e70e0e" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -440173, - "cust_id": 710602, - "display_name": "Austin Graf", - "aggregate_champ_points": 53, - "ai": false, - "average_lap": 988803, - "best_lap_num": 222, - "best_lap_time": 952036, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 53, - "class_interval": -1, - "country_code": "US", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 8, - "finish_position_in_class": 8, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 55, - "color1": "010643", - "color2": "ffffff", - "color3": "676870", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 13, - "interval": -1, - "laps_complete": 197, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 22, - "color1": "000000", - "color2": "ffffff", - "color3": "ff0000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "3", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 113.46475, - "new_license_level": 20, - "new_sub_level": 472, - "new_ttrating": 1350, - "newi_rating": 1943, - "old_cpi": 62.785797, - "old_license_level": 19, - "old_sub_level": 340, - "old_ttrating": 1350, - "oldi_rating": 1948, - "opt_laps_complete": 0, - "position": 8, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 10, - "starting_position_in_class": 10, - "suit": { - "pattern": 14, - "color1": "d3d3d3", - "color2": "000000", - "color3": "e70e0e" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -440173, - "cust_id": 967666, - "display_name": "David Hutcheson", - "aggregate_champ_points": 53, - "ai": false, - "average_lap": 1035623, - "best_lap_num": 412, - "best_lap_time": 948217, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 53, - "class_interval": -1, - "country_code": "SCT", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 8, - "finish_position_in_class": 8, - "flair_id": 237, - "flair_name": "Scotland", - "flair_shortname": "SCT", - "friend": false, - "helmet": { - "pattern": 2, - "color1": "018f18", - "color2": "ffffff", - "color3": "fc4c51", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 26, - "interval": -1, - "laps_complete": 182, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 22, - "color1": "000000", - "color2": "ffffff", - "color3": "ff0000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "3", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 58.00311, - "new_license_level": 15, - "new_sub_level": 385, - "new_ttrating": 1331, - "newi_rating": 2226, - "old_cpi": 27.98584, - "old_license_level": 14, - "old_sub_level": 230, - "old_ttrating": 1331, - "oldi_rating": 2231, - "opt_laps_complete": 0, - "position": 8, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 10, - "starting_position_in_class": 10, - "suit": { - "pattern": 14, - "color1": "d3d3d3", - "color2": "000000", - "color3": "e70e0e" - }, - "watched": false, - "weight_penalty_kg": 2 - } - ], - "drop_race": false, - "finish_position": 8, - "finish_position_in_class": 8, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 73, - "interval": -1, - "laps_complete": 850, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 22, - "color1": "000000", - "color2": "ffffff", - "color3": "ff0000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "3", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 8, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 10, - "starting_position_in_class": 10, - "suit": { - "pattern": 14, - "color1": "d3d3d3", - "color2": "000000", - "color3": "e70e0e" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -134144, - "display_name": "BLOO Racing by VR | 040", - "aggregate_champ_points": 138, - "ai": false, - "average_lap": 1030899, - "best_lap_num": 593, - "best_lap_time": 984242, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 138, - "class_interval": 0, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -134144, - "cust_id": 390389, - "display_name": "Geordi Vermeulen", - "aggregate_champ_points": 138, - "ai": false, - "average_lap": 1020141, - "best_lap_num": 593, - "best_lap_time": 984242, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 138, - "class_interval": 0, - "country_code": "NL", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 9, - "finish_position_in_class": 0, - "flair_id": 146, - "flair_name": "Netherlands", - "flair_shortname": "NLD", - "friend": false, - "helmet": { - "pattern": 38, - "color1": "0094ff", - "color2": "000000", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 7, - "interval": -1, - "laps_complete": 287, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 23, - "color1": "ffffff", - "color2": "8500ff", - "color3": "2176c0", - "number_font": 7, - "number_color1": "ffffff", - "number_color2": "0094ff", - "number_color3": "000000", - "number_slant": 1, - "sponsor1": 323, - "sponsor2": 245, - "car_number": "040", - "wheel_color": "010101", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 267.66696, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 3669, - "old_cpi": 92.9855, - "old_license_level": 19, - "old_sub_level": 399, - "old_ttrating": 1350, - "oldi_rating": 3639, - "opt_laps_complete": 0, - "position": 9, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 16, - "starting_position_in_class": 2, - "suit": { - "pattern": 33, - "color1": "000000", - "color2": "c2000b", - "color3": "0094ff" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -134144, - "cust_id": 26368, - "display_name": "David Ralli", - "aggregate_champ_points": 138, - "ai": false, - "average_lap": 1022205, - "best_lap_num": 413, - "best_lap_time": 989887, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 138, - "class_interval": 0, - "country_code": "GB", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 9, - "finish_position_in_class": 0, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 30, - "color1": "1028EA", - "color2": "45e3ee", - "color3": "270000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 6, - "interval": -1, - "laps_complete": 207, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 23, - "color1": "ffffff", - "color2": "8500ff", - "color3": "2176c0", - "number_font": 7, - "number_color1": "ffffff", - "number_color2": "0094ff", - "number_color3": "000000", - "number_slant": 1, - "sponsor1": 323, - "sponsor2": 245, - "car_number": "040", - "wheel_color": "010101", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 187.03203, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 2188, - "old_cpi": 57.321205, - "old_license_level": 18, - "old_sub_level": 283, - "old_ttrating": 1350, - "oldi_rating": 2166, - "opt_laps_complete": 0, - "position": 9, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 16, - "starting_position_in_class": 2, - "suit": { - "pattern": 33, - "color1": "000000", - "color2": "c2000b", - "color3": "0094ff" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -134144, - "cust_id": 21533, - "display_name": "Conor Swain", - "aggregate_champ_points": 138, - "ai": false, - "average_lap": 1023842, - "best_lap_num": 733, - "best_lap_time": 990008, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 138, - "class_interval": 0, - "country_code": "IE", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 9, - "finish_position_in_class": 0, - "flair_id": 98, - "flair_name": "Ireland", - "flair_shortname": "IRL", - "friend": false, - "helmet": { - "pattern": 24, - "color1": "009a49", - "color2": "ffa500", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 4, - "interval": -1, - "laps_complete": 207, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 23, - "color1": "ffffff", - "color2": "8500ff", - "color3": "2176c0", - "number_font": 7, - "number_color1": "ffffff", - "number_color2": "0094ff", - "number_color3": "000000", - "number_slant": 1, - "sponsor1": 323, - "sponsor2": 245, - "car_number": "040", - "wheel_color": "010101", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 205.21991, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 2070, - "old_cpi": 54.159092, - "old_license_level": 18, - "old_sub_level": 274, - "old_ttrating": 1350, - "oldi_rating": 2048, - "opt_laps_complete": 0, - "position": 9, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 16, - "starting_position_in_class": 2, - "suit": { - "pattern": 33, - "color1": "000000", - "color2": "c2000b", - "color3": "0094ff" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -134144, - "cust_id": 565681, - "display_name": "Ivan Chambers", - "aggregate_champ_points": 138, - "ai": false, - "average_lap": 1027178, - "best_lap_num": 545, - "best_lap_time": 992097, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 138, - "class_interval": 0, - "country_code": "UA", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 9, - "finish_position_in_class": 0, - "flair_id": 220, - "flair_name": "Ukraine", - "flair_shortname": "UKR", - "friend": false, - "helmet": { - "pattern": 65, - "color1": "0002ff", - "color2": "000000", - "color3": "12ff00", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 2, - "interval": -1, - "laps_complete": 138, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 23, - "color1": "ffffff", - "color2": "8500ff", - "color3": "2176c0", - "number_font": 7, - "number_color1": "ffffff", - "number_color2": "0094ff", - "number_color3": "000000", - "number_slant": 1, - "sponsor1": 323, - "sponsor2": 245, - "car_number": "040", - "wheel_color": "010101", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 113.62682, - "new_license_level": 20, - "new_sub_level": 472, - "new_ttrating": 1350, - "newi_rating": 1904, - "old_cpi": 59.518505, - "old_license_level": 19, - "old_sub_level": 332, - "old_ttrating": 1350, - "oldi_rating": 1889, - "opt_laps_complete": 0, - "position": 9, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 16, - "starting_position_in_class": 2, - "suit": { - "pattern": 33, - "color1": "000000", - "color2": "c2000b", - "color3": "0094ff" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": false, - "finish_position": 9, - "finish_position_in_class": 0, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 19, - "interval": -1, - "laps_complete": 839, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 23, - "color1": "ffffff", - "color2": "8500ff", - "color3": "2176c0", - "number_font": 7, - "number_color1": "ffffff", - "number_color2": "0094ff", - "number_color3": "000000", - "number_slant": 1, - "sponsor1": 323, - "sponsor2": 245, - "car_number": "040", - "wheel_color": "010101", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 9, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 16, - "starting_position_in_class": 2, - "suit": { - "pattern": 33, - "color1": "000000", - "color2": "c2000b", - "color3": "0094ff" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -53704, - "display_name": "LITHIUM Motorsports", - "aggregate_champ_points": 125, - "ai": false, - "average_lap": 1032396, - "best_lap_num": 543, - "best_lap_time": 985604, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 125, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -53704, - "cust_id": 284176, - "display_name": "Martin Birmele", - "aggregate_champ_points": 125, - "ai": false, - "average_lap": 1031446, - "best_lap_num": 638, - "best_lap_time": 992256, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 125, - "class_interval": -1, - "country_code": "DE", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 10, - "finish_position_in_class": 1, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 42, - "color1": "ffffff", - "color2": "00154c", - "color3": "710098", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 10, - "interval": -1, - "laps_complete": 217, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 0, - "color1": "2c2c2c", - "color2": "000000", - "color3": "484848", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "15", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 142.29805, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 2430, - "old_cpi": 67.85994, - "old_license_level": 19, - "old_sub_level": 352, - "old_ttrating": 1350, - "oldi_rating": 2411, - "opt_laps_complete": 0, - "position": 10, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 19, - "starting_position_in_class": 5, - "suit": { - "pattern": 3, - "color1": "104C5F", - "color2": "FFFFFF", - "color3": "F0B100" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -53704, - "cust_id": 224720, - "display_name": "Stefan Lupperger", - "aggregate_champ_points": 125, - "ai": false, - "average_lap": 1020522, - "best_lap_num": 543, - "best_lap_time": 985604, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 125, - "class_interval": -1, - "country_code": "DE", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 10, - "finish_position_in_class": 1, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 59, - "color1": "c0ff00", - "color2": "000000", - "color3": "141414", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 14, - "interval": -1, - "laps_complete": 216, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 0, - "color1": "2c2c2c", - "color2": "000000", - "color3": "484848", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "15", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 131.6409, - "new_license_level": 20, - "new_sub_level": 494, - "new_ttrating": 1350, - "newi_rating": 2443, - "old_cpi": 33.84661, - "old_license_level": 17, - "old_sub_level": 159, - "old_ttrating": 1350, - "oldi_rating": 2423, - "opt_laps_complete": 0, - "position": 10, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 19, - "starting_position_in_class": 5, - "suit": { - "pattern": 3, - "color1": "104C5F", - "color2": "FFFFFF", - "color3": "F0B100" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -53704, - "cust_id": 639803, - "display_name": "Alexander Secher", - "aggregate_champ_points": 125, - "ai": false, - "average_lap": 1020934, - "best_lap_num": 209, - "best_lap_time": 985964, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 125, - "class_interval": -1, - "country_code": "DK", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 10, - "finish_position_in_class": 1, - "flair_id": 56, - "flair_name": "Denmark", - "flair_shortname": "DNK", - "friend": false, - "helmet": { - "pattern": 59, - "color1": "ffffff", - "color2": "ff0505", - "color3": "6d6d6d", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 23, - "interval": -1, - "laps_complete": 213, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 0, - "color1": "2c2c2c", - "color2": "000000", - "color3": "484848", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "15", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 100.56424, - "new_license_level": 20, - "new_sub_level": 453, - "new_ttrating": 1350, - "newi_rating": 2336, - "old_cpi": 78.96949, - "old_license_level": 19, - "old_sub_level": 375, - "old_ttrating": 1350, - "oldi_rating": 2316, - "opt_laps_complete": 0, - "position": 10, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 19, - "starting_position_in_class": 5, - "suit": { - "pattern": 3, - "color1": "104C5F", - "color2": "FFFFFF", - "color3": "F0B100" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -53704, - "cust_id": 59268, - "display_name": "Danni Fugl", - "aggregate_champ_points": 125, - "ai": false, - "average_lap": 1026231, - "best_lap_num": 251, - "best_lap_time": 992038, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 125, - "class_interval": -1, - "country_code": "DK", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 10, - "finish_position_in_class": 1, - "flair_id": 56, - "flair_name": "Denmark", - "flair_shortname": "DNK", - "friend": false, - "helmet": { - "pattern": 42, - "color1": "ffffff", - "color2": "a30000", - "color3": "003b72", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 4, - "interval": -1, - "laps_complete": 192, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 0, - "color1": "2c2c2c", - "color2": "000000", - "color3": "484848", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "15", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 192.06525, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 2143, - "old_cpi": 106.53169, - "old_license_level": 20, - "old_sub_level": 462, - "old_ttrating": 1350, - "oldi_rating": 2125, - "opt_laps_complete": 0, - "position": 10, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 19, - "starting_position_in_class": 5, - "suit": { - "pattern": 3, - "color1": "104C5F", - "color2": "FFFFFF", - "color3": "F0B100" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": false, - "finish_position": 10, - "finish_position_in_class": 1, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 51, - "interval": -1, - "laps_complete": 838, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 0, - "color1": "2c2c2c", - "color2": "000000", - "color3": "484848", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "15", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 10, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 19, - "starting_position_in_class": 5, - "suit": { - "pattern": 3, - "color1": "104C5F", - "color2": "FFFFFF", - "color3": "F0B100" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -188879, - "display_name": "Wildfire Racing Dragon", - "aggregate_champ_points": 112, - "ai": false, - "average_lap": 1036669, - "best_lap_num": 432, - "best_lap_time": 988307, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 112, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -188879, - "cust_id": 430711, - "display_name": "Freerk Smit", - "aggregate_champ_points": 112, - "ai": false, - "average_lap": 1019960, - "best_lap_num": 626, - "best_lap_time": 989307, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 112, - "class_interval": -1, - "country_code": "NL", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 11, - "finish_position_in_class": 2, - "flair_id": 146, - "flair_name": "Netherlands", - "flair_shortname": "NLD", - "friend": false, - "helmet": { - "pattern": 47, - "color1": "000000", - "color2": "ffffff", - "color3": "7d0cd9", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 17, - "interval": -1, - "laps_complete": 264, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 1, - "color1": "0db700", - "color2": "ffffff", - "color3": "000000", - "number_font": 16, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "129", - "wheel_color": "929292", - "rim_type": 2 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 144.72728, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 2614, - "old_cpi": 81.29987, - "old_license_level": 19, - "old_sub_level": 379, - "old_ttrating": 1350, - "oldi_rating": 2595, - "opt_laps_complete": 0, - "position": 11, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 22, - "starting_position_in_class": 8, - "suit": { - "pattern": 20, - "color1": "000000", - "color2": "06ff00", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -188879, - "cust_id": 604033, - "display_name": "Byron Coetzer", - "aggregate_champ_points": 112, - "ai": false, - "average_lap": 1018664, - "best_lap_num": 432, - "best_lap_time": 988307, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 112, - "class_interval": -1, - "country_code": "ZA", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 11, - "finish_position_in_class": 2, - "flair_id": 195, - "flair_name": "South Africa", - "flair_shortname": "ZAF", - "friend": false, - "helmet": { - "pattern": 56, - "color1": "a6ff00", - "color2": "daff00", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 19, - "interval": -1, - "laps_complete": 259, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 1, - "color1": "0db700", - "color2": "ffffff", - "color3": "000000", - "number_font": 16, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "129", - "wheel_color": "929292", - "rim_type": 2 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 123.092766, - "new_license_level": 20, - "new_sub_level": 484, - "new_ttrating": 1350, - "newi_rating": 2371, - "old_cpi": 83.90884, - "old_license_level": 20, - "old_sub_level": 425, - "old_ttrating": 1350, - "oldi_rating": 2352, - "opt_laps_complete": 0, - "position": 11, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 22, - "starting_position_in_class": 8, - "suit": { - "pattern": 20, - "color1": "000000", - "color2": "06ff00", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -188879, - "cust_id": 788035, - "display_name": "Devon Allies2", - "aggregate_champ_points": 112, - "ai": false, - "average_lap": 1022673, - "best_lap_num": 604, - "best_lap_time": 988647, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 112, - "class_interval": -1, - "country_code": "ZA", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 11, - "finish_position_in_class": 2, - "flair_id": 195, - "flair_name": "South Africa", - "flair_shortname": "ZAF", - "friend": false, - "helmet": { - "pattern": 34, - "color1": "ffffff", - "color2": "ff0909", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 17, - "interval": -1, - "laps_complete": 193, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 1, - "color1": "0db700", - "color2": "ffffff", - "color3": "000000", - "number_font": 16, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "129", - "wheel_color": "929292", - "rim_type": 2 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 97.231285, - "new_license_level": 20, - "new_sub_level": 448, - "new_ttrating": 1350, - "newi_rating": 2077, - "old_cpi": 48.267376, - "old_license_level": 18, - "old_sub_level": 257, - "old_ttrating": 1350, - "oldi_rating": 2063, - "opt_laps_complete": 0, - "position": 11, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 22, - "starting_position_in_class": 8, - "suit": { - "pattern": 20, - "color1": "000000", - "color2": "06ff00", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -188879, - "cust_id": 751768, - "display_name": "Sean Nisizaka Smit", - "aggregate_champ_points": 112, - "ai": false, - "average_lap": 1024089, - "best_lap_num": 91, - "best_lap_time": 988360, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 112, - "class_interval": -1, - "country_code": "AU", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 11, - "finish_position_in_class": 2, - "flair_id": 16, - "flair_name": "Australia", - "flair_shortname": "AUS", - "friend": false, - "helmet": { - "pattern": 6, - "color1": "ffffff", - "color2": "ff0000", - "color3": "0075ff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 15, - "interval": -1, - "laps_complete": 118, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 1, - "color1": "0db700", - "color2": "ffffff", - "color3": "000000", - "number_font": 16, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "129", - "wheel_color": "929292", - "rim_type": 2 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 61.77475, - "new_license_level": 18, - "new_sub_level": 294, - "new_ttrating": 1336, - "newi_rating": 2123, - "old_cpi": 44.15168, - "old_license_level": 18, - "old_sub_level": 243, - "old_ttrating": 1336, - "oldi_rating": 2114, - "opt_laps_complete": 0, - "position": 11, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 22, - "starting_position_in_class": 8, - "suit": { - "pattern": 20, - "color1": "000000", - "color2": "06ff00", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": false, - "finish_position": 11, - "finish_position_in_class": 2, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 68, - "interval": -1, - "laps_complete": 834, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 1, - "color1": "0db700", - "color2": "ffffff", - "color3": "000000", - "number_font": 16, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "129", - "wheel_color": "929292", - "rim_type": 2 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 11, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 22, - "starting_position_in_class": 8, - "suit": { - "pattern": 20, - "color1": "000000", - "color2": "06ff00", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -479098, - "display_name": "Lightning Racing Team - #86", - "aggregate_champ_points": 100, - "ai": false, - "average_lap": 1036866, - "best_lap_num": 434, - "best_lap_time": 988298, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 100, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -479098, - "cust_id": 1133857, - "display_name": "Pierre Peytral Yagüe", - "aggregate_champ_points": 100, - "ai": false, - "average_lap": 1030442, - "best_lap_num": 434, - "best_lap_time": 988298, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 100, - "class_interval": -1, - "country_code": "FR", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 12, - "finish_position_in_class": 3, - "flair_id": 71, - "flair_name": "France", - "flair_shortname": "FRA", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "fc0706", - "color2": "111111", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 17, - "interval": -1, - "laps_complete": 346, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 12, - "color1": "ff78ff", - "color2": "000000", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "43", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 189.7976, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 2834, - "old_cpi": 46.85185, - "old_license_level": 18, - "old_sub_level": 252, - "old_ttrating": 1350, - "oldi_rating": 2816, - "opt_laps_complete": 0, - "position": 12, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 24, - "starting_position_in_class": 10, - "suit": { - "pattern": 21, - "color1": "f200ff", - "color2": "ffffff", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -479098, - "cust_id": 1172993, - "display_name": "Àngel García", - "aggregate_champ_points": 100, - "ai": false, - "average_lap": 1029244, - "best_lap_num": 143, - "best_lap_time": 992742, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 100, - "class_interval": -1, - "country_code": "ES", - "division": 5, - "division_name": "Division 6", - "drop_race": false, - "finish_position": 12, - "finish_position_in_class": 3, - "flair_id": 198, - "flair_name": "Spain", - "flair_shortname": "ESP", - "friend": false, - "helmet": { - "pattern": 59, - "color1": "0a0a0a", - "color2": "0c0ce3", - "color3": "e20aff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 9, - "interval": -1, - "laps_complete": 264, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 12, - "color1": "ff78ff", - "color2": "000000", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "43", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 118.58717, - "new_license_level": 16, - "new_sub_level": 499, - "new_ttrating": 1304, - "newi_rating": 1676, - "old_cpi": 36.530888, - "old_license_level": 15, - "old_sub_level": 315, - "old_ttrating": 1304, - "oldi_rating": 1662, - "opt_laps_complete": 0, - "position": 12, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 24, - "starting_position_in_class": 10, - "suit": { - "pattern": 21, - "color1": "f200ff", - "color2": "ffffff", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -479098, - "cust_id": 1168652, - "display_name": "Eric Bigas", - "aggregate_champ_points": 100, - "ai": false, - "average_lap": 1028594, - "best_lap_num": 767, - "best_lap_time": 992327, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 100, - "class_interval": -1, - "country_code": "ES", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 12, - "finish_position_in_class": 3, - "flair_id": 198, - "flair_name": "Spain", - "flair_shortname": "ESP", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "1f2892", - "color2": "7de54c", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 12, - "interval": -1, - "laps_complete": 224, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 12, - "color1": "ff78ff", - "color2": "000000", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "43", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 113.96372, - "new_license_level": 16, - "new_sub_level": 499, - "new_ttrating": 1423, - "newi_rating": 2502, - "old_cpi": 33.72117, - "old_license_level": 14, - "old_sub_level": 258, - "old_ttrating": 1423, - "oldi_rating": 2490, - "opt_laps_complete": 0, - "position": 12, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 24, - "starting_position_in_class": 10, - "suit": { - "pattern": 21, - "color1": "f200ff", - "color2": "ffffff", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": false, - "finish_position": 12, - "finish_position_in_class": 3, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 38, - "interval": -1, - "laps_complete": 834, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 12, - "color1": "ff78ff", - "color2": "000000", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "43", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 12, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 24, - "starting_position_in_class": 10, - "suit": { - "pattern": 21, - "color1": "f200ff", - "color2": "ffffff", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -310391, - "display_name": "4ORGE Lions", - "aggregate_champ_points": 87, - "ai": false, - "average_lap": 1040022, - "best_lap_num": 561, - "best_lap_time": 984025, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 87, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -310391, - "cust_id": 635525, - "display_name": "Rich Gregory", - "aggregate_champ_points": 87, - "ai": false, - "average_lap": 1012126, - "best_lap_num": 393, - "best_lap_time": 987270, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 87, - "class_interval": -1, - "country_code": "GB", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 13, - "finish_position_in_class": 4, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 45, - "color1": "ffffff", - "color2": "000000", - "color3": "ff0000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 32, - "interval": -1, - "laps_complete": 236, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 7, - "color1": "ff0000", - "color2": "ffffff", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "11", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 79.90745, - "new_license_level": 19, - "new_sub_level": 377, - "new_ttrating": 1350, - "newi_rating": 2137, - "old_cpi": 61.902596, - "old_license_level": 19, - "old_sub_level": 338, - "old_ttrating": 1350, - "oldi_rating": 2129, - "opt_laps_complete": 0, - "position": 13, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 21, - "starting_position_in_class": 7, - "suit": { - "pattern": 13, - "color1": "ff0000", - "color2": "870005", - "color3": "2900ef" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -310391, - "cust_id": 1301864, - "display_name": "Carlos Sarmiento", - "aggregate_champ_points": 87, - "ai": false, - "average_lap": 1011503, - "best_lap_num": 561, - "best_lap_time": 984025, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 87, - "class_interval": -1, - "country_code": "CO", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 13, - "finish_position_in_class": 4, - "flair_id": 48, - "flair_name": "Colombia", - "flair_shortname": "COL", - "friend": false, - "helmet": { - "pattern": 28, - "color1": "0a0a0a", - "color2": "ffc700", - "color3": "ebff00", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 15, - "interval": -1, - "laps_complete": 219, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 7, - "color1": "ff0000", - "color2": "ffffff", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "11", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 111.0758, - "new_license_level": 20, - "new_sub_level": 468, - "new_ttrating": 1350, - "newi_rating": 2553, - "old_cpi": 58.55259, - "old_license_level": 19, - "old_sub_level": 330, - "old_ttrating": 1350, - "oldi_rating": 2545, - "opt_laps_complete": 0, - "position": 13, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 21, - "starting_position_in_class": 7, - "suit": { - "pattern": 13, - "color1": "ff0000", - "color2": "870005", - "color3": "2900ef" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -310391, - "cust_id": 696553, - "display_name": "Robert Snarr", - "aggregate_champ_points": 87, - "ai": false, - "average_lap": 1028324, - "best_lap_num": 513, - "best_lap_time": 988032, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 87, - "class_interval": -1, - "country_code": "US", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 13, - "finish_position_in_class": 4, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 46, - "color1": "fafafa", - "color2": "ffffff", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 15, - "interval": -1, - "laps_complete": 193, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 7, - "color1": "ff0000", - "color2": "ffffff", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "11", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 99.41591, - "new_license_level": 20, - "new_sub_level": 451, - "new_ttrating": 1350, - "newi_rating": 2218, - "old_cpi": 58.642387, - "old_license_level": 19, - "old_sub_level": 330, - "old_ttrating": 1350, - "oldi_rating": 2211, - "opt_laps_complete": 0, - "position": 13, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 21, - "starting_position_in_class": 7, - "suit": { - "pattern": 13, - "color1": "ff0000", - "color2": "870005", - "color3": "2900ef" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -310391, - "cust_id": 837928, - "display_name": "Lui Brahimaj2", - "aggregate_champ_points": 87, - "ai": false, - "average_lap": 1023969, - "best_lap_num": 459, - "best_lap_time": 986648, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 87, - "class_interval": -1, - "country_code": "GB", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 13, - "finish_position_in_class": 4, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "ed2129", - "color2": "ffffff", - "color3": "2a3795", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 28, - "interval": -1, - "laps_complete": 184, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 7, - "color1": "ff0000", - "color2": "ffffff", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "11", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 80.20255, - "new_license_level": 20, - "new_sub_level": 418, - "new_ttrating": 1350, - "newi_rating": 2176, - "old_cpi": 81.643906, - "old_license_level": 20, - "old_sub_level": 421, - "old_ttrating": 1350, - "oldi_rating": 2170, - "opt_laps_complete": 0, - "position": 13, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 21, - "starting_position_in_class": 7, - "suit": { - "pattern": 13, - "color1": "ff0000", - "color2": "870005", - "color3": "2900ef" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": false, - "finish_position": 13, - "finish_position_in_class": 4, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 90, - "interval": -1, - "laps_complete": 832, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 7, - "color1": "ff0000", - "color2": "ffffff", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "11", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 13, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 21, - "starting_position_in_class": 7, - "suit": { - "pattern": 13, - "color1": "ff0000", - "color2": "870005", - "color3": "2900ef" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -361961, - "display_name": "Inside Curb Racing", - "aggregate_champ_points": 43, - "ai": false, - "average_lap": 1043399, - "best_lap_num": 589, - "best_lap_time": 935447, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 43, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -361961, - "cust_id": 326217, - "display_name": "Wouter M Merks", - "aggregate_champ_points": 43, - "ai": false, - "average_lap": 966076, - "best_lap_num": 645, - "best_lap_time": 935484, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 43, - "class_interval": -1, - "country_code": "NL", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 14, - "finish_position_in_class": 9, - "flair_id": 146, - "flair_name": "Netherlands", - "flair_shortname": "NLD", - "friend": false, - "helmet": { - "pattern": 65, - "color1": "14fff8", - "color2": "000000", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 9, - "interval": -1, - "laps_complete": 251, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 10, - "color1": "ffffff", - "color2": "ffffff", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "1", - "wheel_color": "878787", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 139.78241, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 3051, - "old_cpi": 53.386677, - "old_license_level": 19, - "old_sub_level": 316, - "old_ttrating": 1350, - "oldi_rating": 3062, - "opt_laps_complete": 0, - "position": 14, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 2, - "starting_position_in_class": 2, - "suit": { - "pattern": 2, - "color1": "000000", - "color2": "ffffff", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -361961, - "cust_id": 1049323, - "display_name": "Thijn De Jong", - "aggregate_champ_points": 43, - "ai": false, - "average_lap": 1075617, - "best_lap_num": 671, - "best_lap_time": 936899, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 43, - "class_interval": -1, - "country_code": "NL", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 14, - "finish_position_in_class": 9, - "flair_id": 146, - "flair_name": "Netherlands", - "flair_shortname": "NLD", - "friend": false, - "helmet": { - "pattern": 0, - "color1": "ffffff", - "color2": "ffffff", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 44, - "interval": -1, - "laps_complete": 221, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 10, - "color1": "ffffff", - "color2": "ffffff", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "1", - "wheel_color": "878787", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 56.54951, - "new_license_level": 18, - "new_sub_level": 281, - "new_ttrating": 1374, - "newi_rating": 2575, - "old_cpi": 45.43084, - "old_license_level": 18, - "old_sub_level": 248, - "old_ttrating": 1374, - "oldi_rating": 2585, - "opt_laps_complete": 0, - "position": 14, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 2, - "starting_position_in_class": 2, - "suit": { - "pattern": 2, - "color1": "000000", - "color2": "ffffff", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -361961, - "cust_id": 1049231, - "display_name": "Rens De Jong", - "aggregate_champ_points": 43, - "ai": false, - "average_lap": 1001423, - "best_lap_num": 589, - "best_lap_time": 935447, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 43, - "class_interval": -1, - "country_code": "NL", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 14, - "finish_position_in_class": 9, - "flair_id": 146, - "flair_name": "Netherlands", - "flair_shortname": "NLD", - "friend": false, - "helmet": { - "pattern": 54, - "color1": "ff0000", - "color2": "000000", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 9, - "interval": -1, - "laps_complete": 218, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 10, - "color1": "ffffff", - "color2": "ffffff", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "1", - "wheel_color": "878787", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 178.31544, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 2033, - "old_cpi": 63.337677, - "old_license_level": 18, - "old_sub_level": 298, - "old_ttrating": 1350, - "oldi_rating": 2043, - "opt_laps_complete": 0, - "position": 14, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 2, - "starting_position_in_class": 2, - "suit": { - "pattern": 2, - "color1": "000000", - "color2": "ffffff", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -361961, - "cust_id": 1049336, - "display_name": "Lennon De Ruiter", - "aggregate_champ_points": 43, - "ai": false, - "average_lap": 982431, - "best_lap_num": 500, - "best_lap_time": 943947, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 43, - "class_interval": -1, - "country_code": "NL", - "division": 5, - "division_name": "Division 6", - "drop_race": false, - "finish_position": 14, - "finish_position_in_class": 9, - "flair_id": 146, - "flair_name": "Netherlands", - "flair_shortname": "NLD", - "friend": false, - "helmet": { - "pattern": 28, - "color1": "000000", - "color2": "000000", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 10, - "interval": -1, - "laps_complete": 139, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 10, - "color1": "ffffff", - "color2": "ffffff", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "1", - "wheel_color": "878787", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 133.91473, - "new_license_level": 20, - "new_sub_level": 497, - "new_ttrating": 1350, - "newi_rating": 1983, - "old_cpi": 115.908516, - "old_license_level": 20, - "old_sub_level": 475, - "old_ttrating": 1350, - "oldi_rating": 1989, - "opt_laps_complete": 0, - "position": 14, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 2, - "starting_position_in_class": 2, - "suit": { - "pattern": 2, - "color1": "000000", - "color2": "ffffff", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 2 - } - ], - "drop_race": false, - "finish_position": 14, - "finish_position_in_class": 9, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 72, - "interval": -1, - "laps_complete": 829, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 10, - "color1": "ffffff", - "color2": "ffffff", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "1", - "wheel_color": "878787", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 14, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 2, - "starting_position_in_class": 2, - "suit": { - "pattern": 2, - "color1": "000000", - "color2": "ffffff", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -348667, - "display_name": "Speed Eagles Gold", - "aggregate_champ_points": 75, - "ai": false, - "average_lap": 1046341, - "best_lap_num": 589, - "best_lap_time": 982942, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 75, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -348667, - "cust_id": 433972, - "display_name": "Łukasz Fryca", - "aggregate_champ_points": 75, - "ai": false, - "average_lap": 1048240, - "best_lap_num": 498, - "best_lap_time": 988306, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 75, - "class_interval": -1, - "country_code": "PL", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 15, - "finish_position_in_class": 5, - "flair_id": 167, - "flair_name": "Poland", - "flair_shortname": "POL", - "friend": false, - "helmet": { - "pattern": 42, - "color1": "f3f3f3", - "color2": "e51411", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 16, - "interval": -1, - "laps_complete": 211, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 6, - "color1": "23548f", - "color2": "000000", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "000000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "44", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 107.68496, - "new_license_level": 20, - "new_sub_level": 464, - "new_ttrating": 1350, - "newi_rating": 2091, - "old_cpi": 43.955246, - "old_license_level": 18, - "old_sub_level": 243, - "old_ttrating": 1350, - "oldi_rating": 2088, - "opt_laps_complete": 0, - "position": 15, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 17, - "starting_position_in_class": 3, - "suit": { - "pattern": 25, - "color1": "000000", - "color2": "1d70b8", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -348667, - "cust_id": 1150854, - "display_name": "Ivo Dudek2", - "aggregate_champ_points": 75, - "ai": false, - "average_lap": 1048355, - "best_lap_num": 450, - "best_lap_time": 987849, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 75, - "class_interval": -1, - "country_code": "PL", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 15, - "finish_position_in_class": 5, - "flair_id": 167, - "flair_name": "Poland", - "flair_shortname": "POL", - "friend": false, - "helmet": { - "pattern": 36, - "color1": "000000", - "color2": "05ff00", - "color3": "0094ff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 12, - "interval": -1, - "laps_complete": 210, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 6, - "color1": "23548f", - "color2": "000000", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "000000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "44", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 90.289185, - "new_license_level": 16, - "new_sub_level": 495, - "new_ttrating": 1374, - "newi_rating": 2132, - "old_cpi": 39.360443, - "old_license_level": 15, - "old_sub_level": 326, - "old_ttrating": 1374, - "oldi_rating": 2129, - "opt_laps_complete": 0, - "position": 15, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 17, - "starting_position_in_class": 3, - "suit": { - "pattern": 25, - "color1": "000000", - "color2": "1d70b8", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -348667, - "cust_id": 913811, - "display_name": "Janusz Kurnik", - "aggregate_champ_points": 75, - "ai": false, - "average_lap": 1025155, - "best_lap_num": 74, - "best_lap_time": 988952, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 75, - "class_interval": -1, - "country_code": "PL", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 15, - "finish_position_in_class": 5, - "flair_id": 167, - "flair_name": "Poland", - "flair_shortname": "POL", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "ffee47", - "color2": "0300c2", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 3, - "interval": -1, - "laps_complete": 210, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 6, - "color1": "23548f", - "color2": "000000", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "000000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "44", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 207.23842, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 2339, - "old_cpi": 103.43456, - "old_license_level": 20, - "old_sub_level": 457, - "old_ttrating": 1350, - "oldi_rating": 2336, - "opt_laps_complete": 0, - "position": 15, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 17, - "starting_position_in_class": 3, - "suit": { - "pattern": 25, - "color1": "000000", - "color2": "1d70b8", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -348667, - "cust_id": 532947, - "display_name": "Dawid Dlugokecki", - "aggregate_champ_points": 75, - "ai": false, - "average_lap": 1032416, - "best_lap_num": 589, - "best_lap_time": 982942, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 75, - "class_interval": -1, - "country_code": "PL", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 15, - "finish_position_in_class": 5, - "flair_id": 167, - "flair_name": "Poland", - "flair_shortname": "POL", - "friend": false, - "helmet": { - "pattern": 26, - "color1": "740004", - "color2": "000000", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 24, - "interval": -1, - "laps_complete": 195, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 6, - "color1": "23548f", - "color2": "000000", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "000000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "44", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 79.3237, - "new_license_level": 19, - "new_sub_level": 375, - "new_ttrating": 1350, - "newi_rating": 2670, - "old_cpi": 65.30674, - "old_license_level": 19, - "old_sub_level": 346, - "old_ttrating": 1350, - "oldi_rating": 2667, - "opt_laps_complete": 0, - "position": 15, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 17, - "starting_position_in_class": 3, - "suit": { - "pattern": 25, - "color1": "000000", - "color2": "1d70b8", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": false, - "finish_position": 15, - "finish_position_in_class": 5, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 55, - "interval": -1, - "laps_complete": 826, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 6, - "color1": "23548f", - "color2": "000000", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "000000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "44", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 15, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 17, - "starting_position_in_class": 3, - "suit": { - "pattern": 25, - "color1": "000000", - "color2": "1d70b8", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -217878, - "display_name": "Katzes Racing League #Beta", - "aggregate_champ_points": 62, - "ai": false, - "average_lap": 1057055, - "best_lap_num": 537, - "best_lap_time": 982064, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 62, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -217878, - "cust_id": 240174, - "display_name": "Steven Lexow", - "aggregate_champ_points": 62, - "ai": false, - "average_lap": 1020130, - "best_lap_num": 675, - "best_lap_time": 986461, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 62, - "class_interval": -1, - "country_code": "DE", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 16, - "finish_position_in_class": 6, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 9, - "color1": "a80000", - "color2": "000000", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 10, - "interval": -1, - "laps_complete": 237, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 22, - "color1": "000000", - "color2": "ff7800", - "color3": "005f99", - "number_font": 3, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "042", - "wheel_color": "ffffff", - "rim_type": 3 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 151.4998, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 2787, - "old_cpi": 86.411354, - "old_license_level": 20, - "old_sub_level": 430, - "old_ttrating": 1350, - "oldi_rating": 2788, - "opt_laps_complete": 0, - "position": 16, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 18, - "starting_position_in_class": 4, - "suit": { - "pattern": 21, - "color1": "000000", - "color2": "ededed", - "color3": "F98E1D" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -217878, - "cust_id": 936404, - "display_name": "Alexander Kraft", - "aggregate_champ_points": 62, - "ai": false, - "average_lap": 1014918, - "best_lap_num": 537, - "best_lap_time": 982064, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 62, - "class_interval": -1, - "country_code": "DE", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 16, - "finish_position_in_class": 6, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "ffffff", - "color2": "f06e34", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 22, - "interval": -1, - "laps_complete": 207, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 22, - "color1": "000000", - "color2": "ff7800", - "color3": "005f99", - "number_font": 3, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "042", - "wheel_color": "ffffff", - "rim_type": 3 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 130.4349, - "new_license_level": 20, - "new_sub_level": 493, - "new_ttrating": 1350, - "newi_rating": 3381, - "old_cpi": 176.48804, - "old_license_level": 20, - "old_sub_level": 499, - "old_ttrating": 1350, - "oldi_rating": 3383, - "opt_laps_complete": 0, - "position": 16, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 18, - "starting_position_in_class": 4, - "suit": { - "pattern": 21, - "color1": "000000", - "color2": "ededed", - "color3": "F98E1D" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -217878, - "cust_id": 267842, - "display_name": "Merlin Banf", - "aggregate_champ_points": 62, - "ai": false, - "average_lap": 1110229, - "best_lap_num": 605, - "best_lap_time": 992520, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 62, - "class_interval": -1, - "country_code": "DE", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 16, - "finish_position_in_class": 6, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 13, - "color1": "000000", - "color2": "011a98", - "color3": "535353", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 22, - "interval": -1, - "laps_complete": 190, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 22, - "color1": "000000", - "color2": "ff7800", - "color3": "005f99", - "number_font": 3, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "042", - "wheel_color": "ffffff", - "rim_type": 3 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 65.71206, - "new_license_level": 16, - "new_sub_level": 447, - "new_ttrating": 1350, - "newi_rating": 1772, - "old_cpi": 28.92387, - "old_license_level": 14, - "old_sub_level": 235, - "old_ttrating": 1350, - "oldi_rating": 1774, - "opt_laps_complete": 0, - "position": 16, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 18, - "starting_position_in_class": 4, - "suit": { - "pattern": 21, - "color1": "000000", - "color2": "ededed", - "color3": "F98E1D" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -217878, - "cust_id": 332861, - "display_name": "Simon Kreß", - "aggregate_champ_points": 62, - "ai": false, - "average_lap": 1035222, - "best_lap_num": 468, - "best_lap_time": 996023, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 62, - "class_interval": -1, - "country_code": "JP", - "division": 4, - "division_name": "Division 5", - "drop_race": false, - "finish_position": 16, - "finish_position_in_class": 6, - "flair_id": 104, - "flair_name": "Japan", - "flair_shortname": "JPN", - "friend": false, - "helmet": { - "pattern": 55, - "color1": "000000", - "color2": "390057", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 13, - "interval": -1, - "laps_complete": 184, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 22, - "color1": "000000", - "color2": "ff7800", - "color3": "005f99", - "number_font": 3, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "042", - "wheel_color": "ffffff", - "rim_type": 3 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 159.60707, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 1791, - "old_cpi": 149.68791, - "old_license_level": 20, - "old_sub_level": 499, - "old_ttrating": 1350, - "oldi_rating": 1793, - "opt_laps_complete": 0, - "position": 16, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 18, - "starting_position_in_class": 4, - "suit": { - "pattern": 21, - "color1": "000000", - "color2": "ededed", - "color3": "F98E1D" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": false, - "finish_position": 16, - "finish_position_in_class": 6, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 67, - "interval": -1, - "laps_complete": 818, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 22, - "color1": "000000", - "color2": "ff7800", - "color3": "005f99", - "number_font": 3, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "042", - "wheel_color": "ffffff", - "rim_type": 3 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 16, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 18, - "starting_position_in_class": 4, - "suit": { - "pattern": 21, - "color1": "000000", - "color2": "ededed", - "color3": "F98E1D" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -288965, - "display_name": "Ecurie Col d'Oiseaux Tertre Rouge", - "aggregate_champ_points": 50, - "ai": false, - "average_lap": 1059685, - "best_lap_num": 114, - "best_lap_time": 982815, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 50, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -288965, - "cust_id": 532447, - "display_name": "Paul N T Williams", - "aggregate_champ_points": 50, - "ai": false, - "average_lap": 1021998, - "best_lap_num": 363, - "best_lap_time": 989439, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 50, - "class_interval": -1, - "country_code": "GB", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 17, - "finish_position_in_class": 7, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 49, - "color1": "000103", - "color2": "258126", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 24, - "interval": -1, - "laps_complete": 248, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 11, - "color1": "ffffd1", - "color2": "9b0202", - "color3": "0d3860", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "77", - "wheel_color": "b7b7b7", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 124.73199, - "new_license_level": 20, - "new_sub_level": 486, - "new_ttrating": 1350, - "newi_rating": 2366, - "old_cpi": 125.814064, - "old_license_level": 20, - "old_sub_level": 488, - "old_ttrating": 1350, - "oldi_rating": 2371, - "opt_laps_complete": 0, - "position": 17, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 14, - "starting_position_in_class": 0, - "suit": { - "pattern": 8, - "color1": "ffffd1", - "color2": "a30206", - "color3": "ffd7d1" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -288965, - "cust_id": 381294, - "display_name": "Taiyo Vliegen", - "aggregate_champ_points": 50, - "ai": false, - "average_lap": 1009557, - "best_lap_num": 475, - "best_lap_time": 989776, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 50, - "class_interval": -1, - "country_code": "TH", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 17, - "finish_position_in_class": 7, - "flair_id": 208, - "flair_name": "Thailand", - "flair_shortname": "THA", - "friend": false, - "helmet": { - "pattern": 17, - "color1": "f3bf45", - "color2": "bb2209", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 14, - "interval": -1, - "laps_complete": 226, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 11, - "color1": "ffffd1", - "color2": "9b0202", - "color3": "0d3860", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "77", - "wheel_color": "b7b7b7", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 186.71976, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 2058, - "old_cpi": 177.2794, - "old_license_level": 20, - "old_sub_level": 499, - "old_ttrating": 1350, - "oldi_rating": 2063, - "opt_laps_complete": 0, - "position": 17, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 14, - "starting_position_in_class": 0, - "suit": { - "pattern": 8, - "color1": "ffffd1", - "color2": "a30206", - "color3": "ffd7d1" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -288965, - "cust_id": 435038, - "display_name": "Jochen Siegert", - "aggregate_champ_points": 50, - "ai": false, - "average_lap": 1025213, - "best_lap_num": 639, - "best_lap_time": 990852, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 50, - "class_interval": -1, - "country_code": "DE", - "division": 4, - "division_name": "Division 5", - "drop_race": false, - "finish_position": 17, - "finish_position_in_class": 7, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 3, - "color1": "f6faf6", - "color2": "ffffff", - "color3": "f3f4f3", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 38, - "interval": -1, - "laps_complete": 213, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 11, - "color1": "ffffd1", - "color2": "9b0202", - "color3": "0d3860", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "77", - "wheel_color": "b7b7b7", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 65.23617, - "new_license_level": 19, - "new_sub_level": 346, - "new_ttrating": 1350, - "newi_rating": 1832, - "old_cpi": 62.29063, - "old_license_level": 19, - "old_sub_level": 339, - "old_ttrating": 1350, - "oldi_rating": 1837, - "opt_laps_complete": 0, - "position": 17, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 14, - "starting_position_in_class": 0, - "suit": { - "pattern": 8, - "color1": "ffffd1", - "color2": "a30206", - "color3": "ffd7d1" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -288965, - "cust_id": 969021, - "display_name": "Brandon Schmidt3", - "aggregate_champ_points": 50, - "ai": false, - "average_lap": 1007798, - "best_lap_num": 114, - "best_lap_time": 982815, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 50, - "class_interval": -1, - "country_code": "DE", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 17, - "finish_position_in_class": 7, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 28, - "color1": "9b1a25", - "color2": "798bd8", - "color3": "0b0a0b", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 8, - "interval": -1, - "laps_complete": 129, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 11, - "color1": "ffffd1", - "color2": "9b0202", - "color3": "0d3860", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "77", - "wheel_color": "b7b7b7", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 111.61723, - "new_license_level": 20, - "new_sub_level": 469, - "new_ttrating": 1375, - "newi_rating": 2923, - "old_cpi": 93.56137, - "old_license_level": 20, - "old_sub_level": 442, - "old_ttrating": 1375, - "oldi_rating": 2926, - "opt_laps_complete": 0, - "position": 17, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 14, - "starting_position_in_class": 0, - "suit": { - "pattern": 8, - "color1": "ffffd1", - "color2": "a30206", - "color3": "ffd7d1" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": false, - "finish_position": 17, - "finish_position_in_class": 7, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 84, - "interval": -1, - "laps_complete": 816, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 11, - "color1": "ffffd1", - "color2": "9b0202", - "color3": "0d3860", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "77", - "wheel_color": "b7b7b7", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 17, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 14, - "starting_position_in_class": 0, - "suit": { - "pattern": 8, - "color1": "ffffd1", - "color2": "a30206", - "color3": "ffd7d1" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -433705, - "display_name": "SIM RACING GRID ACADEMY - Obsidian", - "aggregate_champ_points": 37, - "ai": false, - "average_lap": 1066106, - "best_lap_num": 364, - "best_lap_time": 982532, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 37, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -433705, - "cust_id": 1048672, - "display_name": "Joshua De Lange", - "aggregate_champ_points": 37, - "ai": false, - "average_lap": 1002960, - "best_lap_num": 364, - "best_lap_time": 982532, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 37, - "class_interval": -1, - "country_code": "NL", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 18, - "finish_position_in_class": 8, - "flair_id": 146, - "flair_name": "Netherlands", - "flair_shortname": "NLD", - "friend": false, - "helmet": { - "pattern": 59, - "color1": "07a9e5", - "color2": "981a53", - "color3": "f981a5", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 26, - "interval": -1, - "laps_complete": 240, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 0, - "color1": "ffffff", - "color2": "cccccc", - "color3": "666666", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "10", - "wheel_color": "ffb649", - "rim_type": 2 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 94.37405, - "new_license_level": 20, - "new_sub_level": 443, - "new_ttrating": 1350, - "newi_rating": 2529, - "old_cpi": 76.501915, - "old_license_level": 20, - "old_sub_level": 411, - "old_ttrating": 1350, - "oldi_rating": 2540, - "opt_laps_complete": 0, - "position": 18, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 15, - "starting_position_in_class": 1, - "suit": { - "pattern": 4, - "color1": "4a98ff", - "color2": "0012fa", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -433705, - "cust_id": 1359189, - "display_name": "Tóth Károly", - "aggregate_champ_points": 37, - "ai": false, - "average_lap": 1037062, - "best_lap_num": 211, - "best_lap_time": 994293, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 37, - "class_interval": -1, - "country_code": "HU", - "division": 4, - "division_name": "Division 5", - "drop_race": false, - "finish_position": 18, - "finish_position_in_class": 8, - "flair_id": 93, - "flair_name": "Hungary", - "flair_shortname": "HUN", - "friend": false, - "helmet": { - "pattern": 28, - "color1": "454545", - "color2": "9f9f9f", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 27, - "interval": -1, - "laps_complete": 215, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 0, - "color1": "ffffff", - "color2": "cccccc", - "color3": "666666", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "10", - "wheel_color": "ffb649", - "rim_type": 2 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 70.63338, - "new_license_level": 16, - "new_sub_level": 458, - "new_ttrating": 1263, - "newi_rating": 2211, - "old_cpi": 32.79392, - "old_license_level": 14, - "old_sub_level": 254, - "old_ttrating": 1263, - "oldi_rating": 2221, - "opt_laps_complete": 0, - "position": 18, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 15, - "starting_position_in_class": 1, - "suit": { - "pattern": 4, - "color1": "4a98ff", - "color2": "0012fa", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -433705, - "cust_id": 1049578, - "display_name": "Tim Rupp", - "aggregate_champ_points": 37, - "ai": false, - "average_lap": 1007727, - "best_lap_num": 389, - "best_lap_time": 986652, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 37, - "class_interval": -1, - "country_code": "DE", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 18, - "finish_position_in_class": 8, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 22, - "color1": "9f0202", - "color2": "111111", - "color3": "d9f357", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 27, - "interval": -1, - "laps_complete": 183, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 0, - "color1": "ffffff", - "color2": "cccccc", - "color3": "666666", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "10", - "wheel_color": "ffb649", - "rim_type": 2 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 63.569153, - "new_license_level": 18, - "new_sub_level": 298, - "new_ttrating": 1369, - "newi_rating": 2203, - "old_cpi": 27.171917, - "old_license_level": 17, - "old_sub_level": 125, - "old_ttrating": 1369, - "oldi_rating": 2212, - "opt_laps_complete": 0, - "position": 18, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 15, - "starting_position_in_class": 1, - "suit": { - "pattern": 4, - "color1": "4a98ff", - "color2": "0012fa", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -433705, - "cust_id": 428157, - "display_name": "Rhys M Fordham", - "aggregate_champ_points": 37, - "ai": false, - "average_lap": 1071390, - "best_lap_num": 163, - "best_lap_time": 988713, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 37, - "class_interval": -1, - "country_code": "AU", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 18, - "finish_position_in_class": 8, - "flair_id": 16, - "flair_name": "Australia", - "flair_shortname": "AUS", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "000000", - "color2": "111111", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 27, - "interval": -1, - "laps_complete": 173, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 0, - "color1": "ffffff", - "color2": "cccccc", - "color3": "666666", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "10", - "wheel_color": "ffb649", - "rim_type": 2 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 65.31594, - "new_license_level": 19, - "new_sub_level": 346, - "new_ttrating": 1350, - "newi_rating": 2175, - "old_cpi": 46.233604, - "old_license_level": 18, - "old_sub_level": 250, - "old_ttrating": 1350, - "oldi_rating": 2183, - "opt_laps_complete": 0, - "position": 18, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 15, - "starting_position_in_class": 1, - "suit": { - "pattern": 4, - "color1": "4a98ff", - "color2": "0012fa", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": false, - "finish_position": 18, - "finish_position_in_class": 8, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 107, - "interval": -1, - "laps_complete": 811, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 0, - "color1": "ffffff", - "color2": "cccccc", - "color3": "666666", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "10", - "wheel_color": "ffb649", - "rim_type": 2 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 18, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 15, - "starting_position_in_class": 1, - "suit": { - "pattern": 4, - "color1": "4a98ff", - "color2": "0012fa", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -479845, - "display_name": "DSDF Racing LMP2", - "aggregate_champ_points": 25, - "ai": false, - "average_lap": 1071884, - "best_lap_num": 585, - "best_lap_time": 985010, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 25, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -479845, - "cust_id": 1010930, - "display_name": "James Seale", - "aggregate_champ_points": 25, - "ai": false, - "average_lap": 1059229, - "best_lap_num": 558, - "best_lap_time": 987780, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 25, - "class_interval": -1, - "country_code": "GB", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 19, - "finish_position_in_class": 9, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 4, - "color1": "0a0a0a", - "color2": "ffffff", - "color3": "ff0000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 39, - "interval": -1, - "laps_complete": 281, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 21, - "color1": "ffffff", - "color2": "ff0000", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "ff0000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 221, - "sponsor2": 7, - "car_number": "155", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 59.186558, - "new_license_level": 12, - "new_sub_level": 488, - "new_ttrating": 1649, - "newi_rating": 2544, - "old_cpi": 26.148556, - "old_license_level": 11, - "old_sub_level": 319, - "old_ttrating": 1649, - "oldi_rating": 2563, - "opt_laps_complete": 0, - "position": 19, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 25, - "starting_position_in_class": 11, - "suit": { - "pattern": 32, - "color1": "000000", - "color2": "ff0000", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -479845, - "cust_id": 1062946, - "display_name": "Harley Byrne", - "aggregate_champ_points": 25, - "ai": false, - "average_lap": 1055291, - "best_lap_num": 635, - "best_lap_time": 996812, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 25, - "class_interval": -1, - "country_code": "GB", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 19, - "finish_position_in_class": 9, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 28, - "color1": "000000", - "color2": "007316", - "color3": "00ff00", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 33, - "interval": -1, - "laps_complete": 273, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 21, - "color1": "ffffff", - "color2": "ff0000", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "ff0000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 221, - "sponsor2": 7, - "car_number": "155", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 73.349144, - "new_license_level": 16, - "new_sub_level": 464, - "new_ttrating": 1556, - "newi_rating": 1949, - "old_cpi": 37.23048, - "old_license_level": 15, - "old_sub_level": 318, - "old_ttrating": 1556, - "oldi_rating": 1968, - "opt_laps_complete": 0, - "position": 19, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 25, - "starting_position_in_class": 11, - "suit": { - "pattern": 32, - "color1": "000000", - "color2": "ff0000", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -479845, - "cust_id": 727237, - "display_name": "Albert Webster", - "aggregate_champ_points": 25, - "ai": false, - "average_lap": 1072776, - "best_lap_num": 585, - "best_lap_time": 985010, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 25, - "class_interval": -1, - "country_code": "GB", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 19, - "finish_position_in_class": 9, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 54, - "color1": "ff00f5", - "color2": "ffffff", - "color3": "ff00fc", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 46, - "interval": -1, - "laps_complete": 253, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 21, - "color1": "ffffff", - "color2": "ff0000", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "ff0000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 221, - "sponsor2": 7, - "car_number": "155", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 50.475586, - "new_license_level": 12, - "new_sub_level": 464, - "new_ttrating": 1350, - "newi_rating": 2430, - "old_cpi": 19.97199, - "old_license_level": 10, - "old_sub_level": 235, - "old_ttrating": 1350, - "oldi_rating": 2447, - "opt_laps_complete": 0, - "position": 19, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 25, - "starting_position_in_class": 11, - "suit": { - "pattern": 32, - "color1": "000000", - "color2": "ff0000", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": false, - "finish_position": 19, - "finish_position_in_class": 9, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 118, - "interval": -1, - "laps_complete": 807, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 21, - "color1": "ffffff", - "color2": "ff0000", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "ff0000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 221, - "sponsor2": 7, - "car_number": "155", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 19, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 25, - "starting_position_in_class": 11, - "suit": { - "pattern": 32, - "color1": "000000", - "color2": "ff0000", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -287243, - "display_name": "Team MFM - SURVIVE!", - "aggregate_champ_points": 142, - "ai": false, - "average_lap": 1081147, - "best_lap_num": 87, - "best_lap_time": 1044160, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 142, - "class_interval": 0, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -287243, - "cust_id": 386390, - "display_name": "Micky Denton", - "aggregate_champ_points": 142, - "ai": false, - "average_lap": 1074986, - "best_lap_num": 634, - "best_lap_time": 1045205, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 142, - "class_interval": 0, - "country_code": "GB", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 20, - "finish_position_in_class": 0, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 42, - "color1": "000000", - "color2": "fff20a", - "color3": "000105", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 9, - "interval": -1, - "laps_complete": 229, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 17, - "color1": "dddddd", - "color2": "ffff00", - "color3": "252525", - "number_font": 0, - "number_color1": "000000", - "number_color2": "737373", - "number_color3": "ffffff", - "number_slant": 4, - "sponsor1": 138, - "sponsor2": 7, - "car_number": "21", - "wheel_color": "ffff00", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 145.13077, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 2256, - "old_cpi": 80.44081, - "old_license_level": 20, - "old_sub_level": 419, - "old_ttrating": 1350, - "oldi_rating": 2229, - "opt_laps_complete": 0, - "position": 20, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 41, - "starting_position_in_class": 15, - "suit": { - "pattern": 7, - "color1": "252525", - "color2": "DDDDDD", - "color3": "004895" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -287243, - "cust_id": 638036, - "display_name": "Cody Gayer", - "aggregate_champ_points": 142, - "ai": false, - "average_lap": 1070254, - "best_lap_num": 568, - "best_lap_time": 1045355, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 142, - "class_interval": 0, - "country_code": "US", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 20, - "finish_position_in_class": 0, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 67, - "color1": "01020e", - "color2": "d5c325", - "color3": "c91b20", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 29, - "interval": -1, - "laps_complete": 185, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 17, - "color1": "dddddd", - "color2": "ffff00", - "color3": "252525", - "number_font": 0, - "number_color1": "000000", - "number_color2": "737373", - "number_color3": "ffffff", - "number_slant": 4, - "sponsor1": 138, - "sponsor2": 7, - "car_number": "21", - "wheel_color": "ffff00", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 81.2526, - "new_license_level": 20, - "new_sub_level": 420, - "new_ttrating": 1350, - "newi_rating": 3094, - "old_cpi": 86.255455, - "old_license_level": 20, - "old_sub_level": 429, - "old_ttrating": 1350, - "oldi_rating": 3072, - "opt_laps_complete": 0, - "position": 20, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 41, - "starting_position_in_class": 15, - "suit": { - "pattern": 7, - "color1": "252525", - "color2": "DDDDDD", - "color3": "004895" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -287243, - "cust_id": 462083, - "display_name": "Sean Foltz", - "aggregate_champ_points": 142, - "ai": false, - "average_lap": 1077727, - "best_lap_num": 320, - "best_lap_time": 1052938, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 142, - "class_interval": 0, - "country_code": "US", - "division": 4, - "division_name": "Division 5", - "drop_race": false, - "finish_position": 20, - "finish_position_in_class": 0, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 36, - "color1": "111111", - "color2": "bead50", - "color3": "ff611d", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 14, - "interval": -1, - "laps_complete": 149, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 17, - "color1": "dddddd", - "color2": "ffff00", - "color3": "252525", - "number_font": 0, - "number_color1": "000000", - "number_color2": "737373", - "number_color3": "ffffff", - "number_slant": 4, - "sponsor1": 138, - "sponsor2": 7, - "car_number": "21", - "wheel_color": "ffff00", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 95.34607, - "new_license_level": 20, - "new_sub_level": 445, - "new_ttrating": 1350, - "newi_rating": 1747, - "old_cpi": 78.618935, - "old_license_level": 20, - "old_sub_level": 415, - "old_ttrating": 1350, - "oldi_rating": 1729, - "opt_laps_complete": 0, - "position": 20, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 41, - "starting_position_in_class": 15, - "suit": { - "pattern": 7, - "color1": "252525", - "color2": "DDDDDD", - "color3": "004895" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -287243, - "cust_id": 585611, - "display_name": "Finley Fitzsimmons", - "aggregate_champ_points": 142, - "ai": false, - "average_lap": 1069337, - "best_lap_num": 87, - "best_lap_time": 1044160, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 142, - "class_interval": 0, - "country_code": "GB", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 20, - "finish_position_in_class": 0, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 24, - "color1": "000000", - "color2": "c9fc00", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 18, - "interval": -1, - "laps_complete": 146, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 17, - "color1": "dddddd", - "color2": "ffff00", - "color3": "252525", - "number_font": 0, - "number_color1": "000000", - "number_color2": "737373", - "number_color3": "ffffff", - "number_slant": 4, - "sponsor1": 138, - "sponsor2": 7, - "car_number": "21", - "wheel_color": "ffff00", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 73.801315, - "new_license_level": 19, - "new_sub_level": 365, - "new_ttrating": 1350, - "newi_rating": 2703, - "old_cpi": 48.809418, - "old_license_level": 18, - "old_sub_level": 259, - "old_ttrating": 1350, - "oldi_rating": 2685, - "opt_laps_complete": 0, - "position": 20, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 41, - "starting_position_in_class": 15, - "suit": { - "pattern": 7, - "color1": "252525", - "color2": "DDDDDD", - "color3": "004895" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -287243, - "cust_id": 463622, - "display_name": "William R Martin", - "aggregate_champ_points": 142, - "ai": false, - "average_lap": 1087969, - "best_lap_num": 407, - "best_lap_time": 1061256, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 142, - "class_interval": 0, - "country_code": "US", - "division": 4, - "division_name": "Division 5", - "drop_race": false, - "finish_position": 20, - "finish_position_in_class": 0, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 3, - "color1": "2a3795", - "color2": "ffffff", - "color3": "ed2129", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 8, - "interval": -1, - "laps_complete": 91, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 17, - "color1": "dddddd", - "color2": "ffff00", - "color3": "252525", - "number_font": 0, - "number_color1": "000000", - "number_color2": "737373", - "number_color3": "ffffff", - "number_slant": 4, - "sponsor1": 138, - "sponsor2": 7, - "car_number": "21", - "wheel_color": "ffff00", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 51.95585, - "new_license_level": 15, - "new_sub_level": 368, - "new_ttrating": 1350, - "newi_rating": 1687, - "old_cpi": 36.561356, - "old_license_level": 15, - "old_sub_level": 315, - "old_ttrating": 1350, - "oldi_rating": 1676, - "opt_laps_complete": 0, - "position": 20, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 41, - "starting_position_in_class": 15, - "suit": { - "pattern": 7, - "color1": "252525", - "color2": "DDDDDD", - "color3": "004895" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 20, - "finish_position_in_class": 0, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 78, - "interval": -1, - "laps_complete": 800, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 17, - "color1": "dddddd", - "color2": "ffff00", - "color3": "252525", - "number_font": 0, - "number_color1": "000000", - "number_color2": "737373", - "number_color3": "ffffff", - "number_slant": 4, - "sponsor1": 138, - "sponsor2": 7, - "car_number": "21", - "wheel_color": "ffff00", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 20, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 41, - "starting_position_in_class": 15, - "suit": { - "pattern": 7, - "color1": "252525", - "color2": "DDDDDD", - "color3": "004895" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -457552, - "display_name": "DB3 MOTORSPORT | REMESI", - "aggregate_champ_points": 137, - "ai": false, - "average_lap": 1083873, - "best_lap_num": 265, - "best_lap_time": 1042790, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 137, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -457552, - "cust_id": 1366564, - "display_name": "Christian Seibold", - "aggregate_champ_points": 137, - "ai": false, - "average_lap": 1068879, - "best_lap_num": 118, - "best_lap_time": 1042998, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 137, - "class_interval": -1, - "country_code": "AT", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 21, - "finish_position_in_class": 1, - "flair_id": 17, - "flair_name": "Austria", - "flair_shortname": "AUT", - "friend": false, - "helmet": { - "pattern": 67, - "color1": "393939", - "color2": "ea6500", - "color3": "0a0a0a", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 24, - "interval": -1, - "laps_complete": 230, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "77fa03", - "color2": "ed2129", - "color3": "b0ec02", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "13", - "wheel_color": "000000", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 92.53391, - "new_license_level": 19, - "new_sub_level": 399, - "new_ttrating": 1358, - "newi_rating": 2464, - "old_cpi": 69.27189, - "old_license_level": 19, - "old_sub_level": 355, - "old_ttrating": 1358, - "oldi_rating": 2437, - "opt_laps_complete": 0, - "position": 21, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 27, - "starting_position_in_class": 1, - "suit": { - "pattern": 11, - "color1": "d9003b", - "color2": "ffffff", - "color3": "0011f9" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -457552, - "cust_id": 265899, - "display_name": "Max Sennewald", - "aggregate_champ_points": 137, - "ai": false, - "average_lap": 1074866, - "best_lap_num": 596, - "best_lap_time": 1049105, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 137, - "class_interval": -1, - "country_code": "DE", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 21, - "finish_position_in_class": 1, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 35, - "color1": "000000", - "color2": "ff6c0a", - "color3": "00d6ff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 13, - "interval": -1, - "laps_complete": 151, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "77fa03", - "color2": "ed2129", - "color3": "b0ec02", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "13", - "wheel_color": "000000", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 58.80615, - "new_license_level": 15, - "new_sub_level": 387, - "new_ttrating": 1445, - "newi_rating": 2201, - "old_cpi": 25.331612, - "old_license_level": 14, - "old_sub_level": 214, - "old_ttrating": 1445, - "oldi_rating": 2184, - "opt_laps_complete": 0, - "position": 21, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 27, - "starting_position_in_class": 1, - "suit": { - "pattern": 11, - "color1": "d9003b", - "color2": "ffffff", - "color3": "0011f9" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -457552, - "cust_id": 1229354, - "display_name": "Domenik Tubes", - "aggregate_champ_points": 137, - "ai": false, - "average_lap": 1080154, - "best_lap_num": 565, - "best_lap_time": 1055050, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 137, - "class_interval": -1, - "country_code": "DE", - "division": 6, - "division_name": "Division 7", - "drop_race": false, - "finish_position": 21, - "finish_position_in_class": 1, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "efd600", - "color2": "d7162d", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 14, - "interval": -1, - "laps_complete": 151, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "77fa03", - "color2": "ed2129", - "color3": "b0ec02", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "13", - "wheel_color": "000000", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 88.43992, - "new_license_level": 19, - "new_sub_level": 392, - "new_ttrating": 1296, - "newi_rating": 1870, - "old_cpi": 61.389915, - "old_license_level": 19, - "old_sub_level": 337, - "old_ttrating": 1296, - "oldi_rating": 1853, - "opt_laps_complete": 0, - "position": 21, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 27, - "starting_position_in_class": 1, - "suit": { - "pattern": 11, - "color1": "d9003b", - "color2": "ffffff", - "color3": "0011f9" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -457552, - "cust_id": 673113, - "display_name": "Gerd Zechner", - "aggregate_champ_points": 137, - "ai": false, - "average_lap": 1062057, - "best_lap_num": 265, - "best_lap_time": 1042790, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 137, - "class_interval": -1, - "country_code": "AT", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 21, - "finish_position_in_class": 1, - "flair_id": 17, - "flair_name": "Austria", - "flair_shortname": "AUT", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "111111", - "color2": "ffffff", - "color3": "fc0706", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 16, - "interval": -1, - "laps_complete": 150, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "77fa03", - "color2": "ed2129", - "color3": "b0ec02", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "13", - "wheel_color": "000000", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 83.24767, - "new_license_level": 19, - "new_sub_level": 383, - "new_ttrating": 1350, - "newi_rating": 3031, - "old_cpi": 65.06985, - "old_license_level": 19, - "old_sub_level": 346, - "old_ttrating": 1350, - "oldi_rating": 3014, - "opt_laps_complete": 0, - "position": 21, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 27, - "starting_position_in_class": 1, - "suit": { - "pattern": 11, - "color1": "d9003b", - "color2": "ffffff", - "color3": "0011f9" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -457552, - "cust_id": 553230, - "display_name": "Pierre Meier", - "aggregate_champ_points": 137, - "ai": false, - "average_lap": 1080146, - "best_lap_num": 533, - "best_lap_time": 1056105, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 137, - "class_interval": -1, - "country_code": "DE", - "division": 6, - "division_name": "Division 7", - "drop_race": false, - "finish_position": 21, - "finish_position_in_class": 1, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 14, - "color1": "eb0b33", - "color2": "161413", - "color3": "fa0e0e", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 19, - "interval": -1, - "laps_complete": 116, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "77fa03", - "color2": "ed2129", - "color3": "b0ec02", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "13", - "wheel_color": "000000", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 41.600945, - "new_license_level": 14, - "new_sub_level": 291, - "new_ttrating": 1350, - "newi_rating": 1734, - "old_cpi": 25.06291, - "old_license_level": 14, - "old_sub_level": 213, - "old_ttrating": 1350, - "oldi_rating": 1721, - "opt_laps_complete": 0, - "position": 21, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 27, - "starting_position_in_class": 1, - "suit": { - "pattern": 11, - "color1": "d9003b", - "color2": "ffffff", - "color3": "0011f9" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 21, - "finish_position_in_class": 1, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 86, - "interval": -1, - "laps_complete": 798, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "77fa03", - "color2": "ed2129", - "color3": "b0ec02", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "13", - "wheel_color": "000000", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 21, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 27, - "starting_position_in_class": 1, - "suit": { - "pattern": 11, - "color1": "d9003b", - "color2": "ffffff", - "color3": "0011f9" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -287336, - "display_name": "W2W Racing Red", - "aggregate_champ_points": 133, - "ai": false, - "average_lap": 1085153, - "best_lap_num": 662, - "best_lap_time": 1042514, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 133, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -287336, - "cust_id": 392017, - "display_name": "Jorge Reyes3", - "aggregate_champ_points": 133, - "ai": false, - "average_lap": 1068517, - "best_lap_num": 662, - "best_lap_time": 1042514, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 133, - "class_interval": -1, - "country_code": "BO", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 22, - "finish_position_in_class": 2, - "flair_id": 28, - "flair_name": "Bolivia", - "flair_shortname": "BES", - "friend": false, - "helmet": { - "pattern": 28, - "color1": "0012ff", - "color2": "3145a5", - "color3": "f00000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 55, - "interval": -1, - "laps_complete": 219, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 15, - "color1": "f3ff06", - "color2": "0e9720", - "color3": "f3ff06", - "number_font": 53, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 2, - "sponsor1": 221, - "sponsor2": 0, - "car_number": "26", - "wheel_color": "000000", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 45.28575, - "new_license_level": 18, - "new_sub_level": 247, - "new_ttrating": 1350, - "newi_rating": 2245, - "old_cpi": 32.465076, - "old_license_level": 17, - "old_sub_level": 153, - "old_ttrating": 1350, - "oldi_rating": 2221, - "opt_laps_complete": 0, - "position": 22, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 28, - "starting_position_in_class": 2, - "suit": { - "pattern": 10, - "color1": "ad1210", - "color2": "000000", - "color3": "ad1210" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -287336, - "cust_id": 332950, - "display_name": "Markus Bulheller", - "aggregate_champ_points": 133, - "ai": false, - "average_lap": 1070863, - "best_lap_num": 422, - "best_lap_time": 1047985, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 133, - "class_interval": -1, - "country_code": "DE", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 22, - "finish_position_in_class": 2, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 64, - "color1": "ad1210", - "color2": "000000", - "color3": "fa0600", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 18, - "interval": -1, - "laps_complete": 216, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 15, - "color1": "f3ff06", - "color2": "0e9720", - "color3": "f3ff06", - "number_font": 53, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 2, - "sponsor1": 221, - "sponsor2": 0, - "car_number": "26", - "wheel_color": "000000", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 126.267044, - "new_license_level": 20, - "new_sub_level": 488, - "new_ttrating": 1350, - "newi_rating": 1883, - "old_cpi": 106.58838, - "old_license_level": 20, - "old_sub_level": 462, - "old_ttrating": 1350, - "oldi_rating": 1859, - "opt_laps_complete": 0, - "position": 22, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 28, - "starting_position_in_class": 2, - "suit": { - "pattern": 10, - "color1": "ad1210", - "color2": "000000", - "color3": "ad1210" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -287336, - "cust_id": 274792, - "display_name": "Brandon Peters2", - "aggregate_champ_points": 133, - "ai": false, - "average_lap": 1076170, - "best_lap_num": 509, - "best_lap_time": 1050183, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 133, - "class_interval": -1, - "country_code": "US", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 22, - "finish_position_in_class": 2, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 65, - "color1": "B40421", - "color2": "000000", - "color3": "008ae6", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 9, - "interval": -1, - "laps_complete": 182, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 15, - "color1": "f3ff06", - "color2": "0e9720", - "color3": "f3ff06", - "number_font": 53, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 2, - "sponsor1": 221, - "sponsor2": 0, - "car_number": "26", - "wheel_color": "000000", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 153.31381, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 2214, - "old_cpi": 109.711655, - "old_license_level": 20, - "old_sub_level": 466, - "old_ttrating": 1350, - "oldi_rating": 2194, - "opt_laps_complete": 0, - "position": 22, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 28, - "starting_position_in_class": 2, - "suit": { - "pattern": 10, - "color1": "ad1210", - "color2": "000000", - "color3": "ad1210" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -287336, - "cust_id": 378055, - "display_name": "Jorge V. Carmo", - "aggregate_champ_points": 133, - "ai": false, - "average_lap": 1074664, - "best_lap_num": 206, - "best_lap_time": 1050442, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 133, - "class_interval": -1, - "country_code": "PT", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 22, - "finish_position_in_class": 2, - "flair_id": 168, - "flair_name": "Portugal", - "flair_shortname": "PRT", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "fffc00", - "color2": "111111", - "color3": "ff8804", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 20, - "interval": -1, - "laps_complete": 180, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 15, - "color1": "f3ff06", - "color2": "0e9720", - "color3": "f3ff06", - "number_font": 53, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 2, - "sponsor1": 221, - "sponsor2": 0, - "car_number": "26", - "wheel_color": "000000", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 77.34436, - "new_license_level": 19, - "new_sub_level": 372, - "new_ttrating": 1350, - "newi_rating": 2574, - "old_cpi": 40.53806, - "old_license_level": 18, - "old_sub_level": 231, - "old_ttrating": 1350, - "oldi_rating": 2554, - "opt_laps_complete": 0, - "position": 22, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 28, - "starting_position_in_class": 2, - "suit": { - "pattern": 10, - "color1": "ad1210", - "color2": "000000", - "color3": "ad1210" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 22, - "finish_position_in_class": 2, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 102, - "interval": -1, - "laps_complete": 797, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 15, - "color1": "f3ff06", - "color2": "0e9720", - "color3": "f3ff06", - "number_font": 53, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 2, - "sponsor1": 221, - "sponsor2": 0, - "car_number": "26", - "wheel_color": "000000", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 22, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 28, - "starting_position_in_class": 2, - "suit": { - "pattern": 10, - "color1": "ad1210", - "color2": "000000", - "color3": "ad1210" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -454234, - "display_name": "TKG Simsport PRO", - "aggregate_champ_points": 128, - "ai": false, - "average_lap": 1085188, - "best_lap_num": 116, - "best_lap_time": 1042650, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 128, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -454234, - "cust_id": 1138518, - "display_name": "Aaron J Walker", - "aggregate_champ_points": 128, - "ai": false, - "average_lap": 1081911, - "best_lap_num": 523, - "best_lap_time": 1047190, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 128, - "class_interval": -1, - "country_code": "GO", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 23, - "finish_position_in_class": 3, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "helmet": { - "pattern": 54, - "color1": "000000", - "color2": "000000", - "color3": "5c5c5c", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 46, - "interval": -1, - "laps_complete": 240, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 1, - "color1": "ff0000", - "color2": "00ff00", - "color3": "0000ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "20", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 51.075874, - "new_license_level": 15, - "new_sub_level": 365, - "new_ttrating": 1350, - "newi_rating": 2117, - "old_cpi": 24.532656, - "old_license_level": 14, - "old_sub_level": 209, - "old_ttrating": 1350, - "oldi_rating": 2092, - "opt_laps_complete": 0, - "position": 23, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 32, - "starting_position_in_class": 6, - "suit": { - "pattern": 8, - "color1": "000000", - "color2": "000000", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -454234, - "cust_id": 1141722, - "display_name": "Joel Allgyer", - "aggregate_champ_points": 128, - "ai": false, - "average_lap": 1075495, - "best_lap_num": 642, - "best_lap_time": 1044889, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 128, - "class_interval": -1, - "country_code": "US", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 23, - "finish_position_in_class": 3, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 29, - "color1": "111111", - "color2": "ffffff", - "color3": "f60000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 28, - "interval": -1, - "laps_complete": 210, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 1, - "color1": "ff0000", - "color2": "00ff00", - "color3": "0000ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "20", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 70.93398, - "new_license_level": 19, - "new_sub_level": 359, - "new_ttrating": 1271, - "newi_rating": 2584, - "old_cpi": 36.81991, - "old_license_level": 18, - "old_sub_level": 216, - "old_ttrating": 1271, - "oldi_rating": 2563, - "opt_laps_complete": 0, - "position": 23, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 32, - "starting_position_in_class": 6, - "suit": { - "pattern": 8, - "color1": "000000", - "color2": "000000", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -454234, - "cust_id": 678081, - "display_name": "Carter A Thompson", - "aggregate_champ_points": 128, - "ai": false, - "average_lap": 1073221, - "best_lap_num": 116, - "best_lap_time": 1042650, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 128, - "class_interval": -1, - "country_code": "US", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 23, - "finish_position_in_class": 3, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 59, - "color1": "ff2202", - "color2": "000000", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 60, - "interval": -1, - "laps_complete": 174, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 1, - "color1": "ff0000", - "color2": "00ff00", - "color3": "0000ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "20", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 31.197826, - "new_license_level": 14, - "new_sub_level": 246, - "new_ttrating": 1350, - "newi_rating": 2617, - "old_cpi": 24.810728, - "old_license_level": 14, - "old_sub_level": 211, - "old_ttrating": 1350, - "oldi_rating": 2600, - "opt_laps_complete": 0, - "position": 23, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 32, - "starting_position_in_class": 6, - "suit": { - "pattern": 8, - "color1": "000000", - "color2": "000000", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -454234, - "cust_id": 698537, - "display_name": "Ben Garey2", - "aggregate_champ_points": 128, - "ai": false, - "average_lap": 1075133, - "best_lap_num": 468, - "best_lap_time": 1047644, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 128, - "class_interval": -1, - "country_code": "US", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 23, - "finish_position_in_class": 3, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 49, - "color1": "ffffff", - "color2": "ffffff", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 77, - "interval": -1, - "laps_complete": 173, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 1, - "color1": "ff0000", - "color2": "00ff00", - "color3": "0000ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "20", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 25.255388, - "new_license_level": 10, - "new_sub_level": 272, - "new_ttrating": 1350, - "newi_rating": 1750, - "old_cpi": 17.60599, - "old_license_level": 9, - "old_sub_level": 178, - "old_ttrating": 1350, - "oldi_rating": 1733, - "opt_laps_complete": 0, - "position": 23, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 32, - "starting_position_in_class": 6, - "suit": { - "pattern": 8, - "color1": "000000", - "color2": "000000", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 23, - "finish_position_in_class": 3, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 211, - "interval": -1, - "laps_complete": 797, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 1, - "color1": "ff0000", - "color2": "00ff00", - "color3": "0000ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "20", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 23, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 32, - "starting_position_in_class": 6, - "suit": { - "pattern": 8, - "color1": "000000", - "color2": "000000", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -480346, - "display_name": "Almeida Endurance Racing Black", - "aggregate_champ_points": 124, - "ai": false, - "average_lap": 1088593, - "best_lap_num": 647, - "best_lap_time": 1044415, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 124, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -480346, - "cust_id": 346886, - "display_name": "Adrian Hopp", - "aggregate_champ_points": 124, - "ai": false, - "average_lap": 1072720, - "best_lap_num": 562, - "best_lap_time": 1045246, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 124, - "class_interval": -1, - "country_code": "DE", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 24, - "finish_position_in_class": 4, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 21, - "color1": "000000", - "color2": "ffffff", - "color3": "fa0200", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 12, - "interval": -1, - "laps_complete": 242, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 14, - "color1": "FFED00", - "color2": "00C4FF", - "color3": "87C42E", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "18", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 161.57109, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1311, - "newi_rating": 3055, - "old_cpi": 84.49169, - "old_license_level": 19, - "old_sub_level": 385, - "old_ttrating": 1311, - "oldi_rating": 3033, - "opt_laps_complete": 0, - "position": 24, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 46, - "starting_position_in_class": 20, - "suit": { - "pattern": 32, - "color1": "ffffff", - "color2": "fff200", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -480346, - "cust_id": 770894, - "display_name": "Alexander Eger", - "aggregate_champ_points": 124, - "ai": false, - "average_lap": 1062332, - "best_lap_num": 647, - "best_lap_time": 1044415, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 124, - "class_interval": -1, - "country_code": "DE", - "division": 5, - "division_name": "Division 6", - "drop_race": false, - "finish_position": 24, - "finish_position_in_class": 4, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "111111", - "color2": "b82f37", - "color3": "284a94", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 16, - "interval": -1, - "laps_complete": 211, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 14, - "color1": "FFED00", - "color2": "00C4FF", - "color3": "87C42E", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "18", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 100.03695, - "new_license_level": 20, - "new_sub_level": 452, - "new_ttrating": 1350, - "newi_rating": 2036, - "old_cpi": 38.330452, - "old_license_level": 18, - "old_sub_level": 222, - "old_ttrating": 1350, - "oldi_rating": 2017, - "opt_laps_complete": 0, - "position": 24, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 46, - "starting_position_in_class": 20, - "suit": { - "pattern": 32, - "color1": "ffffff", - "color2": "fff200", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -480346, - "cust_id": 1318861, - "display_name": "Pedro Nilsson", - "aggregate_champ_points": 124, - "ai": false, - "average_lap": 1080856, - "best_lap_num": 189, - "best_lap_time": 1050382, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 124, - "class_interval": -1, - "country_code": "BR", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 24, - "finish_position_in_class": 4, - "flair_id": 31, - "flair_name": "Brazil", - "flair_shortname": "BRA", - "friend": false, - "helmet": { - "pattern": 35, - "color1": "ffed00", - "color2": "00c4ff", - "color3": "87c42e", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 27, - "interval": -1, - "laps_complete": 171, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 14, - "color1": "FFED00", - "color2": "00C4FF", - "color3": "87C42E", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "18", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 42.018944, - "new_license_level": 11, - "new_sub_level": 392, - "new_ttrating": 1350, - "newi_rating": 2005, - "old_cpi": 24.106707, - "old_license_level": 11, - "old_sub_level": 307, - "old_ttrating": 1350, - "oldi_rating": 1989, - "opt_laps_complete": 0, - "position": 24, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 46, - "starting_position_in_class": 20, - "suit": { - "pattern": 32, - "color1": "ffffff", - "color2": "fff200", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -480346, - "cust_id": 1403655, - "display_name": "Ianis Iordache", - "aggregate_champ_points": 124, - "ai": false, - "average_lap": 1072517, - "best_lap_num": 224, - "best_lap_time": 1049304, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 124, - "class_interval": -1, - "country_code": "RO", - "division": 10, - "division_name": "Rookie", - "drop_race": false, - "finish_position": 24, - "finish_position_in_class": 4, - "flair_id": 173, - "flair_name": "Romania", - "flair_shortname": "ROU", - "friend": false, - "helmet": { - "pattern": 36, - "color1": "000000", - "color2": "ff0000", - "color3": "8c0000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 33, - "interval": -1, - "laps_complete": 170, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 14, - "color1": "FFED00", - "color2": "00C4FF", - "color3": "87C42E", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "18", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 44.432568, - "new_license_level": 12, - "new_sub_level": 444, - "new_ttrating": 1307, - "newi_rating": 2026, - "old_cpi": 30.39872, - "old_license_level": 11, - "old_sub_level": 342, - "old_ttrating": 1307, - "oldi_rating": 2011, - "opt_laps_complete": 0, - "position": 24, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 46, - "starting_position_in_class": 20, - "suit": { - "pattern": 32, - "color1": "ffffff", - "color2": "fff200", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 24, - "finish_position_in_class": 4, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 88, - "interval": -1, - "laps_complete": 794, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 14, - "color1": "FFED00", - "color2": "00C4FF", - "color3": "87C42E", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "18", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 24, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 46, - "starting_position_in_class": 20, - "suit": { - "pattern": 32, - "color1": "ffffff", - "color2": "fff200", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -480134, - "display_name": "Club 100 Sim Racers", - "aggregate_champ_points": 119, - "ai": false, - "average_lap": 1089527, - "best_lap_num": 303, - "best_lap_time": 1042690, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 119, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -480134, - "cust_id": 133722, - "display_name": "James DeHavillande", - "aggregate_champ_points": 119, - "ai": false, - "average_lap": 1065594, - "best_lap_num": 303, - "best_lap_time": 1042690, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 119, - "class_interval": -1, - "country_code": "GB", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 25, - "finish_position_in_class": 5, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 60, - "color1": "eb0000", - "color2": "0009db", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 20, - "interval": -1, - "laps_complete": 229, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 11, - "color1": "000000", - "color2": "ff0000", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "125", - "wheel_color": "b32e2e", - "rim_type": 3 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 92.82705, - "new_license_level": 19, - "new_sub_level": 399, - "new_ttrating": 1350, - "newi_rating": 3886, - "old_cpi": 38.696655, - "old_license_level": 18, - "old_sub_level": 224, - "old_ttrating": 1350, - "oldi_rating": 3868, - "opt_laps_complete": 0, - "position": 25, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 31, - "starting_position_in_class": 5, - "suit": { - "pattern": 3, - "color1": "000000", - "color2": "ee6b00", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -480134, - "cust_id": 1183749, - "display_name": "Jack Mitchell-Lowe", - "aggregate_champ_points": 119, - "ai": false, - "average_lap": 1075568, - "best_lap_num": 392, - "best_lap_time": 1050371, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 119, - "class_interval": -1, - "country_code": "GB", - "division": 4, - "division_name": "Division 5", - "drop_race": false, - "finish_position": 25, - "finish_position_in_class": 5, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 62, - "color1": "006ee0", - "color2": "e0af00", - "color3": "ff5c00", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 14, - "interval": -1, - "laps_complete": 151, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 11, - "color1": "000000", - "color2": "ff0000", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "125", - "wheel_color": "b32e2e", - "rim_type": 3 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 81.00438, - "new_license_level": 16, - "new_sub_level": 479, - "new_ttrating": 1350, - "newi_rating": 2129, - "old_cpi": 52.43604, - "old_license_level": 15, - "old_sub_level": 369, - "old_ttrating": 1350, - "oldi_rating": 2117, - "opt_laps_complete": 0, - "position": 25, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 31, - "starting_position_in_class": 5, - "suit": { - "pattern": 3, - "color1": "000000", - "color2": "ee6b00", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -480134, - "cust_id": 979456, - "display_name": "John Adey", - "aggregate_champ_points": 119, - "ai": false, - "average_lap": 1079885, - "best_lap_num": 203, - "best_lap_time": 1054285, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 119, - "class_interval": -1, - "country_code": "GB", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 25, - "finish_position_in_class": 5, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 52, - "color1": "de80cc", - "color2": "c257ee", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 22, - "interval": -1, - "laps_complete": 147, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 11, - "color1": "000000", - "color2": "ff0000", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "125", - "wheel_color": "b32e2e", - "rim_type": 3 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 52.135857, - "new_license_level": 15, - "new_sub_level": 369, - "new_ttrating": 1360, - "newi_rating": 1943, - "old_cpi": 21.50017, - "old_license_level": 13, - "old_sub_level": 147, - "old_ttrating": 1360, - "oldi_rating": 1931, - "opt_laps_complete": 0, - "position": 25, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 31, - "starting_position_in_class": 5, - "suit": { - "pattern": 3, - "color1": "000000", - "color2": "ee6b00", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -480134, - "cust_id": 804751, - "display_name": "Sam Dimelow", - "aggregate_champ_points": 119, - "ai": false, - "average_lap": 1081405, - "best_lap_num": 515, - "best_lap_time": 1051075, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 119, - "class_interval": -1, - "country_code": "GB", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 25, - "finish_position_in_class": 5, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 12, - "color1": "b80aee", - "color2": "f8ee00", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 17, - "interval": -1, - "laps_complete": 143, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 11, - "color1": "000000", - "color2": "ff0000", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "125", - "wheel_color": "b32e2e", - "rim_type": 3 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 61.684498, - "new_license_level": 18, - "new_sub_level": 294, - "new_ttrating": 1350, - "newi_rating": 1842, - "old_cpi": 24.449064, - "old_license_level": 17, - "old_sub_level": 109, - "old_ttrating": 1350, - "oldi_rating": 1831, - "opt_laps_complete": 0, - "position": 25, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 31, - "starting_position_in_class": 5, - "suit": { - "pattern": 3, - "color1": "000000", - "color2": "ee6b00", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -480134, - "cust_id": 88596, - "display_name": "James Fremont", - "aggregate_champ_points": 119, - "ai": false, - "average_lap": 1090494, - "best_lap_num": 164, - "best_lap_time": 1058823, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 119, - "class_interval": -1, - "country_code": "GB", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 25, - "finish_position_in_class": 5, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 66, - "color1": "fff73d", - "color2": "3864ff", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 9, - "interval": -1, - "laps_complete": 124, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 11, - "color1": "000000", - "color2": "ff0000", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "125", - "wheel_color": "b32e2e", - "rim_type": 3 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 93.85955, - "new_license_level": 20, - "new_sub_level": 442, - "new_ttrating": 1350, - "newi_rating": 1920, - "old_cpi": 64.91199, - "old_license_level": 19, - "old_sub_level": 345, - "old_ttrating": 1350, - "oldi_rating": 1910, - "opt_laps_complete": 0, - "position": 25, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 31, - "starting_position_in_class": 5, - "suit": { - "pattern": 3, - "color1": "000000", - "color2": "ee6b00", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 25, - "finish_position_in_class": 5, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 82, - "interval": -1, - "laps_complete": 794, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 11, - "color1": "000000", - "color2": "ff0000", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "125", - "wheel_color": "b32e2e", - "rim_type": 3 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 25, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 31, - "starting_position_in_class": 5, - "suit": { - "pattern": 3, - "color1": "000000", - "color2": "ee6b00", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -480821, - "display_name": "Team PaceLab - Red", - "aggregate_champ_points": 115, - "ai": false, - "average_lap": 1089613, - "best_lap_num": 13, - "best_lap_time": 1044404, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 115, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -480821, - "cust_id": 1287257, - "display_name": "Burak Egemen Yılmaz", - "aggregate_champ_points": 115, - "ai": false, - "average_lap": 1077671, - "best_lap_num": 132, - "best_lap_time": 1044564, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 115, - "class_interval": -1, - "country_code": "TR", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 26, - "finish_position_in_class": 6, - "flair_id": 215, - "flair_name": "Türkiye", - "flair_shortname": "TUR", - "friend": false, - "helmet": { - "pattern": 36, - "color1": "ffffff", - "color2": "ff0000", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 46, - "interval": -1, - "laps_complete": 344, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 1, - "color1": "ff0000", - "color2": "00ff00", - "color3": "0000ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "23", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 77.44804, - "new_license_level": 16, - "new_sub_level": 472, - "new_ttrating": 1307, - "newi_rating": 2450, - "old_cpi": 26.810757, - "old_license_level": 14, - "old_sub_level": 223, - "old_ttrating": 1307, - "oldi_rating": 2426, - "opt_laps_complete": 0, - "position": 26, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 50, - "starting_position_in_class": 24, - "suit": { - "pattern": 21, - "color1": "000000", - "color2": "de00ff", - "color3": "230057" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -480821, - "cust_id": 1082557, - "display_name": "Ömer Baykal", - "aggregate_champ_points": 115, - "ai": false, - "average_lap": 1082556, - "best_lap_num": 13, - "best_lap_time": 1044404, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 115, - "class_interval": -1, - "country_code": "TR", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 26, - "finish_position_in_class": 6, - "flair_id": 215, - "flair_name": "Türkiye", - "flair_shortname": "TUR", - "friend": false, - "helmet": { - "pattern": 14, - "color1": "000000", - "color2": "ffa100", - "color3": "ff9100", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 48, - "interval": -1, - "laps_complete": 315, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 1, - "color1": "ff0000", - "color2": "00ff00", - "color3": "0000ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "23", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 75.97765, - "new_license_level": 19, - "new_sub_level": 369, - "new_ttrating": 1353, - "newi_rating": 2634, - "old_cpi": 37.180595, - "old_license_level": 17, - "old_sub_level": 174, - "old_ttrating": 1353, - "oldi_rating": 2611, - "opt_laps_complete": 0, - "position": 26, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 50, - "starting_position_in_class": 24, - "suit": { - "pattern": 21, - "color1": "000000", - "color2": "de00ff", - "color3": "230057" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -480821, - "cust_id": 1221562, - "display_name": "Özgür Mustafa Divarcı", - "aggregate_champ_points": 115, - "ai": false, - "average_lap": 1093902, - "best_lap_num": 520, - "best_lap_time": 1048413, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 115, - "class_interval": -1, - "country_code": "TR", - "division": 4, - "division_name": "Division 5", - "drop_race": false, - "finish_position": 26, - "finish_position_in_class": 6, - "flair_id": 215, - "flair_name": "Türkiye", - "flair_shortname": "TUR", - "friend": false, - "helmet": { - "pattern": 7, - "color1": "ffffff", - "color2": "ffffff", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 25, - "interval": -1, - "laps_complete": 135, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 1, - "color1": "ff0000", - "color2": "00ff00", - "color3": "0000ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "23", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 48.87903, - "new_license_level": 15, - "new_sub_level": 359, - "new_ttrating": 1500, - "newi_rating": 1706, - "old_cpi": 33.008003, - "old_license_level": 14, - "old_sub_level": 255, - "old_ttrating": 1500, - "oldi_rating": 1696, - "opt_laps_complete": 0, - "position": 26, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 50, - "starting_position_in_class": 24, - "suit": { - "pattern": 21, - "color1": "000000", - "color2": "de00ff", - "color3": "230057" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 26, - "finish_position_in_class": 6, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 119, - "interval": -1, - "laps_complete": 794, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 1, - "color1": "ff0000", - "color2": "00ff00", - "color3": "0000ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "23", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 26, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 50, - "starting_position_in_class": 24, - "suit": { - "pattern": 21, - "color1": "000000", - "color2": "de00ff", - "color3": "230057" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -413546, - "display_name": "Should be Fine Motorsports", - "aggregate_champ_points": 110, - "ai": false, - "average_lap": 1091183, - "best_lap_num": 533, - "best_lap_time": 1045975, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 110, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -413546, - "cust_id": 1092119, - "display_name": "Chris Singh", - "aggregate_champ_points": 110, - "ai": false, - "average_lap": 1086013, - "best_lap_num": 416, - "best_lap_time": 1049428, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 110, - "class_interval": -1, - "country_code": "US", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 27, - "finish_position_in_class": 7, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 22, - "color1": "f9ff00", - "color2": "ff0000", - "color3": "00c341", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 62, - "interval": -1, - "laps_complete": 291, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 17, - "color1": "efd600", - "color2": "111111", - "color3": "d7162d", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "25", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 54.59016, - "new_license_level": 18, - "new_sub_level": 275, - "new_ttrating": 1350, - "newi_rating": 2797, - "old_cpi": 36.08681, - "old_license_level": 17, - "old_sub_level": 169, - "old_ttrating": 1350, - "oldi_rating": 2777, - "opt_laps_complete": 0, - "position": 27, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 42, - "starting_position_in_class": 16, - "suit": { - "pattern": 33, - "color1": "00f035", - "color2": "020101", - "color3": "e61010" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -413546, - "cust_id": 978547, - "display_name": "Victoria Butler", - "aggregate_champ_points": 110, - "ai": false, - "average_lap": 1074219, - "best_lap_num": 533, - "best_lap_time": 1045975, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 110, - "class_interval": -1, - "country_code": "US", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 27, - "finish_position_in_class": 7, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "1a4b9b", - "color2": "dff000", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 6, - "interval": -1, - "laps_complete": 261, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 17, - "color1": "efd600", - "color2": "111111", - "color3": "d7162d", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "25", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 145.79706, - "new_license_level": 12, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 1952, - "old_cpi": 42.277386, - "old_license_level": 11, - "old_sub_level": 393, - "old_ttrating": 1350, - "oldi_rating": 1934, - "opt_laps_complete": 0, - "position": 27, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 42, - "starting_position_in_class": 16, - "suit": { - "pattern": 33, - "color1": "00f035", - "color2": "020101", - "color3": "e61010" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -413546, - "cust_id": 863800, - "display_name": "William Matejcek2", - "aggregate_champ_points": 110, - "ai": false, - "average_lap": 1082130, - "best_lap_num": 465, - "best_lap_time": 1052368, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 110, - "class_interval": -1, - "country_code": "US", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 27, - "finish_position_in_class": 7, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 56, - "color1": "1af000", - "color2": "111111", - "color3": "f40c27", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 15, - "interval": -1, - "laps_complete": 241, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 17, - "color1": "efd600", - "color2": "111111", - "color3": "d7162d", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "25", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 113.510925, - "new_license_level": 20, - "new_sub_level": 472, - "new_ttrating": 1274, - "newi_rating": 2041, - "old_cpi": 33.42086, - "old_license_level": 18, - "old_sub_level": 201, - "old_ttrating": 1274, - "oldi_rating": 2024, - "opt_laps_complete": 0, - "position": 27, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 42, - "starting_position_in_class": 16, - "suit": { - "pattern": 33, - "color1": "00f035", - "color2": "020101", - "color3": "e61010" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 27, - "finish_position_in_class": 7, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 83, - "interval": -1, - "laps_complete": 793, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 17, - "color1": "efd600", - "color2": "111111", - "color3": "d7162d", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "25", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 27, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 42, - "starting_position_in_class": 16, - "suit": { - "pattern": 33, - "color1": "00f035", - "color2": "020101", - "color3": "e61010" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -434794, - "display_name": "Rag1ng Dragons e-Sports #Team Gold", - "aggregate_champ_points": 106, - "ai": false, - "average_lap": 1092164, - "best_lap_num": 616, - "best_lap_time": 1046594, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 106, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -434794, - "cust_id": 785721, - "display_name": "Lucas Benini", - "aggregate_champ_points": 106, - "ai": false, - "average_lap": 1077894, - "best_lap_num": 687, - "best_lap_time": 1049846, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 106, - "class_interval": -1, - "country_code": "BR", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 28, - "finish_position_in_class": 8, - "flair_id": 31, - "flair_name": "Brazil", - "flair_shortname": "BRA", - "friend": false, - "helmet": { - "pattern": 22, - "color1": "ffed00", - "color2": "008cff", - "color3": "1cff00", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 13, - "interval": -1, - "laps_complete": 213, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 4, - "color1": "effc53", - "color2": "43cd41", - "color3": "1e42db", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "30", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 108.44981, - "new_license_level": 20, - "new_sub_level": 465, - "new_ttrating": 1291, - "newi_rating": 2547, - "old_cpi": 54.275417, - "old_license_level": 19, - "old_sub_level": 318, - "old_ttrating": 1291, - "oldi_rating": 2534, - "opt_laps_complete": 0, - "position": 28, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 55, - "starting_position_in_class": 29, - "suit": { - "pattern": 1, - "color1": "22b428", - "color2": "353bcc", - "color3": "d3f118" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -434794, - "cust_id": 767696, - "display_name": "Vinicius Arlindo", - "aggregate_champ_points": 106, - "ai": false, - "average_lap": 1069663, - "best_lap_num": 616, - "best_lap_time": 1046594, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 106, - "class_interval": -1, - "country_code": "BR", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 28, - "finish_position_in_class": 8, - "flair_id": 31, - "flair_name": "Brazil", - "flair_shortname": "BRA", - "friend": false, - "helmet": { - "pattern": 48, - "color1": "faff00", - "color2": "000000", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 15, - "interval": -1, - "laps_complete": 193, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 4, - "color1": "effc53", - "color2": "43cd41", - "color3": "1e42db", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "30", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 92.24609, - "new_license_level": 19, - "new_sub_level": 398, - "new_ttrating": 1574, - "newi_rating": 3651, - "old_cpi": 37.401604, - "old_license_level": 18, - "old_sub_level": 218, - "old_ttrating": 1574, - "oldi_rating": 3640, - "opt_laps_complete": 0, - "position": 28, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 55, - "starting_position_in_class": 29, - "suit": { - "pattern": 1, - "color1": "22b428", - "color2": "353bcc", - "color3": "d3f118" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -434794, - "cust_id": 1302797, - "display_name": "Cadu Rodrigues", - "aggregate_champ_points": 106, - "ai": false, - "average_lap": 1087061, - "best_lap_num": 563, - "best_lap_time": 1048727, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 106, - "class_interval": -1, - "country_code": "BR", - "division": 4, - "division_name": "Division 5", - "drop_race": false, - "finish_position": 28, - "finish_position_in_class": 8, - "flair_id": 31, - "flair_name": "Brazil", - "flair_shortname": "BRA", - "friend": false, - "helmet": { - "pattern": 35, - "color1": "000000", - "color2": "858585", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 11, - "interval": -1, - "laps_complete": 179, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 4, - "color1": "effc53", - "color2": "43cd41", - "color3": "1e42db", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "30", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 103.770775, - "new_license_level": 20, - "new_sub_level": 458, - "new_ttrating": 1277, - "newi_rating": 1802, - "old_cpi": 41.475243, - "old_license_level": 18, - "old_sub_level": 234, - "old_ttrating": 1277, - "oldi_rating": 1792, - "opt_laps_complete": 0, - "position": 28, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 55, - "starting_position_in_class": 29, - "suit": { - "pattern": 1, - "color1": "22b428", - "color2": "353bcc", - "color3": "d3f118" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -434794, - "cust_id": 1141882, - "display_name": "Bernardo Martins6", - "aggregate_champ_points": 106, - "ai": false, - "average_lap": 1083352, - "best_lap_num": 319, - "best_lap_time": 1053262, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 106, - "class_interval": -1, - "country_code": "BR", - "division": 5, - "division_name": "Division 6", - "drop_race": false, - "finish_position": 28, - "finish_position_in_class": 8, - "flair_id": 31, - "flair_name": "Brazil", - "flair_shortname": "BRA", - "friend": false, - "helmet": { - "pattern": 8, - "color1": "effc53", - "color2": "43cd41", - "color3": "1e42db", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 14, - "interval": -1, - "laps_complete": 116, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 4, - "color1": "effc53", - "color2": "43cd41", - "color3": "1e42db", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "30", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 62.308594, - "new_license_level": 18, - "new_sub_level": 295, - "new_ttrating": 1350, - "newi_rating": 2102, - "old_cpi": 39.766796, - "old_license_level": 18, - "old_sub_level": 228, - "old_ttrating": 1350, - "oldi_rating": 2095, - "opt_laps_complete": 0, - "position": 28, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 55, - "starting_position_in_class": 29, - "suit": { - "pattern": 1, - "color1": "22b428", - "color2": "353bcc", - "color3": "d3f118" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -434794, - "cust_id": 1141673, - "display_name": "Anderson De Souza Silva", - "aggregate_champ_points": 106, - "ai": false, - "average_lap": 1092235, - "best_lap_num": 268, - "best_lap_time": 1060248, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 106, - "class_interval": -1, - "country_code": "BR", - "division": 6, - "division_name": "Division 7", - "drop_race": false, - "finish_position": 28, - "finish_position_in_class": 8, - "flair_id": 31, - "flair_name": "Brazil", - "flair_shortname": "BRA", - "friend": false, - "helmet": { - "pattern": 57, - "color1": "ffffff", - "color2": "000000", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 19, - "interval": -1, - "laps_complete": 91, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 4, - "color1": "effc53", - "color2": "43cd41", - "color3": "1e42db", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "30", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 53.81801, - "new_license_level": 18, - "new_sub_level": 273, - "new_ttrating": 1350, - "newi_rating": 1411, - "old_cpi": 50.375633, - "old_license_level": 18, - "old_sub_level": 263, - "old_ttrating": 1350, - "oldi_rating": 1406, - "opt_laps_complete": 0, - "position": 28, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 55, - "starting_position_in_class": 29, - "suit": { - "pattern": 1, - "color1": "22b428", - "color2": "353bcc", - "color3": "d3f118" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 28, - "finish_position_in_class": 8, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 72, - "interval": -1, - "laps_complete": 792, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 4, - "color1": "effc53", - "color2": "43cd41", - "color3": "1e42db", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "30", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 28, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 55, - "starting_position_in_class": 29, - "suit": { - "pattern": 1, - "color1": "22b428", - "color2": "353bcc", - "color3": "d3f118" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -454924, - "display_name": "Top Tier Motorsport #222", - "aggregate_champ_points": 102, - "ai": false, - "average_lap": 1093968, - "best_lap_num": 606, - "best_lap_time": 1043768, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 102, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -454924, - "cust_id": 990132, - "display_name": "Bradley Trevett", - "aggregate_champ_points": 102, - "ai": false, - "average_lap": 1078904, - "best_lap_num": 96, - "best_lap_time": 1047704, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 102, - "class_interval": -1, - "country_code": "GB", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 29, - "finish_position_in_class": 9, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 67, - "color1": "00ffd9", - "color2": "ffffff", - "color3": "ff81e4", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 26, - "interval": -1, - "laps_complete": 234, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 4, - "color1": "efd600", - "color2": "111111", - "color3": "d7162d", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "222", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 78.25965, - "new_license_level": 12, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 2309, - "old_cpi": 17.627136, - "old_license_level": 9, - "old_sub_level": 178, - "old_ttrating": 1350, - "oldi_rating": 2296, - "opt_laps_complete": 0, - "position": 29, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 49, - "starting_position_in_class": 23, - "suit": { - "pattern": 33, - "color1": "9500f0", - "color2": "111111", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -454924, - "cust_id": 212484, - "display_name": "Thomas Knapton", - "aggregate_champ_points": 102, - "ai": false, - "average_lap": 1069980, - "best_lap_num": 606, - "best_lap_time": 1043768, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 102, - "class_interval": -1, - "country_code": "TH", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 29, - "finish_position_in_class": 9, - "flair_id": 208, - "flair_name": "Thailand", - "flair_shortname": "THA", - "friend": false, - "helmet": { - "pattern": 49, - "color1": "ffffff", - "color2": "ed2129", - "color3": "2a3795", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 32, - "interval": -1, - "laps_complete": 213, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 4, - "color1": "efd600", - "color2": "111111", - "color3": "d7162d", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "222", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 81.22818, - "new_license_level": 20, - "new_sub_level": 420, - "new_ttrating": 1391, - "newi_rating": 2462, - "old_cpi": 83.66629, - "old_license_level": 20, - "old_sub_level": 425, - "old_ttrating": 1391, - "oldi_rating": 2450, - "opt_laps_complete": 0, - "position": 29, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 49, - "starting_position_in_class": 23, - "suit": { - "pattern": 33, - "color1": "9500f0", - "color2": "111111", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -454924, - "cust_id": 1093170, - "display_name": "Tyler Parslow", - "aggregate_champ_points": 102, - "ai": false, - "average_lap": 1076284, - "best_lap_num": 445, - "best_lap_time": 1048132, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 102, - "class_interval": -1, - "country_code": "GB", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 29, - "finish_position_in_class": 9, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 28, - "color1": "9c00f0", - "color2": "000000", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 19, - "interval": -1, - "laps_complete": 180, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 4, - "color1": "efd600", - "color2": "111111", - "color3": "d7162d", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "222", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 82.85521, - "new_license_level": 19, - "new_sub_level": 382, - "new_ttrating": 1323, - "newi_rating": 2073, - "old_cpi": 57.45987, - "old_license_level": 19, - "old_sub_level": 327, - "old_ttrating": 1323, - "oldi_rating": 2063, - "opt_laps_complete": 0, - "position": 29, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 49, - "starting_position_in_class": 23, - "suit": { - "pattern": 33, - "color1": "9500f0", - "color2": "111111", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -454924, - "cust_id": 855270, - "display_name": "Dan Munro", - "aggregate_champ_points": 102, - "ai": false, - "average_lap": 1087668, - "best_lap_num": 515, - "best_lap_time": 1046019, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 102, - "class_interval": -1, - "country_code": "GB", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 29, - "finish_position_in_class": 9, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "111111", - "color2": "ed1c24", - "color3": "cccccc", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 35, - "interval": -1, - "laps_complete": 164, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 4, - "color1": "efd600", - "color2": "111111", - "color3": "d7162d", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "222", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 37.095116, - "new_license_level": 11, - "new_sub_level": 373, - "new_ttrating": 1350, - "newi_rating": 2026, - "old_cpi": 19.39725, - "old_license_level": 10, - "old_sub_level": 230, - "old_ttrating": 1350, - "oldi_rating": 2017, - "opt_laps_complete": 0, - "position": 29, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 49, - "starting_position_in_class": 23, - "suit": { - "pattern": 33, - "color1": "9500f0", - "color2": "111111", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 29, - "finish_position_in_class": 9, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 112, - "interval": -1, - "laps_complete": 791, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 4, - "color1": "efd600", - "color2": "111111", - "color3": "d7162d", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "222", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 29, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 49, - "starting_position_in_class": 23, - "suit": { - "pattern": 33, - "color1": "9500f0", - "color2": "111111", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -472037, - "display_name": "APEXNOVA SIMRACING PURPLE", - "aggregate_champ_points": 97, - "ai": false, - "average_lap": 1095989, - "best_lap_num": 406, - "best_lap_time": 1045554, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 97, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -472037, - "cust_id": 363097, - "display_name": "Tobias Kracht", - "aggregate_champ_points": 97, - "ai": false, - "average_lap": 1067505, - "best_lap_num": 406, - "best_lap_time": 1045554, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 97, - "class_interval": -1, - "country_code": "DE", - "division": 6, - "division_name": "Division 7", - "drop_race": false, - "finish_position": 30, - "finish_position_in_class": 10, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 35, - "color1": "2575b0", - "color2": "7e1c6e", - "color3": "f90000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 56, - "interval": -1, - "laps_complete": 295, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 8, - "color1": "fb0ead", - "color2": "424242", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "17", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 57.572872, - "new_license_level": 15, - "new_sub_level": 384, - "new_ttrating": 1350, - "newi_rating": 2797, - "old_cpi": 31.962917, - "old_license_level": 14, - "old_sub_level": 250, - "old_ttrating": 1350, - "oldi_rating": 2783, - "opt_laps_complete": 0, - "position": 30, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 34, - "starting_position_in_class": 8, - "suit": { - "pattern": 17, - "color1": "2F2F2F", - "color2": "404334", - "color3": "2F4F4F" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -472037, - "cust_id": 1375930, - "display_name": "Bartosz Swiechowicz2", - "aggregate_champ_points": 97, - "ai": false, - "average_lap": 1091542, - "best_lap_num": 579, - "best_lap_time": 1048268, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 97, - "class_interval": -1, - "country_code": "DE", - "division": 4, - "division_name": "Division 5", - "drop_race": false, - "finish_position": 30, - "finish_position_in_class": 10, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "2e358f", - "color2": "ec232d", - "color3": "0a0a0a", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 21, - "interval": -1, - "laps_complete": 252, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 8, - "color1": "fb0ead", - "color2": "424242", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "17", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 96.417336, - "new_license_level": 20, - "new_sub_level": 447, - "new_ttrating": 1350, - "newi_rating": 2294, - "old_cpi": 48.92359, - "old_license_level": 19, - "old_sub_level": 302, - "old_ttrating": 1350, - "oldi_rating": 2282, - "opt_laps_complete": 0, - "position": 30, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 34, - "starting_position_in_class": 8, - "suit": { - "pattern": 17, - "color1": "2F2F2F", - "color2": "404334", - "color3": "2F4F4F" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -472037, - "cust_id": 1122337, - "display_name": "Frank Berndt", - "aggregate_champ_points": 97, - "ai": false, - "average_lap": 1099532, - "best_lap_num": 484, - "best_lap_time": 1053714, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 97, - "class_interval": -1, - "country_code": "DE", - "division": 7, - "division_name": "Division 8", - "drop_race": false, - "finish_position": 30, - "finish_position_in_class": 10, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 56, - "color1": "111111", - "color2": "ffffff", - "color3": "2b00d9", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 39, - "interval": -1, - "laps_complete": 242, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 8, - "color1": "fb0ead", - "color2": "424242", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "17", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 66.943726, - "new_license_level": 19, - "new_sub_level": 350, - "new_ttrating": 1350, - "newi_rating": 1660, - "old_cpi": 41.53764, - "old_license_level": 18, - "old_sub_level": 234, - "old_ttrating": 1350, - "oldi_rating": 1649, - "opt_laps_complete": 0, - "position": 30, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 34, - "starting_position_in_class": 8, - "suit": { - "pattern": 17, - "color1": "2F2F2F", - "color2": "404334", - "color3": "2F4F4F" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 30, - "finish_position_in_class": 10, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 116, - "interval": -1, - "laps_complete": 789, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 8, - "color1": "fb0ead", - "color2": "424242", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "17", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 30, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 34, - "starting_position_in_class": 8, - "suit": { - "pattern": 17, - "color1": "2F2F2F", - "color2": "404334", - "color3": "2F4F4F" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -175849, - "display_name": "Maniti Racing Yellow", - "aggregate_champ_points": 93, - "ai": false, - "average_lap": 1096796, - "best_lap_num": 393, - "best_lap_time": 1047142, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 156, - "car_name": "Mercedes-AMG GT3 2020", - "carcfg": -1, - "champ_points": 93, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -175849, - "cust_id": 1060062, - "display_name": "Marvin Bär", - "aggregate_champ_points": 93, - "ai": false, - "average_lap": 1067074, - "best_lap_num": 393, - "best_lap_time": 1047142, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 156, - "car_name": "Mercedes-AMG GT3 2020", - "carcfg": -1, - "champ_points": 93, - "class_interval": -1, - "country_code": "DE", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 31, - "finish_position_in_class": 11, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 49, - "color1": "ffffff", - "color2": "bbbbbb", - "color3": "4a4a4a", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 21, - "interval": -1, - "laps_complete": 220, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 156, - "pattern": 0, - "color1": "000000", - "color2": "08ad22", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "78", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 99, - "new_cpi": 92.41379, - "new_license_level": 19, - "new_sub_level": 399, - "new_ttrating": 1350, - "newi_rating": 3092, - "old_cpi": 42.426422, - "old_license_level": 18, - "old_sub_level": 237, - "old_ttrating": 1350, - "oldi_rating": 3083, - "opt_laps_complete": 0, - "position": 31, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 37, - "starting_position_in_class": 11, - "suit": { - "pattern": 29, - "color1": "00ff19", - "color2": "04ff00", - "color3": "42ff00" - }, - "watched": false, - "weight_penalty_kg": 3 - }, - { - "team_id": -175849, - "cust_id": 314054, - "display_name": "Jan-Eike Zanders", - "aggregate_champ_points": 93, - "ai": false, - "average_lap": 1071156, - "best_lap_num": 330, - "best_lap_time": 1049933, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 156, - "car_name": "Mercedes-AMG GT3 2020", - "carcfg": -1, - "champ_points": 93, - "class_interval": -1, - "country_code": "DE", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 31, - "finish_position_in_class": 11, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": true, - "helmet": { - "pattern": 8, - "color1": "47190b", - "color2": "111111", - "color3": "ffee47", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 44, - "interval": -1, - "laps_complete": 214, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 156, - "pattern": 0, - "color1": "000000", - "color2": "08ad22", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "78", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 99, - "new_cpi": 53.88748, - "new_license_level": 18, - "new_sub_level": 274, - "new_ttrating": 1350, - "newi_rating": 2504, - "old_cpi": 40.080284, - "old_license_level": 18, - "old_sub_level": 229, - "old_ttrating": 1350, - "oldi_rating": 2496, - "opt_laps_complete": 0, - "position": 31, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 37, - "starting_position_in_class": 11, - "suit": { - "pattern": 29, - "color1": "00ff19", - "color2": "04ff00", - "color3": "42ff00" - }, - "watched": false, - "weight_penalty_kg": 3 - }, - { - "team_id": -175849, - "cust_id": 1347955, - "display_name": "Kai Kuhlmann", - "aggregate_champ_points": 93, - "ai": false, - "average_lap": 1089556, - "best_lap_num": 515, - "best_lap_time": 1053140, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 156, - "car_name": "Mercedes-AMG GT3 2020", - "carcfg": -1, - "champ_points": 93, - "class_interval": -1, - "country_code": "DE", - "division": 5, - "division_name": "Division 6", - "drop_race": false, - "finish_position": 31, - "finish_position_in_class": 11, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "000000", - "color2": "000000", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 23, - "interval": -1, - "laps_complete": 183, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 156, - "pattern": 0, - "color1": "000000", - "color2": "08ad22", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "78", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 99, - "new_cpi": 81.67377, - "new_license_level": 19, - "new_sub_level": 380, - "new_ttrating": 1350, - "newi_rating": 1918, - "old_cpi": 63.97849, - "old_license_level": 19, - "old_sub_level": 343, - "old_ttrating": 1350, - "oldi_rating": 1911, - "opt_laps_complete": 0, - "position": 31, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 37, - "starting_position_in_class": 11, - "suit": { - "pattern": 29, - "color1": "00ff19", - "color2": "04ff00", - "color3": "42ff00" - }, - "watched": false, - "weight_penalty_kg": 3 - }, - { - "team_id": -175849, - "cust_id": 1279309, - "display_name": "Damian Ziegler2", - "aggregate_champ_points": 93, - "ai": false, - "average_lap": 1096004, - "best_lap_num": 567, - "best_lap_time": 1059589, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 156, - "car_name": "Mercedes-AMG GT3 2020", - "carcfg": -1, - "champ_points": 93, - "class_interval": -1, - "country_code": "DE", - "division": 7, - "division_name": "Division 8", - "drop_race": false, - "finish_position": 31, - "finish_position_in_class": 11, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 59, - "color1": "00ffee", - "color2": "000aff", - "color3": "00ffee", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 21, - "interval": -1, - "laps_complete": 171, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 156, - "pattern": 0, - "color1": "000000", - "color2": "08ad22", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "78", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 99, - "new_cpi": 74.08013, - "new_license_level": 19, - "new_sub_level": 365, - "new_ttrating": 1350, - "newi_rating": 1573, - "old_cpi": 42.955307, - "old_license_level": 18, - "old_sub_level": 239, - "old_ttrating": 1350, - "oldi_rating": 1566, - "opt_laps_complete": 0, - "position": 31, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 37, - "starting_position_in_class": 11, - "suit": { - "pattern": 29, - "color1": "00ff19", - "color2": "04ff00", - "color3": "42ff00" - }, - "watched": false, - "weight_penalty_kg": 3 - } - ], - "drop_race": false, - "finish_position": 31, - "finish_position_in_class": 11, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 109, - "interval": -1, - "laps_complete": 788, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 156, - "pattern": 0, - "color1": "000000", - "color2": "08ad22", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "78", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 99, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 31, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 37, - "starting_position_in_class": 11, - "suit": { - "pattern": 29, - "color1": "00ff19", - "color2": "04ff00", - "color3": "42ff00" - }, - "watched": false, - "weight_penalty_kg": 3 - }, - { - "team_id": -224061, - "display_name": "Pineapple Racing Club", - "aggregate_champ_points": 88, - "ai": false, - "average_lap": 1098953, - "best_lap_num": 25, - "best_lap_time": 1047073, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 185, - "car_name": "Ford Mustang GT3", - "carcfg": -1, - "champ_points": 88, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -224061, - "cust_id": 638937, - "display_name": "Pawel Dominiak", - "aggregate_champ_points": 88, - "ai": false, - "average_lap": 1079526, - "best_lap_num": 190, - "best_lap_time": 1048527, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 185, - "car_name": "Ford Mustang GT3", - "carcfg": -1, - "champ_points": 88, - "class_interval": -1, - "country_code": "PL", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 32, - "finish_position_in_class": 12, - "flair_id": 167, - "flair_name": "Poland", - "flair_shortname": "POL", - "friend": false, - "helmet": { - "pattern": 68, - "color1": "ffffff", - "color2": "00a3ff", - "color3": "00f7ff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 9, - "interval": -1, - "laps_complete": 180, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 185, - "pattern": 12, - "color1": "e3ff54", - "color2": "000000", - "color3": "004092", - "number_font": 0, - "number_color1": "004092", - "number_color2": "ffffff", - "number_color3": "777777", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "14", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 101.919876, - "new_license_level": 20, - "new_sub_level": 455, - "new_ttrating": 1350, - "newi_rating": 2530, - "old_cpi": 36.505352, - "old_license_level": 18, - "old_sub_level": 215, - "old_ttrating": 1350, - "oldi_rating": 2524, - "opt_laps_complete": 0, - "position": 32, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 38, - "starting_position_in_class": 12, - "suit": { - "pattern": 19, - "color1": "252525", - "color2": "7952a2", - "color3": "ecef00" - }, - "watched": false, - "weight_penalty_kg": 10 - }, - { - "team_id": -224061, - "cust_id": 301782, - "display_name": "Ben Cooper5", - "aggregate_champ_points": 88, - "ai": false, - "average_lap": 1074142, - "best_lap_num": 25, - "best_lap_time": 1047073, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 185, - "car_name": "Ford Mustang GT3", - "carcfg": -1, - "champ_points": 88, - "class_interval": -1, - "country_code": "GB", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 32, - "finish_position_in_class": 12, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 46, - "color1": "565555", - "color2": "fff500", - "color3": "ae0077", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 14, - "interval": -1, - "laps_complete": 161, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 185, - "pattern": 12, - "color1": "e3ff54", - "color2": "000000", - "color3": "004092", - "number_font": 0, - "number_color1": "004092", - "number_color2": "ffffff", - "number_color3": "777777", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "14", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 158.22897, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 3233, - "old_cpi": 202.223, - "old_license_level": 20, - "old_sub_level": 499, - "old_ttrating": 1350, - "oldi_rating": 3228, - "opt_laps_complete": 0, - "position": 32, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 38, - "starting_position_in_class": 12, - "suit": { - "pattern": 19, - "color1": "252525", - "color2": "7952a2", - "color3": "ecef00" - }, - "watched": false, - "weight_penalty_kg": 10 - }, - { - "team_id": -224061, - "cust_id": 407913, - "display_name": "Dale Jackson", - "aggregate_champ_points": 88, - "ai": false, - "average_lap": 1083572, - "best_lap_num": 531, - "best_lap_time": 1052749, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 185, - "car_name": "Ford Mustang GT3", - "carcfg": -1, - "champ_points": 88, - "class_interval": -1, - "country_code": "CA", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 32, - "finish_position_in_class": 12, - "flair_id": 39, - "flair_name": "Canada", - "flair_shortname": "CAN", - "friend": false, - "helmet": { - "pattern": 0, - "color1": "ffe500", - "color2": "ffde00", - "color3": "ffed00", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 26, - "interval": -1, - "laps_complete": 160, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 185, - "pattern": 12, - "color1": "e3ff54", - "color2": "000000", - "color3": "004092", - "number_font": 0, - "number_color1": "004092", - "number_color2": "ffffff", - "number_color3": "777777", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "14", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 63.47874, - "new_license_level": 18, - "new_sub_level": 298, - "new_ttrating": 1350, - "newi_rating": 2370, - "old_cpi": 46.27041, - "old_license_level": 18, - "old_sub_level": 251, - "old_ttrating": 1350, - "oldi_rating": 2365, - "opt_laps_complete": 0, - "position": 32, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 38, - "starting_position_in_class": 12, - "suit": { - "pattern": 19, - "color1": "252525", - "color2": "7952a2", - "color3": "ecef00" - }, - "watched": false, - "weight_penalty_kg": 10 - }, - { - "team_id": -224061, - "cust_id": 930792, - "display_name": "Daniel Marshall8", - "aggregate_champ_points": 88, - "ai": false, - "average_lap": 1118998, - "best_lap_num": 341, - "best_lap_time": 1066673, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 185, - "car_name": "Ford Mustang GT3", - "carcfg": -1, - "champ_points": 88, - "class_interval": -1, - "country_code": "GB", - "division": 7, - "division_name": "Division 8", - "drop_race": false, - "finish_position": 32, - "finish_position_in_class": 12, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 28, - "color1": "ffffff", - "color2": "ff3131", - "color3": "e4fd03", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 41, - "interval": -1, - "laps_complete": 150, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 185, - "pattern": 12, - "color1": "e3ff54", - "color2": "000000", - "color3": "004092", - "number_font": 0, - "number_color1": "004092", - "number_color2": "ffffff", - "number_color3": "777777", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "14", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 32.370667, - "new_license_level": 11, - "new_sub_level": 352, - "new_ttrating": 1350, - "newi_rating": 1217, - "old_cpi": 23.752806, - "old_license_level": 11, - "old_sub_level": 304, - "old_ttrating": 1350, - "oldi_rating": 1212, - "opt_laps_complete": 0, - "position": 32, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 38, - "starting_position_in_class": 12, - "suit": { - "pattern": 19, - "color1": "252525", - "color2": "7952a2", - "color3": "ecef00" - }, - "watched": false, - "weight_penalty_kg": 10 - }, - { - "team_id": -224061, - "cust_id": 295562, - "display_name": "David Brown23", - "aggregate_champ_points": 88, - "ai": false, - "average_lap": 1110138, - "best_lap_num": 465, - "best_lap_time": 1057464, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 185, - "car_name": "Ford Mustang GT3", - "carcfg": -1, - "champ_points": 88, - "class_interval": -1, - "country_code": "GB", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 32, - "finish_position_in_class": 12, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 28, - "color1": "6a07e9", - "color2": "ccff00", - "color3": "2d2961", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 16, - "interval": -1, - "laps_complete": 136, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 185, - "pattern": 12, - "color1": "e3ff54", - "color2": "000000", - "color3": "004092", - "number_font": 0, - "number_color1": "004092", - "number_color2": "ffffff", - "number_color3": "777777", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "14", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 86.30251, - "new_license_level": 19, - "new_sub_level": 388, - "new_ttrating": 1350, - "newi_rating": 2284, - "old_cpi": 72.52085, - "old_license_level": 19, - "old_sub_level": 362, - "old_ttrating": 1350, - "oldi_rating": 2280, - "opt_laps_complete": 0, - "position": 32, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 38, - "starting_position_in_class": 12, - "suit": { - "pattern": 19, - "color1": "252525", - "color2": "7952a2", - "color3": "ecef00" - }, - "watched": false, - "weight_penalty_kg": 10 - } - ], - "drop_race": false, - "finish_position": 32, - "finish_position_in_class": 12, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 106, - "interval": -1, - "laps_complete": 787, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 185, - "pattern": 12, - "color1": "e3ff54", - "color2": "000000", - "color3": "004092", - "number_font": 0, - "number_color1": "004092", - "number_color2": "ffffff", - "number_color3": "777777", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "14", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 32, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 38, - "starting_position_in_class": 12, - "suit": { - "pattern": 19, - "color1": "252525", - "color2": "7952a2", - "color3": "ecef00" - }, - "watched": false, - "weight_penalty_kg": 10 - }, - { - "team_id": -327700, - "display_name": "SFR ITALIA", - "aggregate_champ_points": 84, - "ai": false, - "average_lap": 1101454, - "best_lap_num": 385, - "best_lap_time": 1045474, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 84, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -327700, - "cust_id": 1005007, - "display_name": "Andrea Lamponi", - "aggregate_champ_points": 84, - "ai": false, - "average_lap": 1090352, - "best_lap_num": 603, - "best_lap_time": 1047058, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 84, - "class_interval": -1, - "country_code": "IT", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 33, - "finish_position_in_class": 13, - "flair_id": 101, - "flair_name": "Italy", - "flair_shortname": "ITA", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "5481fc", - "color2": "ffffff", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 46, - "interval": -1, - "laps_complete": 295, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 11, - "color1": "D4FF0F", - "color2": "00FF00", - "color3": "111111", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "19", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 75.235085, - "new_license_level": 19, - "new_sub_level": 367, - "new_ttrating": 1302, - "newi_rating": 2284, - "old_cpi": 72.3915, - "old_license_level": 19, - "old_sub_level": 362, - "old_ttrating": 1302, - "oldi_rating": 2276, - "opt_laps_complete": 0, - "position": 33, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 53, - "starting_position_in_class": 27, - "suit": { - "pattern": 22, - "color1": "faff00", - "color2": "000000", - "color3": "7ef22e" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -327700, - "cust_id": 967697, - "display_name": "Fabio Lamberto", - "aggregate_champ_points": 84, - "ai": false, - "average_lap": 1075330, - "best_lap_num": 385, - "best_lap_time": 1045474, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 84, - "class_interval": -1, - "country_code": "IT", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 33, - "finish_position_in_class": 13, - "flair_id": 101, - "flair_name": "Italy", - "flair_shortname": "ITA", - "friend": false, - "helmet": { - "pattern": 36, - "color1": "d4ff0f", - "color2": "00ff00", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 39, - "interval": -1, - "laps_complete": 270, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 11, - "color1": "D4FF0F", - "color2": "00FF00", - "color3": "111111", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "19", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 76.99228, - "new_license_level": 19, - "new_sub_level": 371, - "new_ttrating": 1715, - "newi_rating": 1903, - "old_cpi": 49.640137, - "old_license_level": 18, - "old_sub_level": 261, - "old_ttrating": 1715, - "oldi_rating": 1896, - "opt_laps_complete": 0, - "position": 33, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 53, - "starting_position_in_class": 27, - "suit": { - "pattern": 22, - "color1": "faff00", - "color2": "000000", - "color3": "7ef22e" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -327700, - "cust_id": 814236, - "display_name": "Alan Binacchi", - "aggregate_champ_points": 84, - "ai": false, - "average_lap": 1109829, - "best_lap_num": 81, - "best_lap_time": 1049096, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 84, - "class_interval": -1, - "country_code": "IT", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 33, - "finish_position_in_class": 13, - "flair_id": 101, - "flair_name": "Italy", - "flair_shortname": "ITA", - "friend": false, - "helmet": { - "pattern": 11, - "color1": "10e632", - "color2": "daed1c", - "color3": "cccccc", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 32, - "interval": -1, - "laps_complete": 220, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 11, - "color1": "D4FF0F", - "color2": "00FF00", - "color3": "111111", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "19", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 77.29383, - "new_license_level": 19, - "new_sub_level": 372, - "new_ttrating": 1309, - "newi_rating": 2487, - "old_cpi": 67.18803, - "old_license_level": 19, - "old_sub_level": 350, - "old_ttrating": 1309, - "oldi_rating": 2481, - "opt_laps_complete": 0, - "position": 33, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 53, - "starting_position_in_class": 27, - "suit": { - "pattern": 22, - "color1": "faff00", - "color2": "000000", - "color3": "7ef22e" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 33, - "finish_position_in_class": 13, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 117, - "interval": -1, - "laps_complete": 785, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 11, - "color1": "D4FF0F", - "color2": "00FF00", - "color3": "111111", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "19", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 33, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 53, - "starting_position_in_class": 27, - "suit": { - "pattern": 22, - "color1": "faff00", - "color2": "000000", - "color3": "7ef22e" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -298205, - "display_name": "CDLC", - "aggregate_champ_points": 79, - "ai": false, - "average_lap": 1105729, - "best_lap_num": 296, - "best_lap_time": 1050186, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 188, - "car_name": "McLaren 720S GT3 EVO", - "carcfg": -1, - "champ_points": 79, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -298205, - "cust_id": 692986, - "display_name": "Andreas Carlsson", - "aggregate_champ_points": 79, - "ai": false, - "average_lap": 1088416, - "best_lap_num": 296, - "best_lap_time": 1050186, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 188, - "car_name": "McLaren 720S GT3 EVO", - "carcfg": -1, - "champ_points": 79, - "class_interval": -1, - "country_code": "SE", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 34, - "finish_position_in_class": 14, - "flair_id": 203, - "flair_name": "Sweden", - "flair_shortname": "SWE", - "friend": false, - "helmet": { - "pattern": 59, - "color1": "000000", - "color2": "1e1e1e", - "color3": "007dff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 11, - "interval": -1, - "laps_complete": 439, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 188, - "pattern": 4, - "color1": "0073d2", - "color2": "ff5c00", - "color3": "292d33", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "46", - "wheel_color": "000000", - "rim_type": 2 - }, - "max_pct_fuel_fill": 97, - "new_cpi": 336.55923, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1375, - "newi_rating": 2873, - "old_cpi": 138.13417, - "old_license_level": 20, - "old_sub_level": 499, - "old_ttrating": 1375, - "oldi_rating": 2867, - "opt_laps_complete": 0, - "position": 34, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 39, - "starting_position_in_class": 13, - "suit": { - "pattern": 31, - "color1": "000000", - "color2": "0378ff", - "color3": "ff4d00" - }, - "watched": false, - "weight_penalty_kg": 5 - }, - { - "team_id": -298205, - "cust_id": 340070, - "display_name": "Marco Henderson", - "aggregate_champ_points": 79, - "ai": false, - "average_lap": 1098248, - "best_lap_num": 468, - "best_lap_time": 1057543, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 188, - "car_name": "McLaren 720S GT3 EVO", - "carcfg": -1, - "champ_points": 79, - "class_interval": -1, - "country_code": "DE", - "division": 4, - "division_name": "Division 5", - "drop_race": false, - "finish_position": 34, - "finish_position_in_class": 14, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 58, - "color1": "000000", - "color2": "e9ed21", - "color3": "ff0000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 41, - "interval": -1, - "laps_complete": 343, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 188, - "pattern": 4, - "color1": "0073d2", - "color2": "ff5c00", - "color3": "292d33", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "46", - "wheel_color": "000000", - "rim_type": 2 - }, - "max_pct_fuel_fill": 97, - "new_cpi": 106.09341, - "new_license_level": 20, - "new_sub_level": 461, - "new_ttrating": 1350, - "newi_rating": 1709, - "old_cpi": 127.72311, - "old_license_level": 20, - "old_sub_level": 490, - "old_ttrating": 1350, - "oldi_rating": 1704, - "opt_laps_complete": 0, - "position": 34, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 39, - "starting_position_in_class": 13, - "suit": { - "pattern": 31, - "color1": "000000", - "color2": "0378ff", - "color3": "ff4d00" - }, - "watched": false, - "weight_penalty_kg": 5 - } - ], - "drop_race": false, - "finish_position": 34, - "finish_position_in_class": 14, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 52, - "interval": -1, - "laps_complete": 782, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 188, - "pattern": 4, - "color1": "0073d2", - "color2": "ff5c00", - "color3": "292d33", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "46", - "wheel_color": "000000", - "rim_type": 2 - }, - "max_pct_fuel_fill": 97, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 34, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 39, - "starting_position_in_class": 13, - "suit": { - "pattern": 31, - "color1": "000000", - "color2": "0378ff", - "color3": "ff4d00" - }, - "watched": false, - "weight_penalty_kg": 5 - }, - { - "team_id": -248147, - "display_name": "IPM Yellow", - "aggregate_champ_points": 75, - "ai": false, - "average_lap": 1115711, - "best_lap_num": 269, - "best_lap_time": 1048927, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 173, - "car_name": "Ferrari 296 GT3", - "carcfg": -1, - "champ_points": 75, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -248147, - "cust_id": 19071, - "display_name": "Peter Terrana", - "aggregate_champ_points": 75, - "ai": false, - "average_lap": 1076811, - "best_lap_num": 269, - "best_lap_time": 1048927, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 173, - "car_name": "Ferrari 296 GT3", - "carcfg": -1, - "champ_points": 75, - "class_interval": -1, - "country_code": "US", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 35, - "finish_position_in_class": 15, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 34, - "color1": "DAF109", - "color2": "000000", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 30, - "interval": -1, - "laps_complete": 210, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 173, - "pattern": 9, - "color1": "ccf312", - "color2": "000000", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "698", - "wheel_color": "000000", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 69.72993, - "new_license_level": 19, - "new_sub_level": 356, - "new_ttrating": 1350, - "newi_rating": 2620, - "old_cpi": 45.854206, - "old_license_level": 18, - "old_sub_level": 249, - "old_ttrating": 1350, - "oldi_rating": 2617, - "opt_laps_complete": 0, - "position": 35, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 44, - "starting_position_in_class": 18, - "suit": { - "pattern": 27, - "color1": "23231f", - "color2": "131415", - "color3": "f2f12c" - }, - "watched": false, - "weight_penalty_kg": 3 - }, - { - "team_id": -248147, - "cust_id": 816995, - "display_name": "Andrew L King", - "aggregate_champ_points": 75, - "ai": false, - "average_lap": 1092993, - "best_lap_num": 440, - "best_lap_time": 1054409, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 173, - "car_name": "Ferrari 296 GT3", - "carcfg": -1, - "champ_points": 75, - "class_interval": -1, - "country_code": "US", - "division": 5, - "division_name": "Division 6", - "drop_race": false, - "finish_position": 35, - "finish_position_in_class": 15, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 22, - "color1": "ffffff", - "color2": "000000", - "color3": "ff0000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 18, - "interval": -1, - "laps_complete": 176, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 173, - "pattern": 9, - "color1": "ccf312", - "color2": "000000", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "698", - "wheel_color": "000000", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 82.34817, - "new_license_level": 16, - "new_sub_level": 481, - "new_ttrating": 1350, - "newi_rating": 1500, - "old_cpi": 42.822727, - "old_license_level": 14, - "old_sub_level": 295, - "old_ttrating": 1350, - "oldi_rating": 1498, - "opt_laps_complete": 0, - "position": 35, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 44, - "starting_position_in_class": 18, - "suit": { - "pattern": 27, - "color1": "23231f", - "color2": "131415", - "color3": "f2f12c" - }, - "watched": false, - "weight_penalty_kg": 3 - }, - { - "team_id": -248147, - "cust_id": 317035, - "display_name": "Riley Hawkins", - "aggregate_champ_points": 75, - "ai": false, - "average_lap": 1095546, - "best_lap_num": 649, - "best_lap_time": 1049063, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 173, - "car_name": "Ferrari 296 GT3", - "carcfg": -1, - "champ_points": 75, - "class_interval": -1, - "country_code": "US", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 35, - "finish_position_in_class": 15, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 14, - "color1": "000000", - "color2": "d3f702", - "color3": "1f1f1f", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 10, - "interval": -1, - "laps_complete": 155, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 173, - "pattern": 9, - "color1": "ccf312", - "color2": "000000", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "698", - "wheel_color": "000000", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 91.36659, - "new_license_level": 16, - "new_sub_level": 497, - "new_ttrating": 1350, - "newi_rating": 2143, - "old_cpi": 41.030315, - "old_license_level": 14, - "old_sub_level": 289, - "old_ttrating": 1350, - "oldi_rating": 2141, - "opt_laps_complete": 0, - "position": 35, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 44, - "starting_position_in_class": 18, - "suit": { - "pattern": 27, - "color1": "23231f", - "color2": "131415", - "color3": "f2f12c" - }, - "watched": false, - "weight_penalty_kg": 3 - }, - { - "team_id": -248147, - "cust_id": 231184, - "display_name": "John Szpyt", - "aggregate_champ_points": 75, - "ai": false, - "average_lap": 1113514, - "best_lap_num": 525, - "best_lap_time": 1052492, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 173, - "car_name": "Ferrari 296 GT3", - "carcfg": -1, - "champ_points": 75, - "class_interval": -1, - "country_code": "US", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 35, - "finish_position_in_class": 15, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "EFF141", - "color2": "000000", - "color3": "AE7E32", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 18, - "interval": -1, - "laps_complete": 121, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 173, - "pattern": 9, - "color1": "ccf312", - "color2": "000000", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "698", - "wheel_color": "000000", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 92.23367, - "new_license_level": 20, - "new_sub_level": 440, - "new_ttrating": 1350, - "newi_rating": 2928, - "old_cpi": 101.18706, - "old_license_level": 20, - "old_sub_level": 454, - "old_ttrating": 1350, - "oldi_rating": 2927, - "opt_laps_complete": 0, - "position": 35, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 44, - "starting_position_in_class": 18, - "suit": { - "pattern": 27, - "color1": "23231f", - "color2": "131415", - "color3": "f2f12c" - }, - "watched": false, - "weight_penalty_kg": 3 - }, - { - "team_id": -248147, - "cust_id": 203002, - "display_name": "Yusef Rayyan", - "aggregate_champ_points": 75, - "ai": false, - "average_lap": 1095641, - "best_lap_num": 298, - "best_lap_time": 1049851, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 173, - "car_name": "Ferrari 296 GT3", - "carcfg": -1, - "champ_points": 75, - "class_interval": -1, - "country_code": "PS", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 35, - "finish_position_in_class": 15, - "flair_id": 160, - "flair_name": "Palestine", - "flair_shortname": "PSE", - "friend": false, - "helmet": { - "pattern": 45, - "color1": "ffffff", - "color2": "0047ff", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 11, - "interval": -1, - "laps_complete": 113, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 173, - "pattern": 9, - "color1": "ccf312", - "color2": "000000", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "698", - "wheel_color": "000000", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 106.409164, - "new_license_level": 20, - "new_sub_level": 462, - "new_ttrating": 1350, - "newi_rating": 2061, - "old_cpi": 98.81735, - "old_license_level": 20, - "old_sub_level": 450, - "old_ttrating": 1350, - "oldi_rating": 2060, - "opt_laps_complete": 0, - "position": 35, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 44, - "starting_position_in_class": 18, - "suit": { - "pattern": 27, - "color1": "23231f", - "color2": "131415", - "color3": "f2f12c" - }, - "watched": false, - "weight_penalty_kg": 3 - } - ], - "drop_race": false, - "finish_position": 35, - "finish_position_in_class": 15, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 87, - "interval": -1, - "laps_complete": 775, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 173, - "pattern": 9, - "color1": "ccf312", - "color2": "000000", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "698", - "wheel_color": "000000", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 35, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 44, - "starting_position_in_class": 18, - "suit": { - "pattern": 27, - "color1": "23231f", - "color2": "131415", - "color3": "f2f12c" - }, - "watched": false, - "weight_penalty_kg": 3 - }, - { - "team_id": -415465, - "display_name": "WFLM Motorsport Vortex", - "aggregate_champ_points": 71, - "ai": false, - "average_lap": 1115907, - "best_lap_num": 27, - "best_lap_time": 1046042, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 71, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -415465, - "cust_id": 884646, - "display_name": "Luc Sarramea", - "aggregate_champ_points": 71, - "ai": false, - "average_lap": 1084141, - "best_lap_num": 414, - "best_lap_time": 1049424, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 71, - "class_interval": -1, - "country_code": "FR", - "division": 4, - "division_name": "Division 5", - "drop_race": false, - "finish_position": 36, - "finish_position_in_class": 16, - "flair_id": 71, - "flair_name": "France", - "flair_shortname": "FRA", - "friend": false, - "helmet": { - "pattern": 54, - "color1": "ffffff", - "color2": "ebff00", - "color3": "a60ca5", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 22, - "interval": -1, - "laps_complete": 180, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 3, - "color1": "FF7000", - "color2": "73ECFF", - "color3": "0F0017", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "29", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 88.50855, - "new_license_level": 20, - "new_sub_level": 433, - "new_ttrating": 1350, - "newi_rating": 2035, - "old_cpi": 79.95873, - "old_license_level": 20, - "old_sub_level": 418, - "old_ttrating": 1350, - "oldi_rating": 2035, - "opt_laps_complete": 0, - "position": 36, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 43, - "starting_position_in_class": 17, - "suit": { - "pattern": 28, - "color1": "0f0017", - "color2": "ff0021", - "color3": "ddecec" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -415465, - "cust_id": 412861, - "display_name": "Gabin Berniere", - "aggregate_champ_points": 71, - "ai": false, - "average_lap": 1074226, - "best_lap_num": 331, - "best_lap_time": 1047698, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 71, - "class_interval": -1, - "country_code": "FR", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 36, - "finish_position_in_class": 16, - "flair_id": 71, - "flair_name": "France", - "flair_shortname": "FRA", - "friend": false, - "helmet": { - "pattern": 22, - "color1": "247813", - "color2": "adab00", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 29, - "interval": -1, - "laps_complete": 175, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 3, - "color1": "FF7000", - "color2": "73ECFF", - "color3": "0F0017", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "29", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 72.100784, - "new_license_level": 20, - "new_sub_level": 402, - "new_ttrating": 1350, - "newi_rating": 2364, - "old_cpi": 71.67104, - "old_license_level": 20, - "old_sub_level": 401, - "old_ttrating": 1350, - "oldi_rating": 2363, - "opt_laps_complete": 0, - "position": 36, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 43, - "starting_position_in_class": 17, - "suit": { - "pattern": 28, - "color1": "0f0017", - "color2": "ff0021", - "color3": "ddecec" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -415465, - "cust_id": 66635, - "display_name": "Pascal Chauveau", - "aggregate_champ_points": 71, - "ai": false, - "average_lap": 1119207, - "best_lap_num": 271, - "best_lap_time": 1055925, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 71, - "class_interval": -1, - "country_code": "FR", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 36, - "finish_position_in_class": 16, - "flair_id": 71, - "flair_name": "France", - "flair_shortname": "FRA", - "friend": false, - "helmet": { - "pattern": 34, - "color1": "000000", - "color2": "040405", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 12, - "interval": -1, - "laps_complete": 159, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 3, - "color1": "FF7000", - "color2": "73ECFF", - "color3": "0F0017", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "29", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 109.85736, - "new_license_level": 20, - "new_sub_level": 467, - "new_ttrating": 1350, - "newi_rating": 1897, - "old_cpi": 85.71045, - "old_license_level": 20, - "old_sub_level": 428, - "old_ttrating": 1350, - "oldi_rating": 1896, - "opt_laps_complete": 0, - "position": 36, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 43, - "starting_position_in_class": 17, - "suit": { - "pattern": 28, - "color1": "0f0017", - "color2": "ff0021", - "color3": "ddecec" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -415465, - "cust_id": 916540, - "display_name": "Sylvain Dury", - "aggregate_champ_points": 71, - "ai": false, - "average_lap": 1108767, - "best_lap_num": 599, - "best_lap_time": 1052803, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 71, - "class_interval": -1, - "country_code": "FR", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 36, - "finish_position_in_class": 16, - "flair_id": 71, - "flair_name": "France", - "flair_shortname": "FRA", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "ffffff", - "color2": "000000", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 10, - "interval": -1, - "laps_complete": 141, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 3, - "color1": "FF7000", - "color2": "73ECFF", - "color3": "0F0017", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "29", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 122.00728, - "new_license_level": 20, - "new_sub_level": 483, - "new_ttrating": 1350, - "newi_rating": 2069, - "old_cpi": 100.24075, - "old_license_level": 20, - "old_sub_level": 453, - "old_ttrating": 1350, - "oldi_rating": 2068, - "opt_laps_complete": 0, - "position": 36, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 43, - "starting_position_in_class": 17, - "suit": { - "pattern": 28, - "color1": "0f0017", - "color2": "ff0021", - "color3": "ddecec" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -415465, - "cust_id": 1294295, - "display_name": "Florïan Chevreuïl", - "aggregate_champ_points": 71, - "ai": false, - "average_lap": 1082097, - "best_lap_num": 27, - "best_lap_time": 1046042, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 71, - "class_interval": -1, - "country_code": "FR", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 36, - "finish_position_in_class": 16, - "flair_id": 71, - "flair_name": "France", - "flair_shortname": "FRA", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 42, - "interval": -1, - "laps_complete": 120, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 3, - "color1": "FF7000", - "color2": "73ECFF", - "color3": "0F0017", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "29", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 33.223705, - "new_license_level": 17, - "new_sub_level": 156, - "new_ttrating": 1350, - "newi_rating": 2683, - "old_cpi": 31.96522, - "old_license_level": 17, - "old_sub_level": 150, - "old_ttrating": 1350, - "oldi_rating": 2683, - "opt_laps_complete": 0, - "position": 36, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 43, - "starting_position_in_class": 17, - "suit": { - "pattern": 28, - "color1": "0f0017", - "color2": "ff0021", - "color3": "ddecec" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 36, - "finish_position_in_class": 16, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 115, - "interval": -1, - "laps_complete": 775, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 3, - "color1": "FF7000", - "color2": "73ECFF", - "color3": "0F0017", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "29", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 36, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 43, - "starting_position_in_class": 17, - "suit": { - "pattern": 28, - "color1": "0f0017", - "color2": "ff0021", - "color3": "ddecec" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -471181, - "display_name": "PRS Team Europe", - "aggregate_champ_points": 66, - "ai": false, - "average_lap": 1124011, - "best_lap_num": 199, - "best_lap_time": 1050125, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 185, - "car_name": "Ford Mustang GT3", - "carcfg": -1, - "champ_points": 66, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -471181, - "cust_id": 28014, - "display_name": "Ronny Kuritz", - "aggregate_champ_points": 66, - "ai": false, - "average_lap": 1149100, - "best_lap_num": 199, - "best_lap_time": 1050125, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 185, - "car_name": "Ford Mustang GT3", - "carcfg": -1, - "champ_points": 66, - "class_interval": -1, - "country_code": "DE", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 37, - "finish_position_in_class": 17, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 4, - "color1": "000000", - "color2": "000000", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 30, - "interval": -1, - "laps_complete": 226, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 185, - "pattern": 20, - "color1": "515151", - "color2": "FFFFFF", - "color3": "000000", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "16", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 123.47534, - "new_license_level": 20, - "new_sub_level": 485, - "new_ttrating": 1374, - "newi_rating": 3246, - "old_cpi": 271.7144, - "old_license_level": 20, - "old_sub_level": 499, - "old_ttrating": 1374, - "oldi_rating": 3248, - "opt_laps_complete": 0, - "position": 37, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 56, - "starting_position_in_class": 30, - "suit": { - "pattern": 3, - "color1": "0083ff", - "color2": "ffffff", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 10 - }, - { - "team_id": -471181, - "cust_id": 524603, - "display_name": "Philip Zangger", - "aggregate_champ_points": 66, - "ai": false, - "average_lap": 1084973, - "best_lap_num": 269, - "best_lap_time": 1055861, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 185, - "car_name": "Ford Mustang GT3", - "carcfg": -1, - "champ_points": 66, - "class_interval": -1, - "country_code": "AT", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 37, - "finish_position_in_class": 17, - "flair_id": 17, - "flair_name": "Austria", - "flair_shortname": "AUT", - "friend": false, - "helmet": { - "pattern": 35, - "color1": "37b7ff", - "color2": "0083ff", - "color3": "0030ff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 13, - "interval": -1, - "laps_complete": 193, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 185, - "pattern": 20, - "color1": "515151", - "color2": "FFFFFF", - "color3": "000000", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "16", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 191.81573, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 2254, - "old_cpi": 228.99771, - "old_license_level": 20, - "old_sub_level": 499, - "old_ttrating": 1350, - "oldi_rating": 2255, - "opt_laps_complete": 0, - "position": 37, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 56, - "starting_position_in_class": 30, - "suit": { - "pattern": 3, - "color1": "0083ff", - "color2": "ffffff", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 10 - }, - { - "team_id": -471181, - "cust_id": 360197, - "display_name": "Andreas Herrmann", - "aggregate_champ_points": 66, - "ai": false, - "average_lap": 1133251, - "best_lap_num": 144, - "best_lap_time": 1064588, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 185, - "car_name": "Ford Mustang GT3", - "carcfg": -1, - "champ_points": 66, - "class_interval": -1, - "country_code": "DE", - "division": 6, - "division_name": "Division 7", - "drop_race": false, - "finish_position": 37, - "finish_position_in_class": 17, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 17, - "color1": "e3230d", - "color2": "ccff00", - "color3": "2f1670", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 23, - "interval": -1, - "laps_complete": 185, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 185, - "pattern": 20, - "color1": "515151", - "color2": "FFFFFF", - "color3": "000000", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "16", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 97.70701, - "new_license_level": 20, - "new_sub_level": 449, - "new_ttrating": 1350, - "newi_rating": 1300, - "old_cpi": 98.205894, - "old_license_level": 20, - "old_sub_level": 449, - "old_ttrating": 1350, - "oldi_rating": 1301, - "opt_laps_complete": 0, - "position": 37, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 56, - "starting_position_in_class": 30, - "suit": { - "pattern": 3, - "color1": "0083ff", - "color2": "ffffff", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 10 - }, - { - "team_id": -471181, - "cust_id": 36064, - "display_name": "Holger Kluener", - "aggregate_champ_points": 66, - "ai": false, - "average_lap": 1081909, - "best_lap_num": 112, - "best_lap_time": 1052851, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 185, - "car_name": "Ford Mustang GT3", - "carcfg": -1, - "champ_points": 66, - "class_interval": -1, - "country_code": "DE", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 37, - "finish_position_in_class": 17, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 59, - "color1": "fbf3f3", - "color2": "6a6c6b", - "color3": "2540e9", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 26, - "interval": -1, - "laps_complete": 165, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 185, - "pattern": 20, - "color1": "515151", - "color2": "FFFFFF", - "color3": "000000", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "16", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 93.92481, - "new_license_level": 20, - "new_sub_level": 443, - "new_ttrating": 1364, - "newi_rating": 2459, - "old_cpi": 120.59289, - "old_license_level": 20, - "old_sub_level": 481, - "old_ttrating": 1364, - "oldi_rating": 2460, - "opt_laps_complete": 0, - "position": 37, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 56, - "starting_position_in_class": 30, - "suit": { - "pattern": 3, - "color1": "0083ff", - "color2": "ffffff", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 10 - } - ], - "drop_race": false, - "finish_position": 37, - "finish_position_in_class": 17, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 92, - "interval": -1, - "laps_complete": 769, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 185, - "pattern": 20, - "color1": "515151", - "color2": "FFFFFF", - "color3": "000000", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "16", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 37, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 56, - "starting_position_in_class": 30, - "suit": { - "pattern": 3, - "color1": "0083ff", - "color2": "ffffff", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 10 - }, - { - "team_id": -159911, - "display_name": "Austrian Simracers Blue", - "aggregate_champ_points": 62, - "ai": false, - "average_lap": 1171829, - "best_lap_num": 469, - "best_lap_time": 1043770, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 62, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -159911, - "cust_id": 672284, - "display_name": "Steven Felber", - "aggregate_champ_points": 62, - "ai": false, - "average_lap": 1111150, - "best_lap_num": 541, - "best_lap_time": 1053265, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 62, - "class_interval": -1, - "country_code": "DE", - "division": 4, - "division_name": "Division 5", - "drop_race": false, - "finish_position": 38, - "finish_position_in_class": 18, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 67, - "color1": "f00016", - "color2": "07f752", - "color3": "1a4b9b", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 32, - "interval": -1, - "laps_complete": 183, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "ffffff", - "color2": "000000", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "000000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "255", - "wheel_color": "7a7767", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 74.18782, - "new_license_level": 19, - "new_sub_level": 365, - "new_ttrating": 1302, - "newi_rating": 2056, - "old_cpi": 85.77246, - "old_license_level": 19, - "old_sub_level": 387, - "old_ttrating": 1302, - "oldi_rating": 2058, - "opt_laps_complete": 0, - "position": 38, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 29, - "starting_position_in_class": 3, - "suit": { - "pattern": 19, - "color1": "000000", - "color2": "FFFFFF", - "color3": "FF0000" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -159911, - "cust_id": 393889, - "display_name": "Stefan Kapeller", - "aggregate_champ_points": 62, - "ai": false, - "average_lap": 1080559, - "best_lap_num": 185, - "best_lap_time": 1048693, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 62, - "class_interval": -1, - "country_code": "AT", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 38, - "finish_position_in_class": 18, - "flair_id": 17, - "flair_name": "Austria", - "flair_shortname": "AUT", - "friend": false, - "helmet": { - "pattern": 3, - "color1": "000000", - "color2": "000000", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 21, - "interval": -1, - "laps_complete": 162, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "ffffff", - "color2": "000000", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "000000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "255", - "wheel_color": "7a7767", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 73.49295, - "new_license_level": 19, - "new_sub_level": 364, - "new_ttrating": 1350, - "newi_rating": 2665, - "old_cpi": 48.046413, - "old_license_level": 18, - "old_sub_level": 256, - "old_ttrating": 1350, - "oldi_rating": 2667, - "opt_laps_complete": 0, - "position": 38, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 29, - "starting_position_in_class": 3, - "suit": { - "pattern": 19, - "color1": "000000", - "color2": "FFFFFF", - "color3": "FF0000" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -159911, - "cust_id": 915496, - "display_name": "Julian Weilguny", - "aggregate_champ_points": 62, - "ai": false, - "average_lap": 1075531, - "best_lap_num": 340, - "best_lap_time": 1047882, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 62, - "class_interval": -1, - "country_code": "AT", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 38, - "finish_position_in_class": 18, - "flair_id": 17, - "flair_name": "Austria", - "flair_shortname": "AUT", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "ffffff", - "color2": "000000", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 47, - "interval": -1, - "laps_complete": 159, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "ffffff", - "color2": "000000", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "000000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "255", - "wheel_color": "7a7767", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 37.487766, - "new_license_level": 17, - "new_sub_level": 175, - "new_ttrating": 1137, - "newi_rating": 2163, - "old_cpi": 30.539976, - "old_license_level": 17, - "old_sub_level": 143, - "old_ttrating": 1137, - "oldi_rating": 2165, - "opt_laps_complete": 0, - "position": 38, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 29, - "starting_position_in_class": 3, - "suit": { - "pattern": 19, - "color1": "000000", - "color2": "FFFFFF", - "color3": "FF0000" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -159911, - "cust_id": 1356430, - "display_name": "Dominik Aumayr", - "aggregate_champ_points": 62, - "ai": false, - "average_lap": 1121887, - "best_lap_num": 244, - "best_lap_time": 1056552, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 62, - "class_interval": -1, - "country_code": "AT", - "division": 8, - "division_name": "Division 9", - "drop_race": false, - "finish_position": 38, - "finish_position_in_class": 18, - "flair_id": 17, - "flair_name": "Austria", - "flair_shortname": "AUT", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "2e358f", - "color2": "ec232d", - "color3": "0a0a0a", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 12, - "interval": -1, - "laps_complete": 118, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "ffffff", - "color2": "000000", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "000000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "255", - "wheel_color": "7a7767", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 59.740463, - "new_license_level": 18, - "new_sub_level": 289, - "new_ttrating": 1350, - "newi_rating": 1560, - "old_cpi": 34.018543, - "old_license_level": 18, - "old_sub_level": 204, - "old_ttrating": 1350, - "oldi_rating": 1562, - "opt_laps_complete": 0, - "position": 38, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 29, - "starting_position_in_class": 3, - "suit": { - "pattern": 19, - "color1": "000000", - "color2": "FFFFFF", - "color3": "FF0000" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -159911, - "cust_id": 1003691, - "display_name": "David Kinzlhofer", - "aggregate_champ_points": 62, - "ai": false, - "average_lap": 1113307, - "best_lap_num": 469, - "best_lap_time": 1043770, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 62, - "class_interval": -1, - "country_code": "AT", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 38, - "finish_position_in_class": 18, - "flair_id": 17, - "flair_name": "Austria", - "flair_shortname": "AUT", - "friend": false, - "helmet": { - "pattern": 36, - "color1": "8700ff", - "color2": "b500ff", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 16, - "interval": -1, - "laps_complete": 116, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "ffffff", - "color2": "000000", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "000000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "255", - "wheel_color": "7a7767", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 59.09998, - "new_license_level": 18, - "new_sub_level": 287, - "new_ttrating": 1350, - "newi_rating": 2814, - "old_cpi": 39.52622, - "old_license_level": 18, - "old_sub_level": 227, - "old_ttrating": 1350, - "oldi_rating": 2816, - "opt_laps_complete": 0, - "position": 38, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 29, - "starting_position_in_class": 3, - "suit": { - "pattern": 19, - "color1": "000000", - "color2": "FFFFFF", - "color3": "FF0000" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 38, - "finish_position_in_class": 18, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 128, - "interval": -1, - "laps_complete": 738, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "ffffff", - "color2": "000000", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "000000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "255", - "wheel_color": "7a7767", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 38, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 29, - "starting_position_in_class": 3, - "suit": { - "pattern": 19, - "color1": "000000", - "color2": "FFFFFF", - "color3": "FF0000" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -333656, - "display_name": "Bite Point Racing", - "aggregate_champ_points": 57, - "ai": false, - "average_lap": 1175243, - "best_lap_num": 228, - "best_lap_time": 1045543, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 57, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -333656, - "cust_id": 944341, - "display_name": "Michael T Anderson", - "aggregate_champ_points": 57, - "ai": false, - "average_lap": 1117297, - "best_lap_num": 196, - "best_lap_time": 1049249, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 57, - "class_interval": -1, - "country_code": "US", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 39, - "finish_position_in_class": 19, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 15, - "color1": "000000", - "color2": "7b7b7b", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 26, - "interval": -1, - "laps_complete": 168, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "fd0000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "45", - "wheel_color": "000000", - "rim_type": 3 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 65.23408, - "new_license_level": 19, - "new_sub_level": 346, - "new_ttrating": 1350, - "newi_rating": 2432, - "old_cpi": 44.956455, - "old_license_level": 18, - "old_sub_level": 246, - "old_ttrating": 1350, - "oldi_rating": 2437, - "opt_laps_complete": 0, - "position": 39, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 54, - "starting_position_in_class": 28, - "suit": { - "pattern": 32, - "color1": "000000", - "color2": "04db00", - "color3": "9800d7" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -333656, - "cust_id": 1118703, - "display_name": "Zach Houston", - "aggregate_champ_points": 57, - "ai": false, - "average_lap": 1126895, - "best_lap_num": 228, - "best_lap_time": 1045543, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 57, - "class_interval": -1, - "country_code": "US", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 39, - "finish_position_in_class": 19, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 47, - "color1": "ffffff", - "color2": "e3e3e3", - "color3": "fffbfb", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 16, - "interval": -1, - "laps_complete": 145, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "fd0000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "45", - "wheel_color": "000000", - "rim_type": 3 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 86.11366, - "new_license_level": 19, - "new_sub_level": 388, - "new_ttrating": 1350, - "newi_rating": 2043, - "old_cpi": 68.1075, - "old_license_level": 19, - "old_sub_level": 352, - "old_ttrating": 1350, - "oldi_rating": 2046, - "opt_laps_complete": 0, - "position": 39, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 54, - "starting_position_in_class": 28, - "suit": { - "pattern": 32, - "color1": "000000", - "color2": "04db00", - "color3": "9800d7" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -333656, - "cust_id": 936022, - "display_name": "Francis Crosby", - "aggregate_champ_points": 57, - "ai": false, - "average_lap": 1078108, - "best_lap_num": 485, - "best_lap_time": 1051367, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 57, - "class_interval": -1, - "country_code": "CA", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 39, - "finish_position_in_class": 19, - "flair_id": 39, - "flair_name": "Canada", - "flair_shortname": "CAN", - "friend": false, - "helmet": { - "pattern": 61, - "color1": "ff0000", - "color2": "f7f7f7", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 25, - "interval": -1, - "laps_complete": 121, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "fd0000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "45", - "wheel_color": "000000", - "rim_type": 3 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 57.7853, - "new_license_level": 19, - "new_sub_level": 328, - "new_ttrating": 1350, - "newi_rating": 2454, - "old_cpi": 58.822685, - "old_license_level": 19, - "old_sub_level": 330, - "old_ttrating": 1350, - "oldi_rating": 2457, - "opt_laps_complete": 0, - "position": 39, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 54, - "starting_position_in_class": 28, - "suit": { - "pattern": 32, - "color1": "000000", - "color2": "04db00", - "color3": "9800d7" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -333656, - "cust_id": 1118745, - "display_name": "John Bostwick", - "aggregate_champ_points": 57, - "ai": false, - "average_lap": 1095709, - "best_lap_num": 105, - "best_lap_time": 1052177, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 57, - "class_interval": -1, - "country_code": "US", - "division": 4, - "division_name": "Division 5", - "drop_race": false, - "finish_position": 39, - "finish_position_in_class": 19, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 57, - "color1": "ffffff", - "color2": "000000", - "color3": "006510", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 11, - "interval": -1, - "laps_complete": 94, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "fd0000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "45", - "wheel_color": "000000", - "rim_type": 3 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 62.90936, - "new_license_level": 18, - "new_sub_level": 297, - "new_ttrating": 1350, - "newi_rating": 1662, - "old_cpi": 44.14429, - "old_license_level": 18, - "old_sub_level": 243, - "old_ttrating": 1350, - "oldi_rating": 1664, - "opt_laps_complete": 0, - "position": 39, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 54, - "starting_position_in_class": 28, - "suit": { - "pattern": 32, - "color1": "000000", - "color2": "04db00", - "color3": "9800d7" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -333656, - "cust_id": 333541, - "display_name": "Jason Holland", - "aggregate_champ_points": 57, - "ai": false, - "average_lap": 1085336, - "best_lap_num": 316, - "best_lap_time": 1059764, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 57, - "class_interval": -1, - "country_code": "US", - "division": 5, - "division_name": "Division 6", - "drop_race": false, - "finish_position": 39, - "finish_position_in_class": 19, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 68, - "color1": "dff000", - "color2": "dbf709", - "color3": "f4f20c", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 6, - "interval": -1, - "laps_complete": 62, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "fd0000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "45", - "wheel_color": "000000", - "rim_type": 3 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 46.301888, - "new_license_level": 18, - "new_sub_level": 251, - "new_ttrating": 1350, - "newi_rating": 1758, - "old_cpi": 33.16012, - "old_license_level": 18, - "old_sub_level": 200, - "old_ttrating": 1350, - "oldi_rating": 1759, - "opt_laps_complete": 0, - "position": 39, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 54, - "starting_position_in_class": 28, - "suit": { - "pattern": 32, - "color1": "000000", - "color2": "04db00", - "color3": "9800d7" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -333656, - "cust_id": 76444, - "display_name": "David Turnbull", - "aggregate_champ_points": 57, - "ai": false, - "average_lap": 1339848, - "best_lap_num": 629, - "best_lap_time": 1049164, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 57, - "class_interval": -1, - "country_code": "PS", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 39, - "finish_position_in_class": 19, - "flair_id": 160, - "flair_name": "Palestine", - "flair_shortname": "PSE", - "friend": false, - "helmet": { - "pattern": 68, - "color1": "08ff08", - "color2": "08ff08", - "color3": "08ff08", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 19, - "interval": -1, - "laps_complete": 43, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "fd0000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "45", - "wheel_color": "000000", - "rim_type": 3 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 81.29756, - "new_license_level": 20, - "new_sub_level": 420, - "new_ttrating": 1350, - "newi_rating": 3365, - "old_cpi": 130.76617, - "old_license_level": 20, - "old_sub_level": 493, - "old_ttrating": 1350, - "oldi_rating": 3366, - "opt_laps_complete": 0, - "position": 39, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 54, - "starting_position_in_class": 28, - "suit": { - "pattern": 32, - "color1": "000000", - "color2": "04db00", - "color3": "9800d7" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 39, - "finish_position_in_class": 19, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 103, - "interval": -1, - "laps_complete": 633, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "fd0000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "45", - "wheel_color": "000000", - "rim_type": 3 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 39, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 54, - "starting_position_in_class": 28, - "suit": { - "pattern": 32, - "color1": "000000", - "color2": "04db00", - "color3": "9800d7" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -332725, - "display_name": "Miracle Kids Success Academy", - "aggregate_champ_points": 53, - "ai": false, - "average_lap": 1096667, - "best_lap_num": 205, - "best_lap_time": 1048784, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 206, - "car_name": "Aston Martin Vantage GT3 EVO", - "carcfg": -1, - "champ_points": 53, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -332725, - "cust_id": 920918, - "display_name": "Justin Noel", - "aggregate_champ_points": 53, - "ai": false, - "average_lap": 1097573, - "best_lap_num": 205, - "best_lap_time": 1048784, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 206, - "car_name": "Aston Martin Vantage GT3 EVO", - "carcfg": -1, - "champ_points": 53, - "class_interval": -1, - "country_code": "US", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 40, - "finish_position_in_class": 20, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 54, - "color1": "ffffff", - "color2": "ff0000", - "color3": "0003ff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 19, - "interval": -1, - "laps_complete": 274, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 206, - "pattern": 19, - "color1": "FFFFFF", - "color2": "FF0000", - "color3": "0003FF", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "24", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 99, - "new_cpi": 133.95572, - "new_license_level": 20, - "new_sub_level": 497, - "new_ttrating": 1350, - "newi_rating": 3078, - "old_cpi": 48.731533, - "old_license_level": 18, - "old_sub_level": 258, - "old_ttrating": 1350, - "oldi_rating": 3089, - "opt_laps_complete": 0, - "position": 40, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 52, - "starting_position_in_class": 26, - "suit": { - "pattern": 0, - "color1": "2a3795", - "color2": "ec1c23", - "color3": "eeeeee" - }, - "watched": false, - "weight_penalty_kg": 12 - }, - { - "team_id": -332725, - "cust_id": 871024, - "display_name": "Oliver Noden-Mayor", - "aggregate_champ_points": 53, - "ai": false, - "average_lap": 1081764, - "best_lap_num": 559, - "best_lap_time": 1051290, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 206, - "car_name": "Aston Martin Vantage GT3 EVO", - "carcfg": -1, - "champ_points": 53, - "class_interval": -1, - "country_code": "GB", - "division": 4, - "division_name": "Division 5", - "drop_race": false, - "finish_position": 40, - "finish_position_in_class": 20, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 27, - "color1": "efff00", - "color2": "000000", - "color3": "ff00a1", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 32, - "interval": -1, - "laps_complete": 208, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 206, - "pattern": 19, - "color1": "FFFFFF", - "color2": "FF0000", - "color3": "0003FF", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "24", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 99, - "new_cpi": 65.09682, - "new_license_level": 19, - "new_sub_level": 346, - "new_ttrating": 1335, - "newi_rating": 1866, - "old_cpi": 38.145134, - "old_license_level": 18, - "old_sub_level": 221, - "old_ttrating": 1335, - "oldi_rating": 1875, - "opt_laps_complete": 0, - "position": 40, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 52, - "starting_position_in_class": 26, - "suit": { - "pattern": 0, - "color1": "2a3795", - "color2": "ec1c23", - "color3": "eeeeee" - }, - "watched": false, - "weight_penalty_kg": 12 - }, - { - "team_id": -332725, - "cust_id": 428248, - "display_name": "Travis Skrumeda", - "aggregate_champ_points": 53, - "ai": false, - "average_lap": 1084930, - "best_lap_num": 330, - "best_lap_time": 1055100, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 206, - "car_name": "Aston Martin Vantage GT3 EVO", - "carcfg": -1, - "champ_points": 53, - "class_interval": -1, - "country_code": "CA", - "division": 4, - "division_name": "Division 5", - "drop_race": false, - "finish_position": 40, - "finish_position_in_class": 20, - "flair_id": 39, - "flair_name": "Canada", - "flair_shortname": "CAN", - "friend": false, - "helmet": { - "pattern": 28, - "color1": "000000", - "color2": "ffffff", - "color3": "ff0000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 8, - "interval": -1, - "laps_complete": 150, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 206, - "pattern": 19, - "color1": "FFFFFF", - "color2": "FF0000", - "color3": "0003FF", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "24", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 99, - "new_cpi": 120.023125, - "new_license_level": 20, - "new_sub_level": 480, - "new_ttrating": 1350, - "newi_rating": 1875, - "old_cpi": 73.85349, - "old_license_level": 19, - "old_sub_level": 365, - "old_ttrating": 1350, - "oldi_rating": 1881, - "opt_laps_complete": 0, - "position": 40, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 52, - "starting_position_in_class": 26, - "suit": { - "pattern": 0, - "color1": "2a3795", - "color2": "ec1c23", - "color3": "eeeeee" - }, - "watched": false, - "weight_penalty_kg": 12 - } - ], - "drop_race": false, - "finish_position": 40, - "finish_position_in_class": 20, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 59, - "interval": -1, - "laps_complete": 632, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 206, - "pattern": 19, - "color1": "FFFFFF", - "color2": "FF0000", - "color3": "0003FF", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "24", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 99, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 40, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 52, - "starting_position_in_class": 26, - "suit": { - "pattern": 0, - "color1": "2a3795", - "color2": "ec1c23", - "color3": "eeeeee" - }, - "watched": false, - "weight_penalty_kg": 12 - }, - { - "team_id": -142589, - "display_name": "Team Highside - Vette", - "aggregate_champ_points": 48, - "ai": false, - "average_lap": 1096161, - "best_lap_num": 294, - "best_lap_time": 1042746, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 184, - "car_name": "Chevrolet Corvette Z06 GT3.R", - "carcfg": -1, - "champ_points": 48, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -142589, - "cust_id": 45780, - "display_name": "Brandon Hastings", - "aggregate_champ_points": 48, - "ai": false, - "average_lap": 1082297, - "best_lap_num": 438, - "best_lap_time": 1051761, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 184, - "car_name": "Chevrolet Corvette Z06 GT3.R", - "carcfg": -1, - "champ_points": 48, - "class_interval": -1, - "country_code": "US", - "division": 7, - "division_name": "Division 8", - "drop_race": false, - "finish_position": 41, - "finish_position_in_class": 21, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 0, - "color1": "000000", - "color2": "000000", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 17, - "interval": -1, - "laps_complete": 203, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 184, - "pattern": 12, - "color1": "0085ff", - "color2": "0085ff", - "color3": "d50000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "242424", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "216", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": 96, - "new_cpi": 108.082184, - "new_license_level": 20, - "new_sub_level": 464, - "new_ttrating": 1296, - "newi_rating": 1209, - "old_cpi": 52.402893, - "old_license_level": 18, - "old_sub_level": 269, - "old_ttrating": 1296, - "oldi_rating": 1216, - "opt_laps_complete": 0, - "position": 41, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 57, - "starting_position_in_class": 31, - "suit": { - "pattern": 25, - "color1": "FA7400", - "color2": "000000", - "color3": "FFFFFF" - }, - "watched": false, - "weight_penalty_kg": 10 - }, - { - "team_id": -142589, - "cust_id": 815454, - "display_name": "Ryszard Mann", - "aggregate_champ_points": 48, - "ai": false, - "average_lap": 1064624, - "best_lap_num": 294, - "best_lap_time": 1042746, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 184, - "car_name": "Chevrolet Corvette Z06 GT3.R", - "carcfg": -1, - "champ_points": 48, - "class_interval": -1, - "country_code": "PL", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 41, - "finish_position_in_class": 21, - "flair_id": 167, - "flair_name": "Poland", - "flair_shortname": "POL", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "111111", - "color2": "000000", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 9, - "interval": -1, - "laps_complete": 149, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 184, - "pattern": 12, - "color1": "0085ff", - "color2": "0085ff", - "color3": "d50000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "242424", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "216", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": 96, - "new_cpi": 100.49302, - "new_license_level": 20, - "new_sub_level": 453, - "new_ttrating": 1350, - "newi_rating": 4058, - "old_cpi": 60.732594, - "old_license_level": 19, - "old_sub_level": 335, - "old_ttrating": 1350, - "oldi_rating": 4064, - "opt_laps_complete": 0, - "position": 41, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 57, - "starting_position_in_class": 31, - "suit": { - "pattern": 25, - "color1": "FA7400", - "color2": "000000", - "color3": "FFFFFF" - }, - "watched": false, - "weight_penalty_kg": 10 - }, - { - "team_id": -142589, - "cust_id": 132004, - "display_name": "Adam Benefiel", - "aggregate_champ_points": 48, - "ai": false, - "average_lap": 1074680, - "best_lap_num": 203, - "best_lap_time": 1044341, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 184, - "car_name": "Chevrolet Corvette Z06 GT3.R", - "carcfg": -1, - "champ_points": 48, - "class_interval": -1, - "country_code": "US", - "division": 4, - "division_name": "Division 5", - "drop_race": false, - "finish_position": 41, - "finish_position_in_class": 21, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 28, - "color1": "1495e6", - "color2": "080807", - "color3": "a5aaac", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 7, - "interval": -1, - "laps_complete": 147, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 184, - "pattern": 12, - "color1": "0085ff", - "color2": "0085ff", - "color3": "d50000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "242424", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "216", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": 96, - "new_cpi": 202.51263, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 1856, - "old_cpi": 174.75714, - "old_license_level": 20, - "old_sub_level": 499, - "old_ttrating": 1350, - "oldi_rating": 1862, - "opt_laps_complete": 0, - "position": 41, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 57, - "starting_position_in_class": 31, - "suit": { - "pattern": 25, - "color1": "FA7400", - "color2": "000000", - "color3": "FFFFFF" - }, - "watched": false, - "weight_penalty_kg": 10 - }, - { - "team_id": -142589, - "cust_id": 112242, - "display_name": "Corey Heim", - "aggregate_champ_points": 48, - "ai": false, - "average_lap": 1172460, - "best_lap_num": 506, - "best_lap_time": 1045189, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 184, - "car_name": "Chevrolet Corvette Z06 GT3.R", - "carcfg": -1, - "champ_points": 48, - "class_interval": -1, - "country_code": "US", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 41, - "finish_position_in_class": 21, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 59, - "color1": "ffffff", - "color2": "ff1a1d", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 9, - "interval": -1, - "laps_complete": 96, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 184, - "pattern": 12, - "color1": "0085ff", - "color2": "0085ff", - "color3": "d50000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "242424", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "216", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": 96, - "new_cpi": 40.625633, - "new_license_level": 11, - "new_sub_level": 387, - "new_ttrating": 1350, - "newi_rating": 2624, - "old_cpi": 27.158167, - "old_license_level": 11, - "old_sub_level": 325, - "old_ttrating": 1350, - "oldi_rating": 2628, - "opt_laps_complete": 0, - "position": 41, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 57, - "starting_position_in_class": 31, - "suit": { - "pattern": 25, - "color1": "FA7400", - "color2": "000000", - "color3": "FFFFFF" - }, - "watched": false, - "weight_penalty_kg": 10 - } - ], - "drop_race": false, - "finish_position": 41, - "finish_position_in_class": 21, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 42, - "interval": -1, - "laps_complete": 595, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 184, - "pattern": 12, - "color1": "0085ff", - "color2": "0085ff", - "color3": "d50000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "242424", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "216", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": 96, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 41, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 57, - "starting_position_in_class": 31, - "suit": { - "pattern": 25, - "color1": "FA7400", - "color2": "000000", - "color3": "FFFFFF" - }, - "watched": false, - "weight_penalty_kg": 10 - }, - { - "team_id": -467249, - "display_name": "Simtec Racing Team #474", - "aggregate_champ_points": 44, - "ai": false, - "average_lap": 1585841, - "best_lap_num": 23, - "best_lap_time": 1044780, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 44, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -467249, - "cust_id": 1257116, - "display_name": "Ben Milden", - "aggregate_champ_points": 44, - "ai": false, - "average_lap": 1103265, - "best_lap_num": 288, - "best_lap_time": 1051828, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 44, - "class_interval": -1, - "country_code": "GB", - "division": 4, - "division_name": "Division 5", - "drop_race": false, - "finish_position": 42, - "finish_position_in_class": 22, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 7, - "color1": "6ae1d3", - "color2": "07f2cf", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 48, - "interval": -1, - "laps_complete": 179, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 3, - "color1": "42c6ef", - "color2": "111111", - "color3": "0b0b0a", - "number_font": 9, - "number_color1": "000000", - "number_color2": "f4f4f4", - "number_color3": "fafafa", - "number_slant": 0, - "sponsor1": 221, - "sponsor2": 0, - "car_number": "472", - "wheel_color": "000000", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 43.59755, - "new_license_level": 14, - "new_sub_level": 298, - "new_ttrating": 1350, - "newi_rating": 1814, - "old_cpi": 40.21797, - "old_license_level": 14, - "old_sub_level": 286, - "old_ttrating": 1350, - "oldi_rating": 1824, - "opt_laps_complete": 0, - "position": 42, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 30, - "starting_position_in_class": 4, - "suit": { - "pattern": 5, - "color1": "11e5e5", - "color2": "030303", - "color3": "030303" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -467249, - "cust_id": 849891, - "display_name": "Neil Woodward", - "aggregate_champ_points": 44, - "ai": false, - "average_lap": 1104196, - "best_lap_num": 322, - "best_lap_time": 1048060, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 44, - "class_interval": -1, - "country_code": "GB", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 42, - "finish_position_in_class": 22, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 68, - "color1": "ffffff", - "color2": "f40a0a", - "color3": "5481fc", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 24, - "interval": -1, - "laps_complete": 178, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 3, - "color1": "42c6ef", - "color2": "111111", - "color3": "0b0b0a", - "number_font": 9, - "number_color1": "000000", - "number_color2": "f4f4f4", - "number_color3": "fafafa", - "number_slant": 0, - "sponsor1": 221, - "sponsor2": 0, - "car_number": "472", - "wheel_color": "000000", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 64.28204, - "new_license_level": 12, - "new_sub_level": 499, - "new_ttrating": 1303, - "newi_rating": 2196, - "old_cpi": 43.666557, - "old_license_level": 11, - "old_sub_level": 398, - "old_ttrating": 1303, - "oldi_rating": 2206, - "opt_laps_complete": 0, - "position": 42, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 30, - "starting_position_in_class": 4, - "suit": { - "pattern": 5, - "color1": "11e5e5", - "color2": "030303", - "color3": "030303" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -467249, - "cust_id": 1174682, - "display_name": "Craig Law", - "aggregate_champ_points": 44, - "ai": false, - "average_lap": 1107913, - "best_lap_num": 23, - "best_lap_time": 1044780, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 44, - "class_interval": -1, - "country_code": "NIR", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 42, - "finish_position_in_class": 22, - "flair_id": 239, - "flair_name": "Northern Ireland", - "flair_shortname": "NIR", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "ffffff", - "color2": "4076bc", - "color3": "c8d92b", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 24, - "interval": -1, - "laps_complete": 128, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 3, - "color1": "42c6ef", - "color2": "111111", - "color3": "0b0b0a", - "number_font": 9, - "number_color1": "000000", - "number_color2": "f4f4f4", - "number_color3": "fafafa", - "number_slant": 0, - "sponsor1": 221, - "sponsor2": 0, - "car_number": "472", - "wheel_color": "000000", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 54.50814, - "new_license_level": 18, - "new_sub_level": 275, - "new_ttrating": 1350, - "newi_rating": 2559, - "old_cpi": 42.040413, - "old_license_level": 18, - "old_sub_level": 236, - "old_ttrating": 1350, - "oldi_rating": 2567, - "opt_laps_complete": 0, - "position": 42, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 30, - "starting_position_in_class": 4, - "suit": { - "pattern": 5, - "color1": "11e5e5", - "color2": "030303", - "color3": "030303" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -467249, - "cust_id": 1250818, - "display_name": "Peter Van Lieshout", - "aggregate_champ_points": 44, - "ai": false, - "average_lap": 1070092, - "best_lap_num": 372, - "best_lap_time": 1048683, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 44, - "class_interval": -1, - "country_code": "NL", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 42, - "finish_position_in_class": 22, - "flair_id": 146, - "flair_name": "Netherlands", - "flair_shortname": "NLD", - "friend": false, - "helmet": { - "pattern": 61, - "color1": "f21818", - "color2": "f1e7e8", - "color3": "0656db", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 6, - "interval": -1, - "laps_complete": 60, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 3, - "color1": "42c6ef", - "color2": "111111", - "color3": "0b0b0a", - "number_font": 9, - "number_color1": "000000", - "number_color2": "f4f4f4", - "number_color3": "fafafa", - "number_slant": 0, - "sponsor1": 221, - "sponsor2": 0, - "car_number": "472", - "wheel_color": "000000", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 47.407192, - "new_license_level": 18, - "new_sub_level": 254, - "new_ttrating": 1350, - "newi_rating": 2355, - "old_cpi": 34.515156, - "old_license_level": 18, - "old_sub_level": 206, - "old_ttrating": 1350, - "oldi_rating": 2359, - "opt_laps_complete": 0, - "position": 42, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 30, - "starting_position_in_class": 4, - "suit": { - "pattern": 5, - "color1": "11e5e5", - "color2": "030303", - "color3": "030303" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 42, - "finish_position_in_class": 22, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 102, - "interval": -1, - "laps_complete": 545, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 3, - "color1": "42c6ef", - "color2": "111111", - "color3": "0b0b0a", - "number_font": 9, - "number_color1": "000000", - "number_color2": "f4f4f4", - "number_color3": "fafafa", - "number_slant": 0, - "sponsor1": 221, - "sponsor2": 0, - "car_number": "472", - "wheel_color": "000000", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 42, - "qual_lap_time": -1, - "reason_out": "Running", - "reason_out_id": 0, - "starting_position": 30, - "starting_position_in_class": 4, - "suit": { - "pattern": 5, - "color1": "11e5e5", - "color2": "030303", - "color3": "030303" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -316329, - "display_name": "Milwauchibre Racing Team", - "aggregate_champ_points": 39, - "ai": false, - "average_lap": 1127442, - "best_lap_num": 40, - "best_lap_time": 1046986, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 39, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -316329, - "cust_id": 879626, - "display_name": "Nicolas De Saint Riquier", - "aggregate_champ_points": 39, - "ai": false, - "average_lap": 1110616, - "best_lap_num": 40, - "best_lap_time": 1046986, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 39, - "class_interval": -1, - "country_code": "FR", - "division": 4, - "division_name": "Division 5", - "drop_race": false, - "finish_position": 43, - "finish_position_in_class": 23, - "flair_id": 71, - "flair_name": "France", - "flair_shortname": "FRA", - "friend": false, - "helmet": { - "pattern": 35, - "color1": "000000", - "color2": "ff0000", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 59, - "interval": -1, - "laps_complete": 255, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 8, - "color1": "FFFFFF", - "color2": "6900FF", - "color3": "FF00ED", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "27", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 49.39754, - "new_license_level": 18, - "new_sub_level": 260, - "new_ttrating": 1350, - "newi_rating": 2166, - "old_cpi": 32.16721, - "old_license_level": 17, - "old_sub_level": 151, - "old_ttrating": 1350, - "oldi_rating": 2187, - "opt_laps_complete": 0, - "position": 43, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 45, - "starting_position_in_class": 19, - "suit": { - "pattern": 22, - "color1": "404040", - "color2": "bebebe", - "color3": "b78a00" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -316329, - "cust_id": 371715, - "display_name": "Dimitri Picard", - "aggregate_champ_points": 39, - "ai": false, - "average_lap": 1132295, - "best_lap_num": 423, - "best_lap_time": 1050909, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 39, - "class_interval": -1, - "country_code": "FR", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 43, - "finish_position_in_class": 23, - "flair_id": 71, - "flair_name": "France", - "flair_shortname": "FRA", - "friend": false, - "helmet": { - "pattern": 48, - "color1": "404040", - "color2": "6949e9", - "color3": "b78a00", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 22, - "interval": -1, - "laps_complete": 220, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 8, - "color1": "FFFFFF", - "color2": "6900FF", - "color3": "FF00ED", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "27", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 94.97356, - "new_license_level": 20, - "new_sub_level": 444, - "new_ttrating": 1350, - "newi_rating": 2222, - "old_cpi": 70.97905, - "old_license_level": 19, - "old_sub_level": 359, - "old_ttrating": 1350, - "oldi_rating": 2241, - "opt_laps_complete": 0, - "position": 43, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 45, - "starting_position_in_class": 19, - "suit": { - "pattern": 22, - "color1": "404040", - "color2": "bebebe", - "color3": "b78a00" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 43, - "finish_position_in_class": 23, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 81, - "interval": -1, - "laps_complete": 475, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 8, - "color1": "FFFFFF", - "color2": "6900FF", - "color3": "FF00ED", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "27", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 43, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 45, - "starting_position_in_class": 19, - "suit": { - "pattern": 22, - "color1": "404040", - "color2": "bebebe", - "color3": "b78a00" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -246761, - "display_name": "Vortex Racing Alpha", - "aggregate_champ_points": 32, - "ai": false, - "average_lap": 1004897, - "best_lap_num": 361, - "best_lap_time": 936125, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 32, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -246761, - "cust_id": 447778, - "display_name": "craig Benefiel", - "aggregate_champ_points": 32, - "ai": false, - "average_lap": 963605, - "best_lap_num": 361, - "best_lap_time": 936125, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 32, - "class_interval": -1, - "country_code": "US", - "division": 4, - "division_name": "Division 5", - "drop_race": false, - "finish_position": 44, - "finish_position_in_class": 10, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "111111", - "color2": "cccccc", - "color3": "ed1c24", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 17, - "interval": -1, - "laps_complete": 168, - "laps_lead": 73, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 5, - "color1": "ffffff", - "color2": "cccccc", - "color3": "666666", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 2, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "51", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 76.59716, - "new_license_level": 19, - "new_sub_level": 370, - "new_ttrating": 1350, - "newi_rating": 1974, - "old_cpi": 43.42212, - "old_license_level": 18, - "old_sub_level": 241, - "old_ttrating": 1350, - "oldi_rating": 1991, - "opt_laps_complete": 0, - "position": 44, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 1, - "starting_position_in_class": 1, - "suit": { - "pattern": 27, - "color1": "111111", - "color2": "83ccff", - "color3": "cccccc" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -246761, - "cust_id": 616203, - "display_name": "Bas Schilstra", - "aggregate_champ_points": 32, - "ai": false, - "average_lap": 975688, - "best_lap_num": 328, - "best_lap_time": 943707, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 32, - "class_interval": -1, - "country_code": "NL", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 44, - "finish_position_in_class": 10, - "flair_id": 146, - "flair_name": "Netherlands", - "flair_shortname": "NLD", - "friend": false, - "helmet": { - "pattern": 52, - "color1": "111111", - "color2": "83ccff", - "color3": "cccccc", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 4, - "interval": -1, - "laps_complete": 144, - "laps_lead": 142, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 5, - "color1": "ffffff", - "color2": "cccccc", - "color3": "666666", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 2, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "51", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 106.54864, - "new_license_level": 16, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 1948, - "old_cpi": 40.78813, - "old_license_level": 14, - "old_sub_level": 288, - "old_ttrating": 1350, - "oldi_rating": 1963, - "opt_laps_complete": 0, - "position": 44, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 1, - "starting_position_in_class": 1, - "suit": { - "pattern": 27, - "color1": "111111", - "color2": "83ccff", - "color3": "cccccc" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -246761, - "cust_id": 764441, - "display_name": "Craig N Hayes", - "aggregate_champ_points": 32, - "ai": false, - "average_lap": 1052197, - "best_lap_num": 223, - "best_lap_time": 936974, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 32, - "class_interval": -1, - "country_code": "US", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 44, - "finish_position_in_class": 10, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 21, - "color1": "ffffff", - "color2": "447ac0", - "color3": "ee3442", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 24, - "interval": -1, - "laps_complete": 122, - "laps_lead": 83, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 5, - "color1": "ffffff", - "color2": "cccccc", - "color3": "666666", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 2, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "51", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 54.297966, - "new_license_level": 18, - "new_sub_level": 275, - "new_ttrating": 1350, - "newi_rating": 3130, - "old_cpi": 45.711266, - "old_license_level": 18, - "old_sub_level": 249, - "old_ttrating": 1350, - "oldi_rating": 3143, - "opt_laps_complete": 0, - "position": 44, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 1, - "starting_position_in_class": 1, - "suit": { - "pattern": 27, - "color1": "111111", - "color2": "83ccff", - "color3": "cccccc" - }, - "watched": false, - "weight_penalty_kg": 2 - } - ], - "drop_race": false, - "finish_position": 44, - "finish_position_in_class": 10, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 45, - "interval": -1, - "laps_complete": 434, - "laps_lead": 298, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 5, - "color1": "ffffff", - "color2": "cccccc", - "color3": "666666", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 2, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "51", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 44, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 1, - "starting_position_in_class": 1, - "suit": { - "pattern": 27, - "color1": "111111", - "color2": "83ccff", - "color3": "cccccc" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -385439, - "display_name": "TRC Endurance 01", - "aggregate_champ_points": 12, - "ai": false, - "average_lap": 1087485, - "best_lap_num": 10, - "best_lap_time": 988667, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 12, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -385439, - "cust_id": 1118747, - "display_name": "Zack Heiderstadt", - "aggregate_champ_points": 12, - "ai": false, - "average_lap": 1020198, - "best_lap_num": 10, - "best_lap_time": 988667, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 12, - "class_interval": -1, - "country_code": "US", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 45, - "finish_position_in_class": 10, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 59, - "color1": "aeaeae", - "color2": "0c00b1", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 10, - "interval": -1, - "laps_complete": 120, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 5, - "color1": "FFFFFF", - "color2": "941FB7", - "color3": "80FF00", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "9", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 70.23805, - "new_license_level": 16, - "new_sub_level": 457, - "new_ttrating": 1295, - "newi_rating": 3101, - "old_cpi": 38.609806, - "old_license_level": 14, - "old_sub_level": 279, - "old_ttrating": 1295, - "oldi_rating": 3129, - "opt_laps_complete": 0, - "position": 45, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 20, - "starting_position_in_class": 6, - "suit": { - "pattern": 30, - "color1": "2508d3", - "color2": "000000", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -385439, - "cust_id": 1242051, - "display_name": "Oliver Bird2", - "aggregate_champ_points": 12, - "ai": false, - "average_lap": 1096795, - "best_lap_num": 281, - "best_lap_time": 990692, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 12, - "class_interval": -1, - "country_code": "GB", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 45, - "finish_position_in_class": 10, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "1f2892", - "color2": "7de54c", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 8, - "interval": -1, - "laps_complete": 118, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 5, - "color1": "FFFFFF", - "color2": "941FB7", - "color3": "80FF00", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "9", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 103.03802, - "new_license_level": 20, - "new_sub_level": 457, - "new_ttrating": 1350, - "newi_rating": 2365, - "old_cpi": 73.883995, - "old_license_level": 19, - "old_sub_level": 365, - "old_ttrating": 1350, - "oldi_rating": 2392, - "opt_laps_complete": 0, - "position": 45, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 20, - "starting_position_in_class": 6, - "suit": { - "pattern": 30, - "color1": "2508d3", - "color2": "000000", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -385439, - "cust_id": 1119763, - "display_name": "Gavin Cambre", - "aggregate_champ_points": 12, - "ai": false, - "average_lap": 1138937, - "best_lap_num": 182, - "best_lap_time": 999036, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 12, - "class_interval": -1, - "country_code": "US", - "division": 5, - "division_name": "Division 6", - "drop_race": false, - "finish_position": 45, - "finish_position_in_class": 10, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 17, - "color1": "000000", - "color2": "fbfbfb", - "color3": "00fff2", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 8, - "interval": -1, - "laps_complete": 81, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 5, - "color1": "FFFFFF", - "color2": "941FB7", - "color3": "80FF00", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "9", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 66.35065, - "new_license_level": 19, - "new_sub_level": 348, - "new_ttrating": 1350, - "newi_rating": 1588, - "old_cpi": 47.03421, - "old_license_level": 18, - "old_sub_level": 253, - "old_ttrating": 1350, - "oldi_rating": 1607, - "opt_laps_complete": 0, - "position": 45, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 20, - "starting_position_in_class": 6, - "suit": { - "pattern": 30, - "color1": "2508d3", - "color2": "000000", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": false, - "finish_position": 45, - "finish_position_in_class": 10, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 26, - "interval": -1, - "laps_complete": 319, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 5, - "color1": "FFFFFF", - "color2": "941FB7", - "color3": "80FF00", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "9", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 45, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 20, - "starting_position_in_class": 6, - "suit": { - "pattern": 30, - "color1": "2508d3", - "color2": "000000", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -278104, - "display_name": "Melanzani Racing 102", - "aggregate_champ_points": 21, - "ai": false, - "average_lap": 1027463, - "best_lap_num": 12, - "best_lap_time": 940999, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 21, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -278104, - "cust_id": 119560, - "display_name": "Alvin Frauenknecht", - "aggregate_champ_points": 21, - "ai": false, - "average_lap": 968297, - "best_lap_num": 12, - "best_lap_time": 940999, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 21, - "class_interval": -1, - "country_code": "DE", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 46, - "finish_position_in_class": 11, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 63, - "color1": "000000", - "color2": "717171", - "color3": "e5ff00", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 9, - "interval": -1, - "laps_complete": 115, - "laps_lead": 1, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 0, - "color1": "ffffff", - "color2": "cccccc", - "color3": "666666", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "cccccc", - "number_color3": "666666", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "4", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 76.36244, - "new_license_level": 19, - "new_sub_level": 370, - "new_ttrating": 1350, - "newi_rating": 2133, - "old_cpi": 31.524208, - "old_license_level": 17, - "old_sub_level": 148, - "old_ttrating": 1350, - "oldi_rating": 2162, - "opt_laps_complete": 0, - "position": 46, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 4, - "starting_position_in_class": 4, - "suit": { - "pattern": 22, - "color1": "000000", - "color2": "69b9eb", - "color3": "fa8c17" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -278104, - "cust_id": 218608, - "display_name": "Iven Daemmrich", - "aggregate_champ_points": 21, - "ai": false, - "average_lap": 1132683, - "best_lap_num": 108, - "best_lap_time": 946685, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 21, - "class_interval": -1, - "country_code": "CN", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 46, - "finish_position_in_class": 11, - "flair_id": 45, - "flair_name": "China", - "flair_shortname": "CHN", - "friend": false, - "helmet": { - "pattern": 68, - "color1": "ffffff", - "color2": "e81114", - "color3": "2A3795", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 8, - "interval": -1, - "laps_complete": 72, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 0, - "color1": "ffffff", - "color2": "cccccc", - "color3": "666666", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "cccccc", - "number_color3": "666666", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "4", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 149.12212, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 2673, - "old_cpi": 171.62451, - "old_license_level": 20, - "old_sub_level": 499, - "old_ttrating": 1350, - "oldi_rating": 2692, - "opt_laps_complete": 0, - "position": 46, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 4, - "starting_position_in_class": 4, - "suit": { - "pattern": 22, - "color1": "000000", - "color2": "69b9eb", - "color3": "fa8c17" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -278104, - "cust_id": 946764, - "display_name": "Thomas Vogel", - "aggregate_champ_points": 21, - "ai": false, - "average_lap": 975055, - "best_lap_num": 164, - "best_lap_time": 948854, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 21, - "class_interval": -1, - "country_code": "DE", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 46, - "finish_position_in_class": 11, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 59, - "color1": "020005", - "color2": "000000", - "color3": "6a07da", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 54, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 0, - "color1": "ffffff", - "color2": "cccccc", - "color3": "666666", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "cccccc", - "number_color3": "666666", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "4", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 194.06157, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 2231, - "old_cpi": 155.29985, - "old_license_level": 20, - "old_sub_level": 499, - "old_ttrating": 1350, - "oldi_rating": 2245, - "opt_laps_complete": 0, - "position": 46, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 4, - "starting_position_in_class": 4, - "suit": { - "pattern": 22, - "color1": "000000", - "color2": "69b9eb", - "color3": "fa8c17" - }, - "watched": false, - "weight_penalty_kg": 2 - } - ], - "drop_race": false, - "finish_position": 46, - "finish_position_in_class": 11, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 17, - "interval": -1, - "laps_complete": 241, - "laps_lead": 1, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 0, - "color1": "ffffff", - "color2": "cccccc", - "color3": "666666", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "cccccc", - "number_color3": "666666", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "4", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 46, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 4, - "starting_position_in_class": 4, - "suit": { - "pattern": 22, - "color1": "000000", - "color2": "69b9eb", - "color3": "fa8c17" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -296646, - "display_name": "Uprise Motorsports", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -296646, - "cust_id": 320315, - "display_name": "AJ Heider", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1073534, - "best_lap_num": 27, - "best_lap_time": 1046940, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "BA", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 47, - "finish_position_in_class": 24, - "flair_id": 29, - "flair_name": "Bosnia and Herzegovina", - "flair_shortname": "BIH", - "friend": false, - "helmet": { - "pattern": 66, - "color1": "000000", - "color2": "0500cb", - "color3": "00d0ff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 11, - "interval": -1, - "laps_complete": 91, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 2, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "53", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 94.6242, - "new_license_level": 20, - "new_sub_level": 444, - "new_ttrating": 1350, - "newi_rating": 2675, - "old_cpi": 97.26926, - "old_license_level": 20, - "old_sub_level": 448, - "old_ttrating": 1350, - "oldi_rating": 2698, - "opt_laps_complete": 0, - "position": 47, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 33, - "starting_position_in_class": 7, - "suit": { - "pattern": 4, - "color1": "000000", - "color2": "ff190f", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -296646, - "cust_id": 348147, - "display_name": "Connor Trifari", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1087287, - "best_lap_num": 116, - "best_lap_time": 1045236, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "GS", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 47, - "finish_position_in_class": 24, - "flair_id": 196, - "flair_name": "South Georgia & South Sandwich Islands", - "flair_shortname": "SGS", - "friend": false, - "helmet": { - "pattern": 2, - "color1": "ff0000", - "color2": "ffffff", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 19, - "interval": -1, - "laps_complete": 76, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 2, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "53", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 50.541496, - "new_license_level": 18, - "new_sub_level": 264, - "new_ttrating": 1350, - "newi_rating": 3082, - "old_cpi": 56.433605, - "old_license_level": 18, - "old_sub_level": 281, - "old_ttrating": 1350, - "oldi_rating": 3100, - "opt_laps_complete": 0, - "position": 47, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 33, - "starting_position_in_class": 7, - "suit": { - "pattern": 4, - "color1": "000000", - "color2": "ff190f", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -296646, - "cust_id": 448051, - "display_name": "Diego Roldan", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1083250, - "best_lap_num": 191, - "best_lap_time": 1051721, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "MX", - "division": 4, - "division_name": "Division 5", - "drop_race": false, - "finish_position": 47, - "finish_position_in_class": 24, - "flair_id": 134, - "flair_name": "Mexico", - "flair_shortname": "MEX", - "friend": false, - "helmet": { - "pattern": 9, - "color1": "0c0c0c", - "color2": "ffffff", - "color3": "de0019", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 11, - "interval": -1, - "laps_complete": 68, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 2, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "53", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 38.158615, - "new_license_level": 14, - "new_sub_level": 278, - "new_ttrating": 1350, - "newi_rating": 1896, - "old_cpi": 28.696474, - "old_license_level": 14, - "old_sub_level": 234, - "old_ttrating": 1350, - "oldi_rating": 1912, - "opt_laps_complete": 0, - "position": 47, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 33, - "starting_position_in_class": 7, - "suit": { - "pattern": 4, - "color1": "000000", - "color2": "ff190f", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -296646, - "cust_id": 252495, - "display_name": "Chris Lilly", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1225282, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "US", - "division": 5, - "division_name": "Division 6", - "drop_race": false, - "finish_position": 47, - "finish_position_in_class": 24, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 46, - "color1": "000000", - "color2": "0057ff", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 1, - "interval": -1, - "laps_complete": 2, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 2, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "53", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 24.062311, - "new_license_level": 14, - "new_sub_level": 206, - "new_ttrating": 1350, - "newi_rating": 1493, - "old_cpi": 24.925983, - "old_license_level": 14, - "old_sub_level": 212, - "old_ttrating": 1350, - "oldi_rating": 1493, - "opt_laps_complete": 0, - "position": 47, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 33, - "starting_position_in_class": 7, - "suit": { - "pattern": 4, - "color1": "000000", - "color2": "ff190f", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 47, - "finish_position_in_class": 24, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 42, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 2, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "53", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 47, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 33, - "starting_position_in_class": 7, - "suit": { - "pattern": 4, - "color1": "000000", - "color2": "ff190f", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -243532, - "display_name": "THLF eSports Multinational by Raceverse.at", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -243532, - "cust_id": 876981, - "display_name": "Bjørn Sundèn", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1083671, - "best_lap_num": 90, - "best_lap_time": 1060103, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "NO", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 48, - "finish_position_in_class": 25, - "flair_id": 156, - "flair_name": "Norway", - "flair_shortname": "NOR", - "friend": false, - "helmet": { - "pattern": 3, - "color1": "ff0000", - "color2": "ccff00", - "color3": "cbeb05", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 3, - "interval": -1, - "laps_complete": 62, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 23, - "color1": "ff9cfd", - "color2": "ffffff", - "color3": "0500ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "000000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "444", - "wheel_color": "ffffff", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 109.46123, - "new_license_level": 20, - "new_sub_level": 466, - "new_ttrating": 1350, - "newi_rating": 2002, - "old_cpi": 88.64039, - "old_license_level": 19, - "old_sub_level": 392, - "old_ttrating": 1350, - "oldi_rating": 2021, - "opt_laps_complete": 0, - "position": 48, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 51, - "starting_position_in_class": 25, - "suit": { - "pattern": 10, - "color1": "00ff1e", - "color2": "000000", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -243532, - "cust_id": 1335570, - "display_name": "Jordan Elmore", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1077287, - "best_lap_num": 22, - "best_lap_time": 1050504, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "US", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 48, - "finish_position_in_class": 25, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 56, - "color1": "ff0000", - "color2": "000000", - "color3": "acacac", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 10, - "interval": -1, - "laps_complete": 61, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 23, - "color1": "ff9cfd", - "color2": "ffffff", - "color3": "0500ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "000000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "444", - "wheel_color": "ffffff", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 61.234966, - "new_license_level": 18, - "new_sub_level": 293, - "new_ttrating": 1325, - "newi_rating": 2474, - "old_cpi": 59.90275, - "old_license_level": 18, - "old_sub_level": 290, - "old_ttrating": 1325, - "oldi_rating": 2494, - "opt_laps_complete": 0, - "position": 48, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 51, - "starting_position_in_class": 25, - "suit": { - "pattern": 10, - "color1": "00ff1e", - "color2": "000000", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -243532, - "cust_id": 204799, - "display_name": "Derek Lanham", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1096959, - "best_lap_num": 149, - "best_lap_time": 1048466, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "US", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 48, - "finish_position_in_class": 25, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 5, - "color1": "ffffff", - "color2": "000000", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 7, - "interval": -1, - "laps_complete": 52, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 23, - "color1": "ff9cfd", - "color2": "ffffff", - "color3": "0500ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "000000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "444", - "wheel_color": "ffffff", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 68.58949, - "new_license_level": 19, - "new_sub_level": 353, - "new_ttrating": 1350, - "newi_rating": 2577, - "old_cpi": 63.863583, - "old_license_level": 19, - "old_sub_level": 343, - "old_ttrating": 1350, - "oldi_rating": 2594, - "opt_laps_complete": 0, - "position": 48, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 51, - "starting_position_in_class": 25, - "suit": { - "pattern": 10, - "color1": "00ff1e", - "color2": "000000", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -243532, - "cust_id": 110764, - "display_name": "Joshua Bourque Bolin Queen", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "US", - "division": 4, - "division_name": "Division 5", - "drop_race": false, - "finish_position": 48, - "finish_position_in_class": 25, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 8, - "color1": "5e0e67", - "color2": "ffffff", - "color3": "200623", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 23, - "color1": "ff9cfd", - "color2": "ffffff", - "color3": "0500ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "000000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "444", - "wheel_color": "ffffff", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 48, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 51, - "starting_position_in_class": 25, - "suit": { - "pattern": 10, - "color1": "00ff1e", - "color2": "000000", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 48, - "finish_position_in_class": 25, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 20, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 23, - "color1": "ff9cfd", - "color2": "ffffff", - "color3": "0500ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "000000", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "444", - "wheel_color": "ffffff", - "rim_type": 1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 48, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 51, - "starting_position_in_class": 25, - "suit": { - "pattern": 10, - "color1": "00ff1e", - "color2": "000000", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -398466, - "display_name": "Leche Condensada Racing Team", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -398466, - "cust_id": 1188331, - "display_name": "Diego Gonzalez Martin", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1159747, - "best_lap_num": 19, - "best_lap_time": 1052482, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "ES", - "division": 4, - "division_name": "Division 5", - "drop_race": true, - "finish_position": 49, - "finish_position_in_class": 26, - "flair_id": 198, - "flair_name": "Spain", - "flair_shortname": "ESP", - "friend": false, - "helmet": { - "pattern": 44, - "color1": "000000", - "color2": "ecd108", - "color3": "f00000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 15, - "interval": -1, - "laps_complete": 76, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 8, - "color1": "F5F9F4", - "color2": "000000", - "color3": "EDF4EE", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "28", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 52.043076, - "new_license_level": 18, - "new_sub_level": 268, - "new_ttrating": 1350, - "newi_rating": 2273, - "old_cpi": 47.192017, - "old_license_level": 18, - "old_sub_level": 254, - "old_ttrating": 1350, - "oldi_rating": 2311, - "opt_laps_complete": 0, - "position": 49, - "qual_lap_time": -1, - "reason_out": "DQ/Scoring Invalidated", - "reason_out_id": 34, - "starting_position": 47, - "starting_position_in_class": 21, - "suit": { - "pattern": 33, - "color1": "103fe6", - "color2": "f3f3f3", - "color3": "f60909" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -398466, - "cust_id": 1107477, - "display_name": "Carlos Saek", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 16068019, - "best_lap_num": 52, - "best_lap_time": 1059580, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "ES", - "division": 4, - "division_name": "Division 5", - "drop_race": true, - "finish_position": 49, - "finish_position_in_class": 26, - "flair_id": 198, - "flair_name": "Spain", - "flair_shortname": "ESP", - "friend": false, - "helmet": { - "pattern": 34, - "color1": "000000", - "color2": "7bfcab", - "color3": "515151", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 23, - "interval": -1, - "laps_complete": 23, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 8, - "color1": "F5F9F4", - "color2": "000000", - "color3": "EDF4EE", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "28", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 28.689007, - "new_license_level": 17, - "new_sub_level": 134, - "new_ttrating": 1350, - "newi_rating": 1833, - "old_cpi": 42.800854, - "old_license_level": 18, - "old_sub_level": 239, - "old_ttrating": 1350, - "oldi_rating": 1845, - "opt_laps_complete": 0, - "position": 49, - "qual_lap_time": -1, - "reason_out": "DQ/Scoring Invalidated", - "reason_out_id": 34, - "starting_position": 47, - "starting_position_in_class": 21, - "suit": { - "pattern": 33, - "color1": "103fe6", - "color2": "f3f3f3", - "color3": "f60909" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -398466, - "cust_id": 1110076, - "display_name": "Abel Ros", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1128765, - "best_lap_num": 60, - "best_lap_time": 1057677, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "ES", - "division": 3, - "division_name": "Division 4", - "drop_race": true, - "finish_position": 49, - "finish_position_in_class": 26, - "flair_id": 198, - "flair_name": "Spain", - "flair_shortname": "ESP", - "friend": false, - "helmet": { - "pattern": 58, - "color1": "ee0000", - "color2": "e0fa0c", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 9, - "interval": -1, - "laps_complete": 20, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 8, - "color1": "F5F9F4", - "color2": "000000", - "color3": "EDF4EE", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "28", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 63.223633, - "new_license_level": 19, - "new_sub_level": 341, - "new_ttrating": 1364, - "newi_rating": 2580, - "old_cpi": 79.276924, - "old_license_level": 19, - "old_sub_level": 375, - "old_ttrating": 1364, - "oldi_rating": 2590, - "opt_laps_complete": 0, - "position": 49, - "qual_lap_time": -1, - "reason_out": "DQ/Scoring Invalidated", - "reason_out_id": 34, - "starting_position": 47, - "starting_position_in_class": 21, - "suit": { - "pattern": 33, - "color1": "103fe6", - "color2": "f3f3f3", - "color3": "f60909" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -398466, - "cust_id": 401283, - "display_name": "Alex Serrano Martinez", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "ES", - "division": 4, - "division_name": "Division 5", - "drop_race": true, - "finish_position": 49, - "finish_position_in_class": 26, - "flair_id": 198, - "flair_name": "Spain", - "flair_shortname": "ESP", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "ffffff", - "color2": "fc0706", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 8, - "color1": "F5F9F4", - "color2": "000000", - "color3": "EDF4EE", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "28", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 55.97871, - "new_license_level": 19, - "new_sub_level": 323, - "new_ttrating": 1305, - "newi_rating": 2303, - "old_cpi": 56.21595, - "old_license_level": 19, - "old_sub_level": 323, - "old_ttrating": 1305, - "oldi_rating": 2303, - "opt_laps_complete": 0, - "position": 49, - "qual_lap_time": -1, - "reason_out": "DQ/Scoring Invalidated", - "reason_out_id": 34, - "starting_position": 47, - "starting_position_in_class": 21, - "suit": { - "pattern": 33, - "color1": "103fe6", - "color2": "f3f3f3", - "color3": "f60909" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -398466, - "cust_id": 1214818, - "display_name": "Alex Pascual3", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "ES", - "division": 2, - "division_name": "Division 3", - "drop_race": true, - "finish_position": 49, - "finish_position_in_class": 26, - "flair_id": 198, - "flair_name": "Spain", - "flair_shortname": "ESP", - "friend": false, - "helmet": { - "pattern": 49, - "color1": "faff04", - "color2": "000000", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 8, - "color1": "F5F9F4", - "color2": "000000", - "color3": "EDF4EE", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "28", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 49, - "qual_lap_time": -1, - "reason_out": "DQ/Scoring Invalidated", - "reason_out_id": 34, - "starting_position": 47, - "starting_position_in_class": 21, - "suit": { - "pattern": 33, - "color1": "103fe6", - "color2": "f3f3f3", - "color3": "f60909" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": true, - "finish_position": 49, - "finish_position_in_class": 26, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 47, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 8, - "color1": "F5F9F4", - "color2": "000000", - "color3": "EDF4EE", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "28", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 49, - "qual_lap_time": -1, - "reason_out": "DQ/Scoring Invalidated", - "reason_out_id": 34, - "starting_position": 47, - "starting_position_in_class": 21, - "suit": { - "pattern": 33, - "color1": "103fe6", - "color2": "f3f3f3", - "color3": "f60909" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -379972, - "display_name": "Primal Racing 1", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 196, - "car_name": "Ferrari 499P", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -379972, - "cust_id": 737050, - "display_name": "Magnus Mortensen2", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1040291, - "best_lap_num": 22, - "best_lap_time": 935397, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 196, - "car_name": "Ferrari 499P", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "DK", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 50, - "finish_position_in_class": 12, - "flair_id": 56, - "flair_name": "Denmark", - "flair_shortname": "DNK", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "000000", - "color2": "1c1a7b", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 17, - "interval": -1, - "laps_complete": 62, - "laps_lead": 53, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 196, - "pattern": 0, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "8", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 75.986855, - "new_license_level": 20, - "new_sub_level": 410, - "new_ttrating": 1350, - "newi_rating": 2622, - "old_cpi": 100.1537, - "old_license_level": 20, - "old_sub_level": 452, - "old_ttrating": 1350, - "oldi_rating": 2672, - "opt_laps_complete": 0, - "position": 50, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 0, - "starting_position_in_class": 0, - "suit": { - "pattern": 1, - "color1": "f1732e", - "color2": "372a75", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -379972, - "cust_id": 728131, - "display_name": "Frederik Juhl Nielsen", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1067603, - "best_lap_num": 97, - "best_lap_time": 937399, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 196, - "car_name": "Ferrari 499P", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "DK", - "division": 1, - "division_name": "Division 2", - "drop_race": false, - "finish_position": 50, - "finish_position_in_class": 12, - "flair_id": 56, - "flair_name": "Denmark", - "flair_shortname": "DNK", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "f1732e", - "color2": "372a75", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 7, - "interval": -1, - "laps_complete": 49, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 196, - "pattern": 0, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "8", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 46.074566, - "new_license_level": 18, - "new_sub_level": 250, - "new_ttrating": 1339, - "newi_rating": 2732, - "old_cpi": 38.211376, - "old_license_level": 18, - "old_sub_level": 222, - "old_ttrating": 1339, - "oldi_rating": 2771, - "opt_laps_complete": 0, - "position": 50, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 0, - "starting_position_in_class": 0, - "suit": { - "pattern": 1, - "color1": "f1732e", - "color2": "372a75", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -379972, - "cust_id": 712036, - "display_name": "Darien Lizano", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 196, - "car_name": "Ferrari 499P", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "PR", - "division": 3, - "division_name": "Division 4", - "drop_race": false, - "finish_position": 50, - "finish_position_in_class": 12, - "flair_id": 169, - "flair_name": "Puerto Rico", - "flair_shortname": "PRI", - "friend": false, - "helmet": { - "pattern": 28, - "color1": "cd1ca1", - "color2": "18d7d7", - "color3": "d4dce8", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 196, - "pattern": 0, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "8", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 50, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 0, - "starting_position_in_class": 0, - "suit": { - "pattern": 1, - "color1": "f1732e", - "color2": "372a75", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -379972, - "cust_id": 1043553, - "display_name": "Adam Fahim3", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 196, - "car_name": "Ferrari 499P", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "MY", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 50, - "finish_position_in_class": 12, - "flair_id": 125, - "flair_name": "Malaysia", - "flair_shortname": "MYS", - "friend": false, - "helmet": { - "pattern": 22, - "color1": "fffb00", - "color2": "ffffff", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 196, - "pattern": 0, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "8", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 50, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 0, - "starting_position_in_class": 0, - "suit": { - "pattern": 1, - "color1": "f1732e", - "color2": "372a75", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -379972, - "cust_id": 1085548, - "display_name": "Jakob Simesen", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 196, - "car_name": "Ferrari 499P", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "DK", - "division": 4, - "division_name": "Division 5", - "drop_race": false, - "finish_position": 50, - "finish_position_in_class": 12, - "flair_id": 56, - "flair_name": "Denmark", - "flair_shortname": "DNK", - "friend": false, - "helmet": { - "pattern": 48, - "color1": "ff0000", - "color2": "ffffff", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 196, - "pattern": 0, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "8", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 50, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 0, - "starting_position_in_class": 0, - "suit": { - "pattern": 1, - "color1": "f1732e", - "color2": "372a75", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": false, - "finish_position": 50, - "finish_position_in_class": 12, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 24, - "interval": -1, - "laps_complete": 0, - "laps_lead": 53, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 196, - "pattern": 0, - "color1": "2a3795", - "color2": "ed2129", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "8", - "wheel_color": "000000", - "rim_type": 0 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 50, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 0, - "starting_position_in_class": 0, - "suit": { - "pattern": 1, - "color1": "f1732e", - "color2": "372a75", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -483219, - "display_name": "Velocity X Rhythm Racing Team", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 188, - "car_name": "McLaren 720S GT3 EVO", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -483219, - "cust_id": 1283272, - "display_name": "Mario García Muriel", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1056228, - "best_lap_num": 86, - "best_lap_time": 1045160, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 188, - "car_name": "McLaren 720S GT3 EVO", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "ES", - "division": 1, - "division_name": "Division 2", - "drop_race": true, - "finish_position": 51, - "finish_position_in_class": 27, - "flair_id": 198, - "flair_name": "Spain", - "flair_shortname": "ESP", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "231f20", - "color2": "808080", - "color3": "f26722", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 7, - "interval": -1, - "laps_complete": 61, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 188, - "pattern": 1, - "color1": "FF0000", - "color2": "00FF00", - "color3": "0000FF", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "31", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 97, - "new_cpi": 43.159573, - "new_license_level": 17, - "new_sub_level": 197, - "new_ttrating": 1350, - "newi_rating": 3435, - "old_cpi": 30.48215, - "old_license_level": 17, - "old_sub_level": 143, - "old_ttrating": 1350, - "oldi_rating": 3486, - "opt_laps_complete": 0, - "position": 51, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 26, - "starting_position_in_class": 0, - "suit": { - "pattern": 1, - "color1": "231f20", - "color2": "808080", - "color3": "f26722" - }, - "watched": false, - "weight_penalty_kg": 5 - }, - { - "team_id": -483219, - "cust_id": 1233001, - "display_name": "Mauro Agustin Arriola Aranela", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1087741, - "best_lap_num": 57, - "best_lap_time": 1055563, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 188, - "car_name": "McLaren 720S GT3 EVO", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "AR", - "division": 3, - "division_name": "Division 4", - "drop_race": true, - "finish_position": 51, - "finish_position_in_class": 27, - "flair_id": 13, - "flair_name": "Argentina", - "flair_shortname": "ARG", - "friend": false, - "helmet": { - "pattern": 9, - "color1": "0222f4", - "color2": "f9f9f9", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 13, - "interval": -1, - "laps_complete": 29, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 188, - "pattern": 1, - "color1": "FF0000", - "color2": "00FF00", - "color3": "0000FF", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "31", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 97, - "new_cpi": 21.797512, - "new_license_level": 10, - "new_sub_level": 249, - "new_ttrating": 1350, - "newi_rating": 1665, - "old_cpi": 21.029593, - "old_license_level": 10, - "old_sub_level": 243, - "old_ttrating": 1350, - "oldi_rating": 1689, - "opt_laps_complete": 0, - "position": 51, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 26, - "starting_position_in_class": 0, - "suit": { - "pattern": 1, - "color1": "231f20", - "color2": "808080", - "color3": "f26722" - }, - "watched": false, - "weight_penalty_kg": 5 - }, - { - "team_id": -483219, - "cust_id": 1376075, - "display_name": "Darío Llopis", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1264340, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 188, - "car_name": "McLaren 720S GT3 EVO", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "ES", - "division": 5, - "division_name": "Division 6", - "drop_race": true, - "finish_position": 51, - "finish_position_in_class": 27, - "flair_id": 198, - "flair_name": "Spain", - "flair_shortname": "ESP", - "friend": false, - "helmet": { - "pattern": 7, - "color1": "8f6b00", - "color2": "b98b00", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 7, - "interval": -1, - "laps_complete": 5, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 188, - "pattern": 1, - "color1": "FF0000", - "color2": "00FF00", - "color3": "0000FF", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "31", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 97, - "new_cpi": 18.233788, - "new_license_level": 10, - "new_sub_level": 220, - "new_ttrating": 1350, - "newi_rating": 1585, - "old_cpi": 19.105652, - "old_license_level": 10, - "old_sub_level": 228, - "old_ttrating": 1350, - "oldi_rating": 1589, - "opt_laps_complete": 0, - "position": 51, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 26, - "starting_position_in_class": 0, - "suit": { - "pattern": 1, - "color1": "231f20", - "color2": "808080", - "color3": "f26722" - }, - "watched": false, - "weight_penalty_kg": 5 - } - ], - "drop_race": true, - "finish_position": 51, - "finish_position_in_class": 27, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 27, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 188, - "pattern": 1, - "color1": "FF0000", - "color2": "00FF00", - "color3": "0000FF", - "number_font": 0, - "number_color1": "FFFFFF", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "31", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 97, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 51, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 26, - "starting_position_in_class": 0, - "suit": { - "pattern": 1, - "color1": "231f20", - "color2": "808080", - "color3": "f26722" - }, - "watched": false, - "weight_penalty_kg": 5 - }, - { - "team_id": -467225, - "display_name": "DCS Racing Green", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -467225, - "cust_id": 1193552, - "display_name": "Nikos Nota", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1104297, - "best_lap_num": 65, - "best_lap_time": 1045754, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "GR", - "division": 3, - "division_name": "Division 4", - "drop_race": true, - "finish_position": 52, - "finish_position_in_class": 28, - "flair_id": 80, - "flair_name": "Greece", - "flair_shortname": "GRC", - "friend": false, - "helmet": { - "pattern": 67, - "color1": "ffffff", - "color2": "fff500", - "color3": "fff500", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 17, - "interval": -1, - "laps_complete": 61, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "e0aa42", - "color2": "0ea2eb", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "22", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 29.04801, - "new_license_level": 13, - "new_sub_level": 194, - "new_ttrating": 1305, - "newi_rating": 3058, - "old_cpi": 21.94943, - "old_license_level": 13, - "old_sub_level": 150, - "old_ttrating": 1305, - "oldi_rating": 3142, - "opt_laps_complete": 0, - "position": 52, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 35, - "starting_position_in_class": 9, - "suit": { - "pattern": 33, - "color1": "ffffff", - "color2": "60a6c9", - "color3": "1a1f43" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -467225, - "cust_id": 618064, - "display_name": "Lexi Taylor", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1100085, - "best_lap_num": 36, - "best_lap_time": 1066419, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "GB", - "division": 7, - "division_name": "Division 8", - "drop_race": true, - "finish_position": 52, - "finish_position_in_class": 28, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 35, - "color1": "ffe116", - "color2": "117900", - "color3": "00046b", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 2, - "interval": -1, - "laps_complete": 7, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "e0aa42", - "color2": "0ea2eb", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "22", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 37.60446, - "new_license_level": 15, - "new_sub_level": 319, - "new_ttrating": 1350, - "newi_rating": 1864, - "old_cpi": 36.71224, - "old_license_level": 15, - "old_sub_level": 316, - "old_ttrating": 1350, - "oldi_rating": 1874, - "opt_laps_complete": 0, - "position": 52, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 35, - "starting_position_in_class": 9, - "suit": { - "pattern": 33, - "color1": "ffffff", - "color2": "60a6c9", - "color3": "1a1f43" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -467225, - "cust_id": 1415804, - "display_name": "Christian Ranzani2", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "SO", - "division": 10, - "division_name": "Rookie", - "drop_race": true, - "finish_position": 52, - "finish_position_in_class": 28, - "flair_id": 194, - "flair_name": "Somalia", - "flair_shortname": "SOM", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "ffffff", - "color2": "2e358f", - "color3": "ec232d", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "e0aa42", - "color2": "0ea2eb", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "22", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 52, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 35, - "starting_position_in_class": 9, - "suit": { - "pattern": 33, - "color1": "ffffff", - "color2": "60a6c9", - "color3": "1a1f43" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": true, - "finish_position": 52, - "finish_position_in_class": 28, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 19, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "e0aa42", - "color2": "0ea2eb", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "22", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 52, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 35, - "starting_position_in_class": 9, - "suit": { - "pattern": 33, - "color1": "ffffff", - "color2": "60a6c9", - "color3": "1a1f43" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -298823, - "display_name": "TEN MAD MEN Alpha", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -298823, - "cust_id": 363120, - "display_name": "Vins Alamar", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1177627, - "best_lap_num": 41, - "best_lap_time": 1049909, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "ES", - "division": 3, - "division_name": "Division 4", - "drop_race": true, - "finish_position": 53, - "finish_position_in_class": 29, - "flair_id": 198, - "flair_name": "Spain", - "flair_shortname": "ESP", - "friend": false, - "helmet": { - "pattern": 22, - "color1": "b8b8b8", - "color2": "0010ad", - "color3": "6698ff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 8, - "interval": -1, - "laps_complete": 31, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "ffffff", - "color2": "0013a5", - "color3": "ff5c00", - "number_font": 0, - "number_color1": "f3eeeb", - "number_color2": "ffffff", - "number_color3": "ffffff", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "010", - "wheel_color": "32312f", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 30.895468, - "new_license_level": 14, - "new_sub_level": 245, - "new_ttrating": 1336, - "newi_rating": 1893, - "old_cpi": 27.22615, - "old_license_level": 13, - "old_sub_level": 184, - "old_ttrating": 1336, - "oldi_rating": 1931, - "opt_laps_complete": 0, - "position": 53, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 40, - "starting_position_in_class": 14, - "suit": { - "pattern": 1, - "color1": "e1ce30", - "color2": "ebe8e8", - "color3": "1c46ed" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -298823, - "cust_id": 376421, - "display_name": "Jorge Leiva Ruiz", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1064642, - "best_lap_num": 27, - "best_lap_time": 1046539, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "CL", - "division": 2, - "division_name": "Division 3", - "drop_race": true, - "finish_position": 53, - "finish_position_in_class": 29, - "flair_id": 44, - "flair_name": "Chile", - "flair_shortname": "CHL", - "friend": false, - "helmet": { - "pattern": 67, - "color1": "000000", - "color2": "00a0bc", - "color3": "c7c7c7", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 6, - "interval": -1, - "laps_complete": 30, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "ffffff", - "color2": "0013a5", - "color3": "ff5c00", - "number_font": 0, - "number_color1": "f3eeeb", - "number_color2": "ffffff", - "number_color3": "ffffff", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "010", - "wheel_color": "32312f", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 65.18878, - "new_license_level": 19, - "new_sub_level": 346, - "new_ttrating": 1350, - "newi_rating": 2447, - "old_cpi": 66.34217, - "old_license_level": 19, - "old_sub_level": 348, - "old_ttrating": 1350, - "oldi_rating": 2484, - "opt_laps_complete": 0, - "position": 53, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 40, - "starting_position_in_class": 14, - "suit": { - "pattern": 1, - "color1": "e1ce30", - "color2": "ebe8e8", - "color3": "1c46ed" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -298823, - "cust_id": 527810, - "display_name": "Javi Abad", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "ES", - "division": 4, - "division_name": "Division 5", - "drop_race": false, - "finish_position": 53, - "finish_position_in_class": 29, - "flair_id": 198, - "flair_name": "Spain", - "flair_shortname": "ESP", - "friend": false, - "helmet": { - "pattern": 10, - "color1": "ffffff", - "color2": "000000", - "color3": "41ff00", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "ffffff", - "color2": "0013a5", - "color3": "ff5c00", - "number_font": 0, - "number_color1": "f3eeeb", - "number_color2": "ffffff", - "number_color3": "ffffff", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "010", - "wheel_color": "32312f", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 53, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 40, - "starting_position_in_class": 14, - "suit": { - "pattern": 1, - "color1": "e1ce30", - "color2": "ebe8e8", - "color3": "1c46ed" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -298823, - "cust_id": 554983, - "display_name": "Dan Moreno", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "CH", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 53, - "finish_position_in_class": 29, - "flair_id": 204, - "flair_name": "Switzerland", - "flair_shortname": "CHE", - "friend": false, - "helmet": { - "pattern": 68, - "color1": "b4b640", - "color2": "111111", - "color3": "1a2c6d", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "ffffff", - "color2": "0013a5", - "color3": "ff5c00", - "number_font": 0, - "number_color1": "f3eeeb", - "number_color2": "ffffff", - "number_color3": "ffffff", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "010", - "wheel_color": "32312f", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 53, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 40, - "starting_position_in_class": 14, - "suit": { - "pattern": 1, - "color1": "e1ce30", - "color2": "ebe8e8", - "color3": "1c46ed" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -298823, - "cust_id": 803476, - "display_name": "Jose Carlos Rodriguez", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "ES", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 53, - "finish_position_in_class": 29, - "flair_id": 198, - "flair_name": "Spain", - "flair_shortname": "ESP", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "fc0706", - "color2": "111111", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "ffffff", - "color2": "0013a5", - "color3": "ff5c00", - "number_font": 0, - "number_color1": "f3eeeb", - "number_color2": "ffffff", - "number_color3": "ffffff", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "010", - "wheel_color": "32312f", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 53, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 40, - "starting_position_in_class": 14, - "suit": { - "pattern": 1, - "color1": "e1ce30", - "color2": "ebe8e8", - "color3": "1c46ed" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 53, - "finish_position_in_class": 29, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 14, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "ffffff", - "color2": "0013a5", - "color3": "ff5c00", - "number_font": 0, - "number_color1": "f3eeeb", - "number_color2": "ffffff", - "number_color3": "ffffff", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "010", - "wheel_color": "32312f", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 53, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 40, - "starting_position_in_class": 14, - "suit": { - "pattern": 1, - "color1": "e1ce30", - "color2": "ebe8e8", - "color3": "1c46ed" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -199580, - "display_name": "IntoTheApex.com Gold", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -199580, - "cust_id": 142817, - "display_name": "Charlie Ryan", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 975438, - "best_lap_num": 25, - "best_lap_time": 943009, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "US", - "division": 2, - "division_name": "Division 3", - "drop_race": true, - "finish_position": 54, - "finish_position_in_class": 13, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 2, - "color1": "000000", - "color2": "ED2129", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 6, - "interval": -1, - "laps_complete": 47, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 1, - "color1": "ff0000", - "color2": "00ff00", - "color3": "0000ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "069", - "wheel_color": "000000", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 42.451843, - "new_license_level": 18, - "new_sub_level": 238, - "new_ttrating": 1350, - "newi_rating": 2179, - "old_cpi": 33.555664, - "old_license_level": 18, - "old_sub_level": 202, - "old_ttrating": 1350, - "oldi_rating": 2266, - "opt_laps_complete": 0, - "position": 54, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 7, - "starting_position_in_class": 7, - "suit": { - "pattern": 19, - "color1": "000000", - "color2": "0d1fc5", - "color3": "e3e110" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -199580, - "cust_id": 32703, - "display_name": "Chris Cable", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "US", - "division": 2, - "division_name": "Division 3", - "drop_race": true, - "finish_position": 54, - "finish_position_in_class": 13, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 32, - "color1": "000000", - "color2": "ff0605", - "color3": "e0e0e0", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 1, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 1, - "color1": "ff0000", - "color2": "00ff00", - "color3": "0000ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "069", - "wheel_color": "000000", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 78.61671, - "new_license_level": 19, - "new_sub_level": 374, - "new_ttrating": 1350, - "newi_rating": 2597, - "old_cpi": 78.61671, - "old_license_level": 19, - "old_sub_level": 374, - "old_ttrating": 1350, - "oldi_rating": 2599, - "opt_laps_complete": 0, - "position": 54, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 7, - "starting_position_in_class": 7, - "suit": { - "pattern": 19, - "color1": "000000", - "color2": "0d1fc5", - "color3": "e3e110" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -199580, - "cust_id": 25230, - "display_name": "Bruce Perry", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "US", - "division": 3, - "division_name": "Division 4", - "drop_race": true, - "finish_position": 54, - "finish_position_in_class": 13, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 9, - "color1": "f9f9f9", - "color2": "0098fe", - "color3": "f9ebd7", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 1, - "color1": "ff0000", - "color2": "00ff00", - "color3": "0000ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "069", - "wheel_color": "000000", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 236.64212, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 2155, - "old_cpi": 234.75113, - "old_license_level": 20, - "old_sub_level": 499, - "old_ttrating": 1350, - "oldi_rating": 2155, - "opt_laps_complete": 0, - "position": 54, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 7, - "starting_position_in_class": 7, - "suit": { - "pattern": 19, - "color1": "000000", - "color2": "0d1fc5", - "color3": "e3e110" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -199580, - "cust_id": 113433, - "display_name": "Joshua Kotten", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4029, - "car_class_name": "GTP", - "car_class_short_name": "GTP", - "car_id": 174, - "car_name": "Porsche 963 GTP", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "US", - "division": 2, - "division_name": "Division 3", - "drop_race": true, - "finish_position": 54, - "finish_position_in_class": 13, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 59, - "color1": "000000", - "color2": "efac00", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 1, - "color1": "ff0000", - "color2": "00ff00", - "color3": "0000ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "069", - "wheel_color": "000000", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 54, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 7, - "starting_position_in_class": 7, - "suit": { - "pattern": 19, - "color1": "000000", - "color2": "0d1fc5", - "color3": "e3e110" - }, - "watched": false, - "weight_penalty_kg": 2 - } - ], - "drop_race": true, - "finish_position": 54, - "finish_position_in_class": 13, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 6, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 174, - "pattern": 1, - "color1": "ff0000", - "color2": "00ff00", - "color3": "0000ff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "069", - "wheel_color": "000000", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 54, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 7, - "starting_position_in_class": 7, - "suit": { - "pattern": 19, - "color1": "000000", - "color2": "0d1fc5", - "color3": "e3e110" - }, - "watched": false, - "weight_penalty_kg": 2 - }, - { - "team_id": -401232, - "display_name": "Kika Cetasso Racing Team", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -401232, - "cust_id": 127024, - "display_name": "Fernando Cardoso", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1152969, - "best_lap_num": 20, - "best_lap_time": 1049065, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "CA", - "division": 4, - "division_name": "Division 5", - "drop_race": true, - "finish_position": 55, - "finish_position_in_class": 30, - "flair_id": 39, - "flair_name": "Canada", - "flair_shortname": "CAN", - "friend": false, - "helmet": { - "pattern": 42, - "color1": "000000", - "color2": "000000", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 19, - "interval": -1, - "laps_complete": 43, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 8, - "color1": "ffffff", - "color2": "000000", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 3, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "12", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 46.205784, - "new_license_level": 18, - "new_sub_level": 250, - "new_ttrating": 1350, - "newi_rating": 1513, - "old_cpi": 57.07806, - "old_license_level": 19, - "old_sub_level": 326, - "old_ttrating": 1350, - "oldi_rating": 1571, - "opt_laps_complete": 0, - "position": 55, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 58, - "starting_position_in_class": 32, - "suit": { - "pattern": 2, - "color1": "000000", - "color2": "ffffff", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -401232, - "cust_id": 1099564, - "display_name": "Gabriel Cardoso5", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "CA", - "division": 1, - "division_name": "Division 2", - "drop_race": true, - "finish_position": 55, - "finish_position_in_class": 30, - "flair_id": 39, - "flair_name": "Canada", - "flair_shortname": "CAN", - "friend": false, - "helmet": { - "pattern": 56, - "color1": "ccff00", - "color2": "111111", - "color3": "391c83", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 8, - "color1": "ffffff", - "color2": "000000", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 3, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "12", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 55, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 58, - "starting_position_in_class": 32, - "suit": { - "pattern": 2, - "color1": "000000", - "color2": "ffffff", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": true, - "finish_position": 55, - "finish_position_in_class": 30, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 19, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 8, - "color1": "ffffff", - "color2": "000000", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 3, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "12", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 55, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 58, - "starting_position_in_class": 32, - "suit": { - "pattern": 2, - "color1": "000000", - "color2": "ffffff", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -298487, - "display_name": "Parc Motorsport Team Purple", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -298487, - "cust_id": 784148, - "display_name": "Krzysztof Olender2", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1095344, - "best_lap_num": 12, - "best_lap_time": 1045575, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "PL", - "division": 3, - "division_name": "Division 4", - "drop_race": true, - "finish_position": 56, - "finish_position_in_class": 31, - "flair_id": 167, - "flair_name": "Poland", - "flair_shortname": "POL", - "friend": false, - "helmet": { - "pattern": 43, - "color1": "eaff00", - "color2": "00e0ff", - "color3": "db00ff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 14, - "interval": -1, - "laps_complete": 38, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 9, - "color1": "000000", - "color2": "8700ff", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "97", - "wheel_color": "000000", - "rim_type": 3 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 36.04055, - "new_license_level": 14, - "new_sub_level": 269, - "new_ttrating": 1350, - "newi_rating": 2615, - "old_cpi": 42.249332, - "old_license_level": 14, - "old_sub_level": 293, - "old_ttrating": 1350, - "oldi_rating": 2719, - "opt_laps_complete": 0, - "position": 56, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 48, - "starting_position_in_class": 22, - "suit": { - "pattern": 28, - "color1": "000000", - "color2": "7800ff", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -298487, - "cust_id": 589222, - "display_name": "Mateusz Boruta5", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "PL", - "division": 3, - "division_name": "Division 4", - "drop_race": true, - "finish_position": 56, - "finish_position_in_class": 31, - "flair_id": 167, - "flair_name": "Poland", - "flair_shortname": "POL", - "friend": false, - "helmet": { - "pattern": 8, - "color1": "fa1c1c", - "color2": "000000", - "color3": "d24f86", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 9, - "color1": "000000", - "color2": "8700ff", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "97", - "wheel_color": "000000", - "rim_type": 3 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 56, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 48, - "starting_position_in_class": 22, - "suit": { - "pattern": 28, - "color1": "000000", - "color2": "7800ff", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -298487, - "cust_id": 972927, - "display_name": "Tomasz Rogacki", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "PL", - "division": 2, - "division_name": "Division 3", - "drop_race": true, - "finish_position": 56, - "finish_position_in_class": 31, - "flair_id": 167, - "flair_name": "Poland", - "flair_shortname": "POL", - "friend": false, - "helmet": { - "pattern": 28, - "color1": "0460eb", - "color2": "f06e34", - "color3": "111111", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 9, - "color1": "000000", - "color2": "8700ff", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "97", - "wheel_color": "000000", - "rim_type": 3 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 56, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 48, - "starting_position_in_class": 22, - "suit": { - "pattern": 28, - "color1": "000000", - "color2": "7800ff", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -298487, - "cust_id": 1056161, - "display_name": "Aleks Rusinek", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "PL", - "division": 3, - "division_name": "Division 4", - "drop_race": true, - "finish_position": 56, - "finish_position_in_class": 31, - "flair_id": 167, - "flair_name": "Poland", - "flair_shortname": "POL", - "friend": false, - "helmet": { - "pattern": 29, - "color1": "8000ff", - "color2": "000000", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 9, - "color1": "000000", - "color2": "8700ff", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "97", - "wheel_color": "000000", - "rim_type": 3 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 46.348267, - "new_license_level": 18, - "new_sub_level": 251, - "new_ttrating": 1350, - "newi_rating": 2095, - "old_cpi": 46.346268, - "old_license_level": 18, - "old_sub_level": 251, - "old_ttrating": 1350, - "oldi_rating": 2095, - "opt_laps_complete": 0, - "position": 56, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 48, - "starting_position_in_class": 22, - "suit": { - "pattern": 28, - "color1": "000000", - "color2": "7800ff", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": true, - "finish_position": 56, - "finish_position_in_class": 31, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 14, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 9, - "color1": "000000", - "color2": "8700ff", - "color3": "ffffff", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "97", - "wheel_color": "000000", - "rim_type": 3 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 56, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 48, - "starting_position_in_class": 22, - "suit": { - "pattern": 28, - "color1": "000000", - "color2": "7800ff", - "color3": "ffffff" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -420531, - "display_name": "Angler Racing", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -420531, - "cust_id": 941901, - "display_name": "Paddy Armstrong", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 1060695, - "best_lap_num": 23, - "best_lap_time": 1043936, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "SCT", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 57, - "finish_position_in_class": 32, - "flair_id": 237, - "flair_name": "Scotland", - "flair_shortname": "SCT", - "friend": false, - "helmet": { - "pattern": 57, - "color1": "838383", - "color2": "ffffff", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 11, - "interval": -1, - "laps_complete": 29, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "000000", - "color2": "000000", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "6", - "wheel_color": "c8bd9f", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": 78.350105, - "new_license_level": 20, - "new_sub_level": 415, - "new_ttrating": 1260, - "newi_rating": 2157, - "old_cpi": 111.6487, - "old_license_level": 20, - "old_sub_level": 469, - "old_ttrating": 1260, - "oldi_rating": 2252, - "opt_laps_complete": 0, - "position": 57, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 36, - "starting_position_in_class": 10, - "suit": { - "pattern": 1, - "color1": "000000", - "color2": "ff00de", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -420531, - "cust_id": 1020483, - "display_name": "Samuel Yoseph", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "US", - "division": 3, - "division_name": "Division 4", - "drop_race": true, - "finish_position": 57, - "finish_position_in_class": 32, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "ffffff", - "color2": "1a4b9b", - "color3": "dff000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "000000", - "color2": "000000", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "6", - "wheel_color": "c8bd9f", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 57, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 36, - "starting_position_in_class": 10, - "suit": { - "pattern": 1, - "color1": "000000", - "color2": "ff00de", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -420531, - "cust_id": 1039541, - "display_name": "Serge Sas", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "BE", - "division": 4, - "division_name": "Division 5", - "drop_race": false, - "finish_position": 57, - "finish_position_in_class": 32, - "flair_id": 23, - "flair_name": "Belgium", - "flair_shortname": "BEL", - "friend": false, - "helmet": { - "pattern": 35, - "color1": "000000", - "color2": "fac31e", - "color3": "ff0000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "000000", - "color2": "000000", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "6", - "wheel_color": "c8bd9f", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 57, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 36, - "starting_position_in_class": 10, - "suit": { - "pattern": 1, - "color1": "000000", - "color2": "ff00de", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -420531, - "cust_id": 1218990, - "display_name": "Matt O'Donoghue", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 4011, - "car_class_name": "IMSA23", - "car_class_short_name": "IMSA23", - "car_id": 169, - "car_name": "Porsche 911 GT3 R (992)", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "SCT", - "division": 2, - "division_name": "Division 3", - "drop_race": false, - "finish_position": 57, - "finish_position_in_class": 32, - "flair_id": 237, - "flair_name": "Scotland", - "flair_shortname": "SCT", - "friend": false, - "helmet": { - "pattern": 23, - "color1": "000000", - "color2": "ff00e6", - "color3": "000000", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "000000", - "color2": "000000", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "6", - "wheel_color": "c8bd9f", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 57, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 36, - "starting_position_in_class": 10, - "suit": { - "pattern": 1, - "color1": "000000", - "color2": "ff00de", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 15 - } - ], - "drop_race": false, - "finish_position": 57, - "finish_position_in_class": 32, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 11, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 169, - "pattern": 0, - "color1": "000000", - "color2": "000000", - "color3": "000000", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "6", - "wheel_color": "c8bd9f", - "rim_type": 2 - }, - "max_pct_fuel_fill": 98, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 57, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 36, - "starting_position_in_class": 10, - "suit": { - "pattern": 1, - "color1": "000000", - "color2": "ff00de", - "color3": "000000" - }, - "watched": false, - "weight_penalty_kg": 15 - }, - { - "team_id": -169135, - "display_name": "BMW M Plower #557", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "GO", - "division": -1, - "driver_results": [ - { - "team_id": -169135, - "cust_id": 374188, - "display_name": "Lars Wiele", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "DE", - "division": 1, - "division_name": "Division 2", - "drop_race": true, - "finish_position": 58, - "finish_position_in_class": 11, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 2, - "color1": "6f9556", - "color2": "111111", - "color3": "efd600", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 6, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 1, - "color1": "6f9556", - "color2": "111111", - "color3": "efd600", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "557", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 108.826164, - "new_license_level": 20, - "new_sub_level": 465, - "new_ttrating": 1350, - "newi_rating": 3266, - "old_cpi": 140.98111, - "old_license_level": 20, - "old_sub_level": 499, - "old_ttrating": 1350, - "oldi_rating": 3386, - "opt_laps_complete": 0, - "position": 58, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 23, - "starting_position_in_class": 9, - "suit": { - "pattern": 19, - "color1": "0c0fb4", - "color2": "299467", - "color3": "d1f100" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -169135, - "cust_id": 441146, - "display_name": "Robert J Besinga", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "US", - "division": 3, - "division_name": "Division 4", - "drop_race": true, - "finish_position": 58, - "finish_position_in_class": 11, - "flair_id": 223, - "flair_name": "United States", - "flair_shortname": "USA", - "friend": false, - "helmet": { - "pattern": 17, - "color1": "ffffff", - "color2": "000000", - "color3": "001367", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 1, - "color1": "6f9556", - "color2": "111111", - "color3": "efd600", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "557", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 58, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 23, - "starting_position_in_class": 9, - "suit": { - "pattern": 19, - "color1": "0c0fb4", - "color2": "299467", - "color3": "d1f100" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -169135, - "cust_id": 500311, - "display_name": "Joshua Easey", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "GB", - "division": 2, - "division_name": "Division 3", - "drop_race": true, - "finish_position": 58, - "finish_position_in_class": 11, - "flair_id": 222, - "flair_name": "United Kingdom", - "flair_shortname": "GBR", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "cccccc", - "color2": "111111", - "color3": "ed1c24", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 1, - "color1": "6f9556", - "color2": "111111", - "color3": "efd600", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "557", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 211.58789, - "new_license_level": 20, - "new_sub_level": 499, - "new_ttrating": 1350, - "newi_rating": 2446, - "old_cpi": 209.03923, - "old_license_level": 20, - "old_sub_level": 499, - "old_ttrating": 1350, - "oldi_rating": 2446, - "opt_laps_complete": 0, - "position": 58, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 23, - "starting_position_in_class": 9, - "suit": { - "pattern": 19, - "color1": "0c0fb4", - "color2": "299467", - "color3": "d1f100" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -169135, - "cust_id": 638713, - "display_name": "Barnabás Tóth", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "HU", - "division": 4, - "division_name": "Division 5", - "drop_race": true, - "finish_position": 58, - "finish_position_in_class": 11, - "flair_id": 93, - "flair_name": "Hungary", - "flair_shortname": "HUN", - "friend": false, - "helmet": { - "pattern": 1, - "color1": "ee3442", - "color2": "ffffff", - "color3": "447ac0", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 1, - "color1": "6f9556", - "color2": "111111", - "color3": "efd600", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "557", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": 32.60926, - "new_license_level": 17, - "new_sub_level": 153, - "new_ttrating": 1370, - "newi_rating": 1729, - "old_cpi": 33.197025, - "old_license_level": 17, - "old_sub_level": 156, - "old_ttrating": 1370, - "oldi_rating": 1729, - "opt_laps_complete": 0, - "position": 58, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 23, - "starting_position_in_class": 9, - "suit": { - "pattern": 19, - "color1": "0c0fb4", - "color2": "299467", - "color3": "d1f100" - }, - "watched": false, - "weight_penalty_kg": -1 - }, - { - "team_id": -169135, - "cust_id": 989424, - "display_name": "Kay Bautzmann", - "aggregate_champ_points": 0, - "ai": false, - "average_lap": 0, - "best_lap_num": -1, - "best_lap_time": -1, - "best_nlaps_num": -1, - "best_nlaps_time": -1, - "best_qual_lap_at": "1970-01-01T00:00:00Z", - "best_qual_lap_num": -1, - "best_qual_lap_time": -1, - "car_class_id": 2523, - "car_class_name": "Dallara P217", - "car_class_short_name": "Dallara P217", - "car_id": 128, - "car_name": "Dallara P217", - "carcfg": -1, - "champ_points": 0, - "class_interval": -1, - "country_code": "DE", - "division": 2, - "division_name": "Division 3", - "drop_race": true, - "finish_position": 58, - "finish_position_in_class": 11, - "flair_id": 77, - "flair_name": "Germany", - "flair_shortname": "DEU", - "friend": false, - "helmet": { - "pattern": 35, - "color1": "f5a9b8", - "color2": "5bcefa", - "color3": "ffffff", - "face_type": 0, - "helmet_type": 0 - }, - "incidents": 0, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 1, - "color1": "6f9556", - "color2": "111111", - "color3": "efd600", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "557", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 58, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 23, - "starting_position_in_class": 9, - "suit": { - "pattern": 19, - "color1": "0c0fb4", - "color2": "299467", - "color3": "d1f100" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ], - "drop_race": true, - "finish_position": 58, - "finish_position_in_class": 11, - "flair_id": 2, - "flair_name": "Global", - "flair_shortname": "GLO", - "friend": false, - "incidents": 6, - "interval": -1, - "laps_complete": 0, - "laps_lead": 0, - "league_agg_points": 0, - "league_points": 0, - "license_change_oval": -1, - "license_change_road": -1, - "livery": { - "car_id": 128, - "pattern": 1, - "color1": "6f9556", - "color2": "111111", - "color3": "efd600", - "number_font": 0, - "number_color1": "ffffff", - "number_color2": "777777", - "number_color3": "000000", - "number_slant": 0, - "sponsor1": 0, - "sponsor2": 0, - "car_number": "557", - "wheel_color": null, - "rim_type": -1 - }, - "max_pct_fuel_fill": -1, - "new_cpi": -1, - "new_license_level": -1, - "new_sub_level": -1, - "new_ttrating": -1, - "newi_rating": -1, - "old_cpi": -1, - "old_license_level": -1, - "old_sub_level": -1, - "old_ttrating": -1, - "oldi_rating": -1, - "opt_laps_complete": 0, - "position": 58, - "qual_lap_time": -1, - "reason_out": "Disconnected", - "reason_out_id": 32, - "starting_position": 23, - "starting_position_in_class": 9, - "suit": { - "pattern": 19, - "color1": "0c0fb4", - "color2": "299467", - "color3": "d1f100" - }, - "watched": false, - "weight_penalty_kg": -1 - } - ] - } - ], - "session_splits": [ + "cust_id": 1009174, + "display_name": "Diego Fern\u00e1ndez5", + "aggregate_champ_points": 171, + "ai": false, + "average_lap": 1328990, + "best_lap_num": 1, + "best_lap_time": 1328791, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2025-12-28T20:35:25Z", + "best_qual_lap_num": 1, + "best_qual_lap_time": 1328791, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 189, + "car_name": "BMW M4 G82 GT4 Evo", + "carcfg": -1, + "champ_points": 0, + "class_interval": 9841, + "country_code": "ES", + "division": 0, + "division_name": "Division 1", + "drop_race": false, + "finish_position": 2, + "finish_position_in_class": 2, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 14, + "color1": "0021ff", + "color2": "000000", + "color3": "0021ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 9841, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 189, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "000000", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "2", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 79.03055, + "new_license_level": 20, + "new_sub_level": 416, + "new_ttrating": 1295, + "newi_rating": 7084, + "old_cpi": 82.93489, + "old_license_level": 20, + "old_sub_level": 423, + "old_ttrating": 1295, + "oldi_rating": 7070, + "opt_laps_complete": 0, + "position": 2, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 31, + "color1": "ff8a00", + "color2": "ffffff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "cust_id": 1253123, + "display_name": "Finley Jones", + "aggregate_champ_points": 158, + "ai": false, + "average_lap": 1336010, + "best_lap_num": 2, + "best_lap_time": 1333056, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2025-12-28T20:37:33Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1333056, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 119, + "car_name": "Porsche 718 Cayman GT4 Clubsport MR", + "carcfg": -1, + "champ_points": 0, + "class_interval": 14106, + "country_code": "GB", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 3, + "finish_position_in_class": 3, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 60, + "color1": "eb00ff", + "color2": "03ff05", + "color3": "0643f9", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 14106, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 119, + "pattern": 0, + "color1": "eb00ff", + "color2": "03ff05", + "color3": "0643f9", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "6", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 37.344536, + "new_license_level": 18, + "new_sub_level": 218, + "new_ttrating": 1300, + "newi_rating": 4087, + "old_cpi": 38.45716, + "old_license_level": 18, + "old_sub_level": 223, + "old_ttrating": 1300, + "oldi_rating": 4039, + "opt_laps_complete": 0, + "position": 3, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "4ba6db", + "color2": "61520", + "color3": "f08f00" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "cust_id": 447143, + "display_name": "Alex Mohr", + "aggregate_champ_points": 164, + "ai": false, + "average_lap": 1360306, + "best_lap_num": 1, + "best_lap_time": 1333971, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2025-12-28T20:35:16Z", + "best_qual_lap_num": 1, + "best_qual_lap_time": 1333971, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 119, + "car_name": "Porsche 718 Cayman GT4 Clubsport MR", + "carcfg": -1, + "champ_points": 0, + "class_interval": 15021, + "country_code": "DE", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 4, + "finish_position_in_class": 4, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "4b2f01", + "color2": "68a117", + "color3": "a600ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 15021, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 119, + "pattern": 1, + "color1": "FF0000", + "color2": "00FF00", + "color3": "0000FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "9", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 19.493876, + "new_license_level": 6, + "new_sub_level": 295, + "new_ttrating": 1350, + "newi_rating": 3792, + "old_cpi": 17.379528, + "old_license_level": 6, + "old_sub_level": 276, + "old_ttrating": 1350, + "oldi_rating": 3731, + "opt_laps_complete": 0, + "position": 4, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 22, + "color1": "000000", + "color2": "ff3324", + "color3": "b82f37" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "cust_id": 68540, + "display_name": "Erik Tveit", + "aggregate_champ_points": 12, + "ai": false, + "average_lap": 1342071, + "best_lap_num": 2, + "best_lap_time": 1336744, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2025-12-28T20:37:35Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1336744, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 157, + "car_name": "Mercedes-AMG GT4", + "carcfg": -1, + "champ_points": 0, + "class_interval": 17794, + "country_code": "NO", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 5, + "finish_position_in_class": 5, + "flair_id": 156, + "flair_name": "Norway", + "flair_shortname": "NOR", + "friend": false, + "helmet": { + "pattern": 49, + "color1": "222222", + "color2": "031adc", + "color3": "0075ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 17794, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 157, + "pattern": 16, + "color1": "222222", + "color2": "031ADC", + "color3": "0075FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "13", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 38.142296, + "new_license_level": 15, + "new_sub_level": 321, + "new_ttrating": 1350, + "newi_rating": 2759, + "old_cpi": 39.981483, + "old_license_level": 15, + "old_sub_level": 328, + "old_ttrating": 1350, + "oldi_rating": 2834, + "opt_laps_complete": 0, + "position": 5, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 17, + "color1": "2a3ef7", + "color2": "222222", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "cust_id": 567617, + "display_name": "David Lourd", + "aggregate_champ_points": 139, + "ai": false, + "average_lap": 1349374, + "best_lap_num": 2, + "best_lap_time": 1337915, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2025-12-28T20:37:39Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1337915, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 157, + "car_name": "Mercedes-AMG GT4", + "carcfg": -1, + "champ_points": 0, + "class_interval": 18965, + "country_code": "US", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 6, + "finish_position_in_class": 6, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 22, + "color1": "111111", + "color2": "f904de", + "color3": "47ffd4", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 18965, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 157, + "pattern": 24, + "color1": "ebe1e1", + "color2": "3b9cda", + "color3": "f2f977", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "10", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 22.579052, + "new_license_level": 10, + "new_sub_level": 254, + "new_ttrating": 1350, + "newi_rating": 3699, + "old_cpi": 22.207924, + "old_license_level": 10, + "old_sub_level": 252, + "old_ttrating": 1350, + "oldi_rating": 3663, + "opt_laps_complete": 0, + "position": 6, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 15, + "color1": "7e7e7e", + "color2": "ff00f5", + "color3": "ececec" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "cust_id": 733441, + "display_name": "Christian Menezes", + "aggregate_champ_points": 95, + "ai": false, + "average_lap": 1343019, + "best_lap_num": 2, + "best_lap_time": 1338345, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2025-12-28T20:37:33Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1338345, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 119, + "car_name": "Porsche 718 Cayman GT4 Clubsport MR", + "carcfg": -1, + "champ_points": 0, + "class_interval": 19395, + "country_code": "CA", + "division": 0, + "division_name": "Division 1", + "drop_race": false, + "finish_position": 7, + "finish_position_in_class": 7, + "flair_id": 39, + "flair_name": "Canada", + "flair_shortname": "CAN", + "friend": false, + "helmet": { + "pattern": 44, + "color1": "b82f37", + "color2": "284a94", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 19395, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 119, + "pattern": 23, + "color1": "000dff", + "color2": "9b95b5", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "4", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 30.262087, + "new_license_level": 17, + "new_sub_level": 142, + "new_ttrating": 1350, + "newi_rating": 6158, + "old_cpi": 34.74223, + "old_license_level": 18, + "old_sub_level": 207, + "old_ttrating": 1350, + "oldi_rating": 6213, + "opt_laps_complete": 0, + "position": 7, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "b82f37", + "color2": "284a94", + "color3": "111111" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "cust_id": 1308876, + "display_name": "Kirill Dronkin", + "aggregate_champ_points": 38, + "ai": false, + "average_lap": 1338956, + "best_lap_num": 1, + "best_lap_time": 1338956, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2025-12-28T20:35:17Z", + "best_qual_lap_num": 1, + "best_qual_lap_time": 1338956, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 189, + "car_name": "BMW M4 G82 GT4 Evo", + "carcfg": -1, + "champ_points": 0, + "class_interval": 20006, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 8, + "finish_position_in_class": 8, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 22, + "color1": "000000", + "color2": "45768d", + "color3": "45768d", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": 20006, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 189, + "pattern": 0, + "color1": "45768d", + "color2": "45768d", + "color3": "45768d", + "number_font": 0, + "number_color1": "45768d", + "number_color2": "45768d", + "number_color3": "45768d", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "15", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 32.477016, + "new_license_level": 14, + "new_sub_level": 253, + "new_ttrating": 1350, + "newi_rating": 2611, + "old_cpi": 37.53504, + "old_license_level": 14, + "old_sub_level": 275, + "old_ttrating": 1350, + "oldi_rating": 2654, + "opt_laps_complete": 0, + "position": 8, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "231f20", + "color2": "e41e26", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "cust_id": 500287, + "display_name": "Adam Collin", + "aggregate_champ_points": 133, + "ai": false, + "average_lap": 1340908, + "best_lap_num": 2, + "best_lap_time": 1340908, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2025-12-28T20:38:19Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1340908, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 135, + "car_name": "McLaren 570S GT4", + "carcfg": -1, + "champ_points": 0, + "class_interval": 21958, + "country_code": "GB", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 9, + "finish_position_in_class": 9, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 67, + "color1": "000000", + "color2": "00ffb0", + "color3": "b8ff00", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": 21958, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 135, + "pattern": 18, + "color1": "ffffff", + "color2": "d2ff00", + "color3": "5e00ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 106, + "sponsor2": 188, + "car_number": "19", + "wheel_color": "d2ff00", + "rim_type": 3 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 35.164497, + "new_license_level": 11, + "new_sub_level": 365, + "new_ttrating": 1350, + "newi_rating": 2507, + "old_cpi": 32.45349, + "old_license_level": 11, + "old_sub_level": 353, + "old_ttrating": 1350, + "oldi_rating": 2445, + "opt_laps_complete": 0, + "position": 9, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "000000", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "cust_id": 890016, + "display_name": "Hank Belane", + "aggregate_champ_points": 101, + "ai": false, + "average_lap": 1349668, + "best_lap_num": 2, + "best_lap_time": 1343459, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2025-12-28T20:37:48Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1343459, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 157, + "car_name": "Mercedes-AMG GT4", + "carcfg": -1, + "champ_points": 0, + "class_interval": 24509, + "country_code": "DE", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 10, + "finish_position_in_class": 10, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "111111", + "color2": "020059", + "color3": "050062", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 24509, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 157, + "pattern": 0, + "color1": "ff0000", + "color2": "135324", + "color3": "5e5e5e", + "number_font": 56, + "number_color1": "ff0000", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "25", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 31.316628, + "new_license_level": 14, + "new_sub_level": 247, + "new_ttrating": 1350, + "newi_rating": 2209, + "old_cpi": 36.14177, + "old_license_level": 15, + "old_sub_level": 313, + "old_ttrating": 1350, + "oldi_rating": 2173, + "opt_laps_complete": 0, + "position": 10, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "111111", + "color2": "135324", + "color3": "5e5e5e" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "cust_id": 956892, + "display_name": "Oliver Holt", + "aggregate_champ_points": 145, + "ai": false, + "average_lap": 1350308, + "best_lap_num": 2, + "best_lap_time": 1344179, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2025-12-28T20:37:40Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1344179, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 119, + "car_name": "Porsche 718 Cayman GT4 Clubsport MR", + "carcfg": -1, + "champ_points": 0, + "class_interval": 25229, + "country_code": "GB", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 11, + "finish_position_in_class": 11, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 60, + "color1": "212121", + "color2": "ff2d2d", + "color3": "ffd033", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": 25229, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 119, + "pattern": 0, + "color1": "ffffff", + "color2": "3897ff", + "color3": "1f1f1f", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "7", + "wheel_color": "daa764", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 40.849358, + "new_license_level": 18, + "new_sub_level": 232, + "new_ttrating": 1350, + "newi_rating": 3969, + "old_cpi": 43.049812, + "old_license_level": 18, + "old_sub_level": 240, + "old_ttrating": 1350, + "oldi_rating": 3932, + "opt_laps_complete": 0, + "position": 11, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "dedede", + "color2": "fbaf01", + "color3": "5a5a5a" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "cust_id": 1041380, + "display_name": "Markus Buttliger", + "aggregate_champ_points": 19, + "ai": false, + "average_lap": 1349822, + "best_lap_num": 2, + "best_lap_time": 1344787, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2025-12-28T20:37:42Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1344787, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 157, + "car_name": "Mercedes-AMG GT4", + "carcfg": -1, + "champ_points": 0, + "class_interval": 25837, + "country_code": "CH", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 12, + "finish_position_in_class": 12, + "flair_id": 204, + "flair_name": "Switzerland", + "flair_shortname": "CHE", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "ffffff", + "color2": "0ada00", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 25837, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 157, + "pattern": 12, + "color1": "0f0f14", + "color2": "860d0d", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "27", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 31.577557, + "new_license_level": 14, + "new_sub_level": 248, + "new_ttrating": 1350, + "newi_rating": 2114, + "old_cpi": 32.20318, + "old_license_level": 14, + "old_sub_level": 251, + "old_ttrating": 1350, + "oldi_rating": 2163, + "opt_laps_complete": 0, + "position": 12, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "ffffff", + "color2": "0ada00", + "color3": "111111" + }, + "watched": false, + "weight_penalty_kg": -1 + }, { - "subsession_id": 82799828, - "event_strength_of_field": 8977 + "cust_id": 166182, + "display_name": "Joe Aguilar", + "aggregate_champ_points": 152, + "ai": false, + "average_lap": 1350861, + "best_lap_num": 2, + "best_lap_time": 1345946, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2025-12-28T20:38:03Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1345946, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 204, + "car_name": "Ford Mustang GT4", + "carcfg": -1, + "champ_points": 0, + "class_interval": 26996, + "country_code": "US", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 13, + "finish_position_in_class": 13, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 36, + "color1": "ffffff", + "color2": "1400ff", + "color3": "00a3ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 26996, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 204, + "pattern": 0, + "color1": "ffffff", + "color2": "ffffff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "000000", + "number_color2": "ffffff", + "number_color3": "777777", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "11", + "wheel_color": "d8804f", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 53.745346, + "new_license_level": 19, + "new_sub_level": 317, + "new_ttrating": 1318, + "newi_rating": 3616, + "old_cpi": 51.80095, + "old_license_level": 19, + "old_sub_level": 311, + "old_ttrating": 1318, + "oldi_rating": 3564, + "opt_laps_complete": 0, + "position": 13, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 32, + "color1": "eeeff0", + "color2": "202020", + "color3": "534741" + }, + "watched": false, + "weight_penalty_kg": -1 }, { - "subsession_id": 82799829, - "event_strength_of_field": 6816 + "cust_id": 170870, + "display_name": "Jonas Sandstede", + "aggregate_champ_points": 126, + "ai": false, + "average_lap": 1349421, + "best_lap_num": 2, + "best_lap_time": 1347162, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2025-12-28T20:38:01Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1347162, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 157, + "car_name": "Mercedes-AMG GT4", + "carcfg": -1, + "champ_points": 0, + "class_interval": 28212, + "country_code": "DE", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 14, + "finish_position_in_class": 14, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 45, + "color1": "000000", + "color2": "43462f", + "color3": "b4ba53", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": 28212, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 157, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "16", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 30.390991, + "new_license_level": 17, + "new_sub_level": 142, + "new_ttrating": 1350, + "newi_rating": 2662, + "old_cpi": 29.790945, + "old_license_level": 17, + "old_sub_level": 139, + "old_ttrating": 1350, + "oldi_rating": 2612, + "opt_laps_complete": 0, + "position": 14, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 8, + "color1": "000000", + "color2": "ebed21", + "color3": "21291f" + }, + "watched": false, + "weight_penalty_kg": -1 }, { - "subsession_id": 82799830, - "event_strength_of_field": 5678 + "cust_id": 1386334, + "display_name": "Vili Tero", + "aggregate_champ_points": 114, + "ai": false, + "average_lap": 1353153, + "best_lap_num": 2, + "best_lap_time": 1347562, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2025-12-28T20:37:48Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1347562, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 157, + "car_name": "Mercedes-AMG GT4", + "carcfg": -1, + "champ_points": 0, + "class_interval": 28612, + "country_code": "FI", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 15, + "finish_position_in_class": 15, + "flair_id": 70, + "flair_name": "Finland", + "flair_shortname": "FIN", + "friend": false, + "helmet": { + "pattern": 20, + "color1": "00fff0", + "color2": "00e0ff", + "color3": "00e0ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 28612, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 157, + "pattern": 15, + "color1": "000000", + "color2": "f1e700", + "color3": "000000", + "number_font": 0, + "number_color1": "f7ee0a", + "number_color2": "ffffff", + "number_color3": "ff0000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "30", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 26.440548, + "new_license_level": 7, + "new_sub_level": 379, + "new_ttrating": 1350, + "newi_rating": 2141, + "old_cpi": 24.163597, + "old_license_level": 7, + "old_sub_level": 365, + "old_ttrating": 1350, + "oldi_rating": 2089, + "opt_laps_complete": 0, + "position": 15, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 15, + "color1": "00fff7", + "color2": "00fff7", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 }, { - "subsession_id": 82799831, - "event_strength_of_field": 5040 + "cust_id": 412200, + "display_name": "Connor Clubine", + "aggregate_champ_points": 120, + "ai": false, + "average_lap": 1358616, + "best_lap_num": 2, + "best_lap_time": 1348501, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2025-12-28T20:37:39Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1348501, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 157, + "car_name": "Mercedes-AMG GT4", + "carcfg": -1, + "champ_points": 0, + "class_interval": 29551, + "country_code": "CA", + "division": 0, + "division_name": "Division 1", + "drop_race": false, + "finish_position": 16, + "finish_position_in_class": 16, + "flair_id": 39, + "flair_name": "Canada", + "flair_shortname": "CAN", + "friend": false, + "helmet": { + "pattern": 10, + "color1": "389aff", + "color2": "ff0000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 29551, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 157, + "pattern": 23, + "color1": "00237d", + "color2": "f2f3fc", + "color3": "d6050e", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "d60500", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "5", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 52.611485, + "new_license_level": 18, + "new_sub_level": 270, + "new_ttrating": 1350, + "newi_rating": 4348, + "old_cpi": 50.59205, + "old_license_level": 18, + "old_sub_level": 264, + "old_ttrating": 1350, + "oldi_rating": 4347, + "opt_laps_complete": 0, + "position": 16, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 21, + "color1": "001f6e", + "color2": "ffffff", + "color3": "d60500" + }, + "watched": false, + "weight_penalty_kg": -1 }, { - "subsession_id": 82799832, - "event_strength_of_field": 4606 + "cust_id": 1197334, + "display_name": "Francisco Cores", + "aggregate_champ_points": 57, + "ai": false, + "average_lap": 1351320, + "best_lap_num": 2, + "best_lap_time": 1349190, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2025-12-28T20:37:52Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1349190, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 189, + "car_name": "BMW M4 G82 GT4 Evo", + "carcfg": -1, + "champ_points": 0, + "class_interval": 30240, + "country_code": "AR", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 17, + "finish_position_in_class": 17, + "flair_id": 13, + "flair_name": "Argentina", + "flair_shortname": "ARG", + "friend": false, + "helmet": { + "pattern": 6, + "color1": "1a1a1a", + "color2": "268d19", + "color3": "1a1a1a", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 30240, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 189, + "pattern": 12, + "color1": "00c1ff", + "color2": "ffffff", + "color3": "00d9ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "1c00ff", + "number_color3": "ff0000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "18", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 27.755468, + "new_license_level": 17, + "new_sub_level": 128, + "new_ttrating": 1350, + "newi_rating": 2476, + "old_cpi": 29.861366, + "old_license_level": 17, + "old_sub_level": 140, + "old_ttrating": 1350, + "oldi_rating": 2495, + "opt_laps_complete": 0, + "position": 17, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 2, + "color1": "000000", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 }, { - "subsession_id": 82799833, - "event_strength_of_field": 4245 + "cust_id": 354144, + "display_name": "Xavier Abellan", + "aggregate_champ_points": 25, + "ai": false, + "average_lap": 1359539, + "best_lap_num": 2, + "best_lap_time": 1350341, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2025-12-28T20:38:24Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1350341, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 157, + "car_name": "Mercedes-AMG GT4", + "carcfg": -1, + "champ_points": 0, + "class_interval": 31391, + "country_code": "ES", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 18, + "finish_position_in_class": 18, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 42, + "color1": "e4380c", + "color2": "070808", + "color3": "4100da", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 31391, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 157, + "pattern": 2, + "color1": "e4380c", + "color2": "070808", + "color3": "4100da", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "28", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 30.233068, + "new_license_level": 14, + "new_sub_level": 242, + "new_ttrating": 1350, + "newi_rating": 2095, + "old_cpi": 32.681377, + "old_license_level": 14, + "old_sub_level": 254, + "old_ttrating": 1350, + "oldi_rating": 2137, + "opt_laps_complete": 0, + "position": 18, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 27, + "color1": "2610BC", + "color2": "030202", + "color3": "B91B13" + }, + "watched": false, + "weight_penalty_kg": -1 }, { - "subsession_id": 82799834, - "event_strength_of_field": 3957 + "cust_id": 1326283, + "display_name": "Willian Schilling", + "aggregate_champ_points": 63, + "ai": false, + "average_lap": 1354181, + "best_lap_num": 1, + "best_lap_time": 1354181, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2025-12-28T20:35:46Z", + "best_qual_lap_num": 1, + "best_qual_lap_time": 1354181, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 189, + "car_name": "BMW M4 G82 GT4 Evo", + "carcfg": -1, + "champ_points": 0, + "class_interval": 35231, + "country_code": "BR", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 19, + "finish_position_in_class": 19, + "flair_id": 31, + "flair_name": "Brazil", + "flair_shortname": "BRA", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "9720c8", + "color2": "ffffff", + "color3": "171717", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 3, + "interval": 35231, + "laps_complete": 1, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 189, + "pattern": 14, + "color1": "9720C8", + "color2": "FFFFFF", + "color3": "171717", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "24", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 36.86136, + "new_license_level": 11, + "new_sub_level": 372, + "new_ttrating": 1311, + "newi_rating": 2177, + "old_cpi": 39.81942, + "old_license_level": 11, + "old_sub_level": 384, + "old_ttrating": 1311, + "oldi_rating": 2180, + "opt_laps_complete": 0, + "position": 19, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "b226fd", + "color2": "9a22ff", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 }, { - "subsession_id": 82799835, - "event_strength_of_field": 3742 + "cust_id": 1258349, + "display_name": "Sebastian Bignasca", + "aggregate_champ_points": 44, + "ai": false, + "average_lap": 1371456, + "best_lap_num": 2, + "best_lap_time": 1354468, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2025-12-28T20:37:42Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1354468, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 119, + "car_name": "Porsche 718 Cayman GT4 Clubsport MR", + "carcfg": -1, + "champ_points": 0, + "class_interval": 35518, + "country_code": "CH", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 20, + "finish_position_in_class": 20, + "flair_id": 204, + "flair_name": "Switzerland", + "flair_shortname": "CHE", + "friend": false, + "helmet": { + "pattern": 66, + "color1": "bd0904", + "color2": "184252", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": 35518, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 119, + "pattern": 10, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "e12424", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "21", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 35.977398, + "new_license_level": 14, + "new_sub_level": 268, + "new_ttrating": 1284, + "newi_rating": 2226, + "old_cpi": 36.12372, + "old_license_level": 14, + "old_sub_level": 269, + "old_ttrating": 1284, + "oldi_rating": 2251, + "opt_laps_complete": 0, + "position": 20, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "161717", + "color2": "da3727", + "color3": "111111" + }, + "watched": false, + "weight_penalty_kg": -1 }, { - "subsession_id": 82799836, - "event_strength_of_field": 3564 + "cust_id": 404356, + "display_name": "Alexis Montesdeoca", + "aggregate_champ_points": 69, + "ai": false, + "average_lap": 1362814, + "best_lap_num": 2, + "best_lap_time": 1362814, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2025-12-28T20:38:22Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1362814, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 189, + "car_name": "BMW M4 G82 GT4 Evo", + "carcfg": -1, + "champ_points": 0, + "class_interval": 43864, + "country_code": "EC", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 21, + "finish_position_in_class": 21, + "flair_id": 60, + "flair_name": "Ecuador", + "flair_shortname": "ECU", + "friend": false, + "helmet": { + "pattern": 22, + "color1": "2400ff", + "color2": "f2ff00", + "color3": "ff0036", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 2, + "interval": 43864, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 189, + "pattern": 2, + "color1": "FF0000", + "color2": "00FF00", + "color3": "0000FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "14", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 21.141125, + "new_license_level": 7, + "new_sub_level": 344, + "new_ttrating": 1350, + "newi_rating": 2770, + "old_cpi": 18.475237, + "old_license_level": 6, + "old_sub_level": 286, + "old_ttrating": 1350, + "oldi_rating": 2784, + "opt_laps_complete": 0, + "position": 21, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 27, + "color1": "e5ff13", + "color2": "0a0dff", + "color3": "ec1305" + }, + "watched": false, + "weight_penalty_kg": -1 }, { - "subsession_id": 82799837, - "event_strength_of_field": 3399 + "cust_id": 745711, + "display_name": "Raul Lopez Gimenez", + "aggregate_champ_points": 107, + "ai": false, + "average_lap": 1363659, + "best_lap_num": 2, + "best_lap_time": 1363659, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2025-12-28T20:38:06Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1363659, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 189, + "car_name": "BMW M4 G82 GT4 Evo", + "carcfg": -1, + "champ_points": 0, + "class_interval": 44709, + "country_code": "ES", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 22, + "finish_position_in_class": 22, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "0ada00", + "color2": "ffffff", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 3, + "interval": 44709, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 189, + "pattern": 8, + "color1": "0ADA00", + "color2": "FFFFFF", + "color3": "111111", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "22", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 43.376335, + "new_license_level": 15, + "new_sub_level": 341, + "new_ttrating": 1350, + "newi_rating": 2286, + "old_cpi": 44.127274, + "old_license_level": 15, + "old_sub_level": 343, + "old_ttrating": 1350, + "oldi_rating": 2245, + "opt_laps_complete": 0, + "position": 22, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "0ada00", + "color2": "ffffff", + "color3": "111111" + }, + "watched": false, + "weight_penalty_kg": -1 }, { - "subsession_id": 82799838, - "event_strength_of_field": 3276 + "cust_id": 1379179, + "display_name": "Christopher Bruchmann", + "aggregate_champ_points": 76, + "ai": false, + "average_lap": 1365579, + "best_lap_num": 1, + "best_lap_time": 1365579, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2025-12-28T20:35:24Z", + "best_qual_lap_num": 1, + "best_qual_lap_time": 1365579, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 150, + "car_name": "Aston Martin Vantage GT4", + "carcfg": -1, + "champ_points": 0, + "class_interval": 46629, + "country_code": "DE", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 23, + "finish_position_in_class": 23, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 68, + "color1": "000000", + "color2": "ffffff", + "color3": "0011ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 2, + "interval": 46629, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 150, + "pattern": 10, + "color1": "0500ff", + "color2": "a3d3ff", + "color3": "242424", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "29", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 25.648657, + "new_license_level": 11, + "new_sub_level": 316, + "new_ttrating": 1350, + "newi_rating": 2130, + "old_cpi": 23.869007, + "old_license_level": 11, + "old_sub_level": 305, + "old_ttrating": 1350, + "oldi_rating": 2119, + "opt_laps_complete": 0, + "position": 23, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "ec232d", + "color2": "ffffff", + "color3": "2e358f" + }, + "watched": false, + "weight_penalty_kg": -1 }, { - "subsession_id": 82799839, - "event_strength_of_field": 3129 + "cust_id": 571733, + "display_name": "Eder Incera Tristan", + "aggregate_champ_points": 82, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 157, + "car_name": "Mercedes-AMG GT4", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "ES", + "division": 1, + "division_name": "Division 2", + "drop_race": true, + "finish_position": 24, + "finish_position_in_class": 24, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 54, + "color1": "13050e", + "color2": "e7ff21", + "color3": "335e91", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 3, + "interval": -1, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 157, + "pattern": 10, + "color1": "d32811", + "color2": "f7f2f2", + "color3": "124bb9", + "number_font": 0, + "number_color1": "db1a1a", + "number_color2": "1682da", + "number_color3": "f7f1f1", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "8", + "wheel_color": "000000", + "rim_type": 3 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 39.171627, + "new_license_level": 17, + "new_sub_level": 182, + "new_ttrating": 1350, + "newi_rating": 3709, + "old_cpi": 43.90397, + "old_license_level": 17, + "old_sub_level": 199, + "old_ttrating": 1350, + "oldi_rating": 3733, + "opt_laps_complete": 0, + "position": 24, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 22, + "color1": "212021", + "color2": "cf3b21", + "color3": "4c4341" + }, + "watched": false, + "weight_penalty_kg": -1 }, { - "subsession_id": 82799840, - "event_strength_of_field": 3010 + "cust_id": 282380, + "display_name": "Andr\u00e9s Bertoni", + "aggregate_champ_points": 31, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 119, + "car_name": "Porsche 718 Cayman GT4 Clubsport MR", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "UY", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 25, + "finish_position_in_class": 25, + "flair_id": 224, + "flair_name": "Uruguay", + "flair_shortname": "URY", + "friend": false, + "helmet": { + "pattern": 4, + "color1": "FFFF1F", + "color2": "FFFFFF", + "color3": "214C9C", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 119, + "pattern": 0, + "color1": "a3a919", + "color2": "33d190", + "color3": "dc22ec", + "number_font": 0, + "number_color1": "000000", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 97, + "car_number": "12", + "wheel_color": "4a4c51", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 18.475933, + "new_license_level": 6, + "new_sub_level": 286, + "new_ttrating": 1350, + "newi_rating": 3323, + "old_cpi": 17.965443, + "old_license_level": 6, + "old_sub_level": 282, + "old_ttrating": 1350, + "oldi_rating": 3392, + "opt_laps_complete": 0, + "position": 25, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 25, + "color1": "FFFFFF", + "color2": "6D6E71", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 }, { - "subsession_id": 82799841, - "event_strength_of_field": 2905 + "cust_id": 1004165, + "display_name": "Th\u00e9o Barchino", + "aggregate_champ_points": 88, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 157, + "car_name": "Mercedes-AMG GT4", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "FR", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 26, + "finish_position_in_class": 26, + "flair_id": 71, + "flair_name": "France", + "flair_shortname": "FRA", + "friend": false, + "helmet": { + "pattern": 60, + "color1": "1100d7", + "color2": "ffffff", + "color3": "ff0000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 2, + "interval": -1, + "laps_complete": 1, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 157, + "pattern": 14, + "color1": "1100d7", + "color2": "ffffff", + "color3": "ff0000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "17", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 38.19449, + "new_license_level": 11, + "new_sub_level": 378, + "new_ttrating": 1350, + "newi_rating": 2555, + "old_cpi": 38.746334, + "old_license_level": 11, + "old_sub_level": 380, + "old_ttrating": 1350, + "oldi_rating": 2543, + "opt_laps_complete": 0, + "position": 26, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 21, + "color1": "da000f", + "color2": "3521b0", + "color3": "eeeeee" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "cust_id": 389959, + "display_name": "William Leblond", + "aggregate_champ_points": 50, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 150, + "car_name": "Aston Martin Vantage GT4", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "CA", + "division": 5, + "division_name": "Division 6", + "drop_race": false, + "finish_position": 27, + "finish_position_in_class": 27, + "flair_id": 39, + "flair_name": "Canada", + "flair_shortname": "CAN", + "friend": false, + "helmet": { + "pattern": 42, + "color1": "053363", + "color2": "ffffff", + "color3": "c61c2b", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 3, + "interval": -1, + "laps_complete": 1, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 150, + "pattern": 24, + "color1": "0092ca", + "color2": "222831", + "color3": "eeeeee", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "012845", + "number_color3": "009fe3", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "20", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 33.43521, + "new_license_level": 18, + "new_sub_level": 201, + "new_ttrating": 1350, + "newi_rating": 2296, + "old_cpi": 34.73366, + "old_license_level": 18, + "old_sub_level": 207, + "old_ttrating": 1350, + "oldi_rating": 2316, + "opt_laps_complete": 0, + "position": 27, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "053363", + "color2": "ffffff", + "color3": "c61c2b" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "cust_id": 1180318, + "display_name": "Cedric Fuchs", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 157, + "car_name": "Mercedes-AMG GT4", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 28, + "finish_position_in_class": 28, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 14, + "color1": "000000", + "color2": "0070ff", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 157, + "pattern": 3, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "000000", + "number_color2": "f50000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "23", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 20.959383, + "new_license_level": 10, + "new_sub_level": 242, + "new_ttrating": 1350, + "newi_rating": 2121, + "old_cpi": 20.959383, + "old_license_level": 10, + "old_sub_level": 242, + "old_ttrating": 1350, + "oldi_rating": 2187, + "opt_laps_complete": 0, + "position": 28, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "0dff00", + "color2": "000000", + "color3": "00ff0a" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "cust_id": 399652, + "display_name": "Victor Hansen", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 189, + "car_name": "BMW M4 G82 GT4 Evo", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "DK", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 29, + "finish_position_in_class": 29, + "flair_id": 56, + "flair_name": "Denmark", + "flair_shortname": "DNK", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "a9790e", + "color2": "013e62", + "color3": "0093ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 189, + "pattern": 2, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "26", + "wheel_color": "a9790e", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 21.767754, + "new_license_level": 13, + "new_sub_level": 148, + "new_ttrating": 1350, + "newi_rating": 2105, + "old_cpi": 21.767754, + "old_license_level": 13, + "old_sub_level": 148, + "old_ttrating": 1350, + "oldi_rating": 2171, + "opt_laps_complete": 0, + "position": 29, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 22, + "color1": "013e62", + "color2": "0093ff", + "color3": "a9790e" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ] + }, + { + "simsession_number": 0, + "simsession_name": "RACE", + "simsession_type": 6, + "simsession_type_name": "Race", + "simsession_subtype": 0, + "weather_result": { + "avg_skies": 2, + "avg_cloud_cover_pct": 76.3006, + "min_cloud_cover_pct": 73.463615, + "max_cloud_cover_pct": 78.78811, + "temp_units": 1, + "avg_temp": 18.46056, + "min_temp": 18.458582, + "max_temp": 18.462454, + "avg_rel_humidity": 95.140175, + "wind_units": 1, + "avg_wind_speed": 10.545322, + "min_wind_speed": 9.973377, + "max_wind_speed": 11.128765, + "avg_wind_dir": 0, + "max_fog": 0, + "fog_time_pct": 0, + "precip_time_pct": 100, + "precip_mm": 0, + "precip_mm2hr_before_session": 0, + "simulated_start_time": "2026-04-01T18:55:00" + }, + "results": [ + { + "cust_id": 473030, + "display_name": "Lukas Schwenk", + "aggregate_champ_points": 184, + "ai": false, + "average_lap": 1319436, + "best_lap_num": 4, + "best_lap_time": 1317601, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 204, + "car_name": "Ford Mustang GT4", + "carcfg": -1, + "champ_points": 184, + "class_interval": 0, + "country_code": "DE", + "division": 0, + "division_name": "Division 1", + "drop_race": false, + "finish_position": 0, + "finish_position_in_class": 0, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 57, + "color1": "002bff", + "color2": "f7f7f7", + "color3": "33ff00", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 2, + "interval": 0, + "laps_complete": 10, + "laps_lead": 10, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 204, + "pattern": 24, + "color1": "002BFF", + "color2": "F7F7F7", + "color3": "33FF00", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "3", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 42.273064, + "new_license_level": 15, + "new_sub_level": 337, + "new_ttrating": 1350, + "newi_rating": 6260, + "old_cpi": 40.27555, + "old_license_level": 15, + "old_sub_level": 330, + "old_ttrating": 1350, + "oldi_rating": 6223, + "opt_laps_complete": 0, + "position": 0, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 0, + "starting_position_in_class": 0, + "suit": { + "pattern": 21, + "color1": "0e0044", + "color2": "0139ff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 }, { - "subsession_id": 82799842, - "event_strength_of_field": 2822 + "cust_id": 432652, + "display_name": "Valentin Kluss", + "aggregate_champ_points": 177, + "ai": false, + "average_lap": 1323191, + "best_lap_num": 3, + "best_lap_time": 1318999, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 204, + "car_name": "Ford Mustang GT4", + "carcfg": -1, + "champ_points": 177, + "class_interval": 37560, + "country_code": "DE", + "division": 0, + "division_name": "Division 1", + "drop_race": false, + "finish_position": 1, + "finish_position_in_class": 1, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 65, + "color1": "000000", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 2, + "interval": 37560, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 204, + "pattern": 0, + "color1": "000000", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "1", + "wheel_color": "b3b3b3", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 32.966415, + "new_license_level": 17, + "new_sub_level": 155, + "new_ttrating": 1350, + "newi_rating": 7102, + "old_cpi": 29.836252, + "old_license_level": 17, + "old_sub_level": 140, + "old_ttrating": 1350, + "oldi_rating": 7082, + "opt_laps_complete": 0, + "position": 1, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 1, + "starting_position_in_class": 1, + "suit": { + "pattern": 32, + "color1": "000000", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 }, { - "subsession_id": 82799843, - "event_strength_of_field": 2745 + "cust_id": 1009174, + "display_name": "Diego Fern\u00e1ndez5", + "aggregate_champ_points": 171, + "ai": false, + "average_lap": 1331827, + "best_lap_num": 3, + "best_lap_time": 1322543, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 189, + "car_name": "BMW M4 G82 GT4 Evo", + "carcfg": -1, + "champ_points": 171, + "class_interval": 123921, + "country_code": "ES", + "division": 0, + "division_name": "Division 1", + "drop_race": true, + "finish_position": 2, + "finish_position_in_class": 2, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 14, + "color1": "0021ff", + "color2": "000000", + "color3": "0021ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 4, + "interval": 123921, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 189, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "000000", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "2", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 79.03055, + "new_license_level": 20, + "new_sub_level": 416, + "new_ttrating": 1295, + "newi_rating": 7084, + "old_cpi": 82.93489, + "old_license_level": 20, + "old_sub_level": 423, + "old_ttrating": 1295, + "oldi_rating": 7070, + "opt_laps_complete": 0, + "position": 2, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 2, + "starting_position_in_class": 2, + "suit": { + "pattern": 31, + "color1": "ff8a00", + "color2": "ffffff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 }, { - "subsession_id": 82799844, - "event_strength_of_field": 2660 + "cust_id": 447143, + "display_name": "Alex Mohr", + "aggregate_champ_points": 164, + "ai": false, + "average_lap": 1340108, + "best_lap_num": 8, + "best_lap_time": 1328880, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 119, + "car_name": "Porsche 718 Cayman GT4 Clubsport MR", + "carcfg": -1, + "champ_points": 164, + "class_interval": 206757, + "country_code": "DE", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 3, + "finish_position_in_class": 3, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "4b2f01", + "color2": "68a117", + "color3": "a600ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 2, + "interval": 206757, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 119, + "pattern": 1, + "color1": "FF0000", + "color2": "00FF00", + "color3": "0000FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "9", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 19.493876, + "new_license_level": 6, + "new_sub_level": 295, + "new_ttrating": 1350, + "newi_rating": 3792, + "old_cpi": 17.379528, + "old_license_level": 6, + "old_sub_level": 276, + "old_ttrating": 1350, + "oldi_rating": 3731, + "opt_laps_complete": 0, + "position": 3, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 4, + "starting_position_in_class": 4, + "suit": { + "pattern": 22, + "color1": "000000", + "color2": "ff3324", + "color3": "b82f37" + }, + "watched": false, + "weight_penalty_kg": -1 }, { - "subsession_id": 82799845, - "event_strength_of_field": 2577 + "cust_id": 1253123, + "display_name": "Finley Jones", + "aggregate_champ_points": 158, + "ai": false, + "average_lap": 1343404, + "best_lap_num": 3, + "best_lap_time": 1334109, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 119, + "car_name": "Porsche 718 Cayman GT4 Clubsport MR", + "carcfg": -1, + "champ_points": 158, + "class_interval": 239703, + "country_code": "GB", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 4, + "finish_position_in_class": 4, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 60, + "color1": "eb00ff", + "color2": "03ff05", + "color3": "0643f9", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 6, + "interval": 239703, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 119, + "pattern": 0, + "color1": "eb00ff", + "color2": "03ff05", + "color3": "0643f9", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "6", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 37.344536, + "new_license_level": 18, + "new_sub_level": 218, + "new_ttrating": 1300, + "newi_rating": 4087, + "old_cpi": 38.45716, + "old_license_level": 18, + "old_sub_level": 223, + "old_ttrating": 1300, + "oldi_rating": 4039, + "opt_laps_complete": 0, + "position": 4, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 3, + "starting_position_in_class": 3, + "suit": { + "pattern": 1, + "color1": "4ba6db", + "color2": "61520", + "color3": "f08f00" + }, + "watched": false, + "weight_penalty_kg": -1 }, { - "subsession_id": 82799846, - "event_strength_of_field": 2505 + "cust_id": 166182, + "display_name": "Joe Aguilar", + "aggregate_champ_points": 152, + "ai": false, + "average_lap": 1345918, + "best_lap_num": 3, + "best_lap_time": 1330955, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 204, + "car_name": "Ford Mustang GT4", + "carcfg": -1, + "champ_points": 152, + "class_interval": 264941, + "country_code": "US", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 5, + "finish_position_in_class": 5, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 36, + "color1": "ffffff", + "color2": "1400ff", + "color3": "00a3ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 2, + "interval": 264941, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 204, + "pattern": 0, + "color1": "ffffff", + "color2": "ffffff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "000000", + "number_color2": "ffffff", + "number_color3": "777777", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "11", + "wheel_color": "d8804f", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 53.745346, + "new_license_level": 19, + "new_sub_level": 317, + "new_ttrating": 1318, + "newi_rating": 3616, + "old_cpi": 51.80095, + "old_license_level": 19, + "old_sub_level": 311, + "old_ttrating": 1318, + "oldi_rating": 3564, + "opt_laps_complete": 0, + "position": 5, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 13, + "starting_position_in_class": 13, + "suit": { + "pattern": 32, + "color1": "eeeff0", + "color2": "202020", + "color3": "534741" + }, + "watched": false, + "weight_penalty_kg": -1 }, { - "subsession_id": 82799847, - "event_strength_of_field": 2437 + "cust_id": 956892, + "display_name": "Oliver Holt", + "aggregate_champ_points": 145, + "ai": false, + "average_lap": 1347793, + "best_lap_num": 7, + "best_lap_time": 1335275, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 119, + "car_name": "Porsche 718 Cayman GT4 Clubsport MR", + "carcfg": -1, + "champ_points": 145, + "class_interval": 283672, + "country_code": "GB", + "division": 1, + "division_name": "Division 2", + "drop_race": true, + "finish_position": 6, + "finish_position_in_class": 6, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 60, + "color1": "212121", + "color2": "ff2d2d", + "color3": "ffd033", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 6, + "interval": 283672, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 119, + "pattern": 0, + "color1": "ffffff", + "color2": "3897ff", + "color3": "1f1f1f", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "7", + "wheel_color": "daa764", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 40.849358, + "new_license_level": 18, + "new_sub_level": 232, + "new_ttrating": 1350, + "newi_rating": 3969, + "old_cpi": 43.049812, + "old_license_level": 18, + "old_sub_level": 240, + "old_ttrating": 1350, + "oldi_rating": 3932, + "opt_laps_complete": 0, + "position": 6, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 11, + "starting_position_in_class": 11, + "suit": { + "pattern": 1, + "color1": "dedede", + "color2": "fbaf01", + "color3": "5a5a5a" + }, + "watched": false, + "weight_penalty_kg": -1 }, { - "subsession_id": 82799848, - "event_strength_of_field": 2371 + "cust_id": 567617, + "display_name": "David Lourd", + "aggregate_champ_points": 139, + "ai": false, + "average_lap": 1348038, + "best_lap_num": 4, + "best_lap_time": 1330780, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 157, + "car_name": "Mercedes-AMG GT4", + "carcfg": -1, + "champ_points": 139, + "class_interval": 286073, + "country_code": "US", + "division": 1, + "division_name": "Division 2", + "drop_race": true, + "finish_position": 7, + "finish_position_in_class": 7, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 22, + "color1": "111111", + "color2": "f904de", + "color3": "47ffd4", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 7, + "interval": 286073, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 157, + "pattern": 24, + "color1": "ebe1e1", + "color2": "3b9cda", + "color3": "f2f977", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "10", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 22.579052, + "new_license_level": 10, + "new_sub_level": 254, + "new_ttrating": 1350, + "newi_rating": 3699, + "old_cpi": 22.207924, + "old_license_level": 10, + "old_sub_level": 252, + "old_ttrating": 1350, + "oldi_rating": 3663, + "opt_laps_complete": 0, + "position": 7, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 6, + "starting_position_in_class": 6, + "suit": { + "pattern": 15, + "color1": "7e7e7e", + "color2": "ff00f5", + "color3": "ececec" + }, + "watched": false, + "weight_penalty_kg": -1 }, { - "subsession_id": 82799849, - "event_strength_of_field": 2312 + "cust_id": 500287, + "display_name": "Adam Collin", + "aggregate_champ_points": 133, + "ai": false, + "average_lap": 1349251, + "best_lap_num": 4, + "best_lap_time": 1338446, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 135, + "car_name": "McLaren 570S GT4", + "carcfg": -1, + "champ_points": 133, + "class_interval": 298233, + "country_code": "GB", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 8, + "finish_position_in_class": 8, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 67, + "color1": "000000", + "color2": "00ffb0", + "color3": "b8ff00", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 298233, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 135, + "pattern": 18, + "color1": "ffffff", + "color2": "d2ff00", + "color3": "5e00ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 106, + "sponsor2": 188, + "car_number": "19", + "wheel_color": "d2ff00", + "rim_type": 3 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 35.164497, + "new_license_level": 11, + "new_sub_level": 365, + "new_ttrating": 1350, + "newi_rating": 2507, + "old_cpi": 32.45349, + "old_license_level": 11, + "old_sub_level": 353, + "old_ttrating": 1350, + "oldi_rating": 2445, + "opt_laps_complete": 0, + "position": 8, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 9, + "starting_position_in_class": 9, + "suit": { + "pattern": 33, + "color1": "000000", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 }, { - "subsession_id": 82799850, - "event_strength_of_field": 2259 + "cust_id": 170870, + "display_name": "Jonas Sandstede", + "aggregate_champ_points": 126, + "ai": false, + "average_lap": 1349867, + "best_lap_num": 5, + "best_lap_time": 1335871, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 157, + "car_name": "Mercedes-AMG GT4", + "carcfg": -1, + "champ_points": 126, + "class_interval": 304450, + "country_code": "DE", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 9, + "finish_position_in_class": 9, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 45, + "color1": "000000", + "color2": "43462f", + "color3": "b4ba53", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 5, + "interval": 304450, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 157, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "16", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 30.390991, + "new_license_level": 17, + "new_sub_level": 142, + "new_ttrating": 1350, + "newi_rating": 2662, + "old_cpi": 29.790945, + "old_license_level": 17, + "old_sub_level": 139, + "old_ttrating": 1350, + "oldi_rating": 2612, + "opt_laps_complete": 0, + "position": 9, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 14, + "starting_position_in_class": 14, + "suit": { + "pattern": 8, + "color1": "000000", + "color2": "ebed21", + "color3": "21291f" + }, + "watched": false, + "weight_penalty_kg": -1 }, { - "subsession_id": 82799851, - "event_strength_of_field": 2207 + "cust_id": 412200, + "display_name": "Connor Clubine", + "aggregate_champ_points": 120, + "ai": false, + "average_lap": 1352057, + "best_lap_num": 9, + "best_lap_time": 1338455, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 157, + "car_name": "Mercedes-AMG GT4", + "carcfg": -1, + "champ_points": 120, + "class_interval": 326365, + "country_code": "CA", + "division": 0, + "division_name": "Division 1", + "drop_race": false, + "finish_position": 10, + "finish_position_in_class": 10, + "flair_id": 39, + "flair_name": "Canada", + "flair_shortname": "CAN", + "friend": false, + "helmet": { + "pattern": 10, + "color1": "389aff", + "color2": "ff0000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 2, + "interval": 326365, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 157, + "pattern": 23, + "color1": "00237d", + "color2": "f2f3fc", + "color3": "d6050e", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "d60500", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "5", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 52.611485, + "new_license_level": 18, + "new_sub_level": 270, + "new_ttrating": 1350, + "newi_rating": 4348, + "old_cpi": 50.59205, + "old_license_level": 18, + "old_sub_level": 264, + "old_ttrating": 1350, + "oldi_rating": 4347, + "opt_laps_complete": 0, + "position": 10, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 16, + "starting_position_in_class": 16, + "suit": { + "pattern": 21, + "color1": "001f6e", + "color2": "ffffff", + "color3": "d60500" + }, + "watched": false, + "weight_penalty_kg": -1 }, { - "subsession_id": 82799852, - "event_strength_of_field": 2154 + "cust_id": 1386334, + "display_name": "Vili Tero", + "aggregate_champ_points": 114, + "ai": false, + "average_lap": 1356555, + "best_lap_num": 9, + "best_lap_time": 1340149, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 157, + "car_name": "Mercedes-AMG GT4", + "carcfg": -1, + "champ_points": 114, + "class_interval": 371336, + "country_code": "FI", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 11, + "finish_position_in_class": 11, + "flair_id": 70, + "flair_name": "Finland", + "flair_shortname": "FIN", + "friend": false, + "helmet": { + "pattern": 20, + "color1": "00fff0", + "color2": "00e0ff", + "color3": "00e0ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": 371336, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 157, + "pattern": 15, + "color1": "000000", + "color2": "f1e700", + "color3": "000000", + "number_font": 0, + "number_color1": "f7ee0a", + "number_color2": "ffffff", + "number_color3": "ff0000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "30", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 26.440548, + "new_license_level": 7, + "new_sub_level": 379, + "new_ttrating": 1350, + "newi_rating": 2141, + "old_cpi": 24.163597, + "old_license_level": 7, + "old_sub_level": 365, + "old_ttrating": 1350, + "oldi_rating": 2089, + "opt_laps_complete": 0, + "position": 11, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 15, + "starting_position_in_class": 15, + "suit": { + "pattern": 15, + "color1": "00fff7", + "color2": "00fff7", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 }, { - "subsession_id": 82799853, - "event_strength_of_field": 2096 + "cust_id": 745711, + "display_name": "Raul Lopez Gimenez", + "aggregate_champ_points": 107, + "ai": false, + "average_lap": 1357456, + "best_lap_num": 4, + "best_lap_time": 1340768, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 189, + "car_name": "BMW M4 G82 GT4 Evo", + "carcfg": -1, + "champ_points": 107, + "class_interval": 380414, + "country_code": "ES", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 12, + "finish_position_in_class": 12, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "0ada00", + "color2": "ffffff", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 4, + "interval": 380414, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 189, + "pattern": 8, + "color1": "0ADA00", + "color2": "FFFFFF", + "color3": "111111", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "22", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 43.376335, + "new_license_level": 15, + "new_sub_level": 341, + "new_ttrating": 1350, + "newi_rating": 2286, + "old_cpi": 44.127274, + "old_license_level": 15, + "old_sub_level": 343, + "old_ttrating": 1350, + "oldi_rating": 2245, + "opt_laps_complete": 0, + "position": 12, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 22, + "starting_position_in_class": 22, + "suit": { + "pattern": 1, + "color1": "0ada00", + "color2": "ffffff", + "color3": "111111" + }, + "watched": false, + "weight_penalty_kg": -1 }, { - "subsession_id": 82799854, - "event_strength_of_field": 2049 + "cust_id": 890016, + "display_name": "Hank Belane", + "aggregate_champ_points": 101, + "ai": false, + "average_lap": 1358012, + "best_lap_num": 9, + "best_lap_time": 1346289, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 157, + "car_name": "Mercedes-AMG GT4", + "carcfg": -1, + "champ_points": 101, + "class_interval": 385858, + "country_code": "DE", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 13, + "finish_position_in_class": 13, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "111111", + "color2": "020059", + "color3": "050062", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 14, + "interval": 385858, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 157, + "pattern": 0, + "color1": "ff0000", + "color2": "135324", + "color3": "5e5e5e", + "number_font": 56, + "number_color1": "ff0000", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "25", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 31.316628, + "new_license_level": 14, + "new_sub_level": 247, + "new_ttrating": 1350, + "newi_rating": 2209, + "old_cpi": 36.14177, + "old_license_level": 15, + "old_sub_level": 313, + "old_ttrating": 1350, + "oldi_rating": 2173, + "opt_laps_complete": 0, + "position": 13, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 10, + "starting_position_in_class": 10, + "suit": { + "pattern": 1, + "color1": "111111", + "color2": "135324", + "color3": "5e5e5e" + }, + "watched": false, + "weight_penalty_kg": -1 }, { - "subsession_id": 82799855, - "event_strength_of_field": 2004 + "cust_id": 733441, + "display_name": "Christian Menezes", + "aggregate_champ_points": 95, + "ai": false, + "average_lap": 1359115, + "best_lap_num": 3, + "best_lap_time": 1340002, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 119, + "car_name": "Porsche 718 Cayman GT4 Clubsport MR", + "carcfg": -1, + "champ_points": 95, + "class_interval": 396858, + "country_code": "CA", + "division": 0, + "division_name": "Division 1", + "drop_race": true, + "finish_position": 14, + "finish_position_in_class": 14, + "flair_id": 39, + "flair_name": "Canada", + "flair_shortname": "CAN", + "friend": false, + "helmet": { + "pattern": 44, + "color1": "b82f37", + "color2": "284a94", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 12, + "interval": 396858, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 119, + "pattern": 23, + "color1": "000dff", + "color2": "9b95b5", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "4", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 30.262087, + "new_license_level": 17, + "new_sub_level": 142, + "new_ttrating": 1350, + "newi_rating": 6158, + "old_cpi": 34.74223, + "old_license_level": 18, + "old_sub_level": 207, + "old_ttrating": 1350, + "oldi_rating": 6213, + "opt_laps_complete": 0, + "position": 14, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 7, + "starting_position_in_class": 7, + "suit": { + "pattern": 1, + "color1": "b82f37", + "color2": "284a94", + "color3": "111111" + }, + "watched": false, + "weight_penalty_kg": -1 }, { - "subsession_id": 82799856, - "event_strength_of_field": 1953 + "cust_id": 1004165, + "display_name": "Th\u00e9o Barchino", + "aggregate_champ_points": 88, + "ai": false, + "average_lap": 1359651, + "best_lap_num": 4, + "best_lap_time": 1337682, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 157, + "car_name": "Mercedes-AMG GT4", + "carcfg": -1, + "champ_points": 88, + "class_interval": 402404, + "country_code": "FR", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 15, + "finish_position_in_class": 15, + "flair_id": 71, + "flair_name": "France", + "flair_shortname": "FRA", + "friend": false, + "helmet": { + "pattern": 60, + "color1": "1100d7", + "color2": "ffffff", + "color3": "ff0000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 5, + "interval": 402404, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 157, + "pattern": 14, + "color1": "1100d7", + "color2": "ffffff", + "color3": "ff0000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "17", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 38.19449, + "new_license_level": 11, + "new_sub_level": 378, + "new_ttrating": 1350, + "newi_rating": 2555, + "old_cpi": 38.746334, + "old_license_level": 11, + "old_sub_level": 380, + "old_ttrating": 1350, + "oldi_rating": 2543, + "opt_laps_complete": 0, + "position": 15, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 26, + "starting_position_in_class": 26, + "suit": { + "pattern": 21, + "color1": "da000f", + "color2": "3521b0", + "color3": "eeeeee" + }, + "watched": false, + "weight_penalty_kg": -1 }, { - "subsession_id": 82799857, - "event_strength_of_field": 1903 + "cust_id": 571733, + "display_name": "Eder Incera Tristan", + "aggregate_champ_points": 82, + "ai": false, + "average_lap": 1360102, + "best_lap_num": 9, + "best_lap_time": 1336311, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 157, + "car_name": "Mercedes-AMG GT4", + "carcfg": -1, + "champ_points": 82, + "class_interval": 406900, + "country_code": "ES", + "division": 1, + "division_name": "Division 2", + "drop_race": true, + "finish_position": 16, + "finish_position_in_class": 16, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 54, + "color1": "13050e", + "color2": "e7ff21", + "color3": "335e91", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 6, + "interval": 406900, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 157, + "pattern": 10, + "color1": "d32811", + "color2": "f7f2f2", + "color3": "124bb9", + "number_font": 0, + "number_color1": "db1a1a", + "number_color2": "1682da", + "number_color3": "f7f1f1", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "8", + "wheel_color": "000000", + "rim_type": 3 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 39.171627, + "new_license_level": 17, + "new_sub_level": 182, + "new_ttrating": 1350, + "newi_rating": 3709, + "old_cpi": 43.90397, + "old_license_level": 17, + "old_sub_level": 199, + "old_ttrating": 1350, + "oldi_rating": 3733, + "opt_laps_complete": 0, + "position": 16, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 24, + "starting_position_in_class": 24, + "suit": { + "pattern": 22, + "color1": "212021", + "color2": "cf3b21", + "color3": "4c4341" + }, + "watched": false, + "weight_penalty_kg": -1 }, { - "subsession_id": 82799858, - "event_strength_of_field": 1856 + "cust_id": 1379179, + "display_name": "Christopher Bruchmann", + "aggregate_champ_points": 76, + "ai": false, + "average_lap": 1361760, + "best_lap_num": 9, + "best_lap_time": 1339795, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 150, + "car_name": "Aston Martin Vantage GT4", + "carcfg": -1, + "champ_points": 76, + "class_interval": 423470, + "country_code": "DE", + "division": 4, + "division_name": "Division 5", + "drop_race": true, + "finish_position": 17, + "finish_position_in_class": 17, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 68, + "color1": "000000", + "color2": "ffffff", + "color3": "0011ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": 423470, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 150, + "pattern": 10, + "color1": "0500ff", + "color2": "a3d3ff", + "color3": "242424", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "29", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 25.648657, + "new_license_level": 11, + "new_sub_level": 316, + "new_ttrating": 1350, + "newi_rating": 2130, + "old_cpi": 23.869007, + "old_license_level": 11, + "old_sub_level": 305, + "old_ttrating": 1350, + "oldi_rating": 2119, + "opt_laps_complete": 0, + "position": 17, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 23, + "starting_position_in_class": 23, + "suit": { + "pattern": 1, + "color1": "ec232d", + "color2": "ffffff", + "color3": "2e358f" + }, + "watched": false, + "weight_penalty_kg": -1 }, { - "subsession_id": 82799859, - "event_strength_of_field": 1809 + "cust_id": 404356, + "display_name": "Alexis Montesdeoca", + "aggregate_champ_points": 69, + "ai": false, + "average_lap": 1365096, + "best_lap_num": 4, + "best_lap_time": 1342414, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 189, + "car_name": "BMW M4 G82 GT4 Evo", + "carcfg": -1, + "champ_points": 69, + "class_interval": 456801, + "country_code": "EC", + "division": 1, + "division_name": "Division 2", + "drop_race": true, + "finish_position": 18, + "finish_position_in_class": 18, + "flair_id": 60, + "flair_name": "Ecuador", + "flair_shortname": "ECU", + "friend": false, + "helmet": { + "pattern": 22, + "color1": "2400ff", + "color2": "f2ff00", + "color3": "ff0036", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 456801, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 189, + "pattern": 2, + "color1": "FF0000", + "color2": "00FF00", + "color3": "0000FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "14", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 21.141125, + "new_license_level": 7, + "new_sub_level": 344, + "new_ttrating": 1350, + "newi_rating": 2770, + "old_cpi": 18.475237, + "old_license_level": 6, + "old_sub_level": 286, + "old_ttrating": 1350, + "oldi_rating": 2784, + "opt_laps_complete": 0, + "position": 18, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 21, + "starting_position_in_class": 21, + "suit": { + "pattern": 27, + "color1": "e5ff13", + "color2": "0a0dff", + "color3": "ec1305" + }, + "watched": false, + "weight_penalty_kg": -1 }, { - "subsession_id": 82799860, - "event_strength_of_field": 1769 + "cust_id": 1326283, + "display_name": "Willian Schilling", + "aggregate_champ_points": 63, + "ai": false, + "average_lap": 1370139, + "best_lap_num": 7, + "best_lap_time": 1346586, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 189, + "car_name": "BMW M4 G82 GT4 Evo", + "carcfg": -1, + "champ_points": 63, + "class_interval": 507216, + "country_code": "BR", + "division": 3, + "division_name": "Division 4", + "drop_race": true, + "finish_position": 19, + "finish_position_in_class": 19, + "flair_id": 31, + "flair_name": "Brazil", + "flair_shortname": "BRA", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "9720c8", + "color2": "ffffff", + "color3": "171717", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 8, + "interval": 507216, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 189, + "pattern": 14, + "color1": "9720C8", + "color2": "FFFFFF", + "color3": "171717", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "24", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 36.86136, + "new_license_level": 11, + "new_sub_level": 372, + "new_ttrating": 1311, + "newi_rating": 2177, + "old_cpi": 39.81942, + "old_license_level": 11, + "old_sub_level": 384, + "old_ttrating": 1311, + "oldi_rating": 2180, + "opt_laps_complete": 0, + "position": 19, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 19, + "starting_position_in_class": 19, + "suit": { + "pattern": 1, + "color1": "b226fd", + "color2": "9a22ff", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 }, { - "subsession_id": 82799861, - "event_strength_of_field": 1724 + "cust_id": 1197334, + "display_name": "Francisco Cores", + "aggregate_champ_points": 57, + "ai": false, + "average_lap": 1381873, + "best_lap_num": 6, + "best_lap_time": 1354486, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 189, + "car_name": "BMW M4 G82 GT4 Evo", + "carcfg": -1, + "champ_points": 57, + "class_interval": 624534, + "country_code": "AR", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 20, + "finish_position_in_class": 20, + "flair_id": 13, + "flair_name": "Argentina", + "flair_shortname": "ARG", + "friend": false, + "helmet": { + "pattern": 6, + "color1": "1a1a1a", + "color2": "268d19", + "color3": "1a1a1a", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 9, + "interval": 624534, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 189, + "pattern": 12, + "color1": "00c1ff", + "color2": "ffffff", + "color3": "00d9ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "1c00ff", + "number_color3": "ff0000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "18", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 27.755468, + "new_license_level": 17, + "new_sub_level": 128, + "new_ttrating": 1350, + "newi_rating": 2476, + "old_cpi": 29.861366, + "old_license_level": 17, + "old_sub_level": 140, + "old_ttrating": 1350, + "oldi_rating": 2495, + "opt_laps_complete": 0, + "position": 20, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 17, + "starting_position_in_class": 17, + "suit": { + "pattern": 2, + "color1": "000000", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 }, { - "subsession_id": 82799862, - "event_strength_of_field": 1676 + "cust_id": 389959, + "display_name": "William Leblond", + "aggregate_champ_points": 50, + "ai": false, + "average_lap": 1391406, + "best_lap_num": 7, + "best_lap_time": 1357373, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 150, + "car_name": "Aston Martin Vantage GT4", + "carcfg": -1, + "champ_points": 50, + "class_interval": 719963, + "country_code": "CA", + "division": 5, + "division_name": "Division 6", + "drop_race": false, + "finish_position": 21, + "finish_position_in_class": 21, + "flair_id": 39, + "flair_name": "Canada", + "flair_shortname": "CAN", + "friend": false, + "helmet": { + "pattern": 42, + "color1": "053363", + "color2": "ffffff", + "color3": "c61c2b", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 6, + "interval": 719963, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 150, + "pattern": 24, + "color1": "0092ca", + "color2": "222831", + "color3": "eeeeee", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "012845", + "number_color3": "009fe3", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "20", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 33.43521, + "new_license_level": 18, + "new_sub_level": 201, + "new_ttrating": 1350, + "newi_rating": 2296, + "old_cpi": 34.73366, + "old_license_level": 18, + "old_sub_level": 207, + "old_ttrating": 1350, + "oldi_rating": 2316, + "opt_laps_complete": 0, + "position": 21, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 27, + "starting_position_in_class": 27, + "suit": { + "pattern": 33, + "color1": "053363", + "color2": "ffffff", + "color3": "c61c2b" + }, + "watched": false, + "weight_penalty_kg": -1 }, { - "subsession_id": 82799863, - "event_strength_of_field": 1622 + "cust_id": 1258349, + "display_name": "Sebastian Bignasca", + "aggregate_champ_points": 44, + "ai": false, + "average_lap": 1443826, + "best_lap_num": 9, + "best_lap_time": 1355180, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 119, + "car_name": "Porsche 718 Cayman GT4 Clubsport MR", + "carcfg": -1, + "champ_points": 44, + "class_interval": 1244097, + "country_code": "CH", + "division": 2, + "division_name": "Division 3", + "drop_race": true, + "finish_position": 22, + "finish_position_in_class": 22, + "flair_id": 204, + "flair_name": "Switzerland", + "flair_shortname": "CHE", + "friend": false, + "helmet": { + "pattern": 66, + "color1": "bd0904", + "color2": "184252", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 4, + "interval": 1244097, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 119, + "pattern": 10, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "e12424", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "21", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 35.977398, + "new_license_level": 14, + "new_sub_level": 268, + "new_ttrating": 1284, + "newi_rating": 2226, + "old_cpi": 36.12372, + "old_license_level": 14, + "old_sub_level": 269, + "old_ttrating": 1284, + "oldi_rating": 2251, + "opt_laps_complete": 0, + "position": 22, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 20, + "starting_position_in_class": 20, + "suit": { + "pattern": 1, + "color1": "161717", + "color2": "da3727", + "color3": "111111" + }, + "watched": false, + "weight_penalty_kg": -1 }, { - "subsession_id": 82799864, - "event_strength_of_field": 1574 + "cust_id": 1308876, + "display_name": "Kirill Dronkin", + "aggregate_champ_points": 38, + "ai": false, + "average_lap": 1355760, + "best_lap_num": 3, + "best_lap_time": 1338025, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 189, + "car_name": "BMW M4 G82 GT4 Evo", + "carcfg": -1, + "champ_points": 38, + "class_interval": -1, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": true, + "finish_position": 23, + "finish_position_in_class": 23, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 22, + "color1": "000000", + "color2": "45768d", + "color3": "45768d", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 11, + "interval": -1, + "laps_complete": 9, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 189, + "pattern": 0, + "color1": "45768d", + "color2": "45768d", + "color3": "45768d", + "number_font": 0, + "number_color1": "45768d", + "number_color2": "45768d", + "number_color3": "45768d", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "15", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 32.477016, + "new_license_level": 14, + "new_sub_level": 253, + "new_ttrating": 1350, + "newi_rating": 2611, + "old_cpi": 37.53504, + "old_license_level": 14, + "old_sub_level": 275, + "old_ttrating": 1350, + "oldi_rating": 2654, + "opt_laps_complete": 0, + "position": 23, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 8, + "starting_position_in_class": 8, + "suit": { + "pattern": 1, + "color1": "231f20", + "color2": "e41e26", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 }, { - "subsession_id": 82799865, - "event_strength_of_field": 1510 + "cust_id": 282380, + "display_name": "Andr\u00e9s Bertoni", + "aggregate_champ_points": 31, + "ai": false, + "average_lap": 1731692, + "best_lap_num": 7, + "best_lap_time": 1372017, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 119, + "car_name": "Porsche 718 Cayman GT4 Clubsport MR", + "carcfg": -1, + "champ_points": 31, + "class_interval": -1, + "country_code": "UY", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 24, + "finish_position_in_class": 24, + "flair_id": 224, + "flair_name": "Uruguay", + "flair_shortname": "URY", + "friend": false, + "helmet": { + "pattern": 4, + "color1": "FFFF1F", + "color2": "FFFFFF", + "color3": "214C9C", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 6, + "interval": -1, + "laps_complete": 8, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 119, + "pattern": 0, + "color1": "a3a919", + "color2": "33d190", + "color3": "dc22ec", + "number_font": 0, + "number_color1": "000000", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 97, + "car_number": "12", + "wheel_color": "4a4c51", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 18.475933, + "new_license_level": 6, + "new_sub_level": 286, + "new_ttrating": 1350, + "newi_rating": 3323, + "old_cpi": 17.965443, + "old_license_level": 6, + "old_sub_level": 282, + "old_ttrating": 1350, + "oldi_rating": 3392, + "opt_laps_complete": 0, + "position": 24, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 25, + "starting_position_in_class": 25, + "suit": { + "pattern": 25, + "color1": "FFFFFF", + "color2": "6D6E71", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 }, { - "subsession_id": 82799866, - "event_strength_of_field": 1435 + "cust_id": 354144, + "display_name": "Xavier Abellan", + "aggregate_champ_points": 25, + "ai": false, + "average_lap": 1385040, + "best_lap_num": 7, + "best_lap_time": 1358045, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 157, + "car_name": "Mercedes-AMG GT4", + "carcfg": -1, + "champ_points": 25, + "class_interval": -1, + "country_code": "ES", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 25, + "finish_position_in_class": 25, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 42, + "color1": "e4380c", + "color2": "070808", + "color3": "4100da", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 8, + "interval": -1, + "laps_complete": 7, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 157, + "pattern": 2, + "color1": "e4380c", + "color2": "070808", + "color3": "4100da", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "28", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 30.233068, + "new_license_level": 14, + "new_sub_level": 242, + "new_ttrating": 1350, + "newi_rating": 2095, + "old_cpi": 32.681377, + "old_license_level": 14, + "old_sub_level": 254, + "old_ttrating": 1350, + "oldi_rating": 2137, + "opt_laps_complete": 0, + "position": 25, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 18, + "starting_position_in_class": 18, + "suit": { + "pattern": 27, + "color1": "2610BC", + "color2": "030202", + "color3": "B91B13" + }, + "watched": false, + "weight_penalty_kg": -1 }, { - "subsession_id": 82799867, - "event_strength_of_field": 1357 + "cust_id": 1041380, + "display_name": "Markus Buttliger", + "aggregate_champ_points": 19, + "ai": false, + "average_lap": 1450530, + "best_lap_num": 4, + "best_lap_time": 1344480, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 157, + "car_name": "Mercedes-AMG GT4", + "carcfg": -1, + "champ_points": 19, + "class_interval": -1, + "country_code": "CH", + "division": 2, + "division_name": "Division 3", + "drop_race": true, + "finish_position": 26, + "finish_position_in_class": 26, + "flair_id": 204, + "flair_name": "Switzerland", + "flair_shortname": "CHE", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "ffffff", + "color2": "0ada00", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 5, + "interval": -1, + "laps_complete": 7, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 157, + "pattern": 12, + "color1": "0f0f14", + "color2": "860d0d", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "27", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 31.577557, + "new_license_level": 14, + "new_sub_level": 248, + "new_ttrating": 1350, + "newi_rating": 2114, + "old_cpi": 32.20318, + "old_license_level": 14, + "old_sub_level": 251, + "old_ttrating": 1350, + "oldi_rating": 2163, + "opt_laps_complete": 0, + "position": 26, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 12, + "starting_position_in_class": 12, + "suit": { + "pattern": 1, + "color1": "ffffff", + "color2": "0ada00", + "color3": "111111" + }, + "watched": false, + "weight_penalty_kg": -1 }, { - "subsession_id": 82799868, - "event_strength_of_field": 1247 + "cust_id": 68540, + "display_name": "Erik Tveit", + "aggregate_champ_points": 12, + "ai": false, + "average_lap": 1365189, + "best_lap_num": 4, + "best_lap_time": 1335022, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 157, + "car_name": "Mercedes-AMG GT4", + "carcfg": -1, + "champ_points": 12, + "class_interval": -1, + "country_code": "NO", + "division": 1, + "division_name": "Division 2", + "drop_race": true, + "finish_position": 27, + "finish_position_in_class": 27, + "flair_id": 156, + "flair_name": "Norway", + "flair_shortname": "NOR", + "friend": false, + "helmet": { + "pattern": 49, + "color1": "222222", + "color2": "031adc", + "color3": "0075ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 6, + "interval": -1, + "laps_complete": 6, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 157, + "pattern": 16, + "color1": "222222", + "color2": "031ADC", + "color3": "0075FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "13", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 38.142296, + "new_license_level": 15, + "new_sub_level": 321, + "new_ttrating": 1350, + "newi_rating": 2759, + "old_cpi": 39.981483, + "old_license_level": 15, + "old_sub_level": 328, + "old_ttrating": 1350, + "oldi_rating": 2834, + "opt_laps_complete": 0, + "position": 27, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 5, + "starting_position_in_class": 5, + "suit": { + "pattern": 17, + "color1": "2a3ef7", + "color2": "222222", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 }, { - "subsession_id": 82799869, - "event_strength_of_field": 1208 + "cust_id": 1180318, + "display_name": "Cedric Fuchs", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 157, + "car_name": "Mercedes-AMG GT4", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 28, + "finish_position_in_class": 28, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 14, + "color1": "000000", + "color2": "0070ff", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 157, + "pattern": 3, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "000000", + "number_color2": "f50000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "23", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 20.959383, + "new_license_level": 10, + "new_sub_level": 242, + "new_ttrating": 1350, + "newi_rating": 2121, + "old_cpi": 20.959383, + "old_license_level": 10, + "old_sub_level": 242, + "old_ttrating": 1350, + "oldi_rating": 2187, + "opt_laps_complete": 0, + "position": 28, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 28, + "starting_position_in_class": 28, + "suit": { + "pattern": 1, + "color1": "0dff00", + "color2": "000000", + "color3": "00ff0a" + }, + "watched": false, + "weight_penalty_kg": -1 }, { - "subsession_id": 82799870, - "event_strength_of_field": 960 + "cust_id": 399652, + "display_name": "Victor Hansen", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2268, + "car_class_name": "GT4 Class", + "car_class_short_name": "GT4 Class", + "car_id": 189, + "car_name": "BMW M4 G82 GT4 Evo", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "DK", + "division": 2, + "division_name": "Division 3", + "drop_race": true, + "finish_position": 29, + "finish_position_in_class": 29, + "flair_id": 56, + "flair_name": "Denmark", + "flair_shortname": "DNK", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "a9790e", + "color2": "013e62", + "color3": "0093ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 189, + "pattern": 2, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "26", + "wheel_color": "a9790e", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 21.767754, + "new_license_level": 13, + "new_sub_level": 148, + "new_ttrating": 1350, + "newi_rating": 2105, + "old_cpi": 21.767754, + "old_license_level": 13, + "old_sub_level": 148, + "old_ttrating": 1350, + "oldi_rating": 2171, + "opt_laps_complete": 0, + "position": 29, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 29, + "starting_position_in_class": 29, + "suit": { + "pattern": 22, + "color1": "013e62", + "color2": "0093ff", + "color3": "a9790e" + }, + "watched": false, + "weight_penalty_kg": -1 } - ], - "special_event_type": -1, - "start_time": "2026-01-17T12:00:00Z", - "track": { - "category": "Road", - "category_id": 2, - "config_name": "Road Course", - "track_id": 192, - "track_name": "Daytona International Speedway" + ] + } + ], + "session_splits": [ + { + "subsession_id": 82263872, + "event_strength_of_field": 2965 }, - "track_state": { - "leave_marbles": true, - "practice_rubber": -1, - "qualify_rubber": -1, - "race_rubber": -1, - "warmup_rubber": -1 + { + "subsession_id": 82263873, + "event_strength_of_field": 1811 }, - "weather": { - "allow_fog": false, - "fog": 0, - "precip_mm2hr_before_final_session": 0, - "precip_mm_final_session": 0, - "precip_option": 8, - "precip_time_pct": 0, - "rel_humidity": 0, - "simulated_start_time": "2026-01-24T13:00:00", - "skies": 3, - "temp_units": 1, - "temp_value": 21, - "time_of_day": 0, - "track_water": 0, - "type": 3, - "version": 1, - "weather_var_initial": 0, - "weather_var_ongoing": 0, - "wind_dir": 0, - "wind_units": 1, - "wind_value": 3 + { + "subsession_id": 82263874, + "event_strength_of_field": 1604 + }, + { + "subsession_id": 82263875, + "event_strength_of_field": 1485 + }, + { + "subsession_id": 82263876, + "event_strength_of_field": 1370 + }, + { + "subsession_id": 82263877, + "event_strength_of_field": 1268 + }, + { + "subsession_id": 82263878, + "event_strength_of_field": 1169 + }, + { + "subsession_id": 82263879, + "event_strength_of_field": 1055 + }, + { + "subsession_id": 82263880, + "event_strength_of_field": 858 + }, + { + "subsession_id": 82263881, + "event_strength_of_field": 531 } + ], + "special_event_type": -1, + "start_time": "2025-12-28T20:30:00Z", + "track": { + "category": "Road", + "category_id": 2, + "config_name": "BES/WEC", + "track_id": 255, + "track_name": "N\u00fcrburgring Grand-Prix-Strecke" + }, + "track_state": { + "leave_marbles": false, + "practice_rubber": -1, + "qualify_rubber": -1, + "race_rubber": -1, + "warmup_rubber": -1 + }, + "weather": { + "allow_fog": false, + "fog": 0, + "precip_mm2hr_before_final_session": 0, + "precip_mm_final_session": 0, + "precip_option": 8, + "precip_time_pct": 100, + "rel_humidity": 0, + "simulated_start_time": "2026-04-01T18:20:00", + "skies": 2, + "temp_units": 1, + "temp_value": 18, + "time_of_day": 2, + "track_water": 0, + "type": 3, + "version": 1, + "weather_var_initial": 0, + "weather_var_ongoing": 0, + "wind_dir": 1, + "wind_units": 1, + "wind_value": 3 + } } \ No newline at end of file diff --git a/tests/mock_return_data/result_with_team.json b/tests/mock_return_data/result_with_team.json new file mode 100644 index 0000000..e9af085 --- /dev/null +++ b/tests/mock_return_data/result_with_team.json @@ -0,0 +1,51079 @@ +{ + "subsession_id": 82799850, + "allowed_licenses": [ + { + "group_name": "Class D", + "license_group": 2, + "max_license_level": 8, + "min_license_level": 8, + "parent_id": 298 + }, + { + "group_name": "Class C", + "license_group": 3, + "max_license_level": 12, + "min_license_level": 9, + "parent_id": 298 + }, + { + "group_name": "Class B", + "license_group": 4, + "max_license_level": 16, + "min_license_level": 13, + "parent_id": 298 + }, + { + "group_name": "Class A", + "license_group": 5, + "max_license_level": 20, + "min_license_level": 17, + "parent_id": 298 + }, + { + "group_name": "Pro", + "license_group": 6, + "max_license_level": 24, + "min_license_level": 21, + "parent_id": 298 + }, + { + "group_name": "Pro/WC", + "license_group": 7, + "max_license_level": 28, + "min_license_level": 25, + "parent_id": 298 + } + ], + "associated_subsession_ids": [ + 82799828, + 82799829, + 82799830, + 82799831, + 82799832, + 82799833, + 82799834, + 82799835, + 82799836, + 82799837, + 82799838, + 82799839, + 82799840, + 82799841, + 82799842, + 82799843, + 82799844, + 82799845, + 82799846, + 82799847, + 82799848, + 82799849, + 82799850, + 82799851, + 82799852, + 82799853, + 82799854, + 82799855, + 82799856, + 82799857, + 82799858, + 82799859, + 82799860, + 82799861, + 82799862, + 82799863, + 82799864, + 82799865, + 82799866, + 82799867, + 82799868, + 82799869, + 82799870 + ], + "can_protest": true, + "car_classes": [ + { + "car_class_id": 4029, + "short_name": "GTP", + "name": "GTP", + "strength_of_field": 2373, + "num_entries": 14, + "cars_in_class": [ + { + "car_id": 196 + }, + { + "car_id": 168 + }, + { + "car_id": 174 + } + ] + }, + { + "car_class_id": 2523, + "short_name": "Dallara P217", + "name": "Dallara P217", + "strength_of_field": 2390, + "num_entries": 12, + "cars_in_class": [ + { + "car_id": 128 + } + ] + }, + { + "car_class_id": 4011, + "short_name": "IMSA23", + "name": "IMSA23", + "strength_of_field": 2259, + "num_entries": 33, + "cars_in_class": [ + { + "car_id": 184 + }, + { + "car_id": 169 + }, + { + "car_id": 185 + }, + { + "car_id": 156 + }, + { + "car_id": 188 + }, + { + "car_id": 173 + }, + { + "car_id": 206 + } + ] + } + ], + "caution_type": 2, + "cooldown_minutes": 30, + "corners_per_lap": 12, + "damage_model": 0, + "driver_change_param1": -1, + "driver_change_param2": -1, + "driver_change_rule": 2, + "driver_changes": true, + "end_time": "2026-01-18T12:54:24Z", + "event_average_lap": 978772, + "event_best_lap_time": 934669, + "event_laps_complete": 883, + "event_strength_of_field": 2259, + "event_type": 5, + "event_type_name": "Race", + "heat_info_id": -1, + "license_category": "Sports_Car", + "license_category_id": 5, + "limit_minutes": 10080, + "max_team_drivers": 16, + "max_weeks": 1, + "min_team_drivers": 2, + "num_caution_laps": 0, + "num_cautions": 0, + "num_drivers": 231, + "num_laps_for_qual_average": 2, + "num_laps_for_solo_average": 5, + "num_lead_changes": 39, + "official_session": true, + "points_type": "race", + "private_session_id": -1, + "race_summary": { + "subsession_id": 82799850, + "average_lap": 978772, + "laps_complete": 883, + "num_cautions": 0, + "num_caution_laps": 0, + "num_lead_changes": 39, + "field_strength": 2259, + "num_opt_laps": 0, + "has_opt_path": false, + "special_event_type": 0, + "special_event_type_text": "Not a special event" + }, + "race_week_num": 0, + "results_restricted": false, + "season_id": 6072, + "season_name": "2026 24 Hours of Daytona Presented by VCO", + "season_quarter": 1, + "season_short_name": "2026 24 Hours of Daytona", + "season_year": 2026, + "series_id": 298, + "series_logo": "seriesid_298.png", + "series_name": "Daytona 24", + "series_short_name": "Daytona 24", + "session_id": 297959922, + "session_results": [ + { + "simsession_number": -2, + "simsession_name": "PRACTICE", + "simsession_type": 3, + "simsession_type_name": "Open Practice", + "simsession_subtype": 0, + "weather_result": { + "avg_skies": 3, + "avg_cloud_cover_pct": 99.99993, + "min_cloud_cover_pct": 99.980774, + "max_cloud_cover_pct": 100, + "temp_units": 1, + "avg_temp": 21.189583, + "min_temp": 21.136753, + "max_temp": 21.229076, + "avg_rel_humidity": 63.929794, + "wind_units": 1, + "avg_wind_speed": 10.637684, + "min_wind_speed": 9.83317, + "max_wind_speed": 11.340757, + "avg_wind_dir": 7, + "max_fog": 0, + "fog_time_pct": 0, + "precip_time_pct": 0, + "precip_mm": 0, + "precip_mm2hr_before_session": 0, + "simulated_start_time": "2026-01-24T13:00:00" + }, + "results": [ + { + "team_id": -361961, + "display_name": "Inside Curb Racing", + "aggregate_champ_points": 43, + "ai": false, + "average_lap": 959043, + "best_lap_num": 12, + "best_lap_time": 934875, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 0, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -361961, + "cust_id": 326217, + "display_name": "Wouter M Merks", + "aggregate_champ_points": 43, + "ai": false, + "average_lap": 952224, + "best_lap_num": 12, + "best_lap_time": 934875, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 0, + "country_code": "NL", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 0, + "finish_position_in_class": 0, + "flair_id": 146, + "flair_name": "Netherlands", + "flair_shortname": "NLD", + "friend": false, + "helmet": { + "pattern": 65, + "color1": "14fff8", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 10, + "interval": 0, + "laps_complete": 7, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 10, + "color1": "ffffff", + "color2": "ffffff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "1", + "wheel_color": "878787", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 139.78241, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 3051, + "old_cpi": 53.386677, + "old_license_level": 19, + "old_sub_level": 316, + "old_ttrating": 1350, + "oldi_rating": 3062, + "opt_laps_complete": 0, + "position": 0, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 2, + "color1": "000000", + "color2": "ffffff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -361961, + "cust_id": 1049323, + "display_name": "Thijn De Jong", + "aggregate_champ_points": 43, + "ai": false, + "average_lap": 964499, + "best_lap_num": 4, + "best_lap_time": 939916, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 5041, + "country_code": "NL", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 3, + "finish_position_in_class": 3, + "flair_id": 146, + "flair_name": "Netherlands", + "flair_shortname": "NLD", + "friend": false, + "helmet": { + "pattern": 0, + "color1": "ffffff", + "color2": "ffffff", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 4, + "interval": 5041, + "laps_complete": 5, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 10, + "color1": "ffffff", + "color2": "ffffff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "1", + "wheel_color": "878787", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 56.54951, + "new_license_level": 18, + "new_sub_level": 281, + "new_ttrating": 1374, + "newi_rating": 2575, + "old_cpi": 45.43084, + "old_license_level": 18, + "old_sub_level": 248, + "old_ttrating": 1374, + "oldi_rating": 2585, + "opt_laps_complete": 0, + "position": 3, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 2, + "color1": "000000", + "color2": "ffffff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 0, + "finish_position_in_class": 0, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 14, + "interval": 0, + "laps_complete": 12, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 10, + "color1": "ffffff", + "color2": "ffffff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "1", + "wheel_color": "878787", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 0, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 2, + "color1": "000000", + "color2": "ffffff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -379972, + "display_name": "Primal Racing 1", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 947611, + "best_lap_num": 9, + "best_lap_time": 938695, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 0, + "class_interval": 3820, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -379972, + "cust_id": 737050, + "display_name": "Magnus Mortensen2", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 947611, + "best_lap_num": 9, + "best_lap_time": 938695, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 0, + "class_interval": 3820, + "country_code": "DK", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 1, + "finish_position_in_class": 1, + "flair_id": 56, + "flair_name": "Denmark", + "flair_shortname": "DNK", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "000000", + "color2": "1c1a7b", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 4, + "interval": 3820, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "8", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 75.986855, + "new_license_level": 20, + "new_sub_level": 410, + "new_ttrating": 1350, + "newi_rating": 2622, + "old_cpi": 100.1537, + "old_license_level": 20, + "old_sub_level": 452, + "old_ttrating": 1350, + "oldi_rating": 2672, + "opt_laps_complete": 0, + "position": 1, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "f1732e", + "color2": "372a75", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 1, + "finish_position_in_class": 1, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 4, + "interval": 3820, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "8", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 1, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "f1732e", + "color2": "372a75", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -246761, + "display_name": "Vortex Racing Alpha", + "aggregate_champ_points": 32, + "ai": false, + "average_lap": 946980, + "best_lap_num": 13, + "best_lap_time": 939223, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 4348, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -246761, + "cust_id": 447778, + "display_name": "craig Benefiel", + "aggregate_champ_points": 32, + "ai": false, + "average_lap": 946980, + "best_lap_num": 13, + "best_lap_time": 939223, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 4348, + "country_code": "US", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 2, + "finish_position_in_class": 2, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "111111", + "color2": "cccccc", + "color3": "ed1c24", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 14, + "interval": 4348, + "laps_complete": 14, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 5, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 2, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "51", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 76.59716, + "new_license_level": 19, + "new_sub_level": 370, + "new_ttrating": 1350, + "newi_rating": 1974, + "old_cpi": 43.42212, + "old_license_level": 18, + "old_sub_level": 241, + "old_ttrating": 1350, + "oldi_rating": 1991, + "opt_laps_complete": 0, + "position": 2, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 27, + "color1": "111111", + "color2": "83ccff", + "color3": "cccccc" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 2, + "finish_position_in_class": 2, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 14, + "interval": 4348, + "laps_complete": 14, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 5, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 2, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "51", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 2, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 27, + "color1": "111111", + "color2": "83ccff", + "color3": "cccccc" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -370856, + "display_name": "Crayola Advanced Engineering", + "aggregate_champ_points": 140, + "ai": false, + "average_lap": 961567, + "best_lap_num": 9, + "best_lap_time": 943057, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8182, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -370856, + "cust_id": 580584, + "display_name": "Adam W Lewis", + "aggregate_champ_points": 140, + "ai": false, + "average_lap": 950923, + "best_lap_num": 9, + "best_lap_time": 943057, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8182, + "country_code": "GB", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 4, + "finish_position_in_class": 4, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 23, + "color1": "ff00a4", + "color2": "adff00", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 4, + "interval": 8182, + "laps_complete": 5, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 10, + "color1": "ffffff", + "color2": "0019ff", + "color3": "111111", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "7", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 112.93226, + "new_license_level": 20, + "new_sub_level": 471, + "new_ttrating": 1178, + "newi_rating": 2293, + "old_cpi": 75.35843, + "old_license_level": 20, + "old_sub_level": 409, + "old_ttrating": 1178, + "oldi_rating": 2265, + "opt_laps_complete": 0, + "position": 4, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 26, + "color1": "ffffff", + "color2": "004225", + "color3": "d4af37" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -370856, + "cust_id": 1070827, + "display_name": "Alexander Wainman", + "aggregate_champ_points": 140, + "ai": false, + "average_lap": 970082, + "best_lap_num": 2, + "best_lap_time": 950272, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 15397, + "country_code": "GB", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 14, + "finish_position_in_class": 14, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 35, + "color1": "6e00ff", + "color2": "ff00ff", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 15397, + "laps_complete": 5, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 10, + "color1": "ffffff", + "color2": "0019ff", + "color3": "111111", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "7", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 113.07297, + "new_license_level": 20, + "new_sub_level": 471, + "new_ttrating": 1211, + "newi_rating": 3227, + "old_cpi": 110.732925, + "old_license_level": 20, + "old_sub_level": 468, + "old_ttrating": 1211, + "oldi_rating": 3199, + "opt_laps_complete": 0, + "position": 14, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 26, + "color1": "ffffff", + "color2": "004225", + "color3": "d4af37" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 3, + "finish_position_in_class": 3, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 4, + "interval": 8182, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 10, + "color1": "ffffff", + "color2": "0019ff", + "color3": "111111", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "7", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 3, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 26, + "color1": "ffffff", + "color2": "004225", + "color3": "d4af37" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -385527, + "display_name": "EHR Blue", + "aggregate_champ_points": 118, + "ai": false, + "average_lap": 964043, + "best_lap_num": 4, + "best_lap_time": 943196, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8321, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -385527, + "cust_id": 1126675, + "display_name": "Jack Reed", + "aggregate_champ_points": 118, + "ai": false, + "average_lap": 966450, + "best_lap_num": 4, + "best_lap_time": 943196, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8321, + "country_code": "ENG", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 5, + "finish_position_in_class": 5, + "flair_id": 236, + "flair_name": "England", + "flair_shortname": "ENG", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "383838", + "color2": "ffffff", + "color3": "2885ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 9, + "interval": 8321, + "laps_complete": 9, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 14, + "number_color1": "ffffff", + "number_color2": "cba7f4", + "number_color3": "352e74", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "808", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 163.46672, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1085, + "newi_rating": 2895, + "old_cpi": 60.085476, + "old_license_level": 19, + "old_sub_level": 333, + "old_ttrating": 1085, + "oldi_rating": 2871, + "opt_laps_complete": 0, + "position": 5, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 13, + "color1": "352e74", + "color2": "4C99D3", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -385527, + "cust_id": 289709, + "display_name": "Greyson Oppermann", + "aggregate_champ_points": 118, + "ai": false, + "average_lap": 953212, + "best_lap_num": 11, + "best_lap_time": 949604, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 14729, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 13, + "finish_position_in_class": 13, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 15, + "color1": "ffffff", + "color2": "ffffff", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 4, + "interval": 14729, + "laps_complete": 3, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 14, + "number_color1": "ffffff", + "number_color2": "cba7f4", + "number_color3": "352e74", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "808", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 121.81984, + "new_license_level": 12, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2415, + "old_cpi": 28.188484, + "old_license_level": 10, + "old_sub_level": 290, + "old_ttrating": 1350, + "oldi_rating": 2392, + "opt_laps_complete": 0, + "position": 13, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 13, + "color1": "352e74", + "color2": "4C99D3", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -385527, + "cust_id": 611015, + "display_name": "Aaron Knight2", + "aggregate_champ_points": 118, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GO", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 91, + "finish_position_in_class": 21, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "helmet": { + "pattern": 60, + "color1": "0afc05", + "color2": "121212", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 3, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 14, + "number_color1": "ffffff", + "number_color2": "cba7f4", + "number_color3": "352e74", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "808", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 45.631496, + "new_license_level": 15, + "new_sub_level": 348, + "new_ttrating": 1350, + "newi_rating": 2184, + "old_cpi": 28.325111, + "old_license_level": 14, + "old_sub_level": 232, + "old_ttrating": 1350, + "oldi_rating": 2178, + "opt_laps_complete": 0, + "position": 91, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 13, + "color1": "352e74", + "color2": "4C99D3", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 4, + "finish_position_in_class": 4, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 16, + "interval": 8321, + "laps_complete": 12, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 14, + "number_color1": "ffffff", + "number_color2": "cba7f4", + "number_color3": "352e74", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "808", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 4, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 13, + "color1": "352e74", + "color2": "4C99D3", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -440173, + "display_name": "Axis Simsports Blue", + "aggregate_champ_points": 53, + "ai": false, + "average_lap": 959921, + "best_lap_num": 8, + "best_lap_time": 944173, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 9298, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -440173, + "cust_id": 416043, + "display_name": "Thomas Pugh", + "aggregate_champ_points": 53, + "ai": false, + "average_lap": 959921, + "best_lap_num": 8, + "best_lap_time": 944173, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 9298, + "country_code": "GB", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 6, + "finish_position_in_class": 6, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 9, + "color1": "000000", + "color2": "ffffff", + "color3": "ff0000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 17, + "interval": 9298, + "laps_complete": 8, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 22, + "color1": "000000", + "color2": "ffffff", + "color3": "ff0000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "3", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 205.9527, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 3916, + "old_cpi": 120.93353, + "old_license_level": 20, + "old_sub_level": 481, + "old_ttrating": 1350, + "oldi_rating": 3922, + "opt_laps_complete": 0, + "position": 6, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 14, + "color1": "d3d3d3", + "color2": "000000", + "color3": "e70e0e" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 5, + "finish_position_in_class": 5, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 17, + "interval": 9298, + "laps_complete": 8, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 22, + "color1": "000000", + "color2": "ffffff", + "color3": "ff0000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "3", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 5, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 14, + "color1": "d3d3d3", + "color2": "000000", + "color3": "e70e0e" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -278104, + "display_name": "Melanzani Racing 102", + "aggregate_champ_points": 21, + "ai": false, + "average_lap": 956754, + "best_lap_num": 8, + "best_lap_time": 946405, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 11530, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -278104, + "cust_id": 119560, + "display_name": "Alvin Frauenknecht", + "aggregate_champ_points": 21, + "ai": false, + "average_lap": 955919, + "best_lap_num": 8, + "best_lap_time": 946405, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 11530, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 7, + "finish_position_in_class": 7, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 63, + "color1": "000000", + "color2": "717171", + "color3": "e5ff00", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": 11530, + "laps_complete": 6, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 0, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "cccccc", + "number_color3": "666666", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "4", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 76.36244, + "new_license_level": 19, + "new_sub_level": 370, + "new_ttrating": 1350, + "newi_rating": 2133, + "old_cpi": 31.524208, + "old_license_level": 17, + "old_sub_level": 148, + "old_ttrating": 1350, + "oldi_rating": 2162, + "opt_laps_complete": 0, + "position": 7, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 22, + "color1": "000000", + "color2": "69b9eb", + "color3": "fa8c17" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -278104, + "cust_id": 946764, + "display_name": "Thomas Vogel", + "aggregate_champ_points": 21, + "ai": false, + "average_lap": 960929, + "best_lap_num": 2, + "best_lap_time": 960929, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 26054, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 17, + "finish_position_in_class": 17, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "020005", + "color2": "000000", + "color3": "6a07da", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 26054, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 0, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "cccccc", + "number_color3": "666666", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "4", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 194.06157, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2231, + "old_cpi": 155.29985, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 2245, + "opt_laps_complete": 0, + "position": 17, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 22, + "color1": "000000", + "color2": "69b9eb", + "color3": "fa8c17" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 6, + "finish_position_in_class": 6, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 1, + "interval": 11530, + "laps_complete": 8, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 0, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "cccccc", + "number_color3": "666666", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "4", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 6, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 22, + "color1": "000000", + "color2": "69b9eb", + "color3": "fa8c17" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -298033, + "display_name": "Piki SCT", + "aggregate_champ_points": 64, + "ai": false, + "average_lap": 953665, + "best_lap_num": 4, + "best_lap_time": 946850, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 0, + "class_interval": 11975, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -298033, + "cust_id": 1094388, + "display_name": "David Orgaz", + "aggregate_champ_points": 64, + "ai": false, + "average_lap": 953665, + "best_lap_num": 4, + "best_lap_time": 946850, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 0, + "class_interval": 11975, + "country_code": "ES", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 8, + "finish_position_in_class": 8, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 20, + "color1": "111111", + "color2": "30b84e", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 8, + "interval": 11975, + "laps_complete": 9, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 7, + "color1": "6589F4", + "color2": "C91919", + "color3": "F5FF7D", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "5", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 93.97715, + "new_license_level": 20, + "new_sub_level": 443, + "new_ttrating": 1350, + "newi_rating": 2440, + "old_cpi": 62.371994, + "old_license_level": 18, + "old_sub_level": 296, + "old_ttrating": 1350, + "oldi_rating": 2441, + "opt_laps_complete": 0, + "position": 8, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 10, + "color1": "5dddc2", + "color2": "19d137", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -298033, + "cust_id": 384294, + "display_name": "Sergio Gomez Redondo", + "aggregate_champ_points": 64, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "ES", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 95, + "finish_position_in_class": 22, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 26, + "color1": "ea1a1a", + "color2": "000000", + "color3": "ff0000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 7, + "color1": "6589F4", + "color2": "C91919", + "color3": "F5FF7D", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "5", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 149.52426, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2026, + "old_cpi": 146.89369, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 2027, + "opt_laps_complete": 0, + "position": 95, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 10, + "color1": "5dddc2", + "color2": "19d137", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 7, + "finish_position_in_class": 7, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 8, + "interval": 11975, + "laps_complete": 9, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 7, + "color1": "6589F4", + "color2": "C91919", + "color3": "F5FF7D", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "5", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 7, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 10, + "color1": "5dddc2", + "color2": "19d137", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -346577, + "display_name": "Motorsports Factory YELLOW", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 993647, + "best_lap_num": 3, + "best_lap_time": 947034, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 168, + "car_name": "Cadillac V-Series.R GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 12159, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -346577, + "cust_id": 600472, + "display_name": "Niklas Ude", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 999156, + "best_lap_num": 3, + "best_lap_time": 947034, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 168, + "car_name": "Cadillac V-Series.R GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 12159, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 9, + "finish_position_in_class": 9, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 56, + "color1": "52944d", + "color2": "d2d2d2", + "color3": "5b6a32", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 2, + "interval": 12159, + "laps_complete": 4, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 168, + "pattern": 21, + "color1": "172b21", + "color2": "57f97a", + "color3": "e8f9f0", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 139, + "sponsor2": 2, + "car_number": "194", + "wheel_color": "0a0f0a", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 91.08547, + "new_license_level": 20, + "new_sub_level": 438, + "new_ttrating": 1350, + "newi_rating": 2605, + "old_cpi": 85.72911, + "old_license_level": 20, + "old_sub_level": 429, + "old_ttrating": 1350, + "oldi_rating": 2603, + "opt_laps_complete": 0, + "position": 9, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 32, + "color1": "172b21", + "color2": "e8f9f0", + "color3": "57f97a" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -346577, + "cust_id": 945525, + "display_name": "Benjamin Voigt", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 982630, + "best_lap_num": 8, + "best_lap_time": 978176, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 168, + "car_name": "Cadillac V-Series.R GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 43301, + "country_code": "DE", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 19, + "finish_position_in_class": 19, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 39, + "color1": "ff0000", + "color2": "000000", + "color3": "ff0000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 43301, + "laps_complete": 4, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 168, + "pattern": 21, + "color1": "172b21", + "color2": "57f97a", + "color3": "e8f9f0", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 139, + "sponsor2": 2, + "car_number": "194", + "wheel_color": "0a0f0a", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 108.77311, + "new_license_level": 20, + "new_sub_level": 465, + "new_ttrating": 1350, + "newi_rating": 1914, + "old_cpi": 75.879616, + "old_license_level": 19, + "old_sub_level": 369, + "old_ttrating": 1350, + "oldi_rating": 1909, + "opt_laps_complete": 0, + "position": 19, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 32, + "color1": "172b21", + "color2": "e8f9f0", + "color3": "57f97a" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 8, + "finish_position_in_class": 8, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 2, + "interval": 12159, + "laps_complete": 8, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 168, + "pattern": 21, + "color1": "172b21", + "color2": "57f97a", + "color3": "e8f9f0", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 139, + "sponsor2": 2, + "car_number": "194", + "wheel_color": "0a0f0a", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 8, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 32, + "color1": "172b21", + "color2": "e8f9f0", + "color3": "57f97a" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -300070, + "display_name": "Tabula Rasa eSports 901", + "aggregate_champ_points": 96, + "ai": false, + "average_lap": 1001151, + "best_lap_num": 4, + "best_lap_time": 947034, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 12159, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -300070, + "cust_id": 641758, + "display_name": "Adam NS Jones", + "aggregate_champ_points": 96, + "ai": false, + "average_lap": 1001151, + "best_lap_num": 4, + "best_lap_time": 947034, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 12159, + "country_code": "GB", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 10, + "finish_position_in_class": 10, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 56, + "color1": "ffffff", + "color2": "ee3442", + "color3": "447ac0", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 3, + "interval": 12159, + "laps_complete": 5, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 16, + "color1": "000000", + "color2": "ed2129", + "color3": "001ee3", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "901", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 117.47467, + "new_license_level": 20, + "new_sub_level": 477, + "new_ttrating": 1350, + "newi_rating": 2049, + "old_cpi": 54.51905, + "old_license_level": 18, + "old_sub_level": 275, + "old_ttrating": 1350, + "oldi_rating": 2039, + "opt_laps_complete": 0, + "position": 10, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 35, + "color1": "000000", + "color2": "fb0000", + "color3": "0030ff" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 9, + "finish_position_in_class": 9, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 3, + "interval": 12159, + "laps_complete": 5, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 16, + "color1": "000000", + "color2": "ed2129", + "color3": "001ee3", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "901", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 9, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 35, + "color1": "000000", + "color2": "fb0000", + "color3": "0030ff" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -307068, + "display_name": "Azz Tech Racing - 390", + "aggregate_champ_points": 107, + "ai": false, + "average_lap": 970770, + "best_lap_num": 3, + "best_lap_time": 948300, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 13425, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -307068, + "cust_id": 996524, + "display_name": "Gabriel Papaconstantinou", + "aggregate_champ_points": 107, + "ai": false, + "average_lap": 969949, + "best_lap_num": 3, + "best_lap_time": 948300, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 13425, + "country_code": "GB", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 11, + "finish_position_in_class": 11, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "bcf7e2", + "color2": "000000", + "color3": "0012ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 2, + "interval": 13425, + "laps_complete": 5, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 17, + "color1": "ff0000", + "color2": "ffffff", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "ffffff", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "390", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 169.81465, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 1722, + "old_cpi": 48.918552, + "old_license_level": 18, + "old_sub_level": 259, + "old_ttrating": 1350, + "oldi_rating": 1708, + "opt_laps_complete": 0, + "position": 11, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "f00000", + "color2": "faff00", + "color3": "9b9b9b" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -307068, + "cust_id": 846950, + "display_name": "Matthew Cheverton", + "aggregate_champ_points": 107, + "ai": false, + "average_lap": 974878, + "best_lap_num": 7, + "best_lap_time": 974878, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 40003, + "country_code": "GB", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 18, + "finish_position_in_class": 18, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 8, + "color1": "ff0000", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 40003, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 17, + "color1": "ff0000", + "color2": "ffffff", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "ffffff", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "390", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 208.88257, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 3137, + "old_cpi": 75.065544, + "old_license_level": 19, + "old_sub_level": 367, + "old_ttrating": 1350, + "oldi_rating": 3121, + "opt_laps_complete": 0, + "position": 18, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "f00000", + "color2": "faff00", + "color3": "9b9b9b" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 10, + "finish_position_in_class": 10, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 2, + "interval": 13425, + "laps_complete": 7, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 17, + "color1": "ff0000", + "color2": "ffffff", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "ffffff", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "390", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 10, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "f00000", + "color2": "faff00", + "color3": "9b9b9b" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -303706, + "display_name": "Savage Sim Racing - Team 80HD", + "aggregate_champ_points": 86, + "ai": false, + "average_lap": 960735, + "best_lap_num": 11, + "best_lap_time": 949573, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 14698, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -303706, + "cust_id": 912397, + "display_name": "Clayton Sanchez2", + "aggregate_champ_points": 86, + "ai": false, + "average_lap": 960735, + "best_lap_num": 11, + "best_lap_time": 949573, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 14698, + "country_code": "US", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 12, + "finish_position_in_class": 12, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "320159", + "color2": "9705fc", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 4, + "interval": 14698, + "laps_complete": 15, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 22, + "color1": "000000", + "color2": "01ffff", + "color3": "a30dbe", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 239, + "sponsor2": 240, + "car_number": "66", + "wheel_color": "767676", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 267.99796, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2906, + "old_cpi": 126.12498, + "old_license_level": 20, + "old_sub_level": 488, + "old_ttrating": 1350, + "oldi_rating": 2901, + "opt_laps_complete": 0, + "position": 12, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 28, + "color1": "434343", + "color2": "fbfbfb", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 11, + "finish_position_in_class": 11, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 4, + "interval": 14698, + "laps_complete": 15, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 22, + "color1": "000000", + "color2": "01ffff", + "color3": "a30dbe", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 239, + "sponsor2": 240, + "car_number": "66", + "wheel_color": "767676", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 11, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 28, + "color1": "434343", + "color2": "fbfbfb", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -199580, + "display_name": "IntoTheApex.com Gold", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 970881, + "best_lap_num": 7, + "best_lap_time": 950647, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 15772, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -199580, + "cust_id": 142817, + "display_name": "Charlie Ryan", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 966391, + "best_lap_num": 7, + "best_lap_time": 950647, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 15772, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": true, + "finish_position": 15, + "finish_position_in_class": 15, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 2, + "color1": "000000", + "color2": "ED2129", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 3, + "interval": 15772, + "laps_complete": 7, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "069", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 42.451843, + "new_license_level": 18, + "new_sub_level": 238, + "new_ttrating": 1350, + "newi_rating": 2179, + "old_cpi": 33.555664, + "old_license_level": 18, + "old_sub_level": 202, + "old_ttrating": 1350, + "oldi_rating": 2266, + "opt_laps_complete": 0, + "position": 15, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 19, + "color1": "000000", + "color2": "0d1fc5", + "color3": "e3e110" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -199580, + "cust_id": 25230, + "display_name": "Bruce Perry", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 986594, + "best_lap_num": 10, + "best_lap_time": 983094, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 48219, + "country_code": "US", + "division": 3, + "division_name": "Division 4", + "drop_race": true, + "finish_position": 24, + "finish_position_in_class": 20, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 9, + "color1": "f9f9f9", + "color2": "0098fe", + "color3": "f9ebd7", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 48219, + "laps_complete": 3, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "069", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 236.64212, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2155, + "old_cpi": 234.75113, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 2155, + "opt_laps_complete": 0, + "position": 24, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 19, + "color1": "000000", + "color2": "0d1fc5", + "color3": "e3e110" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": true, + "finish_position": 12, + "finish_position_in_class": 12, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 3, + "interval": 15772, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "069", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 12, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 19, + "color1": "000000", + "color2": "0d1fc5", + "color3": "e3e110" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -402095, + "display_name": "Granateapfel RT", + "aggregate_champ_points": 129, + "ai": false, + "average_lap": 973169, + "best_lap_num": 11, + "best_lap_time": 950878, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 0, + "class_interval": 16003, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -402095, + "cust_id": 1165346, + "display_name": "Finn Metzler", + "aggregate_champ_points": 129, + "ai": false, + "average_lap": 973169, + "best_lap_num": 11, + "best_lap_time": 950878, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 0, + "class_interval": 16003, + "country_code": "VU", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 16, + "finish_position_in_class": 16, + "flair_id": 226, + "flair_name": "Vanuatu", + "flair_shortname": "VUT", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "372a75", + "color2": "f1732e", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 10, + "interval": 16003, + "laps_complete": 12, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 4, + "color1": "FF0000", + "color2": "00FF00", + "color3": "0000FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "2", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 137.59468, + "new_license_level": 16, + "new_sub_level": 499, + "new_ttrating": 1265, + "newi_rating": 1943, + "old_cpi": 28.337646, + "old_license_level": 14, + "old_sub_level": 232, + "old_ttrating": 1265, + "oldi_rating": 1907, + "opt_laps_complete": 0, + "position": 16, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "ffffff", + "color2": "372a75", + "color3": "f1732e" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 13, + "finish_position_in_class": 13, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 10, + "interval": 16003, + "laps_complete": 12, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 4, + "color1": "FF0000", + "color2": "00FF00", + "color3": "0000FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "2", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 13, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "ffffff", + "color2": "372a75", + "color3": "f1732e" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -288965, + "display_name": "Ecurie Col d'Oiseaux Tertre Rouge", + "aggregate_champ_points": 50, + "ai": false, + "average_lap": 1042916, + "best_lap_num": 13, + "best_lap_time": 980240, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 0, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -288965, + "cust_id": 969021, + "display_name": "Brandon Schmidt3", + "aggregate_champ_points": 50, + "ai": false, + "average_lap": 1042916, + "best_lap_num": 13, + "best_lap_time": 980240, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 0, + "country_code": "DE", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 20, + "finish_position_in_class": 0, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "9b1a25", + "color2": "798bd8", + "color3": "0b0a0b", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 7, + "interval": 45365, + "laps_complete": 13, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 11, + "color1": "ffffd1", + "color2": "9b0202", + "color3": "0d3860", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "77", + "wheel_color": "b7b7b7", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 111.61723, + "new_license_level": 20, + "new_sub_level": 469, + "new_ttrating": 1375, + "newi_rating": 2923, + "old_cpi": 93.56137, + "old_license_level": 20, + "old_sub_level": 442, + "old_ttrating": 1375, + "oldi_rating": 2926, + "opt_laps_complete": 0, + "position": 20, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 8, + "color1": "ffffd1", + "color2": "a30206", + "color3": "ffd7d1" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 14, + "finish_position_in_class": 0, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 7, + "interval": 45365, + "laps_complete": 13, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 11, + "color1": "ffffd1", + "color2": "9b0202", + "color3": "0d3860", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "77", + "wheel_color": "b7b7b7", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 14, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 8, + "color1": "ffffd1", + "color2": "a30206", + "color3": "ffd7d1" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -53704, + "display_name": "LITHIUM Motorsports", + "aggregate_champ_points": 125, + "ai": false, + "average_lap": 1008763, + "best_lap_num": 2, + "best_lap_time": 980346, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 106, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -53704, + "cust_id": 639803, + "display_name": "Alexander Secher", + "aggregate_champ_points": 125, + "ai": false, + "average_lap": 1012588, + "best_lap_num": 2, + "best_lap_time": 980346, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 106, + "country_code": "DK", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 21, + "finish_position_in_class": 1, + "flair_id": 56, + "flair_name": "Denmark", + "flair_shortname": "DNK", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "ffffff", + "color2": "ff0505", + "color3": "6d6d6d", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 45471, + "laps_complete": 3, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 0, + "color1": "2c2c2c", + "color2": "000000", + "color3": "484848", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "15", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 100.56424, + "new_license_level": 20, + "new_sub_level": 453, + "new_ttrating": 1350, + "newi_rating": 2336, + "old_cpi": 78.96949, + "old_license_level": 19, + "old_sub_level": 375, + "old_ttrating": 1350, + "oldi_rating": 2316, + "opt_laps_complete": 0, + "position": 21, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 3, + "color1": "104C5F", + "color2": "FFFFFF", + "color3": "F0B100" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -53704, + "cust_id": 59268, + "display_name": "Danni Fugl", + "aggregate_champ_points": 125, + "ai": false, + "average_lap": 1004939, + "best_lap_num": 7, + "best_lap_time": 989535, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 9295, + "country_code": "DK", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 28, + "finish_position_in_class": 7, + "flair_id": 56, + "flair_name": "Denmark", + "flair_shortname": "DNK", + "friend": false, + "helmet": { + "pattern": 42, + "color1": "ffffff", + "color2": "a30000", + "color3": "003b72", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 54660, + "laps_complete": 4, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 0, + "color1": "2c2c2c", + "color2": "000000", + "color3": "484848", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "15", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 192.06525, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2143, + "old_cpi": 106.53169, + "old_license_level": 20, + "old_sub_level": 462, + "old_ttrating": 1350, + "oldi_rating": 2125, + "opt_laps_complete": 0, + "position": 28, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 3, + "color1": "104C5F", + "color2": "FFFFFF", + "color3": "F0B100" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -53704, + "cust_id": 284176, + "display_name": "Martin Birmele", + "aggregate_champ_points": 125, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 96, + "finish_position_in_class": 21, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 42, + "color1": "ffffff", + "color2": "00154c", + "color3": "710098", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 0, + "color1": "2c2c2c", + "color2": "000000", + "color3": "484848", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "15", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 142.29805, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2430, + "old_cpi": 67.85994, + "old_license_level": 19, + "old_sub_level": 352, + "old_ttrating": 1350, + "oldi_rating": 2411, + "opt_laps_complete": 0, + "position": 96, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 3, + "color1": "104C5F", + "color2": "FFFFFF", + "color3": "F0B100" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 15, + "finish_position_in_class": 1, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 45471, + "laps_complete": 7, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 0, + "color1": "2c2c2c", + "color2": "000000", + "color3": "484848", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "15", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 15, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 3, + "color1": "104C5F", + "color2": "FFFFFF", + "color3": "F0B100" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -134144, + "display_name": "BLOO Racing by VR | 040", + "aggregate_champ_points": 138, + "ai": false, + "average_lap": 1012945, + "best_lap_num": 11, + "best_lap_time": 981629, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 1389, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -134144, + "cust_id": 390389, + "display_name": "Geordi Vermeulen", + "aggregate_champ_points": 138, + "ai": false, + "average_lap": 1007090, + "best_lap_num": 11, + "best_lap_time": 981629, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 1389, + "country_code": "NL", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 22, + "finish_position_in_class": 2, + "flair_id": 146, + "flair_name": "Netherlands", + "flair_shortname": "NLD", + "friend": false, + "helmet": { + "pattern": 38, + "color1": "0094ff", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 2, + "interval": 46754, + "laps_complete": 7, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 23, + "color1": "ffffff", + "color2": "8500ff", + "color3": "2176c0", + "number_font": 7, + "number_color1": "ffffff", + "number_color2": "0094ff", + "number_color3": "000000", + "number_slant": 1, + "sponsor1": 323, + "sponsor2": 245, + "car_number": "040", + "wheel_color": "010101", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 267.66696, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 3669, + "old_cpi": 92.9855, + "old_license_level": 19, + "old_sub_level": 399, + "old_ttrating": 1350, + "oldi_rating": 3639, + "opt_laps_complete": 0, + "position": 22, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "000000", + "color2": "c2000b", + "color3": "0094ff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -134144, + "cust_id": 565681, + "display_name": "Ivan Chambers", + "aggregate_champ_points": 138, + "ai": false, + "average_lap": 1024655, + "best_lap_num": 7, + "best_lap_time": 997208, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 16968, + "country_code": "UA", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 34, + "finish_position_in_class": 13, + "flair_id": 220, + "flair_name": "Ukraine", + "flair_shortname": "UKR", + "friend": false, + "helmet": { + "pattern": 65, + "color1": "0002ff", + "color2": "000000", + "color3": "12ff00", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 5, + "interval": 62333, + "laps_complete": 4, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 23, + "color1": "ffffff", + "color2": "8500ff", + "color3": "2176c0", + "number_font": 7, + "number_color1": "ffffff", + "number_color2": "0094ff", + "number_color3": "000000", + "number_slant": 1, + "sponsor1": 323, + "sponsor2": 245, + "car_number": "040", + "wheel_color": "010101", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 113.62682, + "new_license_level": 20, + "new_sub_level": 472, + "new_ttrating": 1350, + "newi_rating": 1904, + "old_cpi": 59.518505, + "old_license_level": 19, + "old_sub_level": 332, + "old_ttrating": 1350, + "oldi_rating": 1889, + "opt_laps_complete": 0, + "position": 34, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "000000", + "color2": "c2000b", + "color3": "0094ff" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 16, + "finish_position_in_class": 2, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 7, + "interval": 46754, + "laps_complete": 11, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 23, + "color1": "ffffff", + "color2": "8500ff", + "color3": "2176c0", + "number_font": 7, + "number_color1": "ffffff", + "number_color2": "0094ff", + "number_color3": "000000", + "number_slant": 1, + "sponsor1": 323, + "sponsor2": 245, + "car_number": "040", + "wheel_color": "010101", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 16, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "000000", + "color2": "c2000b", + "color3": "0094ff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -385439, + "display_name": "TRC Endurance 01", + "aggregate_champ_points": 12, + "ai": false, + "average_lap": 1014004, + "best_lap_num": 6, + "best_lap_time": 982570, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 2330, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -385439, + "cust_id": 1118747, + "display_name": "Zack Heiderstadt", + "aggregate_champ_points": 12, + "ai": false, + "average_lap": 1014004, + "best_lap_num": 6, + "best_lap_time": 982570, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 2330, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 23, + "finish_position_in_class": 3, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "aeaeae", + "color2": "0c00b1", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 5, + "interval": 47695, + "laps_complete": 11, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 5, + "color1": "FFFFFF", + "color2": "941FB7", + "color3": "80FF00", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "9", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 70.23805, + "new_license_level": 16, + "new_sub_level": 457, + "new_ttrating": 1295, + "newi_rating": 3101, + "old_cpi": 38.609806, + "old_license_level": 14, + "old_sub_level": 279, + "old_ttrating": 1295, + "oldi_rating": 3129, + "opt_laps_complete": 0, + "position": 23, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 30, + "color1": "2508d3", + "color2": "000000", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 17, + "finish_position_in_class": 3, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 5, + "interval": 47695, + "laps_complete": 11, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 5, + "color1": "FFFFFF", + "color2": "941FB7", + "color3": "80FF00", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "9", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 17, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 30, + "color1": "2508d3", + "color2": "000000", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -169135, + "display_name": "BMW M Plower #557", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1028341, + "best_lap_num": 13, + "best_lap_time": 987454, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 7214, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -169135, + "cust_id": 374188, + "display_name": "Lars Wiele", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 993383, + "best_lap_num": 13, + "best_lap_time": 987454, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 7214, + "country_code": "DE", + "division": 1, + "division_name": "Division 2", + "drop_race": true, + "finish_position": 25, + "finish_position_in_class": 4, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 2, + "color1": "6f9556", + "color2": "111111", + "color3": "efd600", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": 52579, + "laps_complete": 3, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 1, + "color1": "6f9556", + "color2": "111111", + "color3": "efd600", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "557", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 108.826164, + "new_license_level": 20, + "new_sub_level": 465, + "new_ttrating": 1350, + "newi_rating": 3266, + "old_cpi": 140.98111, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 3386, + "opt_laps_complete": 0, + "position": 25, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 19, + "color1": "0c0fb4", + "color2": "299467", + "color3": "d1f100" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -169135, + "cust_id": 500311, + "display_name": "Joshua Easey", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1022639, + "best_lap_num": 4, + "best_lap_time": 998269, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 18029, + "country_code": "GB", + "division": 2, + "division_name": "Division 3", + "drop_race": true, + "finish_position": 35, + "finish_position_in_class": 14, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "cccccc", + "color2": "111111", + "color3": "ed1c24", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 63394, + "laps_complete": 5, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 1, + "color1": "6f9556", + "color2": "111111", + "color3": "efd600", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "557", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 211.58789, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2446, + "old_cpi": 209.03923, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 2446, + "opt_laps_complete": 0, + "position": 35, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 19, + "color1": "0c0fb4", + "color2": "299467", + "color3": "d1f100" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -169135, + "cust_id": 638713, + "display_name": "Barnabás Tóth", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1052948, + "best_lap_num": 8, + "best_lap_time": 1002428, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 22188, + "country_code": "HU", + "division": 4, + "division_name": "Division 5", + "drop_race": true, + "finish_position": 38, + "finish_position_in_class": 17, + "flair_id": 93, + "flair_name": "Hungary", + "flair_shortname": "HUN", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "ee3442", + "color2": "ffffff", + "color3": "447ac0", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 3, + "interval": 67553, + "laps_complete": 5, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 1, + "color1": "6f9556", + "color2": "111111", + "color3": "efd600", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "557", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 32.60926, + "new_license_level": 17, + "new_sub_level": 153, + "new_ttrating": 1370, + "newi_rating": 1729, + "old_cpi": 33.197025, + "old_license_level": 17, + "old_sub_level": 156, + "old_ttrating": 1370, + "oldi_rating": 1729, + "opt_laps_complete": 0, + "position": 38, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 19, + "color1": "0c0fb4", + "color2": "299467", + "color3": "d1f100" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": true, + "finish_position": 18, + "finish_position_in_class": 4, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 4, + "interval": 52579, + "laps_complete": 13, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 1, + "color1": "6f9556", + "color2": "111111", + "color3": "efd600", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "557", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 18, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 19, + "color1": "0c0fb4", + "color2": "299467", + "color3": "d1f100" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -348667, + "display_name": "Speed Eagles Gold", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 1007844, + "best_lap_num": 4, + "best_lap_time": 987545, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 7305, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -348667, + "cust_id": 532947, + "display_name": "Dawid Dlugokecki", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 1007844, + "best_lap_num": 4, + "best_lap_time": 987545, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 7305, + "country_code": "PL", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 26, + "finish_position_in_class": 5, + "flair_id": 167, + "flair_name": "Poland", + "flair_shortname": "POL", + "friend": false, + "helmet": { + "pattern": 26, + "color1": "740004", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 11, + "interval": 52670, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 6, + "color1": "23548f", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "44", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 79.3237, + "new_license_level": 19, + "new_sub_level": 375, + "new_ttrating": 1350, + "newi_rating": 2670, + "old_cpi": 65.30674, + "old_license_level": 19, + "old_sub_level": 346, + "old_ttrating": 1350, + "oldi_rating": 2667, + "opt_laps_complete": 0, + "position": 26, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 25, + "color1": "000000", + "color2": "1d70b8", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 19, + "finish_position_in_class": 5, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 11, + "interval": 52670, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 6, + "color1": "23548f", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "44", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 19, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 25, + "color1": "000000", + "color2": "1d70b8", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -217878, + "display_name": "Katzes Racing League #Beta", + "aggregate_champ_points": 62, + "ai": false, + "average_lap": 1004644, + "best_lap_num": 2, + "best_lap_time": 988732, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8492, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -217878, + "cust_id": 936404, + "display_name": "Alexander Kraft", + "aggregate_champ_points": 62, + "ai": false, + "average_lap": 1009909, + "best_lap_num": 2, + "best_lap_time": 988732, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8492, + "country_code": "DE", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 27, + "finish_position_in_class": 6, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "ffffff", + "color2": "f06e34", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 3, + "interval": 53857, + "laps_complete": 6, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 22, + "color1": "000000", + "color2": "ff7800", + "color3": "005f99", + "number_font": 3, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "042", + "wheel_color": "ffffff", + "rim_type": 3 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 130.4349, + "new_license_level": 20, + "new_sub_level": 493, + "new_ttrating": 1350, + "newi_rating": 3381, + "old_cpi": 176.48804, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 3383, + "opt_laps_complete": 0, + "position": 27, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 21, + "color1": "000000", + "color2": "ededed", + "color3": "F98E1D" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -217878, + "cust_id": 240174, + "display_name": "Steven Lexow", + "aggregate_champ_points": 62, + "ai": false, + "average_lap": 998326, + "best_lap_num": 11, + "best_lap_time": 991687, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 11447, + "country_code": "DE", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 31, + "finish_position_in_class": 10, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 9, + "color1": "a80000", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 2, + "interval": 56812, + "laps_complete": 6, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 22, + "color1": "000000", + "color2": "ff7800", + "color3": "005f99", + "number_font": 3, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "042", + "wheel_color": "ffffff", + "rim_type": 3 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 151.4998, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2787, + "old_cpi": 86.411354, + "old_license_level": 20, + "old_sub_level": 430, + "old_ttrating": 1350, + "oldi_rating": 2788, + "opt_laps_complete": 0, + "position": 31, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 21, + "color1": "000000", + "color2": "ededed", + "color3": "F98E1D" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 20, + "finish_position_in_class": 6, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 5, + "interval": 53857, + "laps_complete": 12, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 22, + "color1": "000000", + "color2": "ff7800", + "color3": "005f99", + "number_font": 3, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "042", + "wheel_color": "ffffff", + "rim_type": 3 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 20, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 21, + "color1": "000000", + "color2": "ededed", + "color3": "F98E1D" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -433705, + "display_name": "SIM RACING GRID ACADEMY - Obsidian", + "aggregate_champ_points": 37, + "ai": false, + "average_lap": 1007342, + "best_lap_num": 4, + "best_lap_time": 990616, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 10376, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -433705, + "cust_id": 1048672, + "display_name": "Joshua De Lange", + "aggregate_champ_points": 37, + "ai": false, + "average_lap": 1009998, + "best_lap_num": 4, + "best_lap_time": 990616, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 10376, + "country_code": "NL", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 29, + "finish_position_in_class": 8, + "flair_id": 146, + "flair_name": "Netherlands", + "flair_shortname": "NLD", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "07a9e5", + "color2": "981a53", + "color3": "f981a5", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 2, + "interval": 55741, + "laps_complete": 7, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 0, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "10", + "wheel_color": "ffb649", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 94.37405, + "new_license_level": 20, + "new_sub_level": 443, + "new_ttrating": 1350, + "newi_rating": 2529, + "old_cpi": 76.501915, + "old_license_level": 20, + "old_sub_level": 411, + "old_ttrating": 1350, + "oldi_rating": 2540, + "opt_laps_complete": 0, + "position": 29, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 4, + "color1": "4a98ff", + "color2": "0012fa", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -433705, + "cust_id": 1049578, + "display_name": "Tim Rupp", + "aggregate_champ_points": 37, + "ai": false, + "average_lap": 1003625, + "best_lap_num": 13, + "best_lap_time": 994376, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 14136, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 33, + "finish_position_in_class": 12, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 22, + "color1": "9f0202", + "color2": "111111", + "color3": "d9f357", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 9, + "interval": 59501, + "laps_complete": 6, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 0, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "10", + "wheel_color": "ffb649", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 63.569153, + "new_license_level": 18, + "new_sub_level": 298, + "new_ttrating": 1369, + "newi_rating": 2203, + "old_cpi": 27.171917, + "old_license_level": 17, + "old_sub_level": 125, + "old_ttrating": 1369, + "oldi_rating": 2212, + "opt_laps_complete": 0, + "position": 33, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 4, + "color1": "4a98ff", + "color2": "0012fa", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 21, + "finish_position_in_class": 7, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 11, + "interval": 55741, + "laps_complete": 13, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 0, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "10", + "wheel_color": "ffb649", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 21, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 4, + "color1": "4a98ff", + "color2": "0012fa", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -479845, + "display_name": "DSDF Racing LMP2", + "aggregate_champ_points": 25, + "ai": false, + "average_lap": 1026472, + "best_lap_num": 1, + "best_lap_time": 991685, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 11445, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -479845, + "cust_id": 1010930, + "display_name": "James Seale", + "aggregate_champ_points": 25, + "ai": false, + "average_lap": 1026472, + "best_lap_num": 1, + "best_lap_time": 991685, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 11445, + "country_code": "GB", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 30, + "finish_position_in_class": 9, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 4, + "color1": "0a0a0a", + "color2": "ffffff", + "color3": "ff0000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 4, + "interval": 56810, + "laps_complete": 8, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 21, + "color1": "ffffff", + "color2": "ff0000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "ff0000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 221, + "sponsor2": 7, + "car_number": "155", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 59.186558, + "new_license_level": 12, + "new_sub_level": 488, + "new_ttrating": 1649, + "newi_rating": 2544, + "old_cpi": 26.148556, + "old_license_level": 11, + "old_sub_level": 319, + "old_ttrating": 1649, + "oldi_rating": 2563, + "opt_laps_complete": 0, + "position": 30, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 32, + "color1": "000000", + "color2": "ff0000", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 22, + "finish_position_in_class": 8, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 4, + "interval": 56810, + "laps_complete": 8, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 21, + "color1": "ffffff", + "color2": "ff0000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "ff0000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 221, + "sponsor2": 7, + "car_number": "155", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 22, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 32, + "color1": "000000", + "color2": "ff0000", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -479098, + "display_name": "Lightning Racing Team - #86", + "aggregate_champ_points": 100, + "ai": false, + "average_lap": 1064942, + "best_lap_num": 14, + "best_lap_time": 993290, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 13050, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -479098, + "cust_id": 1133857, + "display_name": "Pierre Peytral Yagüe", + "aggregate_champ_points": 100, + "ai": false, + "average_lap": 1063393, + "best_lap_num": 14, + "best_lap_time": 993290, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 13050, + "country_code": "FR", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 32, + "finish_position_in_class": 11, + "flair_id": 71, + "flair_name": "France", + "flair_shortname": "FRA", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "fc0706", + "color2": "111111", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 6, + "interval": 58415, + "laps_complete": 7, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 12, + "color1": "ff78ff", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "43", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 189.7976, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2834, + "old_cpi": 46.85185, + "old_license_level": 18, + "old_sub_level": 252, + "old_ttrating": 1350, + "oldi_rating": 2816, + "opt_laps_complete": 0, + "position": 32, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 21, + "color1": "f200ff", + "color2": "ffffff", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -479098, + "cust_id": 1172993, + "display_name": "Àngel García", + "aggregate_champ_points": 100, + "ai": false, + "average_lap": 1056511, + "best_lap_num": 4, + "best_lap_time": 1004239, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 23999, + "country_code": "ES", + "division": 5, + "division_name": "Division 6", + "drop_race": false, + "finish_position": 39, + "finish_position_in_class": 18, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "0a0a0a", + "color2": "0c0ce3", + "color3": "e20aff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 3, + "interval": 69364, + "laps_complete": 4, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 12, + "color1": "ff78ff", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "43", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 118.58717, + "new_license_level": 16, + "new_sub_level": 499, + "new_ttrating": 1304, + "newi_rating": 1676, + "old_cpi": 36.530888, + "old_license_level": 15, + "old_sub_level": 315, + "old_ttrating": 1304, + "oldi_rating": 1662, + "opt_laps_complete": 0, + "position": 39, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 21, + "color1": "f200ff", + "color2": "ffffff", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -479098, + "cust_id": 1168652, + "display_name": "Eric Bigas", + "aggregate_champ_points": 100, + "ai": false, + "average_lap": 1077731, + "best_lap_num": 8, + "best_lap_time": 1008009, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 27769, + "country_code": "ES", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 40, + "finish_position_in_class": 19, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "1f2892", + "color2": "7de54c", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 3, + "interval": 73134, + "laps_complete": 4, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 12, + "color1": "ff78ff", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "43", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 113.96372, + "new_license_level": 16, + "new_sub_level": 499, + "new_ttrating": 1423, + "newi_rating": 2502, + "old_cpi": 33.72117, + "old_license_level": 14, + "old_sub_level": 258, + "old_ttrating": 1423, + "oldi_rating": 2490, + "opt_laps_complete": 0, + "position": 40, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 21, + "color1": "f200ff", + "color2": "ffffff", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 23, + "finish_position_in_class": 9, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 12, + "interval": 58415, + "laps_complete": 15, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 12, + "color1": "ff78ff", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "43", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 23, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 21, + "color1": "f200ff", + "color2": "ffffff", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -188879, + "display_name": "Wildfire Racing Dragon", + "aggregate_champ_points": 112, + "ai": false, + "average_lap": 1029244, + "best_lap_num": 5, + "best_lap_time": 998926, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 18686, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -188879, + "cust_id": 788035, + "display_name": "Devon Allies2", + "aggregate_champ_points": 112, + "ai": false, + "average_lap": 1015115, + "best_lap_num": 5, + "best_lap_time": 998926, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 18686, + "country_code": "ZA", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 36, + "finish_position_in_class": 15, + "flair_id": 195, + "flair_name": "South Africa", + "flair_shortname": "ZAF", + "friend": false, + "helmet": { + "pattern": 34, + "color1": "ffffff", + "color2": "ff0909", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 3, + "interval": 64051, + "laps_complete": 8, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 1, + "color1": "0db700", + "color2": "ffffff", + "color3": "000000", + "number_font": 16, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "129", + "wheel_color": "929292", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 97.231285, + "new_license_level": 20, + "new_sub_level": 448, + "new_ttrating": 1350, + "newi_rating": 2077, + "old_cpi": 48.267376, + "old_license_level": 18, + "old_sub_level": 257, + "old_ttrating": 1350, + "oldi_rating": 2063, + "opt_laps_complete": 0, + "position": 36, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 20, + "color1": "000000", + "color2": "06ff00", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -188879, + "cust_id": 751768, + "display_name": "Sean Nisizaka Smit", + "aggregate_champ_points": 112, + "ai": false, + "average_lap": 1066922, + "best_lap_num": 11, + "best_lap_time": 1009109, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 28869, + "country_code": "AU", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 41, + "finish_position_in_class": 20, + "flair_id": 16, + "flair_name": "Australia", + "flair_shortname": "AUS", + "friend": false, + "helmet": { + "pattern": 6, + "color1": "ffffff", + "color2": "ff0000", + "color3": "0075ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 8, + "interval": 74234, + "laps_complete": 4, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 1, + "color1": "0db700", + "color2": "ffffff", + "color3": "000000", + "number_font": 16, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "129", + "wheel_color": "929292", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 61.77475, + "new_license_level": 18, + "new_sub_level": 294, + "new_ttrating": 1336, + "newi_rating": 2123, + "old_cpi": 44.15168, + "old_license_level": 18, + "old_sub_level": 243, + "old_ttrating": 1336, + "oldi_rating": 2114, + "opt_laps_complete": 0, + "position": 41, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 20, + "color1": "000000", + "color2": "06ff00", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 24, + "finish_position_in_class": 10, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 11, + "interval": 64051, + "laps_complete": 12, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 1, + "color1": "0db700", + "color2": "ffffff", + "color3": "000000", + "number_font": 16, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "129", + "wheel_color": "929292", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 24, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 20, + "color1": "000000", + "color2": "06ff00", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -310391, + "display_name": "4ORGE Lions", + "aggregate_champ_points": 87, + "ai": false, + "average_lap": 1035818, + "best_lap_num": 4, + "best_lap_time": 1000900, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 20660, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -310391, + "cust_id": 635525, + "display_name": "Rich Gregory", + "aggregate_champ_points": 87, + "ai": false, + "average_lap": 1035818, + "best_lap_num": 4, + "best_lap_time": 1000900, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 20660, + "country_code": "GB", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 37, + "finish_position_in_class": 16, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 45, + "color1": "ffffff", + "color2": "000000", + "color3": "ff0000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 2, + "interval": 66025, + "laps_complete": 6, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 7, + "color1": "ff0000", + "color2": "ffffff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "11", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 79.90745, + "new_license_level": 19, + "new_sub_level": 377, + "new_ttrating": 1350, + "newi_rating": 2137, + "old_cpi": 61.902596, + "old_license_level": 19, + "old_sub_level": 338, + "old_ttrating": 1350, + "oldi_rating": 2129, + "opt_laps_complete": 0, + "position": 37, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 13, + "color1": "ff0000", + "color2": "870005", + "color3": "2900ef" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 25, + "finish_position_in_class": 11, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 2, + "interval": 66025, + "laps_complete": 6, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 7, + "color1": "ff0000", + "color2": "ffffff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "11", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 25, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 13, + "color1": "ff0000", + "color2": "870005", + "color3": "2900ef" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -159911, + "display_name": "Austrian Simracers Blue", + "aggregate_champ_points": 62, + "ai": false, + "average_lap": 1068447, + "best_lap_num": 2, + "best_lap_time": 1042431, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 0, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -159911, + "cust_id": 1003691, + "display_name": "David Kinzlhofer", + "aggregate_champ_points": 62, + "ai": false, + "average_lap": 1066432, + "best_lap_num": 2, + "best_lap_time": 1042431, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 0, + "country_code": "AT", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 42, + "finish_position_in_class": 0, + "flair_id": 17, + "flair_name": "Austria", + "flair_shortname": "AUT", + "friend": false, + "helmet": { + "pattern": 36, + "color1": "8700ff", + "color2": "b500ff", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 2, + "interval": 107556, + "laps_complete": 5, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "ffffff", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "255", + "wheel_color": "7a7767", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 59.09998, + "new_license_level": 18, + "new_sub_level": 287, + "new_ttrating": 1350, + "newi_rating": 2814, + "old_cpi": 39.52622, + "old_license_level": 18, + "old_sub_level": 227, + "old_ttrating": 1350, + "oldi_rating": 2816, + "opt_laps_complete": 0, + "position": 42, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 19, + "color1": "000000", + "color2": "FFFFFF", + "color3": "FF0000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -159911, + "cust_id": 915496, + "display_name": "Julian Weilguny", + "aggregate_champ_points": 62, + "ai": false, + "average_lap": 1076507, + "best_lap_num": 8, + "best_lap_time": 1076507, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 34076, + "country_code": "AT", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 87, + "finish_position_in_class": 45, + "flair_id": 17, + "flair_name": "Austria", + "flair_shortname": "AUT", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "ffffff", + "color2": "000000", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 11, + "interval": 141632, + "laps_complete": 4, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "ffffff", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "255", + "wheel_color": "7a7767", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 37.487766, + "new_license_level": 17, + "new_sub_level": 175, + "new_ttrating": 1137, + "newi_rating": 2163, + "old_cpi": 30.539976, + "old_license_level": 17, + "old_sub_level": 143, + "old_ttrating": 1137, + "oldi_rating": 2165, + "opt_laps_complete": 0, + "position": 87, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 19, + "color1": "000000", + "color2": "FFFFFF", + "color3": "FF0000" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 26, + "finish_position_in_class": 0, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 13, + "interval": 107556, + "laps_complete": 9, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "ffffff", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "255", + "wheel_color": "7a7767", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 26, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 19, + "color1": "000000", + "color2": "FFFFFF", + "color3": "FF0000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -316329, + "display_name": "Milwauchibre Racing Team", + "aggregate_champ_points": 39, + "ai": false, + "average_lap": 1046166, + "best_lap_num": 2, + "best_lap_time": 1043678, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 1247, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -316329, + "cust_id": 879626, + "display_name": "Nicolas De Saint Riquier", + "aggregate_champ_points": 39, + "ai": false, + "average_lap": 1046166, + "best_lap_num": 2, + "best_lap_time": 1043678, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 1247, + "country_code": "FR", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 43, + "finish_position_in_class": 1, + "flair_id": 71, + "flair_name": "France", + "flair_shortname": "FRA", + "friend": false, + "helmet": { + "pattern": 35, + "color1": "000000", + "color2": "ff0000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 14, + "interval": 108803, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "FFFFFF", + "color2": "6900FF", + "color3": "FF00ED", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "27", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 49.39754, + "new_license_level": 18, + "new_sub_level": 260, + "new_ttrating": 1350, + "newi_rating": 2166, + "old_cpi": 32.16721, + "old_license_level": 17, + "old_sub_level": 151, + "old_ttrating": 1350, + "oldi_rating": 2187, + "opt_laps_complete": 0, + "position": 43, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 22, + "color1": "404040", + "color2": "bebebe", + "color3": "b78a00" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -316329, + "cust_id": 371715, + "display_name": "Dimitri Picard", + "aggregate_champ_points": 39, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "FR", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 88, + "finish_position_in_class": 46, + "flair_id": 71, + "flair_name": "France", + "flair_shortname": "FRA", + "friend": false, + "helmet": { + "pattern": 48, + "color1": "404040", + "color2": "6949e9", + "color3": "b78a00", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 8, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "FFFFFF", + "color2": "6900FF", + "color3": "FF00ED", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "27", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 94.97356, + "new_license_level": 20, + "new_sub_level": 444, + "new_ttrating": 1350, + "newi_rating": 2222, + "old_cpi": 70.97905, + "old_license_level": 19, + "old_sub_level": 359, + "old_ttrating": 1350, + "oldi_rating": 2241, + "opt_laps_complete": 0, + "position": 88, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 22, + "color1": "404040", + "color2": "bebebe", + "color3": "b78a00" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 27, + "finish_position_in_class": 1, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 22, + "interval": 108803, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "FFFFFF", + "color2": "6900FF", + "color3": "FF00ED", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "27", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 27, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 22, + "color1": "404040", + "color2": "bebebe", + "color3": "b78a00" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -480134, + "display_name": "Club 100 Sim Racers", + "aggregate_champ_points": 119, + "ai": false, + "average_lap": 1108602, + "best_lap_num": 12, + "best_lap_time": 1044537, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 2106, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -480134, + "cust_id": 133722, + "display_name": "James DeHavillande", + "aggregate_champ_points": 119, + "ai": false, + "average_lap": 1111329, + "best_lap_num": 12, + "best_lap_time": 1044537, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 2106, + "country_code": "GB", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 44, + "finish_position_in_class": 2, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 60, + "color1": "eb0000", + "color2": "0009db", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 12, + "interval": 109662, + "laps_complete": 9, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 11, + "color1": "000000", + "color2": "ff0000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "125", + "wheel_color": "b32e2e", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 92.82705, + "new_license_level": 19, + "new_sub_level": 399, + "new_ttrating": 1350, + "newi_rating": 3886, + "old_cpi": 38.696655, + "old_license_level": 18, + "old_sub_level": 224, + "old_ttrating": 1350, + "oldi_rating": 3868, + "opt_laps_complete": 0, + "position": 44, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 3, + "color1": "000000", + "color2": "ee6b00", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -480134, + "cust_id": 1183749, + "display_name": "Jack Mitchell-Lowe", + "aggregate_champ_points": 119, + "ai": false, + "average_lap": 1104058, + "best_lap_num": 3, + "best_lap_time": 1049790, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 7359, + "country_code": "GB", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 57, + "finish_position_in_class": 15, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 62, + "color1": "006ee0", + "color2": "e0af00", + "color3": "ff5c00", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 114915, + "laps_complete": 3, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 11, + "color1": "000000", + "color2": "ff0000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "125", + "wheel_color": "b32e2e", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 81.00438, + "new_license_level": 16, + "new_sub_level": 479, + "new_ttrating": 1350, + "newi_rating": 2129, + "old_cpi": 52.43604, + "old_license_level": 15, + "old_sub_level": 369, + "old_ttrating": 1350, + "oldi_rating": 2117, + "opt_laps_complete": 0, + "position": 57, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 3, + "color1": "000000", + "color2": "ee6b00", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 28, + "finish_position_in_class": 2, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 12, + "interval": 109662, + "laps_complete": 12, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 11, + "color1": "000000", + "color2": "ff0000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "125", + "wheel_color": "b32e2e", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 28, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 3, + "color1": "000000", + "color2": "ee6b00", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -287336, + "display_name": "W2W Racing Red", + "aggregate_champ_points": 133, + "ai": false, + "average_lap": 1049212, + "best_lap_num": 4, + "best_lap_time": 1045639, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 3208, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -287336, + "cust_id": 392017, + "display_name": "Jorge Reyes3", + "aggregate_champ_points": 133, + "ai": false, + "average_lap": 1049212, + "best_lap_num": 4, + "best_lap_time": 1045639, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 3208, + "country_code": "BO", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 45, + "finish_position_in_class": 3, + "flair_id": 28, + "flair_name": "Bolivia", + "flair_shortname": "BES", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "0012ff", + "color2": "3145a5", + "color3": "f00000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 13, + "interval": 110764, + "laps_complete": 7, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 15, + "color1": "f3ff06", + "color2": "0e9720", + "color3": "f3ff06", + "number_font": 53, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 2, + "sponsor1": 221, + "sponsor2": 0, + "car_number": "26", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 45.28575, + "new_license_level": 18, + "new_sub_level": 247, + "new_ttrating": 1350, + "newi_rating": 2245, + "old_cpi": 32.465076, + "old_license_level": 17, + "old_sub_level": 153, + "old_ttrating": 1350, + "oldi_rating": 2221, + "opt_laps_complete": 0, + "position": 45, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 10, + "color1": "ad1210", + "color2": "000000", + "color3": "ad1210" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 29, + "finish_position_in_class": 3, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 13, + "interval": 110764, + "laps_complete": 7, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 15, + "color1": "f3ff06", + "color2": "0e9720", + "color3": "f3ff06", + "number_font": 53, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 2, + "sponsor1": 221, + "sponsor2": 0, + "car_number": "26", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 29, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 10, + "color1": "ad1210", + "color2": "000000", + "color3": "ad1210" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -420531, + "display_name": "Angler Racing", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1057651, + "best_lap_num": 5, + "best_lap_time": 1046825, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 4394, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -420531, + "cust_id": 941901, + "display_name": "Paddy Armstrong", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1057651, + "best_lap_num": 5, + "best_lap_time": 1046825, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 4394, + "country_code": "SCT", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 46, + "finish_position_in_class": 4, + "flair_id": 237, + "flair_name": "Scotland", + "flair_shortname": "SCT", + "friend": false, + "helmet": { + "pattern": 57, + "color1": "838383", + "color2": "ffffff", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 10, + "interval": 111950, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "000000", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "6", + "wheel_color": "c8bd9f", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 78.350105, + "new_license_level": 20, + "new_sub_level": 415, + "new_ttrating": 1260, + "newi_rating": 2157, + "old_cpi": 111.6487, + "old_license_level": 20, + "old_sub_level": 469, + "old_ttrating": 1260, + "oldi_rating": 2252, + "opt_laps_complete": 0, + "position": 46, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "000000", + "color2": "ff00de", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 30, + "finish_position_in_class": 4, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 10, + "interval": 111950, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "000000", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "6", + "wheel_color": "c8bd9f", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 30, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "000000", + "color2": "ff00de", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -467249, + "display_name": "Simtec Racing Team #474", + "aggregate_champ_points": 44, + "ai": false, + "average_lap": 1051535, + "best_lap_num": 2, + "best_lap_time": 1047236, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 4805, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -467249, + "cust_id": 1174682, + "display_name": "Craig Law", + "aggregate_champ_points": 44, + "ai": false, + "average_lap": 1051535, + "best_lap_num": 2, + "best_lap_time": 1047236, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 4805, + "country_code": "NIR", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 47, + "finish_position_in_class": 5, + "flair_id": 239, + "flair_name": "Northern Ireland", + "flair_shortname": "NIR", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "ffffff", + "color2": "4076bc", + "color3": "c8d92b", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": 112361, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 3, + "color1": "42c6ef", + "color2": "111111", + "color3": "0b0b0a", + "number_font": 9, + "number_color1": "000000", + "number_color2": "f4f4f4", + "number_color3": "fafafa", + "number_slant": 0, + "sponsor1": 221, + "sponsor2": 0, + "car_number": "472", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 54.50814, + "new_license_level": 18, + "new_sub_level": 275, + "new_ttrating": 1350, + "newi_rating": 2559, + "old_cpi": 42.040413, + "old_license_level": 18, + "old_sub_level": 236, + "old_ttrating": 1350, + "oldi_rating": 2567, + "opt_laps_complete": 0, + "position": 47, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 5, + "color1": "11e5e5", + "color2": "030303", + "color3": "030303" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 31, + "finish_position_in_class": 5, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 1, + "interval": 112361, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 3, + "color1": "42c6ef", + "color2": "111111", + "color3": "0b0b0a", + "number_font": 9, + "number_color1": "000000", + "number_color2": "f4f4f4", + "number_color3": "fafafa", + "number_slant": 0, + "sponsor1": 221, + "sponsor2": 0, + "car_number": "472", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 31, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 5, + "color1": "11e5e5", + "color2": "030303", + "color3": "030303" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -296646, + "display_name": "Uprise Motorsports", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1058787, + "best_lap_num": 2, + "best_lap_time": 1047907, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 5476, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -296646, + "cust_id": 448051, + "display_name": "Diego Roldan", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1054415, + "best_lap_num": 2, + "best_lap_time": 1047907, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 5476, + "country_code": "MX", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 48, + "finish_position_in_class": 6, + "flair_id": 134, + "flair_name": "Mexico", + "flair_shortname": "MEX", + "friend": false, + "helmet": { + "pattern": 9, + "color1": "0c0c0c", + "color2": "ffffff", + "color3": "de0019", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 3, + "interval": 113032, + "laps_complete": 3, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 2, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "53", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 38.158615, + "new_license_level": 14, + "new_sub_level": 278, + "new_ttrating": 1350, + "newi_rating": 1896, + "old_cpi": 28.696474, + "old_license_level": 14, + "old_sub_level": 234, + "old_ttrating": 1350, + "oldi_rating": 1912, + "opt_laps_complete": 0, + "position": 48, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 4, + "color1": "000000", + "color2": "ff190f", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -296646, + "cust_id": 320315, + "display_name": "AJ Heider", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1060108, + "best_lap_num": 9, + "best_lap_time": 1050840, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8409, + "country_code": "BA", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 63, + "finish_position_in_class": 21, + "flair_id": 29, + "flair_name": "Bosnia and Herzegovina", + "flair_shortname": "BIH", + "friend": false, + "helmet": { + "pattern": 66, + "color1": "000000", + "color2": "0500cb", + "color3": "00d0ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 4, + "interval": 115965, + "laps_complete": 4, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 2, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "53", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 94.6242, + "new_license_level": 20, + "new_sub_level": 444, + "new_ttrating": 1350, + "newi_rating": 2675, + "old_cpi": 97.26926, + "old_license_level": 20, + "old_sub_level": 448, + "old_ttrating": 1350, + "oldi_rating": 2698, + "opt_laps_complete": 0, + "position": 63, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 4, + "color1": "000000", + "color2": "ff190f", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -296646, + "cust_id": 252495, + "display_name": "Chris Lilly", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1067941, + "best_lap_num": 5, + "best_lap_time": 1067941, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 25510, + "country_code": "US", + "division": 5, + "division_name": "Division 6", + "drop_race": false, + "finish_position": 86, + "finish_position_in_class": 44, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 46, + "color1": "000000", + "color2": "0057ff", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 5, + "interval": 133066, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 2, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "53", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 24.062311, + "new_license_level": 14, + "new_sub_level": 206, + "new_ttrating": 1350, + "newi_rating": 1493, + "old_cpi": 24.925983, + "old_license_level": 14, + "old_sub_level": 212, + "old_ttrating": 1350, + "oldi_rating": 1493, + "opt_laps_complete": 0, + "position": 86, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 4, + "color1": "000000", + "color2": "ff190f", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -296646, + "cust_id": 348147, + "display_name": "Connor Trifari", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GS", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 98, + "finish_position_in_class": 53, + "flair_id": 196, + "flair_name": "South Georgia & South Sandwich Islands", + "flair_shortname": "SGS", + "friend": false, + "helmet": { + "pattern": 2, + "color1": "ff0000", + "color2": "ffffff", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 4, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 2, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "53", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 50.541496, + "new_license_level": 18, + "new_sub_level": 264, + "new_ttrating": 1350, + "newi_rating": 3082, + "old_cpi": 56.433605, + "old_license_level": 18, + "old_sub_level": 281, + "old_ttrating": 1350, + "oldi_rating": 3100, + "opt_laps_complete": 0, + "position": 98, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 4, + "color1": "000000", + "color2": "ff190f", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 32, + "finish_position_in_class": 6, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 16, + "interval": 113032, + "laps_complete": 9, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 2, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "53", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 32, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 4, + "color1": "000000", + "color2": "ff190f", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -398466, + "display_name": "Leche Condensada Racing Team", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1055351, + "best_lap_num": 2, + "best_lap_time": 1047918, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 5487, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -398466, + "cust_id": 1110076, + "display_name": "Abel Ros", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1051451, + "best_lap_num": 2, + "best_lap_time": 1047918, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 5487, + "country_code": "ES", + "division": 3, + "division_name": "Division 4", + "drop_race": true, + "finish_position": 49, + "finish_position_in_class": 7, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 58, + "color1": "ee0000", + "color2": "e0fa0c", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 3, + "interval": 113043, + "laps_complete": 4, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "F5F9F4", + "color2": "000000", + "color3": "EDF4EE", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "28", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 63.223633, + "new_license_level": 19, + "new_sub_level": 341, + "new_ttrating": 1364, + "newi_rating": 2580, + "old_cpi": 79.276924, + "old_license_level": 19, + "old_sub_level": 375, + "old_ttrating": 1364, + "oldi_rating": 2590, + "opt_laps_complete": 0, + "position": 49, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "103fe6", + "color2": "f3f3f3", + "color3": "f60909" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -398466, + "cust_id": 401283, + "display_name": "Alex Serrano Martinez", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1057837, + "best_lap_num": 10, + "best_lap_time": 1056746, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 14315, + "country_code": "ES", + "division": 4, + "division_name": "Division 5", + "drop_race": true, + "finish_position": 78, + "finish_position_in_class": 36, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "ffffff", + "color2": "fc0706", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": 121871, + "laps_complete": 3, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "F5F9F4", + "color2": "000000", + "color3": "EDF4EE", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "28", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 55.97871, + "new_license_level": 19, + "new_sub_level": 323, + "new_ttrating": 1305, + "newi_rating": 2303, + "old_cpi": 56.21595, + "old_license_level": 19, + "old_sub_level": 323, + "old_ttrating": 1305, + "oldi_rating": 2303, + "opt_laps_complete": 0, + "position": 78, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "103fe6", + "color2": "f3f3f3", + "color3": "f60909" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -398466, + "cust_id": 1107477, + "display_name": "Carlos Saek", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1062077, + "best_lap_num": 7, + "best_lap_time": 1062077, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 19646, + "country_code": "ES", + "division": 4, + "division_name": "Division 5", + "drop_race": true, + "finish_position": 83, + "finish_position_in_class": 41, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 34, + "color1": "000000", + "color2": "7bfcab", + "color3": "515151", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 6, + "interval": 127202, + "laps_complete": 3, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "F5F9F4", + "color2": "000000", + "color3": "EDF4EE", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "28", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 28.689007, + "new_license_level": 17, + "new_sub_level": 134, + "new_ttrating": 1350, + "newi_rating": 1833, + "old_cpi": 42.800854, + "old_license_level": 18, + "old_sub_level": 239, + "old_ttrating": 1350, + "oldi_rating": 1845, + "opt_laps_complete": 0, + "position": 83, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "103fe6", + "color2": "f3f3f3", + "color3": "f60909" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": true, + "finish_position": 33, + "finish_position_in_class": 7, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 10, + "interval": 113043, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "F5F9F4", + "color2": "000000", + "color3": "EDF4EE", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "28", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 33, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "103fe6", + "color2": "f3f3f3", + "color3": "f60909" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -175849, + "display_name": "Maniti Racing Yellow", + "aggregate_champ_points": 93, + "ai": false, + "average_lap": 1173438, + "best_lap_num": 5, + "best_lap_time": 1047997, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 156, + "car_name": "Mercedes-AMG GT3 2020", + "carcfg": -1, + "champ_points": 0, + "class_interval": 5566, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -175849, + "cust_id": 1060062, + "display_name": "Marvin Bär", + "aggregate_champ_points": 93, + "ai": false, + "average_lap": 1173438, + "best_lap_num": 5, + "best_lap_time": 1047997, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 156, + "car_name": "Mercedes-AMG GT3 2020", + "carcfg": -1, + "champ_points": 0, + "class_interval": 5566, + "country_code": "DE", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 50, + "finish_position_in_class": 8, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 49, + "color1": "ffffff", + "color2": "bbbbbb", + "color3": "4a4a4a", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 6, + "interval": 113122, + "laps_complete": 7, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 156, + "pattern": 0, + "color1": "000000", + "color2": "08ad22", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "78", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 99, + "new_cpi": 92.41379, + "new_license_level": 19, + "new_sub_level": 399, + "new_ttrating": 1350, + "newi_rating": 3092, + "old_cpi": 42.426422, + "old_license_level": 18, + "old_sub_level": 237, + "old_ttrating": 1350, + "oldi_rating": 3083, + "opt_laps_complete": 0, + "position": 50, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 29, + "color1": "00ff19", + "color2": "04ff00", + "color3": "42ff00" + }, + "watched": false, + "weight_penalty_kg": 3 + }, + { + "team_id": -175849, + "cust_id": 1347955, + "display_name": "Kai Kuhlmann", + "aggregate_champ_points": 93, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 156, + "car_name": "Mercedes-AMG GT3 2020", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "DE", + "division": 5, + "division_name": "Division 6", + "drop_race": false, + "finish_position": 92, + "finish_position_in_class": 49, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "000000", + "color2": "000000", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 1, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 156, + "pattern": 0, + "color1": "000000", + "color2": "08ad22", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "78", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 99, + "new_cpi": 81.67377, + "new_license_level": 19, + "new_sub_level": 380, + "new_ttrating": 1350, + "newi_rating": 1918, + "old_cpi": 63.97849, + "old_license_level": 19, + "old_sub_level": 343, + "old_ttrating": 1350, + "oldi_rating": 1911, + "opt_laps_complete": 0, + "position": 92, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 29, + "color1": "00ff19", + "color2": "04ff00", + "color3": "42ff00" + }, + "watched": false, + "weight_penalty_kg": 3 + }, + { + "team_id": -175849, + "cust_id": 314054, + "display_name": "Jan-Eike Zanders", + "aggregate_champ_points": 93, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 156, + "car_name": "Mercedes-AMG GT3 2020", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "DE", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 99, + "finish_position_in_class": 54, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": true, + "helmet": { + "pattern": 8, + "color1": "47190b", + "color2": "111111", + "color3": "ffee47", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": -1, + "laps_complete": 1, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 156, + "pattern": 0, + "color1": "000000", + "color2": "08ad22", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "78", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 99, + "new_cpi": 53.88748, + "new_license_level": 18, + "new_sub_level": 274, + "new_ttrating": 1350, + "newi_rating": 2504, + "old_cpi": 40.080284, + "old_license_level": 18, + "old_sub_level": 229, + "old_ttrating": 1350, + "oldi_rating": 2496, + "opt_laps_complete": 0, + "position": 99, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 29, + "color1": "00ff19", + "color2": "04ff00", + "color3": "42ff00" + }, + "watched": false, + "weight_penalty_kg": 3 + } + ], + "drop_race": false, + "finish_position": 34, + "finish_position_in_class": 8, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 7, + "interval": 113122, + "laps_complete": 9, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 156, + "pattern": 0, + "color1": "000000", + "color2": "08ad22", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "78", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 99, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 34, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 29, + "color1": "00ff19", + "color2": "04ff00", + "color3": "42ff00" + }, + "watched": false, + "weight_penalty_kg": 3 + }, + { + "team_id": -472037, + "display_name": "APEXNOVA SIMRACING PURPLE", + "aggregate_champ_points": 97, + "ai": false, + "average_lap": 1070368, + "best_lap_num": 11, + "best_lap_time": 1048121, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 5690, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -472037, + "cust_id": 363097, + "display_name": "Tobias Kracht", + "aggregate_champ_points": 97, + "ai": false, + "average_lap": 1075986, + "best_lap_num": 11, + "best_lap_time": 1048121, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 5690, + "country_code": "DE", + "division": 6, + "division_name": "Division 7", + "drop_race": false, + "finish_position": 51, + "finish_position_in_class": 9, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 35, + "color1": "2575b0", + "color2": "7e1c6e", + "color3": "f90000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 8, + "interval": 113246, + "laps_complete": 7, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "fb0ead", + "color2": "424242", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "17", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 57.572872, + "new_license_level": 15, + "new_sub_level": 384, + "new_ttrating": 1350, + "newi_rating": 2797, + "old_cpi": 31.962917, + "old_license_level": 14, + "old_sub_level": 250, + "old_ttrating": 1350, + "oldi_rating": 2783, + "opt_laps_complete": 0, + "position": 51, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 17, + "color1": "2F2F2F", + "color2": "404334", + "color3": "2F4F4F" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -472037, + "cust_id": 1375930, + "display_name": "Bartosz Swiechowicz2", + "aggregate_champ_points": 97, + "ai": false, + "average_lap": 1063346, + "best_lap_num": 4, + "best_lap_time": 1053114, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 10683, + "country_code": "DE", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 71, + "finish_position_in_class": 29, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "2e358f", + "color2": "ec232d", + "color3": "0a0a0a", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 5, + "interval": 118239, + "laps_complete": 4, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "fb0ead", + "color2": "424242", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "17", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 96.417336, + "new_license_level": 20, + "new_sub_level": 447, + "new_ttrating": 1350, + "newi_rating": 2294, + "old_cpi": 48.92359, + "old_license_level": 19, + "old_sub_level": 302, + "old_ttrating": 1350, + "oldi_rating": 2282, + "opt_laps_complete": 0, + "position": 71, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 17, + "color1": "2F2F2F", + "color2": "404334", + "color3": "2F4F4F" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 35, + "finish_position_in_class": 9, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 13, + "interval": 113246, + "laps_complete": 11, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "fb0ead", + "color2": "424242", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "17", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 35, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 17, + "color1": "2F2F2F", + "color2": "404334", + "color3": "2F4F4F" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -457552, + "display_name": "DB3 MOTORSPORT | REMESI", + "aggregate_champ_points": 137, + "ai": false, + "average_lap": 1054360, + "best_lap_num": 5, + "best_lap_time": 1048264, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 5833, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -457552, + "cust_id": 673113, + "display_name": "Gerd Zechner", + "aggregate_champ_points": 137, + "ai": false, + "average_lap": 1051391, + "best_lap_num": 5, + "best_lap_time": 1048264, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 5833, + "country_code": "AT", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 52, + "finish_position_in_class": 10, + "flair_id": 17, + "flair_name": "Austria", + "flair_shortname": "AUT", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "111111", + "color2": "ffffff", + "color3": "fc0706", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 6, + "interval": 113389, + "laps_complete": 6, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "77fa03", + "color2": "ed2129", + "color3": "b0ec02", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "13", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 83.24767, + "new_license_level": 19, + "new_sub_level": 383, + "new_ttrating": 1350, + "newi_rating": 3031, + "old_cpi": 65.06985, + "old_license_level": 19, + "old_sub_level": 346, + "old_ttrating": 1350, + "oldi_rating": 3014, + "opt_laps_complete": 0, + "position": 52, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 11, + "color1": "d9003b", + "color2": "ffffff", + "color3": "0011f9" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -457552, + "cust_id": 1366564, + "display_name": "Christian Seibold", + "aggregate_champ_points": 137, + "ai": false, + "average_lap": 1060299, + "best_lap_num": 8, + "best_lap_time": 1050531, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8100, + "country_code": "AT", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 61, + "finish_position_in_class": 19, + "flair_id": 17, + "flair_name": "Austria", + "flair_shortname": "AUT", + "friend": false, + "helmet": { + "pattern": 67, + "color1": "393939", + "color2": "ea6500", + "color3": "0a0a0a", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 9, + "interval": 115656, + "laps_complete": 3, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "77fa03", + "color2": "ed2129", + "color3": "b0ec02", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "13", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 92.53391, + "new_license_level": 19, + "new_sub_level": 399, + "new_ttrating": 1358, + "newi_rating": 2464, + "old_cpi": 69.27189, + "old_license_level": 19, + "old_sub_level": 355, + "old_ttrating": 1358, + "oldi_rating": 2437, + "opt_laps_complete": 0, + "position": 61, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 11, + "color1": "d9003b", + "color2": "ffffff", + "color3": "0011f9" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 36, + "finish_position_in_class": 10, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 15, + "interval": 113389, + "laps_complete": 9, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "77fa03", + "color2": "ed2129", + "color3": "b0ec02", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "13", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 36, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 11, + "color1": "d9003b", + "color2": "ffffff", + "color3": "0011f9" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -415465, + "display_name": "WFLM Motorsport Vortex", + "aggregate_champ_points": 71, + "ai": false, + "average_lap": 1107063, + "best_lap_num": 6, + "best_lap_time": 1048837, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 6406, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -415465, + "cust_id": 1294295, + "display_name": "Florïan Chevreuïl", + "aggregate_champ_points": 71, + "ai": false, + "average_lap": 1107063, + "best_lap_num": 6, + "best_lap_time": 1048837, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 6406, + "country_code": "FR", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 53, + "finish_position_in_class": 11, + "flair_id": 71, + "flair_name": "France", + "flair_shortname": "FRA", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 7, + "interval": 113962, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 3, + "color1": "FF7000", + "color2": "73ECFF", + "color3": "0F0017", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "29", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 33.223705, + "new_license_level": 17, + "new_sub_level": 156, + "new_ttrating": 1350, + "newi_rating": 2683, + "old_cpi": 31.96522, + "old_license_level": 17, + "old_sub_level": 150, + "old_ttrating": 1350, + "oldi_rating": 2683, + "opt_laps_complete": 0, + "position": 53, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 28, + "color1": "0f0017", + "color2": "ff0021", + "color3": "ddecec" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 37, + "finish_position_in_class": 11, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 7, + "interval": 113962, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 3, + "color1": "FF7000", + "color2": "73ECFF", + "color3": "0F0017", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "29", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 37, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 28, + "color1": "0f0017", + "color2": "ff0021", + "color3": "ddecec" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -327700, + "display_name": "SFR ITALIA", + "aggregate_champ_points": 84, + "ai": false, + "average_lap": 1105839, + "best_lap_num": 10, + "best_lap_time": 1048852, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 6421, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -327700, + "cust_id": 1005007, + "display_name": "Andrea Lamponi", + "aggregate_champ_points": 84, + "ai": false, + "average_lap": 1127052, + "best_lap_num": 10, + "best_lap_time": 1048852, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 6421, + "country_code": "IT", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 54, + "finish_position_in_class": 12, + "flair_id": 101, + "flair_name": "Italy", + "flair_shortname": "ITA", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "5481fc", + "color2": "ffffff", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 4, + "interval": 113977, + "laps_complete": 7, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 11, + "color1": "D4FF0F", + "color2": "00FF00", + "color3": "111111", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "19", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 75.235085, + "new_license_level": 19, + "new_sub_level": 367, + "new_ttrating": 1302, + "newi_rating": 2284, + "old_cpi": 72.3915, + "old_license_level": 19, + "old_sub_level": 362, + "old_ttrating": 1302, + "oldi_rating": 2276, + "opt_laps_complete": 0, + "position": 54, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 22, + "color1": "faff00", + "color2": "000000", + "color3": "7ef22e" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -327700, + "cust_id": 814236, + "display_name": "Alan Binacchi", + "aggregate_champ_points": 84, + "ai": false, + "average_lap": 1088869, + "best_lap_num": 5, + "best_lap_time": 1051913, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 9482, + "country_code": "IT", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 66, + "finish_position_in_class": 24, + "flair_id": 101, + "flair_name": "Italy", + "flair_shortname": "ITA", + "friend": false, + "helmet": { + "pattern": 11, + "color1": "10e632", + "color2": "daed1c", + "color3": "cccccc", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 2, + "interval": 117038, + "laps_complete": 5, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 11, + "color1": "D4FF0F", + "color2": "00FF00", + "color3": "111111", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "19", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 77.29383, + "new_license_level": 19, + "new_sub_level": 372, + "new_ttrating": 1309, + "newi_rating": 2487, + "old_cpi": 67.18803, + "old_license_level": 19, + "old_sub_level": 350, + "old_ttrating": 1309, + "oldi_rating": 2481, + "opt_laps_complete": 0, + "position": 66, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 22, + "color1": "faff00", + "color2": "000000", + "color3": "7ef22e" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 38, + "finish_position_in_class": 12, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 6, + "interval": 113977, + "laps_complete": 12, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 11, + "color1": "D4FF0F", + "color2": "00FF00", + "color3": "111111", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "19", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 38, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 22, + "color1": "faff00", + "color2": "000000", + "color3": "7ef22e" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -480821, + "display_name": "Team PaceLab - Red", + "aggregate_champ_points": 115, + "ai": false, + "average_lap": 1057834, + "best_lap_num": 6, + "best_lap_time": 1049090, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 6659, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -480821, + "cust_id": 1287257, + "display_name": "Burak Egemen Yılmaz", + "aggregate_champ_points": 115, + "ai": false, + "average_lap": 1056422, + "best_lap_num": 6, + "best_lap_time": 1049090, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 6659, + "country_code": "TR", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 55, + "finish_position_in_class": 13, + "flair_id": 215, + "flair_name": "Türkiye", + "flair_shortname": "TUR", + "friend": false, + "helmet": { + "pattern": 36, + "color1": "ffffff", + "color2": "ff0000", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 8, + "interval": 114215, + "laps_complete": 7, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "23", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 77.44804, + "new_license_level": 16, + "new_sub_level": 472, + "new_ttrating": 1307, + "newi_rating": 2450, + "old_cpi": 26.810757, + "old_license_level": 14, + "old_sub_level": 223, + "old_ttrating": 1307, + "oldi_rating": 2426, + "opt_laps_complete": 0, + "position": 55, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 21, + "color1": "000000", + "color2": "de00ff", + "color3": "230057" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -480821, + "cust_id": 1082557, + "display_name": "Ömer Baykal", + "aggregate_champ_points": 115, + "ai": false, + "average_lap": 1060657, + "best_lap_num": 9, + "best_lap_time": 1056041, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 13610, + "country_code": "TR", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 77, + "finish_position_in_class": 35, + "flair_id": 215, + "flair_name": "Türkiye", + "flair_shortname": "TUR", + "friend": false, + "helmet": { + "pattern": 14, + "color1": "000000", + "color2": "ffa100", + "color3": "ff9100", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 6, + "interval": 121166, + "laps_complete": 3, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "23", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 75.97765, + "new_license_level": 19, + "new_sub_level": 369, + "new_ttrating": 1353, + "newi_rating": 2634, + "old_cpi": 37.180595, + "old_license_level": 17, + "old_sub_level": 174, + "old_ttrating": 1353, + "oldi_rating": 2611, + "opt_laps_complete": 0, + "position": 77, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 21, + "color1": "000000", + "color2": "de00ff", + "color3": "230057" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 39, + "finish_position_in_class": 13, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 14, + "interval": 114215, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "23", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 39, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 21, + "color1": "000000", + "color2": "de00ff", + "color3": "230057" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -467225, + "display_name": "DCS Racing Green", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1107588, + "best_lap_num": 11, + "best_lap_time": 1049592, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 7161, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -467225, + "cust_id": 1193552, + "display_name": "Nikos Nota", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1126673, + "best_lap_num": 11, + "best_lap_time": 1049592, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 7161, + "country_code": "GR", + "division": 3, + "division_name": "Division 4", + "drop_race": true, + "finish_position": 56, + "finish_position_in_class": 14, + "flair_id": 80, + "flair_name": "Greece", + "flair_shortname": "GRC", + "friend": false, + "helmet": { + "pattern": 67, + "color1": "ffffff", + "color2": "fff500", + "color3": "fff500", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 5, + "interval": 114717, + "laps_complete": 7, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "e0aa42", + "color2": "0ea2eb", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "22", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 29.04801, + "new_license_level": 13, + "new_sub_level": 194, + "new_ttrating": 1305, + "newi_rating": 3058, + "old_cpi": 21.94943, + "old_license_level": 13, + "old_sub_level": 150, + "old_ttrating": 1305, + "oldi_rating": 3142, + "opt_laps_complete": 0, + "position": 56, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "ffffff", + "color2": "60a6c9", + "color3": "1a1f43" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -467225, + "cust_id": 618064, + "display_name": "Lexi Taylor", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1094864, + "best_lap_num": 4, + "best_lap_time": 1057606, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 15175, + "country_code": "GB", + "division": 7, + "division_name": "Division 8", + "drop_race": true, + "finish_position": 79, + "finish_position_in_class": 37, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 35, + "color1": "ffe116", + "color2": "117900", + "color3": "00046b", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 122731, + "laps_complete": 6, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "e0aa42", + "color2": "0ea2eb", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "22", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 37.60446, + "new_license_level": 15, + "new_sub_level": 319, + "new_ttrating": 1350, + "newi_rating": 1864, + "old_cpi": 36.71224, + "old_license_level": 15, + "old_sub_level": 316, + "old_ttrating": 1350, + "oldi_rating": 1874, + "opt_laps_complete": 0, + "position": 79, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "ffffff", + "color2": "60a6c9", + "color3": "1a1f43" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": true, + "finish_position": 40, + "finish_position_in_class": 14, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 5, + "interval": 114717, + "laps_complete": 13, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "e0aa42", + "color2": "0ea2eb", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "22", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 40, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "ffffff", + "color2": "60a6c9", + "color3": "1a1f43" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -298823, + "display_name": "TEN MAD MEN Alpha", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1135797, + "best_lap_num": 7, + "best_lap_time": 1050137, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 7706, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -298823, + "cust_id": 376421, + "display_name": "Jorge Leiva Ruiz", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1135797, + "best_lap_num": 7, + "best_lap_time": 1050137, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 7706, + "country_code": "CL", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 58, + "finish_position_in_class": 16, + "flair_id": 44, + "flair_name": "Chile", + "flair_shortname": "CHL", + "friend": false, + "helmet": { + "pattern": 67, + "color1": "000000", + "color2": "00a0bc", + "color3": "c7c7c7", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 2, + "interval": 115262, + "laps_complete": 9, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "ffffff", + "color2": "0013a5", + "color3": "ff5c00", + "number_font": 0, + "number_color1": "f3eeeb", + "number_color2": "ffffff", + "number_color3": "ffffff", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "010", + "wheel_color": "32312f", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 65.18878, + "new_license_level": 19, + "new_sub_level": 346, + "new_ttrating": 1350, + "newi_rating": 2447, + "old_cpi": 66.34217, + "old_license_level": 19, + "old_sub_level": 348, + "old_ttrating": 1350, + "oldi_rating": 2484, + "opt_laps_complete": 0, + "position": 58, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "e1ce30", + "color2": "ebe8e8", + "color3": "1c46ed" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 41, + "finish_position_in_class": 15, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 2, + "interval": 115262, + "laps_complete": 9, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "ffffff", + "color2": "0013a5", + "color3": "ff5c00", + "number_font": 0, + "number_color1": "f3eeeb", + "number_color2": "ffffff", + "number_color3": "ffffff", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "010", + "wheel_color": "32312f", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 41, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "e1ce30", + "color2": "ebe8e8", + "color3": "1c46ed" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -413546, + "display_name": "Should be Fine Motorsports", + "aggregate_champ_points": 110, + "ai": false, + "average_lap": 1154469, + "best_lap_num": 3, + "best_lap_time": 1050330, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 7899, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -413546, + "cust_id": 1092119, + "display_name": "Chris Singh", + "aggregate_champ_points": 110, + "ai": false, + "average_lap": 1154469, + "best_lap_num": 3, + "best_lap_time": 1050330, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 7899, + "country_code": "US", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 59, + "finish_position_in_class": 17, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 22, + "color1": "f9ff00", + "color2": "ff0000", + "color3": "00c341", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 17, + "interval": 115455, + "laps_complete": 15, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 17, + "color1": "efd600", + "color2": "111111", + "color3": "d7162d", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "25", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 54.59016, + "new_license_level": 18, + "new_sub_level": 275, + "new_ttrating": 1350, + "newi_rating": 2797, + "old_cpi": 36.08681, + "old_license_level": 17, + "old_sub_level": 169, + "old_ttrating": 1350, + "oldi_rating": 2777, + "opt_laps_complete": 0, + "position": 59, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "00f035", + "color2": "020101", + "color3": "e61010" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 42, + "finish_position_in_class": 16, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 17, + "interval": 115455, + "laps_complete": 15, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 17, + "color1": "efd600", + "color2": "111111", + "color3": "d7162d", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "25", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 42, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "00f035", + "color2": "020101", + "color3": "e61010" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -454234, + "display_name": "TKG Simsport PRO", + "aggregate_champ_points": 128, + "ai": false, + "average_lap": 1140863, + "best_lap_num": 6, + "best_lap_time": 1050431, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8000, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -454234, + "cust_id": 678081, + "display_name": "Carter A Thompson", + "aggregate_champ_points": 128, + "ai": false, + "average_lap": 1155048, + "best_lap_num": 6, + "best_lap_time": 1050431, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8000, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 60, + "finish_position_in_class": 18, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "ff2202", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 6, + "interval": 115556, + "laps_complete": 6, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "20", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 31.197826, + "new_license_level": 14, + "new_sub_level": 246, + "new_ttrating": 1350, + "newi_rating": 2617, + "old_cpi": 24.810728, + "old_license_level": 14, + "old_sub_level": 211, + "old_ttrating": 1350, + "oldi_rating": 2600, + "opt_laps_complete": 0, + "position": 60, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 8, + "color1": "000000", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -454234, + "cust_id": 698537, + "display_name": "Ben Garey2", + "aggregate_champ_points": 128, + "ai": false, + "average_lap": 1131406, + "best_lap_num": 11, + "best_lap_time": 1059621, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 17190, + "country_code": "US", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 81, + "finish_position_in_class": 39, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 49, + "color1": "ffffff", + "color2": "ffffff", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 5, + "interval": 124746, + "laps_complete": 9, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "20", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 25.255388, + "new_license_level": 10, + "new_sub_level": 272, + "new_ttrating": 1350, + "newi_rating": 1750, + "old_cpi": 17.60599, + "old_license_level": 9, + "old_sub_level": 178, + "old_ttrating": 1350, + "oldi_rating": 1733, + "opt_laps_complete": 0, + "position": 81, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 8, + "color1": "000000", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 43, + "finish_position_in_class": 17, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 11, + "interval": 115556, + "laps_complete": 15, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "20", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 43, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 8, + "color1": "000000", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -483219, + "display_name": "Velocity X Rhythm Racing Team", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1103325, + "best_lap_num": 3, + "best_lap_time": 1050561, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 188, + "car_name": "McLaren 720S GT3 EVO", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8130, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -483219, + "cust_id": 1283272, + "display_name": "Mario García Muriel", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1103325, + "best_lap_num": 3, + "best_lap_time": 1050561, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 188, + "car_name": "McLaren 720S GT3 EVO", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8130, + "country_code": "ES", + "division": 1, + "division_name": "Division 2", + "drop_race": true, + "finish_position": 62, + "finish_position_in_class": 20, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "231f20", + "color2": "808080", + "color3": "f26722", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 13, + "interval": 115686, + "laps_complete": 3, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 188, + "pattern": 1, + "color1": "FF0000", + "color2": "00FF00", + "color3": "0000FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "31", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 97, + "new_cpi": 43.159573, + "new_license_level": 17, + "new_sub_level": 197, + "new_ttrating": 1350, + "newi_rating": 3435, + "old_cpi": 30.48215, + "old_license_level": 17, + "old_sub_level": 143, + "old_ttrating": 1350, + "oldi_rating": 3486, + "opt_laps_complete": 0, + "position": 62, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "231f20", + "color2": "808080", + "color3": "f26722" + }, + "watched": false, + "weight_penalty_kg": 5 + }, + { + "team_id": -483219, + "cust_id": 1233001, + "display_name": "Mauro Agustin Arriola Aranela", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 188, + "car_name": "McLaren 720S GT3 EVO", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "AR", + "division": 3, + "division_name": "Division 4", + "drop_race": true, + "finish_position": 94, + "finish_position_in_class": 51, + "flair_id": 13, + "flair_name": "Argentina", + "flair_shortname": "ARG", + "friend": false, + "helmet": { + "pattern": 9, + "color1": "0222f4", + "color2": "f9f9f9", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 2, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 188, + "pattern": 1, + "color1": "FF0000", + "color2": "00FF00", + "color3": "0000FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "31", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 97, + "new_cpi": 21.797512, + "new_license_level": 10, + "new_sub_level": 249, + "new_ttrating": 1350, + "newi_rating": 1665, + "old_cpi": 21.029593, + "old_license_level": 10, + "old_sub_level": 243, + "old_ttrating": 1350, + "oldi_rating": 1689, + "opt_laps_complete": 0, + "position": 94, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "231f20", + "color2": "808080", + "color3": "f26722" + }, + "watched": false, + "weight_penalty_kg": 5 + } + ], + "drop_race": true, + "finish_position": 44, + "finish_position_in_class": 18, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 15, + "interval": 115686, + "laps_complete": 3, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 188, + "pattern": 1, + "color1": "FF0000", + "color2": "00FF00", + "color3": "0000FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "31", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 97, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 44, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "231f20", + "color2": "808080", + "color3": "f26722" + }, + "watched": false, + "weight_penalty_kg": 5 + }, + { + "team_id": -287243, + "display_name": "Team MFM - SURVIVE!", + "aggregate_champ_points": 142, + "ai": false, + "average_lap": 1076492, + "best_lap_num": 9, + "best_lap_time": 1050900, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8469, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -287243, + "cust_id": 585611, + "display_name": "Finley Fitzsimmons", + "aggregate_champ_points": 142, + "ai": false, + "average_lap": 1076492, + "best_lap_num": 9, + "best_lap_time": 1050900, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8469, + "country_code": "GB", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 64, + "finish_position_in_class": 22, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 24, + "color1": "000000", + "color2": "c9fc00", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 3, + "interval": 116025, + "laps_complete": 9, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 17, + "color1": "dddddd", + "color2": "ffff00", + "color3": "252525", + "number_font": 0, + "number_color1": "000000", + "number_color2": "737373", + "number_color3": "ffffff", + "number_slant": 4, + "sponsor1": 138, + "sponsor2": 7, + "car_number": "21", + "wheel_color": "ffff00", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 73.801315, + "new_license_level": 19, + "new_sub_level": 365, + "new_ttrating": 1350, + "newi_rating": 2703, + "old_cpi": 48.809418, + "old_license_level": 18, + "old_sub_level": 259, + "old_ttrating": 1350, + "oldi_rating": 2685, + "opt_laps_complete": 0, + "position": 64, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 7, + "color1": "252525", + "color2": "DDDDDD", + "color3": "004895" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -287243, + "cust_id": 638036, + "display_name": "Cody Gayer", + "aggregate_champ_points": 142, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "US", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 90, + "finish_position_in_class": 48, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 67, + "color1": "01020e", + "color2": "d5c325", + "color3": "c91b20", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 1, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 17, + "color1": "dddddd", + "color2": "ffff00", + "color3": "252525", + "number_font": 0, + "number_color1": "000000", + "number_color2": "737373", + "number_color3": "ffffff", + "number_slant": 4, + "sponsor1": 138, + "sponsor2": 7, + "car_number": "21", + "wheel_color": "ffff00", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 81.2526, + "new_license_level": 20, + "new_sub_level": 420, + "new_ttrating": 1350, + "newi_rating": 3094, + "old_cpi": 86.255455, + "old_license_level": 20, + "old_sub_level": 429, + "old_ttrating": 1350, + "oldi_rating": 3072, + "opt_laps_complete": 0, + "position": 90, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 7, + "color1": "252525", + "color2": "DDDDDD", + "color3": "004895" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 45, + "finish_position_in_class": 19, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 3, + "interval": 116025, + "laps_complete": 10, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 17, + "color1": "dddddd", + "color2": "ffff00", + "color3": "252525", + "number_font": 0, + "number_color1": "000000", + "number_color2": "737373", + "number_color3": "ffffff", + "number_slant": 4, + "sponsor1": 138, + "sponsor2": 7, + "car_number": "21", + "wheel_color": "ffff00", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 45, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 7, + "color1": "252525", + "color2": "DDDDDD", + "color3": "004895" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -243532, + "display_name": "THLF eSports Multinational by Raceverse.at", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1107856, + "best_lap_num": 5, + "best_lap_time": 1051821, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 9390, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -243532, + "cust_id": 1335570, + "display_name": "Jordan Elmore", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1107856, + "best_lap_num": 5, + "best_lap_time": 1051821, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 9390, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 65, + "finish_position_in_class": 23, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 56, + "color1": "ff0000", + "color2": "000000", + "color3": "acacac", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 7, + "interval": 116946, + "laps_complete": 9, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 23, + "color1": "ff9cfd", + "color2": "ffffff", + "color3": "0500ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "444", + "wheel_color": "ffffff", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 61.234966, + "new_license_level": 18, + "new_sub_level": 293, + "new_ttrating": 1325, + "newi_rating": 2474, + "old_cpi": 59.90275, + "old_license_level": 18, + "old_sub_level": 290, + "old_ttrating": 1325, + "oldi_rating": 2494, + "opt_laps_complete": 0, + "position": 65, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 10, + "color1": "00ff1e", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 46, + "finish_position_in_class": 20, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 7, + "interval": 116946, + "laps_complete": 9, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 23, + "color1": "ff9cfd", + "color2": "ffffff", + "color3": "0500ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "444", + "wheel_color": "ffffff", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 46, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 10, + "color1": "00ff1e", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -248147, + "display_name": "IPM Yellow", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 1078228, + "best_lap_num": 2, + "best_lap_time": 1051935, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 173, + "car_name": "Ferrari 296 GT3", + "carcfg": -1, + "champ_points": 0, + "class_interval": 9504, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -248147, + "cust_id": 19071, + "display_name": "Peter Terrana", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 1078228, + "best_lap_num": 2, + "best_lap_time": 1051935, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 173, + "car_name": "Ferrari 296 GT3", + "carcfg": -1, + "champ_points": 0, + "class_interval": 9504, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 67, + "finish_position_in_class": 25, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 34, + "color1": "DAF109", + "color2": "000000", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 13, + "interval": 117060, + "laps_complete": 9, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 173, + "pattern": 9, + "color1": "ccf312", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "698", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 69.72993, + "new_license_level": 19, + "new_sub_level": 356, + "new_ttrating": 1350, + "newi_rating": 2620, + "old_cpi": 45.854206, + "old_license_level": 18, + "old_sub_level": 249, + "old_ttrating": 1350, + "oldi_rating": 2617, + "opt_laps_complete": 0, + "position": 67, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 27, + "color1": "23231f", + "color2": "131415", + "color3": "f2f12c" + }, + "watched": false, + "weight_penalty_kg": 3 + } + ], + "drop_race": false, + "finish_position": 47, + "finish_position_in_class": 21, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 13, + "interval": 117060, + "laps_complete": 9, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 173, + "pattern": 9, + "color1": "ccf312", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "698", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 47, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 27, + "color1": "23231f", + "color2": "131415", + "color3": "f2f12c" + }, + "watched": false, + "weight_penalty_kg": 3 + }, + { + "team_id": -454924, + "display_name": "Top Tier Motorsport #222", + "aggregate_champ_points": 102, + "ai": false, + "average_lap": 1150731, + "best_lap_num": 1, + "best_lap_time": 1052436, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 10005, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -454924, + "cust_id": 855270, + "display_name": "Dan Munro", + "aggregate_champ_points": 102, + "ai": false, + "average_lap": 1106966, + "best_lap_num": 1, + "best_lap_time": 1052436, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 10005, + "country_code": "GB", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 68, + "finish_position_in_class": 26, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "111111", + "color2": "ed1c24", + "color3": "cccccc", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 4, + "interval": 117561, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 4, + "color1": "efd600", + "color2": "111111", + "color3": "d7162d", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "222", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 37.095116, + "new_license_level": 11, + "new_sub_level": 373, + "new_ttrating": 1350, + "newi_rating": 2026, + "old_cpi": 19.39725, + "old_license_level": 10, + "old_sub_level": 230, + "old_ttrating": 1350, + "oldi_rating": 2017, + "opt_laps_complete": 0, + "position": 68, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "9500f0", + "color2": "111111", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -454924, + "cust_id": 212484, + "display_name": "Thomas Knapton", + "aggregate_champ_points": 102, + "ai": false, + "average_lap": 1058250, + "best_lap_num": 9, + "best_lap_time": 1053767, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 11336, + "country_code": "TH", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 75, + "finish_position_in_class": 33, + "flair_id": 208, + "flair_name": "Thailand", + "flair_shortname": "THA", + "friend": false, + "helmet": { + "pattern": 49, + "color1": "ffffff", + "color2": "ed2129", + "color3": "2a3795", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": 118892, + "laps_complete": 3, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 4, + "color1": "efd600", + "color2": "111111", + "color3": "d7162d", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "222", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 81.22818, + "new_license_level": 20, + "new_sub_level": 420, + "new_ttrating": 1391, + "newi_rating": 2462, + "old_cpi": 83.66629, + "old_license_level": 20, + "old_sub_level": 425, + "old_ttrating": 1391, + "oldi_rating": 2450, + "opt_laps_complete": 0, + "position": 75, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "9500f0", + "color2": "111111", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -454924, + "cust_id": 1093170, + "display_name": "Tyler Parslow", + "aggregate_champ_points": 102, + "ai": false, + "average_lap": 1241562, + "best_lap_num": 6, + "best_lap_time": 1059563, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 17132, + "country_code": "GB", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 80, + "finish_position_in_class": 38, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "9c00f0", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 3, + "interval": 124688, + "laps_complete": 4, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 4, + "color1": "efd600", + "color2": "111111", + "color3": "d7162d", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "222", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 82.85521, + "new_license_level": 19, + "new_sub_level": 382, + "new_ttrating": 1323, + "newi_rating": 2073, + "old_cpi": 57.45987, + "old_license_level": 19, + "old_sub_level": 327, + "old_ttrating": 1323, + "oldi_rating": 2063, + "opt_laps_complete": 0, + "position": 80, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "9500f0", + "color2": "111111", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 48, + "finish_position_in_class": 22, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 8, + "interval": 117561, + "laps_complete": 9, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 4, + "color1": "efd600", + "color2": "111111", + "color3": "d7162d", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "222", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 48, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "9500f0", + "color2": "111111", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -298487, + "display_name": "Parc Motorsport Team Purple", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1092090, + "best_lap_num": 3, + "best_lap_time": 1052492, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 10061, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -298487, + "cust_id": 784148, + "display_name": "Krzysztof Olender2", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1092090, + "best_lap_num": 3, + "best_lap_time": 1052492, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 10061, + "country_code": "PL", + "division": 3, + "division_name": "Division 4", + "drop_race": true, + "finish_position": 69, + "finish_position_in_class": 27, + "flair_id": 167, + "flair_name": "Poland", + "flair_shortname": "POL", + "friend": false, + "helmet": { + "pattern": 43, + "color1": "eaff00", + "color2": "00e0ff", + "color3": "db00ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 13, + "interval": 117617, + "laps_complete": 7, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 9, + "color1": "000000", + "color2": "8700ff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "97", + "wheel_color": "000000", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 36.04055, + "new_license_level": 14, + "new_sub_level": 269, + "new_ttrating": 1350, + "newi_rating": 2615, + "old_cpi": 42.249332, + "old_license_level": 14, + "old_sub_level": 293, + "old_ttrating": 1350, + "oldi_rating": 2719, + "opt_laps_complete": 0, + "position": 69, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 28, + "color1": "000000", + "color2": "7800ff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -298487, + "cust_id": 1056161, + "display_name": "Aleks Rusinek", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "PL", + "division": 3, + "division_name": "Division 4", + "drop_race": true, + "finish_position": 97, + "finish_position_in_class": 52, + "flair_id": 167, + "flair_name": "Poland", + "flair_shortname": "POL", + "friend": false, + "helmet": { + "pattern": 29, + "color1": "8000ff", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 9, + "color1": "000000", + "color2": "8700ff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "97", + "wheel_color": "000000", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 46.348267, + "new_license_level": 18, + "new_sub_level": 251, + "new_ttrating": 1350, + "newi_rating": 2095, + "old_cpi": 46.346268, + "old_license_level": 18, + "old_sub_level": 251, + "old_ttrating": 1350, + "oldi_rating": 2095, + "opt_laps_complete": 0, + "position": 97, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 28, + "color1": "000000", + "color2": "7800ff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": true, + "finish_position": 49, + "finish_position_in_class": 23, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 13, + "interval": 117617, + "laps_complete": 7, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 9, + "color1": "000000", + "color2": "8700ff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "97", + "wheel_color": "000000", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 49, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 28, + "color1": "000000", + "color2": "7800ff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -332725, + "display_name": "Miracle Kids Success Academy", + "aggregate_champ_points": 53, + "ai": false, + "average_lap": 1114172, + "best_lap_num": 3, + "best_lap_time": 1052654, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 206, + "car_name": "Aston Martin Vantage GT3 EVO", + "carcfg": -1, + "champ_points": 0, + "class_interval": 10223, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -332725, + "cust_id": 920918, + "display_name": "Justin Noel", + "aggregate_champ_points": 53, + "ai": false, + "average_lap": 1114172, + "best_lap_num": 3, + "best_lap_time": 1052654, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 206, + "car_name": "Aston Martin Vantage GT3 EVO", + "carcfg": -1, + "champ_points": 0, + "class_interval": 10223, + "country_code": "US", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 70, + "finish_position_in_class": 28, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 54, + "color1": "ffffff", + "color2": "ff0000", + "color3": "0003ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 3, + "interval": 117779, + "laps_complete": 8, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 206, + "pattern": 19, + "color1": "FFFFFF", + "color2": "FF0000", + "color3": "0003FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "24", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 99, + "new_cpi": 133.95572, + "new_license_level": 20, + "new_sub_level": 497, + "new_ttrating": 1350, + "newi_rating": 3078, + "old_cpi": 48.731533, + "old_license_level": 18, + "old_sub_level": 258, + "old_ttrating": 1350, + "oldi_rating": 3089, + "opt_laps_complete": 0, + "position": 70, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 0, + "color1": "2a3795", + "color2": "ec1c23", + "color3": "eeeeee" + }, + "watched": false, + "weight_penalty_kg": 12 + } + ], + "drop_race": false, + "finish_position": 50, + "finish_position_in_class": 24, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 3, + "interval": 117779, + "laps_complete": 8, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 206, + "pattern": 19, + "color1": "FFFFFF", + "color2": "FF0000", + "color3": "0003FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "24", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 99, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 50, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 0, + "color1": "2a3795", + "color2": "ec1c23", + "color3": "eeeeee" + }, + "watched": false, + "weight_penalty_kg": 12 + }, + { + "team_id": -224061, + "display_name": "Pineapple Racing Club", + "aggregate_champ_points": 88, + "ai": false, + "average_lap": 1090464, + "best_lap_num": 4, + "best_lap_time": 1053318, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 185, + "car_name": "Ford Mustang GT3", + "carcfg": -1, + "champ_points": 0, + "class_interval": 10887, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -224061, + "cust_id": 301782, + "display_name": "Ben Cooper5", + "aggregate_champ_points": 88, + "ai": false, + "average_lap": 1090464, + "best_lap_num": 4, + "best_lap_time": 1053318, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 185, + "car_name": "Ford Mustang GT3", + "carcfg": -1, + "champ_points": 0, + "class_interval": 10887, + "country_code": "GB", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 72, + "finish_position_in_class": 30, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 46, + "color1": "565555", + "color2": "fff500", + "color3": "ae0077", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 4, + "interval": 118443, + "laps_complete": 6, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 185, + "pattern": 12, + "color1": "e3ff54", + "color2": "000000", + "color3": "004092", + "number_font": 0, + "number_color1": "004092", + "number_color2": "ffffff", + "number_color3": "777777", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "14", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 158.22897, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 3233, + "old_cpi": 202.223, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 3228, + "opt_laps_complete": 0, + "position": 72, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 19, + "color1": "252525", + "color2": "7952a2", + "color3": "ecef00" + }, + "watched": false, + "weight_penalty_kg": 10 + } + ], + "drop_race": false, + "finish_position": 51, + "finish_position_in_class": 25, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 4, + "interval": 118443, + "laps_complete": 6, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 185, + "pattern": 12, + "color1": "e3ff54", + "color2": "000000", + "color3": "004092", + "number_font": 0, + "number_color1": "004092", + "number_color2": "ffffff", + "number_color3": "777777", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "14", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 51, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 19, + "color1": "252525", + "color2": "7952a2", + "color3": "ecef00" + }, + "watched": false, + "weight_penalty_kg": 10 + }, + { + "team_id": -480346, + "display_name": "Almeida Endurance Racing Black", + "aggregate_champ_points": 124, + "ai": false, + "average_lap": 1095252, + "best_lap_num": 11, + "best_lap_time": 1053439, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 11008, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -480346, + "cust_id": 346886, + "display_name": "Adrian Hopp", + "aggregate_champ_points": 124, + "ai": false, + "average_lap": 1095252, + "best_lap_num": 11, + "best_lap_time": 1053439, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 11008, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 73, + "finish_position_in_class": 31, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 21, + "color1": "000000", + "color2": "ffffff", + "color3": "fa0200", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 3, + "interval": 118564, + "laps_complete": 12, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 14, + "color1": "FFED00", + "color2": "00C4FF", + "color3": "87C42E", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "18", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 161.57109, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1311, + "newi_rating": 3055, + "old_cpi": 84.49169, + "old_license_level": 19, + "old_sub_level": 385, + "old_ttrating": 1311, + "oldi_rating": 3033, + "opt_laps_complete": 0, + "position": 73, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 32, + "color1": "ffffff", + "color2": "fff200", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -480346, + "cust_id": 770894, + "display_name": "Alexander Eger", + "aggregate_champ_points": 124, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "DE", + "division": 5, + "division_name": "Division 6", + "drop_race": false, + "finish_position": 89, + "finish_position_in_class": 47, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "111111", + "color2": "b82f37", + "color3": "284a94", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 1, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 14, + "color1": "FFED00", + "color2": "00C4FF", + "color3": "87C42E", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "18", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 100.03695, + "new_license_level": 20, + "new_sub_level": 452, + "new_ttrating": 1350, + "newi_rating": 2036, + "old_cpi": 38.330452, + "old_license_level": 18, + "old_sub_level": 222, + "old_ttrating": 1350, + "oldi_rating": 2017, + "opt_laps_complete": 0, + "position": 89, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 32, + "color1": "ffffff", + "color2": "fff200", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 52, + "finish_position_in_class": 26, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 3, + "interval": 118564, + "laps_complete": 13, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 14, + "color1": "FFED00", + "color2": "00C4FF", + "color3": "87C42E", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "18", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 52, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 32, + "color1": "ffffff", + "color2": "fff200", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -434794, + "display_name": "Rag1ng Dragons e-Sports #Team Gold", + "aggregate_champ_points": 106, + "ai": false, + "average_lap": 1121741, + "best_lap_num": 4, + "best_lap_time": 1053675, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 11244, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -434794, + "cust_id": 785721, + "display_name": "Lucas Benini", + "aggregate_champ_points": 106, + "ai": false, + "average_lap": 1121741, + "best_lap_num": 4, + "best_lap_time": 1053675, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 11244, + "country_code": "BR", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 74, + "finish_position_in_class": 32, + "flair_id": 31, + "flair_name": "Brazil", + "flair_shortname": "BRA", + "friend": false, + "helmet": { + "pattern": 22, + "color1": "ffed00", + "color2": "008cff", + "color3": "1cff00", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 5, + "interval": 118800, + "laps_complete": 9, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 4, + "color1": "effc53", + "color2": "43cd41", + "color3": "1e42db", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "30", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 108.44981, + "new_license_level": 20, + "new_sub_level": 465, + "new_ttrating": 1291, + "newi_rating": 2547, + "old_cpi": 54.275417, + "old_license_level": 19, + "old_sub_level": 318, + "old_ttrating": 1291, + "oldi_rating": 2534, + "opt_laps_complete": 0, + "position": 74, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "22b428", + "color2": "353bcc", + "color3": "d3f118" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 53, + "finish_position_in_class": 27, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 5, + "interval": 118800, + "laps_complete": 9, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 4, + "color1": "effc53", + "color2": "43cd41", + "color3": "1e42db", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "30", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 53, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "22b428", + "color2": "353bcc", + "color3": "d3f118" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -142589, + "display_name": "Team Highside - Vette", + "aggregate_champ_points": 48, + "ai": false, + "average_lap": 1089525, + "best_lap_num": 6, + "best_lap_time": 1055619, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 184, + "car_name": "Chevrolet Corvette Z06 GT3.R", + "carcfg": -1, + "champ_points": 0, + "class_interval": 13188, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -142589, + "cust_id": 45780, + "display_name": "Brandon Hastings", + "aggregate_champ_points": 48, + "ai": false, + "average_lap": 1089525, + "best_lap_num": 6, + "best_lap_time": 1055619, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 184, + "car_name": "Chevrolet Corvette Z06 GT3.R", + "carcfg": -1, + "champ_points": 0, + "class_interval": 13188, + "country_code": "US", + "division": 7, + "division_name": "Division 8", + "drop_race": false, + "finish_position": 76, + "finish_position_in_class": 34, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 0, + "color1": "000000", + "color2": "000000", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 120744, + "laps_complete": 6, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 184, + "pattern": 12, + "color1": "0085ff", + "color2": "0085ff", + "color3": "d50000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "242424", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "216", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 96, + "new_cpi": 108.082184, + "new_license_level": 20, + "new_sub_level": 464, + "new_ttrating": 1296, + "newi_rating": 1209, + "old_cpi": 52.402893, + "old_license_level": 18, + "old_sub_level": 269, + "old_ttrating": 1296, + "oldi_rating": 1216, + "opt_laps_complete": 0, + "position": 76, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 25, + "color1": "FA7400", + "color2": "000000", + "color3": "FFFFFF" + }, + "watched": false, + "weight_penalty_kg": 10 + } + ], + "drop_race": false, + "finish_position": 54, + "finish_position_in_class": 28, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 120744, + "laps_complete": 6, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 184, + "pattern": 12, + "color1": "0085ff", + "color2": "0085ff", + "color3": "d50000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "242424", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "216", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 96, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 54, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 25, + "color1": "FA7400", + "color2": "000000", + "color3": "FFFFFF" + }, + "watched": false, + "weight_penalty_kg": 10 + }, + { + "team_id": -298205, + "display_name": "CDLC", + "aggregate_champ_points": 79, + "ai": false, + "average_lap": 1080851, + "best_lap_num": 10, + "best_lap_time": 1060042, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 188, + "car_name": "McLaren 720S GT3 EVO", + "carcfg": -1, + "champ_points": 0, + "class_interval": 17611, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -298205, + "cust_id": 692986, + "display_name": "Andreas Carlsson", + "aggregate_champ_points": 79, + "ai": false, + "average_lap": 1071648, + "best_lap_num": 10, + "best_lap_time": 1060042, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 188, + "car_name": "McLaren 720S GT3 EVO", + "carcfg": -1, + "champ_points": 0, + "class_interval": 17611, + "country_code": "SE", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 82, + "finish_position_in_class": 40, + "flair_id": 203, + "flair_name": "Sweden", + "flair_shortname": "SWE", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "000000", + "color2": "1e1e1e", + "color3": "007dff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": 125167, + "laps_complete": 4, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 188, + "pattern": 4, + "color1": "0073d2", + "color2": "ff5c00", + "color3": "292d33", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "46", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 97, + "new_cpi": 336.55923, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1375, + "newi_rating": 2873, + "old_cpi": 138.13417, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1375, + "oldi_rating": 2867, + "opt_laps_complete": 0, + "position": 82, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 31, + "color1": "000000", + "color2": "0378ff", + "color3": "ff4d00" + }, + "watched": false, + "weight_penalty_kg": 5 + }, + { + "team_id": -298205, + "cust_id": 340070, + "display_name": "Marco Henderson", + "aggregate_champ_points": 79, + "ai": false, + "average_lap": 1084795, + "best_lap_num": 6, + "best_lap_time": 1065605, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 188, + "car_name": "McLaren 720S GT3 EVO", + "carcfg": -1, + "champ_points": 0, + "class_interval": 23174, + "country_code": "DE", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 85, + "finish_position_in_class": 43, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 58, + "color1": "000000", + "color2": "e9ed21", + "color3": "ff0000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": 130730, + "laps_complete": 7, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 188, + "pattern": 4, + "color1": "0073d2", + "color2": "ff5c00", + "color3": "292d33", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "46", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 97, + "new_cpi": 106.09341, + "new_license_level": 20, + "new_sub_level": 461, + "new_ttrating": 1350, + "newi_rating": 1709, + "old_cpi": 127.72311, + "old_license_level": 20, + "old_sub_level": 490, + "old_ttrating": 1350, + "oldi_rating": 1704, + "opt_laps_complete": 0, + "position": 85, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 31, + "color1": "000000", + "color2": "0378ff", + "color3": "ff4d00" + }, + "watched": false, + "weight_penalty_kg": 5 + } + ], + "drop_race": false, + "finish_position": 55, + "finish_position_in_class": 29, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 2, + "interval": 125167, + "laps_complete": 11, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 188, + "pattern": 4, + "color1": "0073d2", + "color2": "ff5c00", + "color3": "292d33", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "46", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 97, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 55, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 31, + "color1": "000000", + "color2": "0378ff", + "color3": "ff4d00" + }, + "watched": false, + "weight_penalty_kg": 5 + }, + { + "team_id": -471181, + "display_name": "PRS Team Europe", + "aggregate_champ_points": 66, + "ai": false, + "average_lap": 1083933, + "best_lap_num": 7, + "best_lap_time": 1063126, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 185, + "car_name": "Ford Mustang GT3", + "carcfg": -1, + "champ_points": 0, + "class_interval": 20695, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -471181, + "cust_id": 524603, + "display_name": "Philip Zangger", + "aggregate_champ_points": 66, + "ai": false, + "average_lap": 1083933, + "best_lap_num": 7, + "best_lap_time": 1063126, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 185, + "car_name": "Ford Mustang GT3", + "carcfg": -1, + "champ_points": 0, + "class_interval": 20695, + "country_code": "AT", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 84, + "finish_position_in_class": 42, + "flair_id": 17, + "flair_name": "Austria", + "flair_shortname": "AUT", + "friend": false, + "helmet": { + "pattern": 35, + "color1": "37b7ff", + "color2": "0083ff", + "color3": "0030ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 3, + "interval": 128251, + "laps_complete": 11, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 185, + "pattern": 20, + "color1": "515151", + "color2": "FFFFFF", + "color3": "000000", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "16", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 191.81573, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2254, + "old_cpi": 228.99771, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 2255, + "opt_laps_complete": 0, + "position": 84, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 3, + "color1": "0083ff", + "color2": "ffffff", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 10 + } + ], + "drop_race": false, + "finish_position": 56, + "finish_position_in_class": 30, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 3, + "interval": 128251, + "laps_complete": 11, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 185, + "pattern": 20, + "color1": "515151", + "color2": "FFFFFF", + "color3": "000000", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "16", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 56, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 3, + "color1": "0083ff", + "color2": "ffffff", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 10 + }, + { + "team_id": -333656, + "display_name": "Bite Point Racing", + "aggregate_champ_points": 57, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -333656, + "cust_id": 936022, + "display_name": "Francis Crosby", + "aggregate_champ_points": 57, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "CA", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 93, + "finish_position_in_class": 50, + "flair_id": 39, + "flair_name": "Canada", + "flair_shortname": "CAN", + "friend": false, + "helmet": { + "pattern": 61, + "color1": "ff0000", + "color2": "f7f7f7", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 2, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "fd0000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "45", + "wheel_color": "000000", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 57.7853, + "new_license_level": 19, + "new_sub_level": 328, + "new_ttrating": 1350, + "newi_rating": 2454, + "old_cpi": 58.822685, + "old_license_level": 19, + "old_sub_level": 330, + "old_ttrating": 1350, + "oldi_rating": 2457, + "opt_laps_complete": 0, + "position": 93, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 32, + "color1": "000000", + "color2": "04db00", + "color3": "9800d7" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 57, + "finish_position_in_class": 31, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 2, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "fd0000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "45", + "wheel_color": "000000", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 57, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 32, + "color1": "000000", + "color2": "04db00", + "color3": "9800d7" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -401232, + "display_name": "Kika Cetasso Racing Team", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [], + "drop_race": false, + "finish_position": 58, + "finish_position_in_class": 32, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "ffffff", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 3, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "12", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 58, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 2, + "color1": "000000", + "color2": "ffffff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ] + }, + { + "simsession_number": -1, + "simsession_name": "QUALIFY", + "simsession_type": 4, + "simsession_type_name": "Lone Qualifying", + "simsession_subtype": 0, + "weather_result": { + "avg_skies": 3, + "avg_cloud_cover_pct": 98.8582, + "min_cloud_cover_pct": 98.669365, + "max_cloud_cover_pct": 99.11291, + "temp_units": 1, + "avg_temp": 21.040504, + "min_temp": 21.02674, + "max_temp": 21.063948, + "avg_rel_humidity": 60.48371, + "wind_units": 1, + "avg_wind_speed": 10.450963, + "min_wind_speed": 10.255288, + "max_wind_speed": 10.732762, + "avg_wind_dir": 0, + "max_fog": 0, + "fog_time_pct": 0, + "precip_time_pct": 0, + "precip_mm": 0, + "precip_mm2hr_before_session": 0, + "simulated_start_time": "2026-01-24T13:40:00" + }, + "results": [ + { + "team_id": -379972, + "display_name": "Primal Racing 1", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 935258, + "best_lap_num": 2, + "best_lap_time": 932813, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:06:53Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 932813, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 0, + "class_interval": 0, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -379972, + "cust_id": 737050, + "display_name": "Magnus Mortensen2", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 935258, + "best_lap_num": 2, + "best_lap_time": 932813, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:06:53Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 932813, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 0, + "class_interval": 0, + "country_code": "DK", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 0, + "finish_position_in_class": 0, + "flair_id": 56, + "flair_name": "Denmark", + "flair_shortname": "DNK", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "000000", + "color2": "1c1a7b", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 0, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "8", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 75.986855, + "new_license_level": 20, + "new_sub_level": 410, + "new_ttrating": 1350, + "newi_rating": 2622, + "old_cpi": 100.1537, + "old_license_level": 20, + "old_sub_level": 452, + "old_ttrating": 1350, + "oldi_rating": 2672, + "opt_laps_complete": 0, + "position": 0, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "f1732e", + "color2": "372a75", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 0, + "finish_position_in_class": 0, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 0, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "8", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 0, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "f1732e", + "color2": "372a75", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -246761, + "display_name": "Vortex Racing Alpha", + "aggregate_champ_points": 32, + "ai": false, + "average_lap": 938462, + "best_lap_num": 2, + "best_lap_time": 932973, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:04Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 932973, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 160, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -246761, + "cust_id": 447778, + "display_name": "craig Benefiel", + "aggregate_champ_points": 32, + "ai": false, + "average_lap": 938462, + "best_lap_num": 2, + "best_lap_time": 932973, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:04Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 932973, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 160, + "country_code": "US", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 1, + "finish_position_in_class": 1, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "111111", + "color2": "cccccc", + "color3": "ed1c24", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 160, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 5, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 2, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "51", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 76.59716, + "new_license_level": 19, + "new_sub_level": 370, + "new_ttrating": 1350, + "newi_rating": 1974, + "old_cpi": 43.42212, + "old_license_level": 18, + "old_sub_level": 241, + "old_ttrating": 1350, + "oldi_rating": 1991, + "opt_laps_complete": 0, + "position": 1, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 27, + "color1": "111111", + "color2": "83ccff", + "color3": "cccccc" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 1, + "finish_position_in_class": 1, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 160, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 5, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 2, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "51", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 1, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 27, + "color1": "111111", + "color2": "83ccff", + "color3": "cccccc" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -361961, + "display_name": "Inside Curb Racing", + "aggregate_champ_points": 43, + "ai": false, + "average_lap": 940545, + "best_lap_num": 2, + "best_lap_time": 936948, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:22Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 936948, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 4135, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -361961, + "cust_id": 326217, + "display_name": "Wouter M Merks", + "aggregate_champ_points": 43, + "ai": false, + "average_lap": 940545, + "best_lap_num": 2, + "best_lap_time": 936948, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:22Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 936948, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 4135, + "country_code": "NL", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 2, + "finish_position_in_class": 2, + "flair_id": 146, + "flair_name": "Netherlands", + "flair_shortname": "NLD", + "friend": false, + "helmet": { + "pattern": 65, + "color1": "14fff8", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 4135, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 10, + "color1": "ffffff", + "color2": "ffffff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "1", + "wheel_color": "878787", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 139.78241, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 3051, + "old_cpi": 53.386677, + "old_license_level": 19, + "old_sub_level": 316, + "old_ttrating": 1350, + "oldi_rating": 3062, + "opt_laps_complete": 0, + "position": 2, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 2, + "color1": "000000", + "color2": "ffffff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 2, + "finish_position_in_class": 2, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 4135, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 10, + "color1": "ffffff", + "color2": "ffffff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "1", + "wheel_color": "878787", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 2, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 2, + "color1": "000000", + "color2": "ffffff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -385527, + "display_name": "EHR Blue", + "aggregate_champ_points": 118, + "ai": false, + "average_lap": 940941, + "best_lap_num": 2, + "best_lap_time": 937986, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:07Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 937986, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 5173, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -385527, + "cust_id": 289709, + "display_name": "Greyson Oppermann", + "aggregate_champ_points": 118, + "ai": false, + "average_lap": 940941, + "best_lap_num": 2, + "best_lap_time": 937986, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:07Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 937986, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 5173, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 3, + "finish_position_in_class": 3, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 15, + "color1": "ffffff", + "color2": "ffffff", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 5173, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 14, + "number_color1": "ffffff", + "number_color2": "cba7f4", + "number_color3": "352e74", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "808", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 121.81984, + "new_license_level": 12, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2415, + "old_cpi": 28.188484, + "old_license_level": 10, + "old_sub_level": 290, + "old_ttrating": 1350, + "oldi_rating": 2392, + "opt_laps_complete": 0, + "position": 3, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 13, + "color1": "352e74", + "color2": "4C99D3", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 3, + "finish_position_in_class": 3, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 5173, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 14, + "number_color1": "ffffff", + "number_color2": "cba7f4", + "number_color3": "352e74", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "808", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 3, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 13, + "color1": "352e74", + "color2": "4C99D3", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -278104, + "display_name": "Melanzani Racing 102", + "aggregate_champ_points": 21, + "ai": false, + "average_lap": 940995, + "best_lap_num": 2, + "best_lap_time": 938535, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:39Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 938535, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 5722, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -278104, + "cust_id": 119560, + "display_name": "Alvin Frauenknecht", + "aggregate_champ_points": 21, + "ai": false, + "average_lap": 940995, + "best_lap_num": 2, + "best_lap_time": 938535, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:39Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 938535, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 5722, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 4, + "finish_position_in_class": 4, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 63, + "color1": "000000", + "color2": "717171", + "color3": "e5ff00", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 5722, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 0, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "cccccc", + "number_color3": "666666", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "4", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 76.36244, + "new_license_level": 19, + "new_sub_level": 370, + "new_ttrating": 1350, + "newi_rating": 2133, + "old_cpi": 31.524208, + "old_license_level": 17, + "old_sub_level": 148, + "old_ttrating": 1350, + "oldi_rating": 2162, + "opt_laps_complete": 0, + "position": 4, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 22, + "color1": "000000", + "color2": "69b9eb", + "color3": "fa8c17" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 4, + "finish_position_in_class": 4, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 5722, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 0, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "cccccc", + "number_color3": "666666", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "4", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 4, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 22, + "color1": "000000", + "color2": "69b9eb", + "color3": "fa8c17" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -303706, + "display_name": "Savage Sim Racing - Team 80HD", + "aggregate_champ_points": 86, + "ai": false, + "average_lap": 943662, + "best_lap_num": 2, + "best_lap_time": 939928, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:06:51Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 939928, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 7115, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -303706, + "cust_id": 912397, + "display_name": "Clayton Sanchez2", + "aggregate_champ_points": 86, + "ai": false, + "average_lap": 943662, + "best_lap_num": 2, + "best_lap_time": 939928, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:06:51Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 939928, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 7115, + "country_code": "US", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 5, + "finish_position_in_class": 5, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "320159", + "color2": "9705fc", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 7115, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 22, + "color1": "000000", + "color2": "01ffff", + "color3": "a30dbe", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 239, + "sponsor2": 240, + "car_number": "66", + "wheel_color": "767676", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 267.99796, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2906, + "old_cpi": 126.12498, + "old_license_level": 20, + "old_sub_level": 488, + "old_ttrating": 1350, + "oldi_rating": 2901, + "opt_laps_complete": 0, + "position": 5, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 28, + "color1": "434343", + "color2": "fbfbfb", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 5, + "finish_position_in_class": 5, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 7115, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 22, + "color1": "000000", + "color2": "01ffff", + "color3": "a30dbe", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 239, + "sponsor2": 240, + "car_number": "66", + "wheel_color": "767676", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 5, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 28, + "color1": "434343", + "color2": "fbfbfb", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -298033, + "display_name": "Piki SCT", + "aggregate_champ_points": 64, + "ai": false, + "average_lap": 944128, + "best_lap_num": 2, + "best_lap_time": 940384, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:06:58Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 940384, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 0, + "class_interval": 7571, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -298033, + "cust_id": 1094388, + "display_name": "David Orgaz", + "aggregate_champ_points": 64, + "ai": false, + "average_lap": 944128, + "best_lap_num": 2, + "best_lap_time": 940384, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:06:58Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 940384, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 0, + "class_interval": 7571, + "country_code": "ES", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 6, + "finish_position_in_class": 6, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 20, + "color1": "111111", + "color2": "30b84e", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 7571, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 7, + "color1": "6589F4", + "color2": "C91919", + "color3": "F5FF7D", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "5", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 93.97715, + "new_license_level": 20, + "new_sub_level": 443, + "new_ttrating": 1350, + "newi_rating": 2440, + "old_cpi": 62.371994, + "old_license_level": 18, + "old_sub_level": 296, + "old_ttrating": 1350, + "oldi_rating": 2441, + "opt_laps_complete": 0, + "position": 6, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 10, + "color1": "5dddc2", + "color2": "19d137", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 6, + "finish_position_in_class": 6, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 7571, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 7, + "color1": "6589F4", + "color2": "C91919", + "color3": "F5FF7D", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "5", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 6, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 10, + "color1": "5dddc2", + "color2": "19d137", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -199580, + "display_name": "IntoTheApex.com Gold", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 944584, + "best_lap_num": 2, + "best_lap_time": 940787, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:06:59Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 940787, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 7974, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -199580, + "cust_id": 142817, + "display_name": "Charlie Ryan", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 944584, + "best_lap_num": 2, + "best_lap_time": 940787, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:06:59Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 940787, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 7974, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": true, + "finish_position": 7, + "finish_position_in_class": 7, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 2, + "color1": "000000", + "color2": "ED2129", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 7974, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "069", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 42.451843, + "new_license_level": 18, + "new_sub_level": 238, + "new_ttrating": 1350, + "newi_rating": 2179, + "old_cpi": 33.555664, + "old_license_level": 18, + "old_sub_level": 202, + "old_ttrating": 1350, + "oldi_rating": 2266, + "opt_laps_complete": 0, + "position": 7, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 19, + "color1": "000000", + "color2": "0d1fc5", + "color3": "e3e110" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": true, + "finish_position": 7, + "finish_position_in_class": 7, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 7974, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "069", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 7, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 19, + "color1": "000000", + "color2": "0d1fc5", + "color3": "e3e110" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -346577, + "display_name": "Motorsports Factory YELLOW", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 941881, + "best_lap_num": 2, + "best_lap_time": 940826, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:05Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 940826, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 168, + "car_name": "Cadillac V-Series.R GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8013, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -346577, + "cust_id": 945525, + "display_name": "Benjamin Voigt", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 941881, + "best_lap_num": 2, + "best_lap_time": 940826, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:05Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 940826, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 168, + "car_name": "Cadillac V-Series.R GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8013, + "country_code": "DE", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 8, + "finish_position_in_class": 8, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 39, + "color1": "ff0000", + "color2": "000000", + "color3": "ff0000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 8013, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 168, + "pattern": 21, + "color1": "172b21", + "color2": "57f97a", + "color3": "e8f9f0", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 139, + "sponsor2": 2, + "car_number": "194", + "wheel_color": "0a0f0a", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 108.77311, + "new_license_level": 20, + "new_sub_level": 465, + "new_ttrating": 1350, + "newi_rating": 1914, + "old_cpi": 75.879616, + "old_license_level": 19, + "old_sub_level": 369, + "old_ttrating": 1350, + "oldi_rating": 1909, + "opt_laps_complete": 0, + "position": 8, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 32, + "color1": "172b21", + "color2": "e8f9f0", + "color3": "57f97a" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 8, + "finish_position_in_class": 8, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 8013, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 168, + "pattern": 21, + "color1": "172b21", + "color2": "57f97a", + "color3": "e8f9f0", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 139, + "sponsor2": 2, + "car_number": "194", + "wheel_color": "0a0f0a", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 8, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 32, + "color1": "172b21", + "color2": "e8f9f0", + "color3": "57f97a" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -307068, + "display_name": "Azz Tech Racing - 390", + "aggregate_champ_points": 107, + "ai": false, + "average_lap": 945802, + "best_lap_num": 2, + "best_lap_time": 941177, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:16Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 941177, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8364, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -307068, + "cust_id": 846950, + "display_name": "Matthew Cheverton", + "aggregate_champ_points": 107, + "ai": false, + "average_lap": 945802, + "best_lap_num": 2, + "best_lap_time": 941177, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:16Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 941177, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8364, + "country_code": "GB", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 9, + "finish_position_in_class": 9, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 8, + "color1": "ff0000", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 8364, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 17, + "color1": "ff0000", + "color2": "ffffff", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "ffffff", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "390", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 208.88257, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 3137, + "old_cpi": 75.065544, + "old_license_level": 19, + "old_sub_level": 367, + "old_ttrating": 1350, + "oldi_rating": 3121, + "opt_laps_complete": 0, + "position": 9, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "f00000", + "color2": "faff00", + "color3": "9b9b9b" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 9, + "finish_position_in_class": 9, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 8364, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 17, + "color1": "ff0000", + "color2": "ffffff", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "ffffff", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "390", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 9, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "f00000", + "color2": "faff00", + "color3": "9b9b9b" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -440173, + "display_name": "Axis Simsports Blue", + "aggregate_champ_points": 53, + "ai": false, + "average_lap": 944596, + "best_lap_num": 2, + "best_lap_time": 941189, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:25Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 941189, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8376, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -440173, + "cust_id": 416043, + "display_name": "Thomas Pugh", + "aggregate_champ_points": 53, + "ai": false, + "average_lap": 944596, + "best_lap_num": 2, + "best_lap_time": 941189, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:25Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 941189, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8376, + "country_code": "GB", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 10, + "finish_position_in_class": 10, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 9, + "color1": "000000", + "color2": "ffffff", + "color3": "ff0000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": 8376, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 22, + "color1": "000000", + "color2": "ffffff", + "color3": "ff0000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "3", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 205.9527, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 3916, + "old_cpi": 120.93353, + "old_license_level": 20, + "old_sub_level": 481, + "old_ttrating": 1350, + "oldi_rating": 3922, + "opt_laps_complete": 0, + "position": 10, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 14, + "color1": "d3d3d3", + "color2": "000000", + "color3": "e70e0e" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 10, + "finish_position_in_class": 10, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 1, + "interval": 8376, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 22, + "color1": "000000", + "color2": "ffffff", + "color3": "ff0000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "3", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 10, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 14, + "color1": "d3d3d3", + "color2": "000000", + "color3": "e70e0e" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -402095, + "display_name": "Granateapfel RT", + "aggregate_champ_points": 129, + "ai": false, + "average_lap": 946909, + "best_lap_num": 2, + "best_lap_time": 941819, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:40Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 941819, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 0, + "class_interval": 9006, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -402095, + "cust_id": 1165346, + "display_name": "Finn Metzler", + "aggregate_champ_points": 129, + "ai": false, + "average_lap": 946909, + "best_lap_num": 2, + "best_lap_time": 941819, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:40Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 941819, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 0, + "class_interval": 9006, + "country_code": "VU", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 11, + "finish_position_in_class": 11, + "flair_id": 226, + "flair_name": "Vanuatu", + "flair_shortname": "VUT", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "372a75", + "color2": "f1732e", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 9006, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 4, + "color1": "FF0000", + "color2": "00FF00", + "color3": "0000FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "2", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 137.59468, + "new_license_level": 16, + "new_sub_level": 499, + "new_ttrating": 1265, + "newi_rating": 1943, + "old_cpi": 28.337646, + "old_license_level": 14, + "old_sub_level": 232, + "old_ttrating": 1265, + "oldi_rating": 1907, + "opt_laps_complete": 0, + "position": 11, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "ffffff", + "color2": "372a75", + "color3": "f1732e" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 11, + "finish_position_in_class": 11, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 9006, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 4, + "color1": "FF0000", + "color2": "00FF00", + "color3": "0000FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "2", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 11, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "ffffff", + "color2": "372a75", + "color3": "f1732e" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -288965, + "display_name": "Ecurie Col d'Oiseaux Tertre Rouge", + "aggregate_champ_points": 50, + "ai": false, + "average_lap": 983180, + "best_lap_num": 2, + "best_lap_time": 979415, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:23Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 979415, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 0, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -288965, + "cust_id": 969021, + "display_name": "Brandon Schmidt3", + "aggregate_champ_points": 50, + "ai": false, + "average_lap": 983180, + "best_lap_num": 2, + "best_lap_time": 979415, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:23Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 979415, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 0, + "country_code": "DE", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 12, + "finish_position_in_class": 0, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "9b1a25", + "color2": "798bd8", + "color3": "0b0a0b", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 46602, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 11, + "color1": "ffffd1", + "color2": "9b0202", + "color3": "0d3860", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "77", + "wheel_color": "b7b7b7", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 111.61723, + "new_license_level": 20, + "new_sub_level": 469, + "new_ttrating": 1375, + "newi_rating": 2923, + "old_cpi": 93.56137, + "old_license_level": 20, + "old_sub_level": 442, + "old_ttrating": 1375, + "oldi_rating": 2926, + "opt_laps_complete": 0, + "position": 12, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 8, + "color1": "ffffd1", + "color2": "a30206", + "color3": "ffd7d1" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 12, + "finish_position_in_class": 0, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 46602, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 11, + "color1": "ffffd1", + "color2": "9b0202", + "color3": "0d3860", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "77", + "wheel_color": "b7b7b7", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 12, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 8, + "color1": "ffffd1", + "color2": "a30206", + "color3": "ffd7d1" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -433705, + "display_name": "SIM RACING GRID ACADEMY - Obsidian", + "aggregate_champ_points": 37, + "ai": false, + "average_lap": 983057, + "best_lap_num": 2, + "best_lap_time": 979448, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:33Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 979448, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 33, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -433705, + "cust_id": 1048672, + "display_name": "Joshua De Lange", + "aggregate_champ_points": 37, + "ai": false, + "average_lap": 983057, + "best_lap_num": 2, + "best_lap_time": 979448, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:33Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 979448, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 33, + "country_code": "NL", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 13, + "finish_position_in_class": 1, + "flair_id": 146, + "flair_name": "Netherlands", + "flair_shortname": "NLD", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "07a9e5", + "color2": "981a53", + "color3": "f981a5", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 46635, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 0, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "10", + "wheel_color": "ffb649", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 94.37405, + "new_license_level": 20, + "new_sub_level": 443, + "new_ttrating": 1350, + "newi_rating": 2529, + "old_cpi": 76.501915, + "old_license_level": 20, + "old_sub_level": 411, + "old_ttrating": 1350, + "oldi_rating": 2540, + "opt_laps_complete": 0, + "position": 13, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 4, + "color1": "4a98ff", + "color2": "0012fa", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 13, + "finish_position_in_class": 1, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 46635, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 0, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "10", + "wheel_color": "ffb649", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 13, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 4, + "color1": "4a98ff", + "color2": "0012fa", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -134144, + "display_name": "BLOO Racing by VR | 040", + "aggregate_champ_points": 138, + "ai": false, + "average_lap": 982958, + "best_lap_num": 2, + "best_lap_time": 980672, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:09Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 980672, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 1257, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -134144, + "cust_id": 390389, + "display_name": "Geordi Vermeulen", + "aggregate_champ_points": 138, + "ai": false, + "average_lap": 982958, + "best_lap_num": 2, + "best_lap_time": 980672, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:09Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 980672, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 1257, + "country_code": "NL", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 14, + "finish_position_in_class": 2, + "flair_id": 146, + "flair_name": "Netherlands", + "flair_shortname": "NLD", + "friend": false, + "helmet": { + "pattern": 38, + "color1": "0094ff", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 47859, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 23, + "color1": "ffffff", + "color2": "8500ff", + "color3": "2176c0", + "number_font": 7, + "number_color1": "ffffff", + "number_color2": "0094ff", + "number_color3": "000000", + "number_slant": 1, + "sponsor1": 323, + "sponsor2": 245, + "car_number": "040", + "wheel_color": "010101", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 267.66696, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 3669, + "old_cpi": 92.9855, + "old_license_level": 19, + "old_sub_level": 399, + "old_ttrating": 1350, + "oldi_rating": 3639, + "opt_laps_complete": 0, + "position": 14, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "000000", + "color2": "c2000b", + "color3": "0094ff" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 14, + "finish_position_in_class": 2, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 47859, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 23, + "color1": "ffffff", + "color2": "8500ff", + "color3": "2176c0", + "number_font": 7, + "number_color1": "ffffff", + "number_color2": "0094ff", + "number_color3": "000000", + "number_slant": 1, + "sponsor1": 323, + "sponsor2": 245, + "car_number": "040", + "wheel_color": "010101", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 14, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "000000", + "color2": "c2000b", + "color3": "0094ff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -348667, + "display_name": "Speed Eagles Gold", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 985377, + "best_lap_num": 2, + "best_lap_time": 981374, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:26Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 981374, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 1959, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -348667, + "cust_id": 532947, + "display_name": "Dawid Dlugokecki", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 985377, + "best_lap_num": 2, + "best_lap_time": 981374, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:26Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 981374, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 1959, + "country_code": "PL", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 15, + "finish_position_in_class": 3, + "flair_id": 167, + "flair_name": "Poland", + "flair_shortname": "POL", + "friend": false, + "helmet": { + "pattern": 26, + "color1": "740004", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 48561, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 6, + "color1": "23548f", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "44", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 79.3237, + "new_license_level": 19, + "new_sub_level": 375, + "new_ttrating": 1350, + "newi_rating": 2670, + "old_cpi": 65.30674, + "old_license_level": 19, + "old_sub_level": 346, + "old_ttrating": 1350, + "oldi_rating": 2667, + "opt_laps_complete": 0, + "position": 15, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 25, + "color1": "000000", + "color2": "1d70b8", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 15, + "finish_position_in_class": 3, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 48561, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 6, + "color1": "23548f", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "44", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 15, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 25, + "color1": "000000", + "color2": "1d70b8", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -217878, + "display_name": "Katzes Racing League #Beta", + "aggregate_champ_points": 62, + "ai": false, + "average_lap": 984565, + "best_lap_num": 2, + "best_lap_time": 983051, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:08Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 983051, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 3636, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -217878, + "cust_id": 240174, + "display_name": "Steven Lexow", + "aggregate_champ_points": 62, + "ai": false, + "average_lap": 984565, + "best_lap_num": 2, + "best_lap_time": 983051, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:08Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 983051, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 3636, + "country_code": "DE", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 16, + "finish_position_in_class": 4, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 9, + "color1": "a80000", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 50238, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 22, + "color1": "000000", + "color2": "ff7800", + "color3": "005f99", + "number_font": 3, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "042", + "wheel_color": "ffffff", + "rim_type": 3 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 151.4998, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2787, + "old_cpi": 86.411354, + "old_license_level": 20, + "old_sub_level": 430, + "old_ttrating": 1350, + "oldi_rating": 2788, + "opt_laps_complete": 0, + "position": 16, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 21, + "color1": "000000", + "color2": "ededed", + "color3": "F98E1D" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 16, + "finish_position_in_class": 4, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 50238, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 22, + "color1": "000000", + "color2": "ff7800", + "color3": "005f99", + "number_font": 3, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "042", + "wheel_color": "ffffff", + "rim_type": 3 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 16, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 21, + "color1": "000000", + "color2": "ededed", + "color3": "F98E1D" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -53704, + "display_name": "LITHIUM Motorsports", + "aggregate_champ_points": 125, + "ai": false, + "average_lap": 995711, + "best_lap_num": 2, + "best_lap_time": 983248, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:10Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 983248, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 3833, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -53704, + "cust_id": 639803, + "display_name": "Alexander Secher", + "aggregate_champ_points": 125, + "ai": false, + "average_lap": 995711, + "best_lap_num": 2, + "best_lap_time": 983248, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:10Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 983248, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 3833, + "country_code": "DK", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 17, + "finish_position_in_class": 5, + "flair_id": 56, + "flair_name": "Denmark", + "flair_shortname": "DNK", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "ffffff", + "color2": "ff0505", + "color3": "6d6d6d", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 50435, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 0, + "color1": "2c2c2c", + "color2": "000000", + "color3": "484848", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "15", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 100.56424, + "new_license_level": 20, + "new_sub_level": 453, + "new_ttrating": 1350, + "newi_rating": 2336, + "old_cpi": 78.96949, + "old_license_level": 19, + "old_sub_level": 375, + "old_ttrating": 1350, + "oldi_rating": 2316, + "opt_laps_complete": 0, + "position": 17, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 3, + "color1": "104C5F", + "color2": "FFFFFF", + "color3": "F0B100" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 17, + "finish_position_in_class": 5, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 50435, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 0, + "color1": "2c2c2c", + "color2": "000000", + "color3": "484848", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "15", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 17, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 3, + "color1": "104C5F", + "color2": "FFFFFF", + "color3": "F0B100" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -385439, + "display_name": "TRC Endurance 01", + "aggregate_champ_points": 12, + "ai": false, + "average_lap": 985444, + "best_lap_num": 2, + "best_lap_time": 984061, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:27Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 984061, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 4646, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -385439, + "cust_id": 1118747, + "display_name": "Zack Heiderstadt", + "aggregate_champ_points": 12, + "ai": false, + "average_lap": 985444, + "best_lap_num": 2, + "best_lap_time": 984061, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:27Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 984061, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 4646, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 18, + "finish_position_in_class": 6, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "aeaeae", + "color2": "0c00b1", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 51248, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 5, + "color1": "FFFFFF", + "color2": "941FB7", + "color3": "80FF00", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "9", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 70.23805, + "new_license_level": 16, + "new_sub_level": 457, + "new_ttrating": 1295, + "newi_rating": 3101, + "old_cpi": 38.609806, + "old_license_level": 14, + "old_sub_level": 279, + "old_ttrating": 1295, + "oldi_rating": 3129, + "opt_laps_complete": 0, + "position": 18, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 30, + "color1": "2508d3", + "color2": "000000", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 18, + "finish_position_in_class": 6, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 51248, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 5, + "color1": "FFFFFF", + "color2": "941FB7", + "color3": "80FF00", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "9", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 18, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 30, + "color1": "2508d3", + "color2": "000000", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -310391, + "display_name": "4ORGE Lions", + "aggregate_champ_points": 87, + "ai": false, + "average_lap": 988712, + "best_lap_num": 2, + "best_lap_time": 986231, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:11Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 986231, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 6816, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -310391, + "cust_id": 635525, + "display_name": "Rich Gregory", + "aggregate_champ_points": 87, + "ai": false, + "average_lap": 988712, + "best_lap_num": 2, + "best_lap_time": 986231, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:11Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 986231, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 6816, + "country_code": "GB", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 19, + "finish_position_in_class": 7, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 45, + "color1": "ffffff", + "color2": "000000", + "color3": "ff0000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 53418, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 7, + "color1": "ff0000", + "color2": "ffffff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "11", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 79.90745, + "new_license_level": 19, + "new_sub_level": 377, + "new_ttrating": 1350, + "newi_rating": 2137, + "old_cpi": 61.902596, + "old_license_level": 19, + "old_sub_level": 338, + "old_ttrating": 1350, + "oldi_rating": 2129, + "opt_laps_complete": 0, + "position": 19, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 13, + "color1": "ff0000", + "color2": "870005", + "color3": "2900ef" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 19, + "finish_position_in_class": 7, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 53418, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 7, + "color1": "ff0000", + "color2": "ffffff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "11", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 19, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 13, + "color1": "ff0000", + "color2": "870005", + "color3": "2900ef" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -188879, + "display_name": "Wildfire Racing Dragon", + "aggregate_champ_points": 112, + "ai": false, + "average_lap": 988722, + "best_lap_num": 2, + "best_lap_time": 986302, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:08:11Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 986302, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 6887, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -188879, + "cust_id": 751768, + "display_name": "Sean Nisizaka Smit", + "aggregate_champ_points": 112, + "ai": false, + "average_lap": 988722, + "best_lap_num": 2, + "best_lap_time": 986302, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:08:11Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 986302, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 6887, + "country_code": "AU", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 20, + "finish_position_in_class": 8, + "flair_id": 16, + "flair_name": "Australia", + "flair_shortname": "AUS", + "friend": false, + "helmet": { + "pattern": 6, + "color1": "ffffff", + "color2": "ff0000", + "color3": "0075ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 53489, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 1, + "color1": "0db700", + "color2": "ffffff", + "color3": "000000", + "number_font": 16, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "129", + "wheel_color": "929292", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 61.77475, + "new_license_level": 18, + "new_sub_level": 294, + "new_ttrating": 1336, + "newi_rating": 2123, + "old_cpi": 44.15168, + "old_license_level": 18, + "old_sub_level": 243, + "old_ttrating": 1336, + "oldi_rating": 2114, + "opt_laps_complete": 0, + "position": 20, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 20, + "color1": "000000", + "color2": "06ff00", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 20, + "finish_position_in_class": 8, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 53489, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 1, + "color1": "0db700", + "color2": "ffffff", + "color3": "000000", + "number_font": 16, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "129", + "wheel_color": "929292", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 20, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 20, + "color1": "000000", + "color2": "06ff00", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -169135, + "display_name": "BMW M Plower #557", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 989894, + "best_lap_num": 2, + "best_lap_time": 986850, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:15Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 986850, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 7435, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -169135, + "cust_id": 374188, + "display_name": "Lars Wiele", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 989894, + "best_lap_num": 2, + "best_lap_time": 986850, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:15Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 986850, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 7435, + "country_code": "DE", + "division": 1, + "division_name": "Division 2", + "drop_race": true, + "finish_position": 21, + "finish_position_in_class": 9, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 2, + "color1": "6f9556", + "color2": "111111", + "color3": "efd600", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 54037, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 1, + "color1": "6f9556", + "color2": "111111", + "color3": "efd600", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "557", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 108.826164, + "new_license_level": 20, + "new_sub_level": 465, + "new_ttrating": 1350, + "newi_rating": 3266, + "old_cpi": 140.98111, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 3386, + "opt_laps_complete": 0, + "position": 21, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 19, + "color1": "0c0fb4", + "color2": "299467", + "color3": "d1f100" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": true, + "finish_position": 21, + "finish_position_in_class": 9, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 54037, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 1, + "color1": "6f9556", + "color2": "111111", + "color3": "efd600", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "557", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 21, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 19, + "color1": "0c0fb4", + "color2": "299467", + "color3": "d1f100" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -479098, + "display_name": "Lightning Racing Team - #86", + "aggregate_champ_points": 100, + "ai": false, + "average_lap": 989709, + "best_lap_num": 2, + "best_lap_time": 988744, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:31Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 988744, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 9329, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -479098, + "cust_id": 1133857, + "display_name": "Pierre Peytral Yagüe", + "aggregate_champ_points": 100, + "ai": false, + "average_lap": 989709, + "best_lap_num": 2, + "best_lap_time": 988744, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:31Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 988744, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 9329, + "country_code": "FR", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 22, + "finish_position_in_class": 10, + "flair_id": 71, + "flair_name": "France", + "flair_shortname": "FRA", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "fc0706", + "color2": "111111", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 55931, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 12, + "color1": "ff78ff", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "43", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 189.7976, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2834, + "old_cpi": 46.85185, + "old_license_level": 18, + "old_sub_level": 252, + "old_ttrating": 1350, + "oldi_rating": 2816, + "opt_laps_complete": 0, + "position": 22, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 21, + "color1": "f200ff", + "color2": "ffffff", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 22, + "finish_position_in_class": 10, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 55931, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 12, + "color1": "ff78ff", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "43", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 22, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 21, + "color1": "f200ff", + "color2": "ffffff", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -479845, + "display_name": "DSDF Racing LMP2", + "aggregate_champ_points": 25, + "ai": false, + "average_lap": 990339, + "best_lap_num": 1, + "best_lap_time": 990018, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:05:31Z", + "best_qual_lap_num": 1, + "best_qual_lap_time": 990018, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 10603, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -479845, + "cust_id": 1010930, + "display_name": "James Seale", + "aggregate_champ_points": 25, + "ai": false, + "average_lap": 990339, + "best_lap_num": 1, + "best_lap_time": 990018, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:05:31Z", + "best_qual_lap_num": 1, + "best_qual_lap_time": 990018, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": 10603, + "country_code": "GB", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 23, + "finish_position_in_class": 11, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 4, + "color1": "0a0a0a", + "color2": "ffffff", + "color3": "ff0000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 57205, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 21, + "color1": "ffffff", + "color2": "ff0000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "ff0000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 221, + "sponsor2": 7, + "car_number": "155", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 59.186558, + "new_license_level": 12, + "new_sub_level": 488, + "new_ttrating": 1649, + "newi_rating": 2544, + "old_cpi": 26.148556, + "old_license_level": 11, + "old_sub_level": 319, + "old_ttrating": 1649, + "oldi_rating": 2563, + "opt_laps_complete": 0, + "position": 23, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 32, + "color1": "000000", + "color2": "ff0000", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 23, + "finish_position_in_class": 11, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 57205, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 21, + "color1": "ffffff", + "color2": "ff0000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "ff0000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 221, + "sponsor2": 7, + "car_number": "155", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 23, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 32, + "color1": "000000", + "color2": "ff0000", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -483219, + "display_name": "Velocity X Rhythm Racing Team", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1045454, + "best_lap_num": 2, + "best_lap_time": 1042763, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:08:01Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1042763, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 188, + "car_name": "McLaren 720S GT3 EVO", + "carcfg": -1, + "champ_points": 0, + "class_interval": 0, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -483219, + "cust_id": 1283272, + "display_name": "Mario García Muriel", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1045454, + "best_lap_num": 2, + "best_lap_time": 1042763, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:08:01Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1042763, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 188, + "car_name": "McLaren 720S GT3 EVO", + "carcfg": -1, + "champ_points": 0, + "class_interval": 0, + "country_code": "ES", + "division": 1, + "division_name": "Division 2", + "drop_race": true, + "finish_position": 24, + "finish_position_in_class": 0, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "231f20", + "color2": "808080", + "color3": "f26722", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 109950, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 188, + "pattern": 1, + "color1": "FF0000", + "color2": "00FF00", + "color3": "0000FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "31", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 97, + "new_cpi": 43.159573, + "new_license_level": 17, + "new_sub_level": 197, + "new_ttrating": 1350, + "newi_rating": 3435, + "old_cpi": 30.48215, + "old_license_level": 17, + "old_sub_level": 143, + "old_ttrating": 1350, + "oldi_rating": 3486, + "opt_laps_complete": 0, + "position": 24, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "231f20", + "color2": "808080", + "color3": "f26722" + }, + "watched": false, + "weight_penalty_kg": 5 + } + ], + "drop_race": true, + "finish_position": 24, + "finish_position_in_class": 0, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 109950, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 188, + "pattern": 1, + "color1": "FF0000", + "color2": "00FF00", + "color3": "0000FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "31", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 97, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 24, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "231f20", + "color2": "808080", + "color3": "f26722" + }, + "watched": false, + "weight_penalty_kg": 5 + }, + { + "team_id": -457552, + "display_name": "DB3 MOTORSPORT | REMESI", + "aggregate_champ_points": 137, + "ai": false, + "average_lap": 1046141, + "best_lap_num": 2, + "best_lap_time": 1043422, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:51Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1043422, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 659, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -457552, + "cust_id": 673113, + "display_name": "Gerd Zechner", + "aggregate_champ_points": 137, + "ai": false, + "average_lap": 1046141, + "best_lap_num": 2, + "best_lap_time": 1043422, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:51Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1043422, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 659, + "country_code": "AT", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 25, + "finish_position_in_class": 1, + "flair_id": 17, + "flair_name": "Austria", + "flair_shortname": "AUT", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "111111", + "color2": "ffffff", + "color3": "fc0706", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 110609, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "77fa03", + "color2": "ed2129", + "color3": "b0ec02", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "13", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 83.24767, + "new_license_level": 19, + "new_sub_level": 383, + "new_ttrating": 1350, + "newi_rating": 3031, + "old_cpi": 65.06985, + "old_license_level": 19, + "old_sub_level": 346, + "old_ttrating": 1350, + "oldi_rating": 3014, + "opt_laps_complete": 0, + "position": 25, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 11, + "color1": "d9003b", + "color2": "ffffff", + "color3": "0011f9" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 25, + "finish_position_in_class": 1, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 110609, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "77fa03", + "color2": "ed2129", + "color3": "b0ec02", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "13", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 25, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 11, + "color1": "d9003b", + "color2": "ffffff", + "color3": "0011f9" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -287336, + "display_name": "W2W Racing Red", + "aggregate_champ_points": 133, + "ai": false, + "average_lap": 1050018, + "best_lap_num": 2, + "best_lap_time": 1044323, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:09:22Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1044323, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 1560, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -287336, + "cust_id": 392017, + "display_name": "Jorge Reyes3", + "aggregate_champ_points": 133, + "ai": false, + "average_lap": 1050018, + "best_lap_num": 2, + "best_lap_time": 1044323, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:09:22Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1044323, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 1560, + "country_code": "BO", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 26, + "finish_position_in_class": 2, + "flair_id": 28, + "flair_name": "Bolivia", + "flair_shortname": "BES", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "0012ff", + "color2": "3145a5", + "color3": "f00000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 2, + "interval": 111510, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 15, + "color1": "f3ff06", + "color2": "0e9720", + "color3": "f3ff06", + "number_font": 53, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 2, + "sponsor1": 221, + "sponsor2": 0, + "car_number": "26", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 45.28575, + "new_license_level": 18, + "new_sub_level": 247, + "new_ttrating": 1350, + "newi_rating": 2245, + "old_cpi": 32.465076, + "old_license_level": 17, + "old_sub_level": 153, + "old_ttrating": 1350, + "oldi_rating": 2221, + "opt_laps_complete": 0, + "position": 26, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 10, + "color1": "ad1210", + "color2": "000000", + "color3": "ad1210" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 26, + "finish_position_in_class": 2, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 2, + "interval": 111510, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 15, + "color1": "f3ff06", + "color2": "0e9720", + "color3": "f3ff06", + "number_font": 53, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 2, + "sponsor1": 221, + "sponsor2": 0, + "car_number": "26", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 26, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 10, + "color1": "ad1210", + "color2": "000000", + "color3": "ad1210" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -159911, + "display_name": "Austrian Simracers Blue", + "aggregate_champ_points": 62, + "ai": false, + "average_lap": 1046353, + "best_lap_num": 2, + "best_lap_time": 1044381, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:55Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1044381, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 1618, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -159911, + "cust_id": 1003691, + "display_name": "David Kinzlhofer", + "aggregate_champ_points": 62, + "ai": false, + "average_lap": 1046353, + "best_lap_num": 2, + "best_lap_time": 1044381, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:55Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1044381, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 1618, + "country_code": "AT", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 27, + "finish_position_in_class": 3, + "flair_id": 17, + "flair_name": "Austria", + "flair_shortname": "AUT", + "friend": false, + "helmet": { + "pattern": 36, + "color1": "8700ff", + "color2": "b500ff", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 111568, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "ffffff", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "255", + "wheel_color": "7a7767", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 59.09998, + "new_license_level": 18, + "new_sub_level": 287, + "new_ttrating": 1350, + "newi_rating": 2814, + "old_cpi": 39.52622, + "old_license_level": 18, + "old_sub_level": 227, + "old_ttrating": 1350, + "oldi_rating": 2816, + "opt_laps_complete": 0, + "position": 27, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 19, + "color1": "000000", + "color2": "FFFFFF", + "color3": "FF0000" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 27, + "finish_position_in_class": 3, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 111568, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "ffffff", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "255", + "wheel_color": "7a7767", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 27, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 19, + "color1": "000000", + "color2": "FFFFFF", + "color3": "FF0000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -467249, + "display_name": "Simtec Racing Team #474", + "aggregate_champ_points": 44, + "ai": false, + "average_lap": 1047601, + "best_lap_num": 2, + "best_lap_time": 1044829, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:27Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1044829, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 2066, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -467249, + "cust_id": 1174682, + "display_name": "Craig Law", + "aggregate_champ_points": 44, + "ai": false, + "average_lap": 1047601, + "best_lap_num": 2, + "best_lap_time": 1044829, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:27Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1044829, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 2066, + "country_code": "NIR", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 28, + "finish_position_in_class": 4, + "flair_id": 239, + "flair_name": "Northern Ireland", + "flair_shortname": "NIR", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "ffffff", + "color2": "4076bc", + "color3": "c8d92b", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 112016, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 3, + "color1": "42c6ef", + "color2": "111111", + "color3": "0b0b0a", + "number_font": 9, + "number_color1": "000000", + "number_color2": "f4f4f4", + "number_color3": "fafafa", + "number_slant": 0, + "sponsor1": 221, + "sponsor2": 0, + "car_number": "472", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 54.50814, + "new_license_level": 18, + "new_sub_level": 275, + "new_ttrating": 1350, + "newi_rating": 2559, + "old_cpi": 42.040413, + "old_license_level": 18, + "old_sub_level": 236, + "old_ttrating": 1350, + "oldi_rating": 2567, + "opt_laps_complete": 0, + "position": 28, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 5, + "color1": "11e5e5", + "color2": "030303", + "color3": "030303" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 28, + "finish_position_in_class": 4, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 112016, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 3, + "color1": "42c6ef", + "color2": "111111", + "color3": "0b0b0a", + "number_font": 9, + "number_color1": "000000", + "number_color2": "f4f4f4", + "number_color3": "fafafa", + "number_slant": 0, + "sponsor1": 221, + "sponsor2": 0, + "car_number": "472", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 28, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 5, + "color1": "11e5e5", + "color2": "030303", + "color3": "030303" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -480134, + "display_name": "Club 100 Sim Racers", + "aggregate_champ_points": 119, + "ai": false, + "average_lap": 1048121, + "best_lap_num": 2, + "best_lap_time": 1045060, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:40Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1045060, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 2297, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -480134, + "cust_id": 133722, + "display_name": "James DeHavillande", + "aggregate_champ_points": 119, + "ai": false, + "average_lap": 1048121, + "best_lap_num": 2, + "best_lap_time": 1045060, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:40Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1045060, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 2297, + "country_code": "GB", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 29, + "finish_position_in_class": 5, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 60, + "color1": "eb0000", + "color2": "0009db", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 112247, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 11, + "color1": "000000", + "color2": "ff0000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "125", + "wheel_color": "b32e2e", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 92.82705, + "new_license_level": 19, + "new_sub_level": 399, + "new_ttrating": 1350, + "newi_rating": 3886, + "old_cpi": 38.696655, + "old_license_level": 18, + "old_sub_level": 224, + "old_ttrating": 1350, + "oldi_rating": 3868, + "opt_laps_complete": 0, + "position": 29, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 3, + "color1": "000000", + "color2": "ee6b00", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 29, + "finish_position_in_class": 5, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 112247, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 11, + "color1": "000000", + "color2": "ff0000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "125", + "wheel_color": "b32e2e", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 29, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 3, + "color1": "000000", + "color2": "ee6b00", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -454234, + "display_name": "TKG Simsport PRO", + "aggregate_champ_points": 128, + "ai": false, + "average_lap": 1045186, + "best_lap_num": 2, + "best_lap_time": 1045186, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:41Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1045186, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 2423, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -454234, + "cust_id": 678081, + "display_name": "Carter A Thompson", + "aggregate_champ_points": 128, + "ai": false, + "average_lap": 1045186, + "best_lap_num": 2, + "best_lap_time": 1045186, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:41Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1045186, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 2423, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 30, + "finish_position_in_class": 6, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "ff2202", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": 112373, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "20", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 31.197826, + "new_license_level": 14, + "new_sub_level": 246, + "new_ttrating": 1350, + "newi_rating": 2617, + "old_cpi": 24.810728, + "old_license_level": 14, + "old_sub_level": 211, + "old_ttrating": 1350, + "oldi_rating": 2600, + "opt_laps_complete": 0, + "position": 30, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 8, + "color1": "000000", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 30, + "finish_position_in_class": 6, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 1, + "interval": 112373, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "20", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 30, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 8, + "color1": "000000", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -296646, + "display_name": "Uprise Motorsports", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1047057, + "best_lap_num": 2, + "best_lap_time": 1045382, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:30Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1045382, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 2619, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -296646, + "cust_id": 348147, + "display_name": "Connor Trifari", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1047057, + "best_lap_num": 2, + "best_lap_time": 1045382, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:30Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1045382, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 2619, + "country_code": "GS", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 31, + "finish_position_in_class": 7, + "flair_id": 196, + "flair_name": "South Georgia & South Sandwich Islands", + "flair_shortname": "SGS", + "friend": false, + "helmet": { + "pattern": 2, + "color1": "ff0000", + "color2": "ffffff", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 112569, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 2, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "53", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 50.541496, + "new_license_level": 18, + "new_sub_level": 264, + "new_ttrating": 1350, + "newi_rating": 3082, + "old_cpi": 56.433605, + "old_license_level": 18, + "old_sub_level": 281, + "old_ttrating": 1350, + "oldi_rating": 3100, + "opt_laps_complete": 0, + "position": 31, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 4, + "color1": "000000", + "color2": "ff190f", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 31, + "finish_position_in_class": 7, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 112569, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 2, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "53", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 31, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 4, + "color1": "000000", + "color2": "ff190f", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -472037, + "display_name": "APEXNOVA SIMRACING PURPLE", + "aggregate_champ_points": 97, + "ai": false, + "average_lap": 1045496, + "best_lap_num": 2, + "best_lap_time": 1045496, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:08:00Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1045496, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 2733, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -472037, + "cust_id": 363097, + "display_name": "Tobias Kracht", + "aggregate_champ_points": 97, + "ai": false, + "average_lap": 1045496, + "best_lap_num": 2, + "best_lap_time": 1045496, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:08:00Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1045496, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 2733, + "country_code": "DE", + "division": 6, + "division_name": "Division 7", + "drop_race": false, + "finish_position": 32, + "finish_position_in_class": 8, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 35, + "color1": "2575b0", + "color2": "7e1c6e", + "color3": "f90000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": 112683, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "fb0ead", + "color2": "424242", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "17", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 57.572872, + "new_license_level": 15, + "new_sub_level": 384, + "new_ttrating": 1350, + "newi_rating": 2797, + "old_cpi": 31.962917, + "old_license_level": 14, + "old_sub_level": 250, + "old_ttrating": 1350, + "oldi_rating": 2783, + "opt_laps_complete": 0, + "position": 32, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 17, + "color1": "2F2F2F", + "color2": "404334", + "color3": "2F4F4F" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 32, + "finish_position_in_class": 8, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 1, + "interval": 112683, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "fb0ead", + "color2": "424242", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "17", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 32, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 17, + "color1": "2F2F2F", + "color2": "404334", + "color3": "2F4F4F" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -467225, + "display_name": "DCS Racing Green", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1049066, + "best_lap_num": 2, + "best_lap_time": 1046120, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:38Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1046120, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 3357, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -467225, + "cust_id": 1193552, + "display_name": "Nikos Nota", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1049066, + "best_lap_num": 2, + "best_lap_time": 1046120, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:38Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1046120, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 3357, + "country_code": "GR", + "division": 3, + "division_name": "Division 4", + "drop_race": true, + "finish_position": 33, + "finish_position_in_class": 9, + "flair_id": 80, + "flair_name": "Greece", + "flair_shortname": "GRC", + "friend": false, + "helmet": { + "pattern": 67, + "color1": "ffffff", + "color2": "fff500", + "color3": "fff500", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 113307, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "e0aa42", + "color2": "0ea2eb", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "22", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 29.04801, + "new_license_level": 13, + "new_sub_level": 194, + "new_ttrating": 1305, + "newi_rating": 3058, + "old_cpi": 21.94943, + "old_license_level": 13, + "old_sub_level": 150, + "old_ttrating": 1305, + "oldi_rating": 3142, + "opt_laps_complete": 0, + "position": 33, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "ffffff", + "color2": "60a6c9", + "color3": "1a1f43" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": true, + "finish_position": 33, + "finish_position_in_class": 9, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 113307, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "e0aa42", + "color2": "0ea2eb", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "22", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 33, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "ffffff", + "color2": "60a6c9", + "color3": "1a1f43" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -420531, + "display_name": "Angler Racing", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1048234, + "best_lap_num": 1, + "best_lap_time": 1048234, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:05:52Z", + "best_qual_lap_num": 1, + "best_qual_lap_time": 1048234, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 5471, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -420531, + "cust_id": 941901, + "display_name": "Paddy Armstrong", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1048234, + "best_lap_num": 1, + "best_lap_time": 1048234, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:05:52Z", + "best_qual_lap_num": 1, + "best_qual_lap_time": 1048234, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 5471, + "country_code": "SCT", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 34, + "finish_position_in_class": 10, + "flair_id": 237, + "flair_name": "Scotland", + "flair_shortname": "SCT", + "friend": false, + "helmet": { + "pattern": 57, + "color1": "838383", + "color2": "ffffff", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": 115421, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "000000", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "6", + "wheel_color": "c8bd9f", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 78.350105, + "new_license_level": 20, + "new_sub_level": 415, + "new_ttrating": 1260, + "newi_rating": 2157, + "old_cpi": 111.6487, + "old_license_level": 20, + "old_sub_level": 469, + "old_ttrating": 1260, + "oldi_rating": 2252, + "opt_laps_complete": 0, + "position": 34, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "000000", + "color2": "ff00de", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 34, + "finish_position_in_class": 10, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 1, + "interval": 115421, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "000000", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "6", + "wheel_color": "c8bd9f", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 34, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "000000", + "color2": "ff00de", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -175849, + "display_name": "Maniti Racing Yellow", + "aggregate_champ_points": 93, + "ai": false, + "average_lap": 1048305, + "best_lap_num": 2, + "best_lap_time": 1048305, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:48Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1048305, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 156, + "car_name": "Mercedes-AMG GT3 2020", + "carcfg": -1, + "champ_points": 0, + "class_interval": 5542, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -175849, + "cust_id": 1060062, + "display_name": "Marvin Bär", + "aggregate_champ_points": 93, + "ai": false, + "average_lap": 1048305, + "best_lap_num": 2, + "best_lap_time": 1048305, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:48Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1048305, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 156, + "car_name": "Mercedes-AMG GT3 2020", + "carcfg": -1, + "champ_points": 0, + "class_interval": 5542, + "country_code": "DE", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 35, + "finish_position_in_class": 11, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 49, + "color1": "ffffff", + "color2": "bbbbbb", + "color3": "4a4a4a", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": 115492, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 156, + "pattern": 0, + "color1": "000000", + "color2": "08ad22", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "78", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 99, + "new_cpi": 92.41379, + "new_license_level": 19, + "new_sub_level": 399, + "new_ttrating": 1350, + "newi_rating": 3092, + "old_cpi": 42.426422, + "old_license_level": 18, + "old_sub_level": 237, + "old_ttrating": 1350, + "oldi_rating": 3083, + "opt_laps_complete": 0, + "position": 35, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 29, + "color1": "00ff19", + "color2": "04ff00", + "color3": "42ff00" + }, + "watched": false, + "weight_penalty_kg": 3 + } + ], + "drop_race": false, + "finish_position": 35, + "finish_position_in_class": 11, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 1, + "interval": 115492, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 156, + "pattern": 0, + "color1": "000000", + "color2": "08ad22", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "78", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 99, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 35, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 29, + "color1": "00ff19", + "color2": "04ff00", + "color3": "42ff00" + }, + "watched": false, + "weight_penalty_kg": 3 + }, + { + "team_id": -224061, + "display_name": "Pineapple Racing Club", + "aggregate_champ_points": 88, + "ai": false, + "average_lap": 1051001, + "best_lap_num": 2, + "best_lap_time": 1048770, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:08:23Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1048770, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 185, + "car_name": "Ford Mustang GT3", + "carcfg": -1, + "champ_points": 0, + "class_interval": 6007, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -224061, + "cust_id": 301782, + "display_name": "Ben Cooper5", + "aggregate_champ_points": 88, + "ai": false, + "average_lap": 1051001, + "best_lap_num": 2, + "best_lap_time": 1048770, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:08:23Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1048770, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 185, + "car_name": "Ford Mustang GT3", + "carcfg": -1, + "champ_points": 0, + "class_interval": 6007, + "country_code": "GB", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 36, + "finish_position_in_class": 12, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 46, + "color1": "565555", + "color2": "fff500", + "color3": "ae0077", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 115957, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 185, + "pattern": 12, + "color1": "e3ff54", + "color2": "000000", + "color3": "004092", + "number_font": 0, + "number_color1": "004092", + "number_color2": "ffffff", + "number_color3": "777777", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "14", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 158.22897, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 3233, + "old_cpi": 202.223, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 3228, + "opt_laps_complete": 0, + "position": 36, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 19, + "color1": "252525", + "color2": "7952a2", + "color3": "ecef00" + }, + "watched": false, + "weight_penalty_kg": 10 + } + ], + "drop_race": false, + "finish_position": 36, + "finish_position_in_class": 12, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 115957, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 185, + "pattern": 12, + "color1": "e3ff54", + "color2": "000000", + "color3": "004092", + "number_font": 0, + "number_color1": "004092", + "number_color2": "ffffff", + "number_color3": "777777", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "14", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 36, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 19, + "color1": "252525", + "color2": "7952a2", + "color3": "ecef00" + }, + "watched": false, + "weight_penalty_kg": 10 + }, + { + "team_id": -298205, + "display_name": "CDLC", + "aggregate_champ_points": 79, + "ai": false, + "average_lap": 1052936, + "best_lap_num": 2, + "best_lap_time": 1048987, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:49Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1048987, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 188, + "car_name": "McLaren 720S GT3 EVO", + "carcfg": -1, + "champ_points": 0, + "class_interval": 6224, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -298205, + "cust_id": 692986, + "display_name": "Andreas Carlsson", + "aggregate_champ_points": 79, + "ai": false, + "average_lap": 1052936, + "best_lap_num": 2, + "best_lap_time": 1048987, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:49Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1048987, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 188, + "car_name": "McLaren 720S GT3 EVO", + "carcfg": -1, + "champ_points": 0, + "class_interval": 6224, + "country_code": "SE", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 37, + "finish_position_in_class": 13, + "flair_id": 203, + "flair_name": "Sweden", + "flair_shortname": "SWE", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "000000", + "color2": "1e1e1e", + "color3": "007dff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 116174, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 188, + "pattern": 4, + "color1": "0073d2", + "color2": "ff5c00", + "color3": "292d33", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "46", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 97, + "new_cpi": 336.55923, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1375, + "newi_rating": 2873, + "old_cpi": 138.13417, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1375, + "oldi_rating": 2867, + "opt_laps_complete": 0, + "position": 37, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 31, + "color1": "000000", + "color2": "0378ff", + "color3": "ff4d00" + }, + "watched": false, + "weight_penalty_kg": 5 + } + ], + "drop_race": false, + "finish_position": 37, + "finish_position_in_class": 13, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 116174, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 188, + "pattern": 4, + "color1": "0073d2", + "color2": "ff5c00", + "color3": "292d33", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "46", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 97, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 37, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 31, + "color1": "000000", + "color2": "0378ff", + "color3": "ff4d00" + }, + "watched": false, + "weight_penalty_kg": 5 + }, + { + "team_id": -298823, + "display_name": "TEN MAD MEN Alpha", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1051828, + "best_lap_num": 2, + "best_lap_time": 1049400, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:08:15Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1049400, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 6637, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -298823, + "cust_id": 376421, + "display_name": "Jorge Leiva Ruiz", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1051828, + "best_lap_num": 2, + "best_lap_time": 1049400, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:08:15Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1049400, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 6637, + "country_code": "CL", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 38, + "finish_position_in_class": 14, + "flair_id": 44, + "flair_name": "Chile", + "flair_shortname": "CHL", + "friend": false, + "helmet": { + "pattern": 67, + "color1": "000000", + "color2": "00a0bc", + "color3": "c7c7c7", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 116587, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "ffffff", + "color2": "0013a5", + "color3": "ff5c00", + "number_font": 0, + "number_color1": "f3eeeb", + "number_color2": "ffffff", + "number_color3": "ffffff", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "010", + "wheel_color": "32312f", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 65.18878, + "new_license_level": 19, + "new_sub_level": 346, + "new_ttrating": 1350, + "newi_rating": 2447, + "old_cpi": 66.34217, + "old_license_level": 19, + "old_sub_level": 348, + "old_ttrating": 1350, + "oldi_rating": 2484, + "opt_laps_complete": 0, + "position": 38, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "e1ce30", + "color2": "ebe8e8", + "color3": "1c46ed" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 38, + "finish_position_in_class": 14, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 116587, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "ffffff", + "color2": "0013a5", + "color3": "ff5c00", + "number_font": 0, + "number_color1": "f3eeeb", + "number_color2": "ffffff", + "number_color3": "ffffff", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "010", + "wheel_color": "32312f", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 38, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "e1ce30", + "color2": "ebe8e8", + "color3": "1c46ed" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -287243, + "display_name": "Team MFM - SURVIVE!", + "aggregate_champ_points": 142, + "ai": false, + "average_lap": 1051770, + "best_lap_num": 2, + "best_lap_time": 1049415, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:08:43Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1049415, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 6652, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -287243, + "cust_id": 638036, + "display_name": "Cody Gayer", + "aggregate_champ_points": 142, + "ai": false, + "average_lap": 1051770, + "best_lap_num": 2, + "best_lap_time": 1049415, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:08:43Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1049415, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 6652, + "country_code": "US", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 39, + "finish_position_in_class": 15, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 67, + "color1": "01020e", + "color2": "d5c325", + "color3": "c91b20", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 116602, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 17, + "color1": "dddddd", + "color2": "ffff00", + "color3": "252525", + "number_font": 0, + "number_color1": "000000", + "number_color2": "737373", + "number_color3": "ffffff", + "number_slant": 4, + "sponsor1": 138, + "sponsor2": 7, + "car_number": "21", + "wheel_color": "ffff00", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 81.2526, + "new_license_level": 20, + "new_sub_level": 420, + "new_ttrating": 1350, + "newi_rating": 3094, + "old_cpi": 86.255455, + "old_license_level": 20, + "old_sub_level": 429, + "old_ttrating": 1350, + "oldi_rating": 3072, + "opt_laps_complete": 0, + "position": 39, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 7, + "color1": "252525", + "color2": "DDDDDD", + "color3": "004895" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 39, + "finish_position_in_class": 15, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 116602, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 17, + "color1": "dddddd", + "color2": "ffff00", + "color3": "252525", + "number_font": 0, + "number_color1": "000000", + "number_color2": "737373", + "number_color3": "ffffff", + "number_slant": 4, + "sponsor1": 138, + "sponsor2": 7, + "car_number": "21", + "wheel_color": "ffff00", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 39, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 7, + "color1": "252525", + "color2": "DDDDDD", + "color3": "004895" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -413546, + "display_name": "Should be Fine Motorsports", + "aggregate_champ_points": 110, + "ai": false, + "average_lap": 1049602, + "best_lap_num": 2, + "best_lap_time": 1049602, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:44Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1049602, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 6839, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -413546, + "cust_id": 1092119, + "display_name": "Chris Singh", + "aggregate_champ_points": 110, + "ai": false, + "average_lap": 1049602, + "best_lap_num": 2, + "best_lap_time": 1049602, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:44Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1049602, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 6839, + "country_code": "US", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 40, + "finish_position_in_class": 16, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 22, + "color1": "f9ff00", + "color2": "ff0000", + "color3": "00c341", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 2, + "interval": 116789, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 17, + "color1": "efd600", + "color2": "111111", + "color3": "d7162d", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "25", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 54.59016, + "new_license_level": 18, + "new_sub_level": 275, + "new_ttrating": 1350, + "newi_rating": 2797, + "old_cpi": 36.08681, + "old_license_level": 17, + "old_sub_level": 169, + "old_ttrating": 1350, + "oldi_rating": 2777, + "opt_laps_complete": 0, + "position": 40, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "00f035", + "color2": "020101", + "color3": "e61010" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 40, + "finish_position_in_class": 16, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 2, + "interval": 116789, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 17, + "color1": "efd600", + "color2": "111111", + "color3": "d7162d", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "25", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 40, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "00f035", + "color2": "020101", + "color3": "e61010" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -415465, + "display_name": "WFLM Motorsport Vortex", + "aggregate_champ_points": 71, + "ai": false, + "average_lap": 1050260, + "best_lap_num": 1, + "best_lap_time": 1050260, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:06:00Z", + "best_qual_lap_num": 1, + "best_qual_lap_time": 1050260, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 7497, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -415465, + "cust_id": 1294295, + "display_name": "Florïan Chevreuïl", + "aggregate_champ_points": 71, + "ai": false, + "average_lap": 1050260, + "best_lap_num": 1, + "best_lap_time": 1050260, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:06:00Z", + "best_qual_lap_num": 1, + "best_qual_lap_time": 1050260, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 7497, + "country_code": "FR", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 41, + "finish_position_in_class": 17, + "flair_id": 71, + "flair_name": "France", + "flair_shortname": "FRA", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": 117447, + "laps_complete": 1, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 3, + "color1": "FF7000", + "color2": "73ECFF", + "color3": "0F0017", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "29", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 33.223705, + "new_license_level": 17, + "new_sub_level": 156, + "new_ttrating": 1350, + "newi_rating": 2683, + "old_cpi": 31.96522, + "old_license_level": 17, + "old_sub_level": 150, + "old_ttrating": 1350, + "oldi_rating": 2683, + "opt_laps_complete": 0, + "position": 41, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 28, + "color1": "0f0017", + "color2": "ff0021", + "color3": "ddecec" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 41, + "finish_position_in_class": 17, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 1, + "interval": 117447, + "laps_complete": 1, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 3, + "color1": "FF7000", + "color2": "73ECFF", + "color3": "0F0017", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "29", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 41, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 28, + "color1": "0f0017", + "color2": "ff0021", + "color3": "ddecec" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -248147, + "display_name": "IPM Yellow", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 1056932, + "best_lap_num": 2, + "best_lap_time": 1051171, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:42Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1051171, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 173, + "car_name": "Ferrari 296 GT3", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8408, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -248147, + "cust_id": 19071, + "display_name": "Peter Terrana", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 1056932, + "best_lap_num": 2, + "best_lap_time": 1051171, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:42Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1051171, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 173, + "car_name": "Ferrari 296 GT3", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8408, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 42, + "finish_position_in_class": 18, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 34, + "color1": "DAF109", + "color2": "000000", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 118358, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 173, + "pattern": 9, + "color1": "ccf312", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "698", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 69.72993, + "new_license_level": 19, + "new_sub_level": 356, + "new_ttrating": 1350, + "newi_rating": 2620, + "old_cpi": 45.854206, + "old_license_level": 18, + "old_sub_level": 249, + "old_ttrating": 1350, + "oldi_rating": 2617, + "opt_laps_complete": 0, + "position": 42, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 27, + "color1": "23231f", + "color2": "131415", + "color3": "f2f12c" + }, + "watched": false, + "weight_penalty_kg": 3 + } + ], + "drop_race": false, + "finish_position": 42, + "finish_position_in_class": 18, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 118358, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 173, + "pattern": 9, + "color1": "ccf312", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "698", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 42, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 27, + "color1": "23231f", + "color2": "131415", + "color3": "f2f12c" + }, + "watched": false, + "weight_penalty_kg": 3 + }, + { + "team_id": -316329, + "display_name": "Milwauchibre Racing Team", + "aggregate_champ_points": 39, + "ai": false, + "average_lap": 1051295, + "best_lap_num": 2, + "best_lap_time": 1051295, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:40Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1051295, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8532, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -316329, + "cust_id": 879626, + "display_name": "Nicolas De Saint Riquier", + "aggregate_champ_points": 39, + "ai": false, + "average_lap": 1051295, + "best_lap_num": 2, + "best_lap_time": 1051295, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:40Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1051295, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8532, + "country_code": "FR", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 43, + "finish_position_in_class": 19, + "flair_id": 71, + "flair_name": "France", + "flair_shortname": "FRA", + "friend": false, + "helmet": { + "pattern": 35, + "color1": "000000", + "color2": "ff0000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": 118482, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "FFFFFF", + "color2": "6900FF", + "color3": "FF00ED", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "27", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 49.39754, + "new_license_level": 18, + "new_sub_level": 260, + "new_ttrating": 1350, + "newi_rating": 2166, + "old_cpi": 32.16721, + "old_license_level": 17, + "old_sub_level": 151, + "old_ttrating": 1350, + "oldi_rating": 2187, + "opt_laps_complete": 0, + "position": 43, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 22, + "color1": "404040", + "color2": "bebebe", + "color3": "b78a00" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 43, + "finish_position_in_class": 19, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 1, + "interval": 118482, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "FFFFFF", + "color2": "6900FF", + "color3": "FF00ED", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "27", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 43, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 22, + "color1": "404040", + "color2": "bebebe", + "color3": "b78a00" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -480346, + "display_name": "Almeida Endurance Racing Black", + "aggregate_champ_points": 124, + "ai": false, + "average_lap": 1054056, + "best_lap_num": 2, + "best_lap_time": 1051444, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:08:00Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1051444, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8681, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -480346, + "cust_id": 346886, + "display_name": "Adrian Hopp", + "aggregate_champ_points": 124, + "ai": false, + "average_lap": 1054056, + "best_lap_num": 2, + "best_lap_time": 1051444, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:08:00Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1051444, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 8681, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 44, + "finish_position_in_class": 20, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 21, + "color1": "000000", + "color2": "ffffff", + "color3": "fa0200", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": 118631, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 14, + "color1": "FFED00", + "color2": "00C4FF", + "color3": "87C42E", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "18", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 161.57109, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1311, + "newi_rating": 3055, + "old_cpi": 84.49169, + "old_license_level": 19, + "old_sub_level": 385, + "old_ttrating": 1311, + "oldi_rating": 3033, + "opt_laps_complete": 0, + "position": 44, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 32, + "color1": "ffffff", + "color2": "fff200", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 44, + "finish_position_in_class": 20, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 1, + "interval": 118631, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 14, + "color1": "FFED00", + "color2": "00C4FF", + "color3": "87C42E", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "18", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 44, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 32, + "color1": "ffffff", + "color2": "fff200", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -398466, + "display_name": "Leche Condensada Racing Team", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1052560, + "best_lap_num": 1, + "best_lap_time": 1052560, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:05:54Z", + "best_qual_lap_num": 1, + "best_qual_lap_time": 1052560, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 9797, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -398466, + "cust_id": 1110076, + "display_name": "Abel Ros", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1052560, + "best_lap_num": 1, + "best_lap_time": 1052560, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:05:54Z", + "best_qual_lap_num": 1, + "best_qual_lap_time": 1052560, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 9797, + "country_code": "ES", + "division": 3, + "division_name": "Division 4", + "drop_race": true, + "finish_position": 45, + "finish_position_in_class": 21, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 58, + "color1": "ee0000", + "color2": "e0fa0c", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": 119747, + "laps_complete": 1, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "F5F9F4", + "color2": "000000", + "color3": "EDF4EE", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "28", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 63.223633, + "new_license_level": 19, + "new_sub_level": 341, + "new_ttrating": 1364, + "newi_rating": 2580, + "old_cpi": 79.276924, + "old_license_level": 19, + "old_sub_level": 375, + "old_ttrating": 1364, + "oldi_rating": 2590, + "opt_laps_complete": 0, + "position": 45, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "103fe6", + "color2": "f3f3f3", + "color3": "f60909" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": true, + "finish_position": 45, + "finish_position_in_class": 21, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 1, + "interval": 119747, + "laps_complete": 1, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "F5F9F4", + "color2": "000000", + "color3": "EDF4EE", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "28", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 45, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "103fe6", + "color2": "f3f3f3", + "color3": "f60909" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -298487, + "display_name": "Parc Motorsport Team Purple", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1074633, + "best_lap_num": 2, + "best_lap_time": 1052591, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:08:19Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1052591, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 9828, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -298487, + "cust_id": 784148, + "display_name": "Krzysztof Olender2", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1074633, + "best_lap_num": 2, + "best_lap_time": 1052591, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:08:19Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1052591, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 9828, + "country_code": "PL", + "division": 3, + "division_name": "Division 4", + "drop_race": true, + "finish_position": 46, + "finish_position_in_class": 22, + "flair_id": 167, + "flair_name": "Poland", + "flair_shortname": "POL", + "friend": false, + "helmet": { + "pattern": 43, + "color1": "eaff00", + "color2": "00e0ff", + "color3": "db00ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 119778, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 9, + "color1": "000000", + "color2": "8700ff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "97", + "wheel_color": "000000", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 36.04055, + "new_license_level": 14, + "new_sub_level": 269, + "new_ttrating": 1350, + "newi_rating": 2615, + "old_cpi": 42.249332, + "old_license_level": 14, + "old_sub_level": 293, + "old_ttrating": 1350, + "oldi_rating": 2719, + "opt_laps_complete": 0, + "position": 46, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 28, + "color1": "000000", + "color2": "7800ff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": true, + "finish_position": 46, + "finish_position_in_class": 22, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 119778, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 9, + "color1": "000000", + "color2": "8700ff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "97", + "wheel_color": "000000", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 46, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 28, + "color1": "000000", + "color2": "7800ff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -454924, + "display_name": "Top Tier Motorsport #222", + "aggregate_champ_points": 102, + "ai": false, + "average_lap": 1054291, + "best_lap_num": 1, + "best_lap_time": 1052970, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:06:05Z", + "best_qual_lap_num": 1, + "best_qual_lap_time": 1052970, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 10207, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -454924, + "cust_id": 855270, + "display_name": "Dan Munro", + "aggregate_champ_points": 102, + "ai": false, + "average_lap": 1054291, + "best_lap_num": 1, + "best_lap_time": 1052970, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:06:05Z", + "best_qual_lap_num": 1, + "best_qual_lap_time": 1052970, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 10207, + "country_code": "GB", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 47, + "finish_position_in_class": 23, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "111111", + "color2": "ed1c24", + "color3": "cccccc", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 120157, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 4, + "color1": "efd600", + "color2": "111111", + "color3": "d7162d", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "222", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 37.095116, + "new_license_level": 11, + "new_sub_level": 373, + "new_ttrating": 1350, + "newi_rating": 2026, + "old_cpi": 19.39725, + "old_license_level": 10, + "old_sub_level": 230, + "old_ttrating": 1350, + "oldi_rating": 2017, + "opt_laps_complete": 0, + "position": 47, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "9500f0", + "color2": "111111", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 47, + "finish_position_in_class": 23, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 120157, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 4, + "color1": "efd600", + "color2": "111111", + "color3": "d7162d", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "222", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 47, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 33, + "color1": "9500f0", + "color2": "111111", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -480821, + "display_name": "Team PaceLab - Red", + "aggregate_champ_points": 115, + "ai": false, + "average_lap": 1053828, + "best_lap_num": 1, + "best_lap_time": 1053828, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:06:04Z", + "best_qual_lap_num": 1, + "best_qual_lap_time": 1053828, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 11065, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -480821, + "cust_id": 1287257, + "display_name": "Burak Egemen Yılmaz", + "aggregate_champ_points": 115, + "ai": false, + "average_lap": 1053828, + "best_lap_num": 1, + "best_lap_time": 1053828, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:06:04Z", + "best_qual_lap_num": 1, + "best_qual_lap_time": 1053828, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 11065, + "country_code": "TR", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 48, + "finish_position_in_class": 24, + "flair_id": 215, + "flair_name": "Türkiye", + "flair_shortname": "TUR", + "friend": false, + "helmet": { + "pattern": 36, + "color1": "ffffff", + "color2": "ff0000", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": 121015, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "23", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 77.44804, + "new_license_level": 16, + "new_sub_level": 472, + "new_ttrating": 1307, + "newi_rating": 2450, + "old_cpi": 26.810757, + "old_license_level": 14, + "old_sub_level": 223, + "old_ttrating": 1307, + "oldi_rating": 2426, + "opt_laps_complete": 0, + "position": 48, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 21, + "color1": "000000", + "color2": "de00ff", + "color3": "230057" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 48, + "finish_position_in_class": 24, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 1, + "interval": 121015, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "23", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 48, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 21, + "color1": "000000", + "color2": "de00ff", + "color3": "230057" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -243532, + "display_name": "THLF eSports Multinational by Raceverse.at", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1055788, + "best_lap_num": 2, + "best_lap_time": 1054138, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:38Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1054138, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 11375, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -243532, + "cust_id": 1335570, + "display_name": "Jordan Elmore", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1055788, + "best_lap_num": 2, + "best_lap_time": 1054138, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:38Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1054138, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 11375, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 49, + "finish_position_in_class": 25, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 56, + "color1": "ff0000", + "color2": "000000", + "color3": "acacac", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 121325, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 23, + "color1": "ff9cfd", + "color2": "ffffff", + "color3": "0500ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "444", + "wheel_color": "ffffff", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 61.234966, + "new_license_level": 18, + "new_sub_level": 293, + "new_ttrating": 1325, + "newi_rating": 2474, + "old_cpi": 59.90275, + "old_license_level": 18, + "old_sub_level": 290, + "old_ttrating": 1325, + "oldi_rating": 2494, + "opt_laps_complete": 0, + "position": 49, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 10, + "color1": "00ff1e", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 49, + "finish_position_in_class": 25, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 121325, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 23, + "color1": "ff9cfd", + "color2": "ffffff", + "color3": "0500ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "444", + "wheel_color": "ffffff", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 49, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 10, + "color1": "00ff1e", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -332725, + "display_name": "Miracle Kids Success Academy", + "aggregate_champ_points": 53, + "ai": false, + "average_lap": 1056874, + "best_lap_num": 2, + "best_lap_time": 1055901, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:36Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1055901, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 206, + "car_name": "Aston Martin Vantage GT3 EVO", + "carcfg": -1, + "champ_points": 0, + "class_interval": 13138, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -332725, + "cust_id": 920918, + "display_name": "Justin Noel", + "aggregate_champ_points": 53, + "ai": false, + "average_lap": 1056874, + "best_lap_num": 2, + "best_lap_time": 1055901, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:07:36Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1055901, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 206, + "car_name": "Aston Martin Vantage GT3 EVO", + "carcfg": -1, + "champ_points": 0, + "class_interval": 13138, + "country_code": "US", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 50, + "finish_position_in_class": 26, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 54, + "color1": "ffffff", + "color2": "ff0000", + "color3": "0003ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": 123088, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 206, + "pattern": 19, + "color1": "FFFFFF", + "color2": "FF0000", + "color3": "0003FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "24", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 99, + "new_cpi": 133.95572, + "new_license_level": 20, + "new_sub_level": 497, + "new_ttrating": 1350, + "newi_rating": 3078, + "old_cpi": 48.731533, + "old_license_level": 18, + "old_sub_level": 258, + "old_ttrating": 1350, + "oldi_rating": 3089, + "opt_laps_complete": 0, + "position": 50, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 0, + "color1": "2a3795", + "color2": "ec1c23", + "color3": "eeeeee" + }, + "watched": false, + "weight_penalty_kg": 12 + } + ], + "drop_race": false, + "finish_position": 50, + "finish_position_in_class": 26, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": 123088, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 206, + "pattern": 19, + "color1": "FFFFFF", + "color2": "FF0000", + "color3": "0003FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "24", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 99, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 50, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 0, + "color1": "2a3795", + "color2": "ec1c23", + "color3": "eeeeee" + }, + "watched": false, + "weight_penalty_kg": 12 + }, + { + "team_id": -327700, + "display_name": "SFR ITALIA", + "aggregate_champ_points": 84, + "ai": false, + "average_lap": 1058590, + "best_lap_num": 2, + "best_lap_time": 1058590, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:09:21Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1058590, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 15827, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -327700, + "cust_id": 1005007, + "display_name": "Andrea Lamponi", + "aggregate_champ_points": 84, + "ai": false, + "average_lap": 1058590, + "best_lap_num": 2, + "best_lap_time": 1058590, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:09:21Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1058590, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 15827, + "country_code": "IT", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 51, + "finish_position_in_class": 27, + "flair_id": 101, + "flair_name": "Italy", + "flair_shortname": "ITA", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "5481fc", + "color2": "ffffff", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 2, + "interval": 125777, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 11, + "color1": "D4FF0F", + "color2": "00FF00", + "color3": "111111", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "19", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 75.235085, + "new_license_level": 19, + "new_sub_level": 367, + "new_ttrating": 1302, + "newi_rating": 2284, + "old_cpi": 72.3915, + "old_license_level": 19, + "old_sub_level": 362, + "old_ttrating": 1302, + "oldi_rating": 2276, + "opt_laps_complete": 0, + "position": 51, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 22, + "color1": "faff00", + "color2": "000000", + "color3": "7ef22e" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 51, + "finish_position_in_class": 27, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 2, + "interval": 125777, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 11, + "color1": "D4FF0F", + "color2": "00FF00", + "color3": "111111", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "19", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 51, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 22, + "color1": "faff00", + "color2": "000000", + "color3": "7ef22e" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -333656, + "display_name": "Bite Point Racing", + "aggregate_champ_points": 57, + "ai": false, + "average_lap": 1059644, + "best_lap_num": 2, + "best_lap_time": 1059644, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:09:26Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1059644, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 16881, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -333656, + "cust_id": 936022, + "display_name": "Francis Crosby", + "aggregate_champ_points": 57, + "ai": false, + "average_lap": 1059644, + "best_lap_num": 2, + "best_lap_time": 1059644, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:09:26Z", + "best_qual_lap_num": 2, + "best_qual_lap_time": 1059644, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 16881, + "country_code": "CA", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 52, + "finish_position_in_class": 28, + "flair_id": 39, + "flair_name": "Canada", + "flair_shortname": "CAN", + "friend": false, + "helmet": { + "pattern": 61, + "color1": "ff0000", + "color2": "f7f7f7", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": 126831, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "fd0000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "45", + "wheel_color": "000000", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 57.7853, + "new_license_level": 19, + "new_sub_level": 328, + "new_ttrating": 1350, + "newi_rating": 2454, + "old_cpi": 58.822685, + "old_license_level": 19, + "old_sub_level": 330, + "old_ttrating": 1350, + "oldi_rating": 2457, + "opt_laps_complete": 0, + "position": 52, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 32, + "color1": "000000", + "color2": "04db00", + "color3": "9800d7" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 52, + "finish_position_in_class": 28, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 1, + "interval": 126831, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "fd0000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "45", + "wheel_color": "000000", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 52, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 32, + "color1": "000000", + "color2": "04db00", + "color3": "9800d7" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -434794, + "display_name": "Rag1ng Dragons e-Sports #Team Gold", + "aggregate_champ_points": 106, + "ai": false, + "average_lap": 1063191, + "best_lap_num": 1, + "best_lap_time": 1063191, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:06:32Z", + "best_qual_lap_num": 1, + "best_qual_lap_time": 1063191, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 20428, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -434794, + "cust_id": 785721, + "display_name": "Lucas Benini", + "aggregate_champ_points": 106, + "ai": false, + "average_lap": 1063191, + "best_lap_num": 1, + "best_lap_time": 1063191, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "2026-01-17T12:06:32Z", + "best_qual_lap_num": 1, + "best_qual_lap_time": 1063191, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": 20428, + "country_code": "BR", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 53, + "finish_position_in_class": 29, + "flair_id": 31, + "flair_name": "Brazil", + "flair_shortname": "BRA", + "friend": false, + "helmet": { + "pattern": 22, + "color1": "ffed00", + "color2": "008cff", + "color3": "1cff00", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": 130378, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 4, + "color1": "effc53", + "color2": "43cd41", + "color3": "1e42db", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "30", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 108.44981, + "new_license_level": 20, + "new_sub_level": 465, + "new_ttrating": 1291, + "newi_rating": 2547, + "old_cpi": 54.275417, + "old_license_level": 19, + "old_sub_level": 318, + "old_ttrating": 1291, + "oldi_rating": 2534, + "opt_laps_complete": 0, + "position": 53, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "22b428", + "color2": "353bcc", + "color3": "d3f118" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 53, + "finish_position_in_class": 29, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 1, + "interval": 130378, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 4, + "color1": "effc53", + "color2": "43cd41", + "color3": "1e42db", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "30", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 53, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 1, + "color1": "22b428", + "color2": "353bcc", + "color3": "d3f118" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -370856, + "display_name": "Crayola Advanced Engineering", + "aggregate_champ_points": 140, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -370856, + "cust_id": 1070827, + "display_name": "Alexander Wainman", + "aggregate_champ_points": 140, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GB", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 56, + "finish_position_in_class": 13, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 35, + "color1": "6e00ff", + "color2": "ff00ff", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 4, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 10, + "color1": "ffffff", + "color2": "0019ff", + "color3": "111111", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "7", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 113.07297, + "new_license_level": 20, + "new_sub_level": 471, + "new_ttrating": 1211, + "newi_rating": 3227, + "old_cpi": 110.732925, + "old_license_level": 20, + "old_sub_level": 468, + "old_ttrating": 1211, + "oldi_rating": 3199, + "opt_laps_complete": 0, + "position": 56, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 26, + "color1": "ffffff", + "color2": "004225", + "color3": "d4af37" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 54, + "finish_position_in_class": 12, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 4, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 10, + "color1": "ffffff", + "color2": "0019ff", + "color3": "111111", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "7", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 54, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 26, + "color1": "ffffff", + "color2": "004225", + "color3": "d4af37" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -401232, + "display_name": "Kika Cetasso Racing Team", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -401232, + "cust_id": 127024, + "display_name": "Fernando Cardoso", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "CA", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 54, + "finish_position_in_class": 30, + "flair_id": 39, + "flair_name": "Canada", + "flair_shortname": "CAN", + "friend": false, + "helmet": { + "pattern": 42, + "color1": "000000", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "ffffff", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 3, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "12", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 46.205784, + "new_license_level": 18, + "new_sub_level": 250, + "new_ttrating": 1350, + "newi_rating": 1513, + "old_cpi": 57.07806, + "old_license_level": 19, + "old_sub_level": 326, + "old_ttrating": 1350, + "oldi_rating": 1571, + "opt_laps_complete": 0, + "position": 54, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 2, + "color1": "000000", + "color2": "ffffff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 58, + "finish_position_in_class": 32, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "ffffff", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 3, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "12", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 58, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 2, + "color1": "000000", + "color2": "ffffff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -300070, + "display_name": "Tabula Rasa eSports 901", + "aggregate_champ_points": 96, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -300070, + "cust_id": 641758, + "display_name": "Adam NS Jones", + "aggregate_champ_points": 96, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GB", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 55, + "finish_position_in_class": 12, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 56, + "color1": "ffffff", + "color2": "ee3442", + "color3": "447ac0", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 16, + "color1": "000000", + "color2": "ed2129", + "color3": "001ee3", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "901", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 117.47467, + "new_license_level": 20, + "new_sub_level": 477, + "new_ttrating": 1350, + "newi_rating": 2049, + "old_cpi": 54.51905, + "old_license_level": 18, + "old_sub_level": 275, + "old_ttrating": 1350, + "oldi_rating": 2039, + "opt_laps_complete": 0, + "position": 55, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 35, + "color1": "000000", + "color2": "fb0000", + "color3": "0030ff" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 55, + "finish_position_in_class": 13, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 16, + "color1": "000000", + "color2": "ed2129", + "color3": "001ee3", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "901", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 55, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 35, + "color1": "000000", + "color2": "fb0000", + "color3": "0030ff" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -471181, + "display_name": "PRS Team Europe", + "aggregate_champ_points": 66, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 185, + "car_name": "Ford Mustang GT3", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [], + "drop_race": false, + "finish_position": 56, + "finish_position_in_class": 30, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 185, + "pattern": 20, + "color1": "515151", + "color2": "FFFFFF", + "color3": "000000", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "16", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 56, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 3, + "color1": "0083ff", + "color2": "ffffff", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 10 + }, + { + "team_id": -142589, + "display_name": "Team Highside - Vette", + "aggregate_champ_points": 48, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 184, + "car_name": "Chevrolet Corvette Z06 GT3.R", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [], + "drop_race": false, + "finish_position": 57, + "finish_position_in_class": 31, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 184, + "pattern": 12, + "color1": "0085ff", + "color2": "0085ff", + "color3": "d50000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "242424", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "216", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 96, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 57, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": -1, + "starting_position_in_class": -1, + "suit": { + "pattern": 25, + "color1": "FA7400", + "color2": "000000", + "color3": "FFFFFF" + }, + "watched": false, + "weight_penalty_kg": 10 + } + ] + }, + { + "simsession_number": 0, + "simsession_name": "RACE", + "simsession_type": 6, + "simsession_type_name": "Race", + "simsession_subtype": 0, + "weather_result": { + "avg_skies": 2, + "avg_cloud_cover_pct": 86.42999, + "min_cloud_cover_pct": 33.080578, + "max_cloud_cover_pct": 100, + "temp_units": 1, + "avg_temp": 20.332977, + "min_temp": 19.306164, + "max_temp": 23.79765, + "avg_rel_humidity": 68.905235, + "wind_units": 1, + "avg_wind_speed": 9.205517, + "min_wind_speed": 3.9293036, + "max_wind_speed": 17.688026, + "avg_wind_dir": 7, + "max_fog": 0, + "fog_time_pct": 0, + "precip_time_pct": 0, + "precip_mm": 0, + "precip_mm2hr_before_session": 0, + "simulated_start_time": "2026-01-24T14:00:00" + }, + "results": [ + { + "team_id": -370856, + "display_name": "Crayola Advanced Engineering", + "aggregate_champ_points": 140, + "ai": false, + "average_lap": 978772, + "best_lap_num": 690, + "best_lap_time": 934669, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 140, + "class_interval": 0, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -370856, + "cust_id": 1070827, + "display_name": "Alexander Wainman", + "aggregate_champ_points": 140, + "ai": false, + "average_lap": 963449, + "best_lap_num": 690, + "best_lap_time": 934669, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 140, + "class_interval": 0, + "country_code": "GB", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 0, + "finish_position_in_class": 0, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 35, + "color1": "6e00ff", + "color2": "ff00ff", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 29, + "interval": 0, + "laps_complete": 279, + "laps_lead": 95, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 10, + "color1": "ffffff", + "color2": "0019ff", + "color3": "111111", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "7", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 113.07297, + "new_license_level": 20, + "new_sub_level": 471, + "new_ttrating": 1211, + "newi_rating": 3227, + "old_cpi": 110.732925, + "old_license_level": 20, + "old_sub_level": 468, + "old_ttrating": 1211, + "oldi_rating": 3199, + "opt_laps_complete": 0, + "position": 0, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 12, + "starting_position_in_class": 12, + "suit": { + "pattern": 26, + "color1": "ffffff", + "color2": "004225", + "color3": "d4af37" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -370856, + "cust_id": 580584, + "display_name": "Adam W Lewis", + "aggregate_champ_points": 140, + "ai": false, + "average_lap": 966750, + "best_lap_num": 324, + "best_lap_time": 934988, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 140, + "class_interval": 0, + "country_code": "GB", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 0, + "finish_position_in_class": 0, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 23, + "color1": "ff00a4", + "color2": "adff00", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 21, + "interval": 0, + "laps_complete": 271, + "laps_lead": 77, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 10, + "color1": "ffffff", + "color2": "0019ff", + "color3": "111111", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "7", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 112.93226, + "new_license_level": 20, + "new_sub_level": 471, + "new_ttrating": 1178, + "newi_rating": 2293, + "old_cpi": 75.35843, + "old_license_level": 20, + "old_sub_level": 409, + "old_ttrating": 1178, + "oldi_rating": 2265, + "opt_laps_complete": 0, + "position": 0, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 12, + "starting_position_in_class": 12, + "suit": { + "pattern": 26, + "color1": "ffffff", + "color2": "004225", + "color3": "d4af37" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -370856, + "cust_id": 693405, + "display_name": "William Wadsworth", + "aggregate_champ_points": 140, + "ai": false, + "average_lap": 977716, + "best_lap_num": 509, + "best_lap_time": 940937, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 140, + "class_interval": 0, + "country_code": "US", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 0, + "finish_position_in_class": 0, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 11, + "color1": "000000", + "color2": "0094ff", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 20, + "interval": 0, + "laps_complete": 192, + "laps_lead": 48, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 10, + "color1": "ffffff", + "color2": "0019ff", + "color3": "111111", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "7", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 107.11224, + "new_license_level": 20, + "new_sub_level": 463, + "new_ttrating": 1313, + "newi_rating": 2064, + "old_cpi": 92.5777, + "old_license_level": 19, + "old_sub_level": 399, + "old_ttrating": 1313, + "oldi_rating": 2044, + "opt_laps_complete": 0, + "position": 0, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 12, + "starting_position_in_class": 12, + "suit": { + "pattern": 26, + "color1": "ffffff", + "color2": "004225", + "color3": "d4af37" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -370856, + "cust_id": 1065424, + "display_name": "Cameron Gapinski", + "aggregate_champ_points": 140, + "ai": false, + "average_lap": 971898, + "best_lap_num": 433, + "best_lap_time": 944286, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 140, + "class_interval": 0, + "country_code": "US", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 0, + "finish_position_in_class": 0, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 34, + "color1": "000000", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 5, + "interval": 0, + "laps_complete": 141, + "laps_lead": 48, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 10, + "color1": "ffffff", + "color2": "0019ff", + "color3": "111111", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "7", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 124.50656, + "new_license_level": 20, + "new_sub_level": 486, + "new_ttrating": 1350, + "newi_rating": 2043, + "old_cpi": 83.14618, + "old_license_level": 20, + "old_sub_level": 424, + "old_ttrating": 1350, + "oldi_rating": 2029, + "opt_laps_complete": 0, + "position": 0, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 12, + "starting_position_in_class": 12, + "suit": { + "pattern": 26, + "color1": "ffffff", + "color2": "004225", + "color3": "d4af37" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 0, + "finish_position_in_class": 0, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 75, + "interval": 0, + "laps_complete": 883, + "laps_lead": 270, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 10, + "color1": "ffffff", + "color2": "0019ff", + "color3": "111111", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "7", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 0, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 12, + "starting_position_in_class": 12, + "suit": { + "pattern": 26, + "color1": "ffffff", + "color2": "004225", + "color3": "d4af37" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -402095, + "display_name": "Granateapfel RT", + "aggregate_champ_points": 129, + "ai": false, + "average_lap": 983506, + "best_lap_num": 496, + "best_lap_time": 936208, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 129, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -402095, + "cust_id": 1128144, + "display_name": "Georg Raach", + "aggregate_champ_points": 129, + "ai": false, + "average_lap": 976476, + "best_lap_num": 496, + "best_lap_time": 936208, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 129, + "class_interval": -1, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 1, + "finish_position_in_class": 1, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 43, + "color1": "ffffff", + "color2": "372a75", + "color3": "f1732e", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 16, + "interval": -1, + "laps_complete": 473, + "laps_lead": 148, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 4, + "color1": "FF0000", + "color2": "00FF00", + "color3": "0000FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "2", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 276.91815, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1294, + "newi_rating": 2896, + "old_cpi": 67.67536, + "old_license_level": 19, + "old_sub_level": 351, + "old_ttrating": 1294, + "oldi_rating": 2853, + "opt_laps_complete": 0, + "position": 1, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 11, + "starting_position_in_class": 11, + "suit": { + "pattern": 1, + "color1": "ffffff", + "color2": "372a75", + "color3": "f1732e" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -402095, + "cust_id": 1165346, + "display_name": "Finn Metzler", + "aggregate_champ_points": 129, + "ai": false, + "average_lap": 974099, + "best_lap_num": 606, + "best_lap_time": 939734, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 129, + "class_interval": -1, + "country_code": "VU", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 1, + "finish_position_in_class": 1, + "flair_id": 226, + "flair_name": "Vanuatu", + "flair_shortname": "VUT", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "372a75", + "color2": "f1732e", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 30, + "interval": -1, + "laps_complete": 406, + "laps_lead": 111, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 4, + "color1": "FF0000", + "color2": "00FF00", + "color3": "0000FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "2", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 137.59468, + "new_license_level": 16, + "new_sub_level": 499, + "new_ttrating": 1265, + "newi_rating": 1943, + "old_cpi": 28.337646, + "old_license_level": 14, + "old_sub_level": 232, + "old_ttrating": 1265, + "oldi_rating": 1907, + "opt_laps_complete": 0, + "position": 1, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 11, + "starting_position_in_class": 11, + "suit": { + "pattern": 1, + "color1": "ffffff", + "color2": "372a75", + "color3": "f1732e" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 1, + "finish_position_in_class": 1, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 46, + "interval": -1, + "laps_complete": 879, + "laps_lead": 261, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 4, + "color1": "FF0000", + "color2": "00FF00", + "color3": "0000FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "2", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 1, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 11, + "starting_position_in_class": 11, + "suit": { + "pattern": 1, + "color1": "ffffff", + "color2": "372a75", + "color3": "f1732e" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -385527, + "display_name": "EHR Blue", + "aggregate_champ_points": 118, + "ai": false, + "average_lap": 985069, + "best_lap_num": 654, + "best_lap_time": 938935, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 118, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -385527, + "cust_id": 1126675, + "display_name": "Jack Reed", + "aggregate_champ_points": 118, + "ai": false, + "average_lap": 968399, + "best_lap_num": 654, + "best_lap_time": 938935, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 118, + "class_interval": -1, + "country_code": "ENG", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 2, + "finish_position_in_class": 2, + "flair_id": 236, + "flair_name": "England", + "flair_shortname": "ENG", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "383838", + "color2": "ffffff", + "color3": "2885ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 18, + "interval": -1, + "laps_complete": 352, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 14, + "number_color1": "ffffff", + "number_color2": "cba7f4", + "number_color3": "352e74", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "808", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 163.46672, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1085, + "newi_rating": 2895, + "old_cpi": 60.085476, + "old_license_level": 19, + "old_sub_level": 333, + "old_ttrating": 1085, + "oldi_rating": 2871, + "opt_laps_complete": 0, + "position": 2, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 3, + "starting_position_in_class": 3, + "suit": { + "pattern": 13, + "color1": "352e74", + "color2": "4C99D3", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -385527, + "cust_id": 289709, + "display_name": "Greyson Oppermann", + "aggregate_champ_points": 118, + "ai": false, + "average_lap": 979322, + "best_lap_num": 424, + "best_lap_time": 939079, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 118, + "class_interval": -1, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 2, + "finish_position_in_class": 2, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 15, + "color1": "ffffff", + "color2": "ffffff", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 25, + "interval": -1, + "laps_complete": 335, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 14, + "number_color1": "ffffff", + "number_color2": "cba7f4", + "number_color3": "352e74", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "808", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 121.81984, + "new_license_level": 12, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2415, + "old_cpi": 28.188484, + "old_license_level": 10, + "old_sub_level": 290, + "old_ttrating": 1350, + "oldi_rating": 2392, + "opt_laps_complete": 0, + "position": 2, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 3, + "starting_position_in_class": 3, + "suit": { + "pattern": 13, + "color1": "352e74", + "color2": "4C99D3", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -385527, + "cust_id": 1021414, + "display_name": "Linus Wise", + "aggregate_champ_points": 118, + "ai": false, + "average_lap": 971852, + "best_lap_num": 525, + "best_lap_time": 943240, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 118, + "class_interval": -1, + "country_code": "US", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 2, + "finish_position_in_class": 2, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 20, + "color1": "ff0000", + "color2": "1200ff", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 7, + "interval": -1, + "laps_complete": 107, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 14, + "number_color1": "ffffff", + "number_color2": "cba7f4", + "number_color3": "352e74", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "808", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 80.80387, + "new_license_level": 19, + "new_sub_level": 378, + "new_ttrating": 1350, + "newi_rating": 2087, + "old_cpi": 35.06846, + "old_license_level": 17, + "old_sub_level": 165, + "old_ttrating": 1350, + "oldi_rating": 2080, + "opt_laps_complete": 0, + "position": 2, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 3, + "starting_position_in_class": 3, + "suit": { + "pattern": 13, + "color1": "352e74", + "color2": "4C99D3", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -385527, + "cust_id": 611015, + "display_name": "Aaron Knight2", + "aggregate_champ_points": 118, + "ai": false, + "average_lap": 976704, + "best_lap_num": 45, + "best_lap_time": 946215, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 118, + "class_interval": -1, + "country_code": "GO", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 2, + "finish_position_in_class": 2, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "helmet": { + "pattern": 60, + "color1": "0afc05", + "color2": "121212", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 7, + "interval": -1, + "laps_complete": 84, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 14, + "number_color1": "ffffff", + "number_color2": "cba7f4", + "number_color3": "352e74", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "808", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 45.631496, + "new_license_level": 15, + "new_sub_level": 348, + "new_ttrating": 1350, + "newi_rating": 2184, + "old_cpi": 28.325111, + "old_license_level": 14, + "old_sub_level": 232, + "old_ttrating": 1350, + "oldi_rating": 2178, + "opt_laps_complete": 0, + "position": 2, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 3, + "starting_position_in_class": 3, + "suit": { + "pattern": 13, + "color1": "352e74", + "color2": "4C99D3", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 2, + "finish_position_in_class": 2, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 57, + "interval": -1, + "laps_complete": 878, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 14, + "number_color1": "ffffff", + "number_color2": "cba7f4", + "number_color3": "352e74", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "808", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 2, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 3, + "starting_position_in_class": 3, + "suit": { + "pattern": 13, + "color1": "352e74", + "color2": "4C99D3", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -307068, + "display_name": "Azz Tech Racing - 390", + "aggregate_champ_points": 107, + "ai": false, + "average_lap": 987296, + "best_lap_num": 600, + "best_lap_time": 936353, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 107, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -307068, + "cust_id": 846950, + "display_name": "Matthew Cheverton", + "aggregate_champ_points": 107, + "ai": false, + "average_lap": 974631, + "best_lap_num": 185, + "best_lap_time": 940898, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 107, + "class_interval": -1, + "country_code": "GB", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 3, + "finish_position_in_class": 3, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 8, + "color1": "ff0000", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 9, + "interval": -1, + "laps_complete": 279, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 17, + "color1": "ff0000", + "color2": "ffffff", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "ffffff", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "390", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 208.88257, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 3137, + "old_cpi": 75.065544, + "old_license_level": 19, + "old_sub_level": 367, + "old_ttrating": 1350, + "oldi_rating": 3121, + "opt_laps_complete": 0, + "position": 3, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 9, + "starting_position_in_class": 9, + "suit": { + "pattern": 33, + "color1": "f00000", + "color2": "faff00", + "color3": "9b9b9b" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -307068, + "cust_id": 996524, + "display_name": "Gabriel Papaconstantinou", + "aggregate_champ_points": 107, + "ai": false, + "average_lap": 992047, + "best_lap_num": 270, + "best_lap_time": 938007, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 107, + "class_interval": -1, + "country_code": "GB", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 3, + "finish_position_in_class": 3, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "bcf7e2", + "color2": "000000", + "color3": "0012ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 10, + "interval": -1, + "laps_complete": 243, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 17, + "color1": "ff0000", + "color2": "ffffff", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "ffffff", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "390", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 169.81465, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 1722, + "old_cpi": 48.918552, + "old_license_level": 18, + "old_sub_level": 259, + "old_ttrating": 1350, + "oldi_rating": 1708, + "opt_laps_complete": 0, + "position": 3, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 9, + "starting_position_in_class": 9, + "suit": { + "pattern": 33, + "color1": "f00000", + "color2": "faff00", + "color3": "9b9b9b" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -307068, + "cust_id": 361745, + "display_name": "Jake Pitt", + "aggregate_champ_points": 107, + "ai": false, + "average_lap": 972125, + "best_lap_num": 600, + "best_lap_time": 936353, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 107, + "class_interval": -1, + "country_code": "WLS", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 3, + "finish_position_in_class": 3, + "flair_id": 238, + "flair_name": "Wales", + "flair_shortname": "WLS", + "friend": false, + "helmet": { + "pattern": 68, + "color1": "b38703", + "color2": "ff0000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 13, + "interval": -1, + "laps_complete": 191, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 17, + "color1": "ff0000", + "color2": "ffffff", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "ffffff", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "390", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 118.637, + "new_license_level": 20, + "new_sub_level": 478, + "new_ttrating": 1350, + "newi_rating": 2709, + "old_cpi": 53.686394, + "old_license_level": 18, + "old_sub_level": 273, + "old_ttrating": 1350, + "oldi_rating": 2698, + "opt_laps_complete": 0, + "position": 3, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 9, + "starting_position_in_class": 9, + "suit": { + "pattern": 33, + "color1": "f00000", + "color2": "faff00", + "color3": "9b9b9b" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -307068, + "cust_id": 953940, + "display_name": "Alejandro Ulate Alfaro", + "aggregate_champ_points": 107, + "ai": false, + "average_lap": 979383, + "best_lap_num": 349, + "best_lap_time": 943167, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 107, + "class_interval": -1, + "country_code": "CR", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 3, + "finish_position_in_class": 3, + "flair_id": 51, + "flair_name": "Costa Rica", + "flair_shortname": "CRI", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "3d3d3d", + "color2": "000000", + "color3": "f46a29", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 10, + "interval": -1, + "laps_complete": 163, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 17, + "color1": "ff0000", + "color2": "ffffff", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "ffffff", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "390", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 102.35704, + "new_license_level": 20, + "new_sub_level": 456, + "new_ttrating": 1350, + "newi_rating": 2050, + "old_cpi": 58.770905, + "old_license_level": 19, + "old_sub_level": 330, + "old_ttrating": 1350, + "oldi_rating": 2041, + "opt_laps_complete": 0, + "position": 3, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 9, + "starting_position_in_class": 9, + "suit": { + "pattern": 33, + "color1": "f00000", + "color2": "faff00", + "color3": "9b9b9b" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 3, + "finish_position_in_class": 3, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 42, + "interval": -1, + "laps_complete": 876, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 17, + "color1": "ff0000", + "color2": "ffffff", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "ffffff", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "390", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 3, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 9, + "starting_position_in_class": 9, + "suit": { + "pattern": 33, + "color1": "f00000", + "color2": "faff00", + "color3": "9b9b9b" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -300070, + "display_name": "Tabula Rasa eSports 901", + "aggregate_champ_points": 96, + "ai": false, + "average_lap": 990756, + "best_lap_num": 544, + "best_lap_time": 936837, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 96, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -300070, + "cust_id": 164594, + "display_name": "Taylor Strawbridge", + "aggregate_champ_points": 96, + "ai": false, + "average_lap": 978387, + "best_lap_num": 320, + "best_lap_time": 945466, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 96, + "class_interval": -1, + "country_code": "CA", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 4, + "finish_position_in_class": 4, + "flair_id": 39, + "flair_name": "Canada", + "flair_shortname": "CAN", + "friend": false, + "helmet": { + "pattern": 45, + "color1": "2d2d2d", + "color2": "8000ff", + "color3": "fe00ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 9, + "interval": -1, + "laps_complete": 224, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 16, + "color1": "000000", + "color2": "ed2129", + "color3": "001ee3", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "901", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 219.1369, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 1873, + "old_cpi": 156.40717, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 1864, + "opt_laps_complete": 0, + "position": 4, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 13, + "starting_position_in_class": 13, + "suit": { + "pattern": 35, + "color1": "000000", + "color2": "fb0000", + "color3": "0030ff" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -300070, + "cust_id": 635328, + "display_name": "Clarke January", + "aggregate_champ_points": 96, + "ai": false, + "average_lap": 969940, + "best_lap_num": 212, + "best_lap_time": 942485, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 96, + "class_interval": -1, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 4, + "finish_position_in_class": 4, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 3, + "color1": "000000", + "color2": "ffffff", + "color3": "489aef", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 8, + "interval": -1, + "laps_complete": 222, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 16, + "color1": "000000", + "color2": "ed2129", + "color3": "001ee3", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "901", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 160.35382, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1345, + "newi_rating": 2415, + "old_cpi": 90.475494, + "old_license_level": 20, + "old_sub_level": 437, + "old_ttrating": 1345, + "oldi_rating": 2405, + "opt_laps_complete": 0, + "position": 4, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 13, + "starting_position_in_class": 13, + "suit": { + "pattern": 35, + "color1": "000000", + "color2": "fb0000", + "color3": "0030ff" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -300070, + "cust_id": 641758, + "display_name": "Adam NS Jones", + "aggregate_champ_points": 96, + "ai": false, + "average_lap": 1005455, + "best_lap_num": 18, + "best_lap_time": 943795, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 96, + "class_interval": -1, + "country_code": "GB", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 4, + "finish_position_in_class": 4, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 56, + "color1": "ffffff", + "color2": "ee3442", + "color3": "447ac0", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 17, + "interval": -1, + "laps_complete": 220, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 16, + "color1": "000000", + "color2": "ed2129", + "color3": "001ee3", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "901", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 117.47467, + "new_license_level": 20, + "new_sub_level": 477, + "new_ttrating": 1350, + "newi_rating": 2049, + "old_cpi": 54.51905, + "old_license_level": 18, + "old_sub_level": 275, + "old_ttrating": 1350, + "oldi_rating": 2039, + "opt_laps_complete": 0, + "position": 4, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 13, + "starting_position_in_class": 13, + "suit": { + "pattern": 35, + "color1": "000000", + "color2": "fb0000", + "color3": "0030ff" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -300070, + "cust_id": 451212, + "display_name": "Christian Bryant Hill", + "aggregate_champ_points": 96, + "ai": false, + "average_lap": 970996, + "best_lap_num": 544, + "best_lap_time": 936837, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 96, + "class_interval": -1, + "country_code": "US", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 4, + "finish_position_in_class": 4, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 43, + "color1": "002855", + "color2": "ffffff", + "color3": "84754e", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 20, + "interval": -1, + "laps_complete": 207, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 16, + "color1": "000000", + "color2": "ed2129", + "color3": "001ee3", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "901", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 105.671295, + "new_license_level": 20, + "new_sub_level": 461, + "new_ttrating": 1350, + "newi_rating": 3231, + "old_cpi": 87.057236, + "old_license_level": 20, + "old_sub_level": 431, + "old_ttrating": 1350, + "oldi_rating": 3222, + "opt_laps_complete": 0, + "position": 4, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 13, + "starting_position_in_class": 13, + "suit": { + "pattern": 35, + "color1": "000000", + "color2": "fb0000", + "color3": "0030ff" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 4, + "finish_position_in_class": 4, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 54, + "interval": -1, + "laps_complete": 873, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 16, + "color1": "000000", + "color2": "ed2129", + "color3": "001ee3", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "901", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 4, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 13, + "starting_position_in_class": 13, + "suit": { + "pattern": 35, + "color1": "000000", + "color2": "fb0000", + "color3": "0030ff" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -303706, + "display_name": "Savage Sim Racing - Team 80HD", + "aggregate_champ_points": 86, + "ai": false, + "average_lap": 996107, + "best_lap_num": 126, + "best_lap_time": 937014, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 86, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -303706, + "cust_id": 912397, + "display_name": "Clayton Sanchez2", + "aggregate_champ_points": 86, + "ai": false, + "average_lap": 969412, + "best_lap_num": 592, + "best_lap_time": 938936, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 86, + "class_interval": -1, + "country_code": "US", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 5, + "finish_position_in_class": 5, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "320159", + "color2": "9705fc", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 196, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 22, + "color1": "000000", + "color2": "01ffff", + "color3": "a30dbe", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 239, + "sponsor2": 240, + "car_number": "66", + "wheel_color": "767676", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 267.99796, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2906, + "old_cpi": 126.12498, + "old_license_level": 20, + "old_sub_level": 488, + "old_ttrating": 1350, + "oldi_rating": 2901, + "opt_laps_complete": 0, + "position": 5, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 5, + "starting_position_in_class": 5, + "suit": { + "pattern": 28, + "color1": "434343", + "color2": "fbfbfb", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -303706, + "cust_id": 871012, + "display_name": "Ian Miller10", + "aggregate_champ_points": 86, + "ai": false, + "average_lap": 991773, + "best_lap_num": 126, + "best_lap_time": 937014, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 86, + "class_interval": -1, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 5, + "finish_position_in_class": 5, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 9, + "color1": "ff0000", + "color2": "8000ff", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 2, + "interval": -1, + "laps_complete": 185, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 22, + "color1": "000000", + "color2": "01ffff", + "color3": "a30dbe", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 239, + "sponsor2": 240, + "car_number": "66", + "wheel_color": "767676", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 257.09753, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2339, + "old_cpi": 137.9408, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 2334, + "opt_laps_complete": 0, + "position": 5, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 5, + "starting_position_in_class": 5, + "suit": { + "pattern": 28, + "color1": "434343", + "color2": "fbfbfb", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -303706, + "cust_id": 788684, + "display_name": "Nate Halastik", + "aggregate_champ_points": 86, + "ai": false, + "average_lap": 1017825, + "best_lap_num": 293, + "best_lap_time": 945898, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 86, + "class_interval": -1, + "country_code": "CZ", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 5, + "finish_position_in_class": 5, + "flair_id": 54, + "flair_name": "Czechia", + "flair_shortname": "CZE", + "friend": false, + "helmet": { + "pattern": 44, + "color1": "000000", + "color2": "01ffff", + "color3": "a30dbe", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 13, + "interval": -1, + "laps_complete": 167, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 22, + "color1": "000000", + "color2": "01ffff", + "color3": "a30dbe", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 239, + "sponsor2": 240, + "car_number": "66", + "wheel_color": "767676", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 84.42449, + "new_license_level": 19, + "new_sub_level": 385, + "new_ttrating": 1350, + "newi_rating": 2003, + "old_cpi": 36.808407, + "old_license_level": 18, + "old_sub_level": 216, + "old_ttrating": 1350, + "oldi_rating": 1999, + "opt_laps_complete": 0, + "position": 5, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 5, + "starting_position_in_class": 5, + "suit": { + "pattern": 28, + "color1": "434343", + "color2": "fbfbfb", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -303706, + "cust_id": 683317, + "display_name": "Parker Clardy", + "aggregate_champ_points": 86, + "ai": false, + "average_lap": 974879, + "best_lap_num": 754, + "best_lap_time": 945403, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 86, + "class_interval": -1, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 5, + "finish_position_in_class": 5, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 54, + "color1": "ff0000", + "color2": "ffe500", + "color3": "484849", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 25, + "interval": -1, + "laps_complete": 163, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 22, + "color1": "000000", + "color2": "01ffff", + "color3": "a30dbe", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 239, + "sponsor2": 240, + "car_number": "66", + "wheel_color": "767676", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 58.683918, + "new_license_level": 18, + "new_sub_level": 286, + "new_ttrating": 1350, + "newi_rating": 2302, + "old_cpi": 34.697445, + "old_license_level": 18, + "old_sub_level": 207, + "old_ttrating": 1350, + "oldi_rating": 2298, + "opt_laps_complete": 0, + "position": 5, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 5, + "starting_position_in_class": 5, + "suit": { + "pattern": 28, + "color1": "434343", + "color2": "fbfbfb", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -303706, + "cust_id": 38029, + "display_name": "Richard Swiderski", + "aggregate_champ_points": 86, + "ai": false, + "average_lap": 975832, + "best_lap_num": 181, + "best_lap_time": 946192, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 86, + "class_interval": -1, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 5, + "finish_position_in_class": 5, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 50, + "color1": "4e0c56", + "color2": "0921f5", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 13, + "interval": -1, + "laps_complete": 157, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 22, + "color1": "000000", + "color2": "01ffff", + "color3": "a30dbe", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 239, + "sponsor2": 240, + "car_number": "66", + "wheel_color": "767676", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 126.51591, + "new_license_level": 20, + "new_sub_level": 488, + "new_ttrating": 1350, + "newi_rating": 2290, + "old_cpi": 112.80723, + "old_license_level": 20, + "old_sub_level": 471, + "old_ttrating": 1350, + "oldi_rating": 2286, + "opt_laps_complete": 0, + "position": 5, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 5, + "starting_position_in_class": 5, + "suit": { + "pattern": 28, + "color1": "434343", + "color2": "fbfbfb", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 5, + "finish_position_in_class": 5, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 53, + "interval": -1, + "laps_complete": 868, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 22, + "color1": "000000", + "color2": "01ffff", + "color3": "a30dbe", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 239, + "sponsor2": 240, + "car_number": "66", + "wheel_color": "767676", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 5, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 5, + "starting_position_in_class": 5, + "suit": { + "pattern": 28, + "color1": "434343", + "color2": "fbfbfb", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -346577, + "display_name": "Motorsports Factory YELLOW", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 1001714, + "best_lap_num": 645, + "best_lap_time": 937891, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 168, + "car_name": "Cadillac V-Series.R GTP", + "carcfg": -1, + "champ_points": 75, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -346577, + "cust_id": 945525, + "display_name": "Benjamin Voigt", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 999123, + "best_lap_num": 645, + "best_lap_time": 937891, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 168, + "car_name": "Cadillac V-Series.R GTP", + "carcfg": -1, + "champ_points": 75, + "class_interval": -1, + "country_code": "DE", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 6, + "finish_position_in_class": 6, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 39, + "color1": "ff0000", + "color2": "000000", + "color3": "ff0000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 41, + "interval": -1, + "laps_complete": 388, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 168, + "pattern": 21, + "color1": "172b21", + "color2": "57f97a", + "color3": "e8f9f0", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 139, + "sponsor2": 2, + "car_number": "194", + "wheel_color": "0a0f0a", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 108.77311, + "new_license_level": 20, + "new_sub_level": 465, + "new_ttrating": 1350, + "newi_rating": 1914, + "old_cpi": 75.879616, + "old_license_level": 19, + "old_sub_level": 369, + "old_ttrating": 1350, + "oldi_rating": 1909, + "opt_laps_complete": 0, + "position": 6, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 8, + "starting_position_in_class": 8, + "suit": { + "pattern": 32, + "color1": "172b21", + "color2": "e8f9f0", + "color3": "57f97a" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -346577, + "cust_id": 824375, + "display_name": "Marco Cherdron", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 972851, + "best_lap_num": 326, + "best_lap_time": 942727, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 168, + "car_name": "Cadillac V-Series.R GTP", + "carcfg": -1, + "champ_points": 75, + "class_interval": -1, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 6, + "finish_position_in_class": 6, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 60, + "color1": "d7162d", + "color2": "ffffff", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 6, + "interval": -1, + "laps_complete": 167, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 168, + "pattern": 21, + "color1": "172b21", + "color2": "57f97a", + "color3": "e8f9f0", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 139, + "sponsor2": 2, + "car_number": "194", + "wheel_color": "0a0f0a", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 133.82549, + "new_license_level": 20, + "new_sub_level": 497, + "new_ttrating": 1350, + "newi_rating": 2813, + "old_cpi": 84.033134, + "old_license_level": 20, + "old_sub_level": 425, + "old_ttrating": 1350, + "oldi_rating": 2811, + "opt_laps_complete": 0, + "position": 6, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 8, + "starting_position_in_class": 8, + "suit": { + "pattern": 32, + "color1": "172b21", + "color2": "e8f9f0", + "color3": "57f97a" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -346577, + "cust_id": 600472, + "display_name": "Niklas Ude", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 996812, + "best_lap_num": 683, + "best_lap_time": 941270, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 168, + "car_name": "Cadillac V-Series.R GTP", + "carcfg": -1, + "champ_points": 75, + "class_interval": -1, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 6, + "finish_position_in_class": 6, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 56, + "color1": "52944d", + "color2": "d2d2d2", + "color3": "5b6a32", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 20, + "interval": -1, + "laps_complete": 165, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 168, + "pattern": 21, + "color1": "172b21", + "color2": "57f97a", + "color3": "e8f9f0", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 139, + "sponsor2": 2, + "car_number": "194", + "wheel_color": "0a0f0a", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 91.08547, + "new_license_level": 20, + "new_sub_level": 438, + "new_ttrating": 1350, + "newi_rating": 2605, + "old_cpi": 85.72911, + "old_license_level": 20, + "old_sub_level": 429, + "old_ttrating": 1350, + "oldi_rating": 2603, + "opt_laps_complete": 0, + "position": 6, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 8, + "starting_position_in_class": 8, + "suit": { + "pattern": 32, + "color1": "172b21", + "color2": "e8f9f0", + "color3": "57f97a" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -346577, + "cust_id": 1157826, + "display_name": "Sven Cherdron", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 975465, + "best_lap_num": 556, + "best_lap_time": 942991, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 168, + "car_name": "Cadillac V-Series.R GTP", + "carcfg": -1, + "champ_points": 75, + "class_interval": -1, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 6, + "finish_position_in_class": 6, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "ffffff", + "color2": "52b5f6", + "color3": "52b5f6", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 6, + "interval": -1, + "laps_complete": 140, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 168, + "pattern": 21, + "color1": "172b21", + "color2": "57f97a", + "color3": "e8f9f0", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 139, + "sponsor2": 2, + "car_number": "194", + "wheel_color": "0a0f0a", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 83.77542, + "new_license_level": 19, + "new_sub_level": 384, + "new_ttrating": 1350, + "newi_rating": 2246, + "old_cpi": 33.8601, + "old_license_level": 18, + "old_sub_level": 203, + "old_ttrating": 1350, + "oldi_rating": 2244, + "opt_laps_complete": 0, + "position": 6, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 8, + "starting_position_in_class": 8, + "suit": { + "pattern": 32, + "color1": "172b21", + "color2": "e8f9f0", + "color3": "57f97a" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 6, + "finish_position_in_class": 6, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 73, + "interval": -1, + "laps_complete": 860, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 168, + "pattern": 21, + "color1": "172b21", + "color2": "57f97a", + "color3": "e8f9f0", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 139, + "sponsor2": 2, + "car_number": "194", + "wheel_color": "0a0f0a", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 6, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 8, + "starting_position_in_class": 8, + "suit": { + "pattern": 32, + "color1": "172b21", + "color2": "e8f9f0", + "color3": "57f97a" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -298033, + "display_name": "Piki SCT", + "aggregate_champ_points": 64, + "ai": false, + "average_lap": 1007992, + "best_lap_num": 491, + "best_lap_time": 939188, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 64, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -298033, + "cust_id": 635842, + "display_name": "Rolf Olmo", + "aggregate_champ_points": 64, + "ai": false, + "average_lap": 975559, + "best_lap_num": 491, + "best_lap_time": 939188, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 64, + "class_interval": -1, + "country_code": "DE", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 7, + "finish_position_in_class": 7, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 12, + "color1": "6589f4", + "color2": "c91919", + "color3": "f5ff7d", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 29, + "interval": -1, + "laps_complete": 224, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 7, + "color1": "6589F4", + "color2": "C91919", + "color3": "F5FF7D", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "5", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 84.67596, + "new_license_level": 19, + "new_sub_level": 385, + "new_ttrating": 1350, + "newi_rating": 2993, + "old_cpi": 68.22165, + "old_license_level": 19, + "old_sub_level": 353, + "old_ttrating": 1350, + "oldi_rating": 2995, + "opt_laps_complete": 0, + "position": 7, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 6, + "starting_position_in_class": 6, + "suit": { + "pattern": 10, + "color1": "5dddc2", + "color2": "19d137", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -298033, + "cust_id": 733468, + "display_name": "Adrià Navarro", + "aggregate_champ_points": 64, + "ai": false, + "average_lap": 1021278, + "best_lap_num": 691, + "best_lap_time": 943125, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 64, + "class_interval": -1, + "country_code": "ES", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 7, + "finish_position_in_class": 7, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "ffee47", + "color2": "0300c2", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 16, + "interval": -1, + "laps_complete": 223, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 7, + "color1": "6589F4", + "color2": "C91919", + "color3": "F5FF7D", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "5", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 102.440506, + "new_license_level": 20, + "new_sub_level": 456, + "new_ttrating": 1350, + "newi_rating": 2074, + "old_cpi": 51.119064, + "old_license_level": 19, + "old_sub_level": 309, + "old_ttrating": 1350, + "oldi_rating": 2076, + "opt_laps_complete": 0, + "position": 7, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 6, + "starting_position_in_class": 6, + "suit": { + "pattern": 10, + "color1": "5dddc2", + "color2": "19d137", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -298033, + "cust_id": 384294, + "display_name": "Sergio Gomez Redondo", + "aggregate_champ_points": 64, + "ai": false, + "average_lap": 988534, + "best_lap_num": 134, + "best_lap_time": 946718, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 64, + "class_interval": -1, + "country_code": "ES", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 7, + "finish_position_in_class": 7, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 26, + "color1": "ea1a1a", + "color2": "000000", + "color3": "ff0000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 17, + "interval": -1, + "laps_complete": 213, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 7, + "color1": "6589F4", + "color2": "C91919", + "color3": "F5FF7D", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "5", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 149.52426, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2026, + "old_cpi": 146.89369, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 2027, + "opt_laps_complete": 0, + "position": 7, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 6, + "starting_position_in_class": 6, + "suit": { + "pattern": 10, + "color1": "5dddc2", + "color2": "19d137", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -298033, + "cust_id": 1094388, + "display_name": "David Orgaz", + "aggregate_champ_points": 64, + "ai": false, + "average_lap": 987887, + "best_lap_num": 600, + "best_lap_time": 940536, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 64, + "class_interval": -1, + "country_code": "ES", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 7, + "finish_position_in_class": 7, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 20, + "color1": "111111", + "color2": "30b84e", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 21, + "interval": -1, + "laps_complete": 198, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 7, + "color1": "6589F4", + "color2": "C91919", + "color3": "F5FF7D", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "5", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 93.97715, + "new_license_level": 20, + "new_sub_level": 443, + "new_ttrating": 1350, + "newi_rating": 2440, + "old_cpi": 62.371994, + "old_license_level": 18, + "old_sub_level": 296, + "old_ttrating": 1350, + "oldi_rating": 2441, + "opt_laps_complete": 0, + "position": 7, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 6, + "starting_position_in_class": 6, + "suit": { + "pattern": 10, + "color1": "5dddc2", + "color2": "19d137", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 7, + "finish_position_in_class": 7, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 83, + "interval": -1, + "laps_complete": 858, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 7, + "color1": "6589F4", + "color2": "C91919", + "color3": "F5FF7D", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "5", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 7, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 6, + "starting_position_in_class": 6, + "suit": { + "pattern": 10, + "color1": "5dddc2", + "color2": "19d137", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -440173, + "display_name": "Axis Simsports Blue", + "aggregate_champ_points": 53, + "ai": false, + "average_lap": 1016964, + "best_lap_num": 140, + "best_lap_time": 943923, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 53, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -440173, + "cust_id": 416043, + "display_name": "Thomas Pugh", + "aggregate_champ_points": 53, + "ai": false, + "average_lap": 975127, + "best_lap_num": 140, + "best_lap_time": 943923, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 53, + "class_interval": -1, + "country_code": "GB", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 8, + "finish_position_in_class": 8, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 9, + "color1": "000000", + "color2": "ffffff", + "color3": "ff0000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 4, + "interval": -1, + "laps_complete": 249, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 22, + "color1": "000000", + "color2": "ffffff", + "color3": "ff0000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "3", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 205.9527, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 3916, + "old_cpi": 120.93353, + "old_license_level": 20, + "old_sub_level": 481, + "old_ttrating": 1350, + "oldi_rating": 3922, + "opt_laps_complete": 0, + "position": 8, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 10, + "starting_position_in_class": 10, + "suit": { + "pattern": 14, + "color1": "d3d3d3", + "color2": "000000", + "color3": "e70e0e" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -440173, + "cust_id": 967657, + "display_name": "Andrew Larkman3", + "aggregate_champ_points": 53, + "ai": false, + "average_lap": 1009568, + "best_lap_num": 557, + "best_lap_time": 948919, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 53, + "class_interval": -1, + "country_code": "SCT", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 8, + "finish_position_in_class": 8, + "flair_id": 237, + "flair_name": "Scotland", + "flair_shortname": "SCT", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "ffffff", + "color2": "372a75", + "color3": "f1732e", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 30, + "interval": -1, + "laps_complete": 222, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 22, + "color1": "000000", + "color2": "ffffff", + "color3": "ff0000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "3", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 77.56901, + "new_license_level": 19, + "new_sub_level": 372, + "new_ttrating": 1268, + "newi_rating": 1848, + "old_cpi": 57.908264, + "old_license_level": 19, + "old_sub_level": 328, + "old_ttrating": 1268, + "oldi_rating": 1854, + "opt_laps_complete": 0, + "position": 8, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 10, + "starting_position_in_class": 10, + "suit": { + "pattern": 14, + "color1": "d3d3d3", + "color2": "000000", + "color3": "e70e0e" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -440173, + "cust_id": 710602, + "display_name": "Austin Graf", + "aggregate_champ_points": 53, + "ai": false, + "average_lap": 988803, + "best_lap_num": 222, + "best_lap_time": 952036, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 53, + "class_interval": -1, + "country_code": "US", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 8, + "finish_position_in_class": 8, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 55, + "color1": "010643", + "color2": "ffffff", + "color3": "676870", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 13, + "interval": -1, + "laps_complete": 197, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 22, + "color1": "000000", + "color2": "ffffff", + "color3": "ff0000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "3", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 113.46475, + "new_license_level": 20, + "new_sub_level": 472, + "new_ttrating": 1350, + "newi_rating": 1943, + "old_cpi": 62.785797, + "old_license_level": 19, + "old_sub_level": 340, + "old_ttrating": 1350, + "oldi_rating": 1948, + "opt_laps_complete": 0, + "position": 8, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 10, + "starting_position_in_class": 10, + "suit": { + "pattern": 14, + "color1": "d3d3d3", + "color2": "000000", + "color3": "e70e0e" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -440173, + "cust_id": 967666, + "display_name": "David Hutcheson", + "aggregate_champ_points": 53, + "ai": false, + "average_lap": 1035623, + "best_lap_num": 412, + "best_lap_time": 948217, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 53, + "class_interval": -1, + "country_code": "SCT", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 8, + "finish_position_in_class": 8, + "flair_id": 237, + "flair_name": "Scotland", + "flair_shortname": "SCT", + "friend": false, + "helmet": { + "pattern": 2, + "color1": "018f18", + "color2": "ffffff", + "color3": "fc4c51", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 26, + "interval": -1, + "laps_complete": 182, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 22, + "color1": "000000", + "color2": "ffffff", + "color3": "ff0000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "3", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 58.00311, + "new_license_level": 15, + "new_sub_level": 385, + "new_ttrating": 1331, + "newi_rating": 2226, + "old_cpi": 27.98584, + "old_license_level": 14, + "old_sub_level": 230, + "old_ttrating": 1331, + "oldi_rating": 2231, + "opt_laps_complete": 0, + "position": 8, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 10, + "starting_position_in_class": 10, + "suit": { + "pattern": 14, + "color1": "d3d3d3", + "color2": "000000", + "color3": "e70e0e" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 8, + "finish_position_in_class": 8, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 73, + "interval": -1, + "laps_complete": 850, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 22, + "color1": "000000", + "color2": "ffffff", + "color3": "ff0000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "3", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 8, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 10, + "starting_position_in_class": 10, + "suit": { + "pattern": 14, + "color1": "d3d3d3", + "color2": "000000", + "color3": "e70e0e" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -134144, + "display_name": "BLOO Racing by VR | 040", + "aggregate_champ_points": 138, + "ai": false, + "average_lap": 1030899, + "best_lap_num": 593, + "best_lap_time": 984242, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 138, + "class_interval": 0, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -134144, + "cust_id": 390389, + "display_name": "Geordi Vermeulen", + "aggregate_champ_points": 138, + "ai": false, + "average_lap": 1020141, + "best_lap_num": 593, + "best_lap_time": 984242, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 138, + "class_interval": 0, + "country_code": "NL", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 9, + "finish_position_in_class": 0, + "flair_id": 146, + "flair_name": "Netherlands", + "flair_shortname": "NLD", + "friend": false, + "helmet": { + "pattern": 38, + "color1": "0094ff", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 7, + "interval": -1, + "laps_complete": 287, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 23, + "color1": "ffffff", + "color2": "8500ff", + "color3": "2176c0", + "number_font": 7, + "number_color1": "ffffff", + "number_color2": "0094ff", + "number_color3": "000000", + "number_slant": 1, + "sponsor1": 323, + "sponsor2": 245, + "car_number": "040", + "wheel_color": "010101", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 267.66696, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 3669, + "old_cpi": 92.9855, + "old_license_level": 19, + "old_sub_level": 399, + "old_ttrating": 1350, + "oldi_rating": 3639, + "opt_laps_complete": 0, + "position": 9, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 16, + "starting_position_in_class": 2, + "suit": { + "pattern": 33, + "color1": "000000", + "color2": "c2000b", + "color3": "0094ff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -134144, + "cust_id": 26368, + "display_name": "David Ralli", + "aggregate_champ_points": 138, + "ai": false, + "average_lap": 1022205, + "best_lap_num": 413, + "best_lap_time": 989887, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 138, + "class_interval": 0, + "country_code": "GB", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 9, + "finish_position_in_class": 0, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 30, + "color1": "1028EA", + "color2": "45e3ee", + "color3": "270000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 6, + "interval": -1, + "laps_complete": 207, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 23, + "color1": "ffffff", + "color2": "8500ff", + "color3": "2176c0", + "number_font": 7, + "number_color1": "ffffff", + "number_color2": "0094ff", + "number_color3": "000000", + "number_slant": 1, + "sponsor1": 323, + "sponsor2": 245, + "car_number": "040", + "wheel_color": "010101", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 187.03203, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2188, + "old_cpi": 57.321205, + "old_license_level": 18, + "old_sub_level": 283, + "old_ttrating": 1350, + "oldi_rating": 2166, + "opt_laps_complete": 0, + "position": 9, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 16, + "starting_position_in_class": 2, + "suit": { + "pattern": 33, + "color1": "000000", + "color2": "c2000b", + "color3": "0094ff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -134144, + "cust_id": 21533, + "display_name": "Conor Swain", + "aggregate_champ_points": 138, + "ai": false, + "average_lap": 1023842, + "best_lap_num": 733, + "best_lap_time": 990008, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 138, + "class_interval": 0, + "country_code": "IE", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 9, + "finish_position_in_class": 0, + "flair_id": 98, + "flair_name": "Ireland", + "flair_shortname": "IRL", + "friend": false, + "helmet": { + "pattern": 24, + "color1": "009a49", + "color2": "ffa500", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 4, + "interval": -1, + "laps_complete": 207, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 23, + "color1": "ffffff", + "color2": "8500ff", + "color3": "2176c0", + "number_font": 7, + "number_color1": "ffffff", + "number_color2": "0094ff", + "number_color3": "000000", + "number_slant": 1, + "sponsor1": 323, + "sponsor2": 245, + "car_number": "040", + "wheel_color": "010101", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 205.21991, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2070, + "old_cpi": 54.159092, + "old_license_level": 18, + "old_sub_level": 274, + "old_ttrating": 1350, + "oldi_rating": 2048, + "opt_laps_complete": 0, + "position": 9, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 16, + "starting_position_in_class": 2, + "suit": { + "pattern": 33, + "color1": "000000", + "color2": "c2000b", + "color3": "0094ff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -134144, + "cust_id": 565681, + "display_name": "Ivan Chambers", + "aggregate_champ_points": 138, + "ai": false, + "average_lap": 1027178, + "best_lap_num": 545, + "best_lap_time": 992097, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 138, + "class_interval": 0, + "country_code": "UA", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 9, + "finish_position_in_class": 0, + "flair_id": 220, + "flair_name": "Ukraine", + "flair_shortname": "UKR", + "friend": false, + "helmet": { + "pattern": 65, + "color1": "0002ff", + "color2": "000000", + "color3": "12ff00", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 2, + "interval": -1, + "laps_complete": 138, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 23, + "color1": "ffffff", + "color2": "8500ff", + "color3": "2176c0", + "number_font": 7, + "number_color1": "ffffff", + "number_color2": "0094ff", + "number_color3": "000000", + "number_slant": 1, + "sponsor1": 323, + "sponsor2": 245, + "car_number": "040", + "wheel_color": "010101", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 113.62682, + "new_license_level": 20, + "new_sub_level": 472, + "new_ttrating": 1350, + "newi_rating": 1904, + "old_cpi": 59.518505, + "old_license_level": 19, + "old_sub_level": 332, + "old_ttrating": 1350, + "oldi_rating": 1889, + "opt_laps_complete": 0, + "position": 9, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 16, + "starting_position_in_class": 2, + "suit": { + "pattern": 33, + "color1": "000000", + "color2": "c2000b", + "color3": "0094ff" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 9, + "finish_position_in_class": 0, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 19, + "interval": -1, + "laps_complete": 839, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 23, + "color1": "ffffff", + "color2": "8500ff", + "color3": "2176c0", + "number_font": 7, + "number_color1": "ffffff", + "number_color2": "0094ff", + "number_color3": "000000", + "number_slant": 1, + "sponsor1": 323, + "sponsor2": 245, + "car_number": "040", + "wheel_color": "010101", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 9, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 16, + "starting_position_in_class": 2, + "suit": { + "pattern": 33, + "color1": "000000", + "color2": "c2000b", + "color3": "0094ff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -53704, + "display_name": "LITHIUM Motorsports", + "aggregate_champ_points": 125, + "ai": false, + "average_lap": 1032396, + "best_lap_num": 543, + "best_lap_time": 985604, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 125, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -53704, + "cust_id": 284176, + "display_name": "Martin Birmele", + "aggregate_champ_points": 125, + "ai": false, + "average_lap": 1031446, + "best_lap_num": 638, + "best_lap_time": 992256, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 125, + "class_interval": -1, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 10, + "finish_position_in_class": 1, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 42, + "color1": "ffffff", + "color2": "00154c", + "color3": "710098", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 10, + "interval": -1, + "laps_complete": 217, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 0, + "color1": "2c2c2c", + "color2": "000000", + "color3": "484848", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "15", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 142.29805, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2430, + "old_cpi": 67.85994, + "old_license_level": 19, + "old_sub_level": 352, + "old_ttrating": 1350, + "oldi_rating": 2411, + "opt_laps_complete": 0, + "position": 10, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 19, + "starting_position_in_class": 5, + "suit": { + "pattern": 3, + "color1": "104C5F", + "color2": "FFFFFF", + "color3": "F0B100" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -53704, + "cust_id": 224720, + "display_name": "Stefan Lupperger", + "aggregate_champ_points": 125, + "ai": false, + "average_lap": 1020522, + "best_lap_num": 543, + "best_lap_time": 985604, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 125, + "class_interval": -1, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 10, + "finish_position_in_class": 1, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "c0ff00", + "color2": "000000", + "color3": "141414", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 14, + "interval": -1, + "laps_complete": 216, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 0, + "color1": "2c2c2c", + "color2": "000000", + "color3": "484848", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "15", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 131.6409, + "new_license_level": 20, + "new_sub_level": 494, + "new_ttrating": 1350, + "newi_rating": 2443, + "old_cpi": 33.84661, + "old_license_level": 17, + "old_sub_level": 159, + "old_ttrating": 1350, + "oldi_rating": 2423, + "opt_laps_complete": 0, + "position": 10, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 19, + "starting_position_in_class": 5, + "suit": { + "pattern": 3, + "color1": "104C5F", + "color2": "FFFFFF", + "color3": "F0B100" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -53704, + "cust_id": 639803, + "display_name": "Alexander Secher", + "aggregate_champ_points": 125, + "ai": false, + "average_lap": 1020934, + "best_lap_num": 209, + "best_lap_time": 985964, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 125, + "class_interval": -1, + "country_code": "DK", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 10, + "finish_position_in_class": 1, + "flair_id": 56, + "flair_name": "Denmark", + "flair_shortname": "DNK", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "ffffff", + "color2": "ff0505", + "color3": "6d6d6d", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 23, + "interval": -1, + "laps_complete": 213, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 0, + "color1": "2c2c2c", + "color2": "000000", + "color3": "484848", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "15", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 100.56424, + "new_license_level": 20, + "new_sub_level": 453, + "new_ttrating": 1350, + "newi_rating": 2336, + "old_cpi": 78.96949, + "old_license_level": 19, + "old_sub_level": 375, + "old_ttrating": 1350, + "oldi_rating": 2316, + "opt_laps_complete": 0, + "position": 10, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 19, + "starting_position_in_class": 5, + "suit": { + "pattern": 3, + "color1": "104C5F", + "color2": "FFFFFF", + "color3": "F0B100" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -53704, + "cust_id": 59268, + "display_name": "Danni Fugl", + "aggregate_champ_points": 125, + "ai": false, + "average_lap": 1026231, + "best_lap_num": 251, + "best_lap_time": 992038, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 125, + "class_interval": -1, + "country_code": "DK", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 10, + "finish_position_in_class": 1, + "flair_id": 56, + "flair_name": "Denmark", + "flair_shortname": "DNK", + "friend": false, + "helmet": { + "pattern": 42, + "color1": "ffffff", + "color2": "a30000", + "color3": "003b72", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 4, + "interval": -1, + "laps_complete": 192, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 0, + "color1": "2c2c2c", + "color2": "000000", + "color3": "484848", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "15", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 192.06525, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2143, + "old_cpi": 106.53169, + "old_license_level": 20, + "old_sub_level": 462, + "old_ttrating": 1350, + "oldi_rating": 2125, + "opt_laps_complete": 0, + "position": 10, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 19, + "starting_position_in_class": 5, + "suit": { + "pattern": 3, + "color1": "104C5F", + "color2": "FFFFFF", + "color3": "F0B100" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 10, + "finish_position_in_class": 1, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 51, + "interval": -1, + "laps_complete": 838, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 0, + "color1": "2c2c2c", + "color2": "000000", + "color3": "484848", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "15", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 10, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 19, + "starting_position_in_class": 5, + "suit": { + "pattern": 3, + "color1": "104C5F", + "color2": "FFFFFF", + "color3": "F0B100" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -188879, + "display_name": "Wildfire Racing Dragon", + "aggregate_champ_points": 112, + "ai": false, + "average_lap": 1036669, + "best_lap_num": 432, + "best_lap_time": 988307, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 112, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -188879, + "cust_id": 430711, + "display_name": "Freerk Smit", + "aggregate_champ_points": 112, + "ai": false, + "average_lap": 1019960, + "best_lap_num": 626, + "best_lap_time": 989307, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 112, + "class_interval": -1, + "country_code": "NL", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 11, + "finish_position_in_class": 2, + "flair_id": 146, + "flair_name": "Netherlands", + "flair_shortname": "NLD", + "friend": false, + "helmet": { + "pattern": 47, + "color1": "000000", + "color2": "ffffff", + "color3": "7d0cd9", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 17, + "interval": -1, + "laps_complete": 264, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 1, + "color1": "0db700", + "color2": "ffffff", + "color3": "000000", + "number_font": 16, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "129", + "wheel_color": "929292", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 144.72728, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2614, + "old_cpi": 81.29987, + "old_license_level": 19, + "old_sub_level": 379, + "old_ttrating": 1350, + "oldi_rating": 2595, + "opt_laps_complete": 0, + "position": 11, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 22, + "starting_position_in_class": 8, + "suit": { + "pattern": 20, + "color1": "000000", + "color2": "06ff00", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -188879, + "cust_id": 604033, + "display_name": "Byron Coetzer", + "aggregate_champ_points": 112, + "ai": false, + "average_lap": 1018664, + "best_lap_num": 432, + "best_lap_time": 988307, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 112, + "class_interval": -1, + "country_code": "ZA", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 11, + "finish_position_in_class": 2, + "flair_id": 195, + "flair_name": "South Africa", + "flair_shortname": "ZAF", + "friend": false, + "helmet": { + "pattern": 56, + "color1": "a6ff00", + "color2": "daff00", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 19, + "interval": -1, + "laps_complete": 259, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 1, + "color1": "0db700", + "color2": "ffffff", + "color3": "000000", + "number_font": 16, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "129", + "wheel_color": "929292", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 123.092766, + "new_license_level": 20, + "new_sub_level": 484, + "new_ttrating": 1350, + "newi_rating": 2371, + "old_cpi": 83.90884, + "old_license_level": 20, + "old_sub_level": 425, + "old_ttrating": 1350, + "oldi_rating": 2352, + "opt_laps_complete": 0, + "position": 11, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 22, + "starting_position_in_class": 8, + "suit": { + "pattern": 20, + "color1": "000000", + "color2": "06ff00", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -188879, + "cust_id": 788035, + "display_name": "Devon Allies2", + "aggregate_champ_points": 112, + "ai": false, + "average_lap": 1022673, + "best_lap_num": 604, + "best_lap_time": 988647, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 112, + "class_interval": -1, + "country_code": "ZA", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 11, + "finish_position_in_class": 2, + "flair_id": 195, + "flair_name": "South Africa", + "flair_shortname": "ZAF", + "friend": false, + "helmet": { + "pattern": 34, + "color1": "ffffff", + "color2": "ff0909", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 17, + "interval": -1, + "laps_complete": 193, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 1, + "color1": "0db700", + "color2": "ffffff", + "color3": "000000", + "number_font": 16, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "129", + "wheel_color": "929292", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 97.231285, + "new_license_level": 20, + "new_sub_level": 448, + "new_ttrating": 1350, + "newi_rating": 2077, + "old_cpi": 48.267376, + "old_license_level": 18, + "old_sub_level": 257, + "old_ttrating": 1350, + "oldi_rating": 2063, + "opt_laps_complete": 0, + "position": 11, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 22, + "starting_position_in_class": 8, + "suit": { + "pattern": 20, + "color1": "000000", + "color2": "06ff00", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -188879, + "cust_id": 751768, + "display_name": "Sean Nisizaka Smit", + "aggregate_champ_points": 112, + "ai": false, + "average_lap": 1024089, + "best_lap_num": 91, + "best_lap_time": 988360, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 112, + "class_interval": -1, + "country_code": "AU", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 11, + "finish_position_in_class": 2, + "flair_id": 16, + "flair_name": "Australia", + "flair_shortname": "AUS", + "friend": false, + "helmet": { + "pattern": 6, + "color1": "ffffff", + "color2": "ff0000", + "color3": "0075ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 15, + "interval": -1, + "laps_complete": 118, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 1, + "color1": "0db700", + "color2": "ffffff", + "color3": "000000", + "number_font": 16, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "129", + "wheel_color": "929292", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 61.77475, + "new_license_level": 18, + "new_sub_level": 294, + "new_ttrating": 1336, + "newi_rating": 2123, + "old_cpi": 44.15168, + "old_license_level": 18, + "old_sub_level": 243, + "old_ttrating": 1336, + "oldi_rating": 2114, + "opt_laps_complete": 0, + "position": 11, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 22, + "starting_position_in_class": 8, + "suit": { + "pattern": 20, + "color1": "000000", + "color2": "06ff00", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 11, + "finish_position_in_class": 2, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 68, + "interval": -1, + "laps_complete": 834, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 1, + "color1": "0db700", + "color2": "ffffff", + "color3": "000000", + "number_font": 16, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "129", + "wheel_color": "929292", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 11, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 22, + "starting_position_in_class": 8, + "suit": { + "pattern": 20, + "color1": "000000", + "color2": "06ff00", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -479098, + "display_name": "Lightning Racing Team - #86", + "aggregate_champ_points": 100, + "ai": false, + "average_lap": 1036866, + "best_lap_num": 434, + "best_lap_time": 988298, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 100, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -479098, + "cust_id": 1133857, + "display_name": "Pierre Peytral Yagüe", + "aggregate_champ_points": 100, + "ai": false, + "average_lap": 1030442, + "best_lap_num": 434, + "best_lap_time": 988298, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 100, + "class_interval": -1, + "country_code": "FR", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 12, + "finish_position_in_class": 3, + "flair_id": 71, + "flair_name": "France", + "flair_shortname": "FRA", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "fc0706", + "color2": "111111", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 17, + "interval": -1, + "laps_complete": 346, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 12, + "color1": "ff78ff", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "43", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 189.7976, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2834, + "old_cpi": 46.85185, + "old_license_level": 18, + "old_sub_level": 252, + "old_ttrating": 1350, + "oldi_rating": 2816, + "opt_laps_complete": 0, + "position": 12, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 24, + "starting_position_in_class": 10, + "suit": { + "pattern": 21, + "color1": "f200ff", + "color2": "ffffff", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -479098, + "cust_id": 1172993, + "display_name": "Àngel García", + "aggregate_champ_points": 100, + "ai": false, + "average_lap": 1029244, + "best_lap_num": 143, + "best_lap_time": 992742, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 100, + "class_interval": -1, + "country_code": "ES", + "division": 5, + "division_name": "Division 6", + "drop_race": false, + "finish_position": 12, + "finish_position_in_class": 3, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "0a0a0a", + "color2": "0c0ce3", + "color3": "e20aff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 9, + "interval": -1, + "laps_complete": 264, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 12, + "color1": "ff78ff", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "43", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 118.58717, + "new_license_level": 16, + "new_sub_level": 499, + "new_ttrating": 1304, + "newi_rating": 1676, + "old_cpi": 36.530888, + "old_license_level": 15, + "old_sub_level": 315, + "old_ttrating": 1304, + "oldi_rating": 1662, + "opt_laps_complete": 0, + "position": 12, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 24, + "starting_position_in_class": 10, + "suit": { + "pattern": 21, + "color1": "f200ff", + "color2": "ffffff", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -479098, + "cust_id": 1168652, + "display_name": "Eric Bigas", + "aggregate_champ_points": 100, + "ai": false, + "average_lap": 1028594, + "best_lap_num": 767, + "best_lap_time": 992327, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 100, + "class_interval": -1, + "country_code": "ES", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 12, + "finish_position_in_class": 3, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "1f2892", + "color2": "7de54c", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 12, + "interval": -1, + "laps_complete": 224, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 12, + "color1": "ff78ff", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "43", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 113.96372, + "new_license_level": 16, + "new_sub_level": 499, + "new_ttrating": 1423, + "newi_rating": 2502, + "old_cpi": 33.72117, + "old_license_level": 14, + "old_sub_level": 258, + "old_ttrating": 1423, + "oldi_rating": 2490, + "opt_laps_complete": 0, + "position": 12, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 24, + "starting_position_in_class": 10, + "suit": { + "pattern": 21, + "color1": "f200ff", + "color2": "ffffff", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 12, + "finish_position_in_class": 3, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 38, + "interval": -1, + "laps_complete": 834, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 12, + "color1": "ff78ff", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "43", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 12, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 24, + "starting_position_in_class": 10, + "suit": { + "pattern": 21, + "color1": "f200ff", + "color2": "ffffff", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -310391, + "display_name": "4ORGE Lions", + "aggregate_champ_points": 87, + "ai": false, + "average_lap": 1040022, + "best_lap_num": 561, + "best_lap_time": 984025, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 87, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -310391, + "cust_id": 635525, + "display_name": "Rich Gregory", + "aggregate_champ_points": 87, + "ai": false, + "average_lap": 1012126, + "best_lap_num": 393, + "best_lap_time": 987270, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 87, + "class_interval": -1, + "country_code": "GB", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 13, + "finish_position_in_class": 4, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 45, + "color1": "ffffff", + "color2": "000000", + "color3": "ff0000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 32, + "interval": -1, + "laps_complete": 236, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 7, + "color1": "ff0000", + "color2": "ffffff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "11", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 79.90745, + "new_license_level": 19, + "new_sub_level": 377, + "new_ttrating": 1350, + "newi_rating": 2137, + "old_cpi": 61.902596, + "old_license_level": 19, + "old_sub_level": 338, + "old_ttrating": 1350, + "oldi_rating": 2129, + "opt_laps_complete": 0, + "position": 13, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 21, + "starting_position_in_class": 7, + "suit": { + "pattern": 13, + "color1": "ff0000", + "color2": "870005", + "color3": "2900ef" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -310391, + "cust_id": 1301864, + "display_name": "Carlos Sarmiento", + "aggregate_champ_points": 87, + "ai": false, + "average_lap": 1011503, + "best_lap_num": 561, + "best_lap_time": 984025, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 87, + "class_interval": -1, + "country_code": "CO", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 13, + "finish_position_in_class": 4, + "flair_id": 48, + "flair_name": "Colombia", + "flair_shortname": "COL", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "0a0a0a", + "color2": "ffc700", + "color3": "ebff00", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 15, + "interval": -1, + "laps_complete": 219, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 7, + "color1": "ff0000", + "color2": "ffffff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "11", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 111.0758, + "new_license_level": 20, + "new_sub_level": 468, + "new_ttrating": 1350, + "newi_rating": 2553, + "old_cpi": 58.55259, + "old_license_level": 19, + "old_sub_level": 330, + "old_ttrating": 1350, + "oldi_rating": 2545, + "opt_laps_complete": 0, + "position": 13, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 21, + "starting_position_in_class": 7, + "suit": { + "pattern": 13, + "color1": "ff0000", + "color2": "870005", + "color3": "2900ef" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -310391, + "cust_id": 696553, + "display_name": "Robert Snarr", + "aggregate_champ_points": 87, + "ai": false, + "average_lap": 1028324, + "best_lap_num": 513, + "best_lap_time": 988032, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 87, + "class_interval": -1, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 13, + "finish_position_in_class": 4, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 46, + "color1": "fafafa", + "color2": "ffffff", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 15, + "interval": -1, + "laps_complete": 193, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 7, + "color1": "ff0000", + "color2": "ffffff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "11", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 99.41591, + "new_license_level": 20, + "new_sub_level": 451, + "new_ttrating": 1350, + "newi_rating": 2218, + "old_cpi": 58.642387, + "old_license_level": 19, + "old_sub_level": 330, + "old_ttrating": 1350, + "oldi_rating": 2211, + "opt_laps_complete": 0, + "position": 13, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 21, + "starting_position_in_class": 7, + "suit": { + "pattern": 13, + "color1": "ff0000", + "color2": "870005", + "color3": "2900ef" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -310391, + "cust_id": 837928, + "display_name": "Lui Brahimaj2", + "aggregate_champ_points": 87, + "ai": false, + "average_lap": 1023969, + "best_lap_num": 459, + "best_lap_time": 986648, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 87, + "class_interval": -1, + "country_code": "GB", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 13, + "finish_position_in_class": 4, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "ed2129", + "color2": "ffffff", + "color3": "2a3795", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 28, + "interval": -1, + "laps_complete": 184, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 7, + "color1": "ff0000", + "color2": "ffffff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "11", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 80.20255, + "new_license_level": 20, + "new_sub_level": 418, + "new_ttrating": 1350, + "newi_rating": 2176, + "old_cpi": 81.643906, + "old_license_level": 20, + "old_sub_level": 421, + "old_ttrating": 1350, + "oldi_rating": 2170, + "opt_laps_complete": 0, + "position": 13, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 21, + "starting_position_in_class": 7, + "suit": { + "pattern": 13, + "color1": "ff0000", + "color2": "870005", + "color3": "2900ef" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 13, + "finish_position_in_class": 4, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 90, + "interval": -1, + "laps_complete": 832, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 7, + "color1": "ff0000", + "color2": "ffffff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "11", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 13, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 21, + "starting_position_in_class": 7, + "suit": { + "pattern": 13, + "color1": "ff0000", + "color2": "870005", + "color3": "2900ef" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -361961, + "display_name": "Inside Curb Racing", + "aggregate_champ_points": 43, + "ai": false, + "average_lap": 1043399, + "best_lap_num": 589, + "best_lap_time": 935447, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 43, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -361961, + "cust_id": 326217, + "display_name": "Wouter M Merks", + "aggregate_champ_points": 43, + "ai": false, + "average_lap": 966076, + "best_lap_num": 645, + "best_lap_time": 935484, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 43, + "class_interval": -1, + "country_code": "NL", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 14, + "finish_position_in_class": 9, + "flair_id": 146, + "flair_name": "Netherlands", + "flair_shortname": "NLD", + "friend": false, + "helmet": { + "pattern": 65, + "color1": "14fff8", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 9, + "interval": -1, + "laps_complete": 251, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 10, + "color1": "ffffff", + "color2": "ffffff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "1", + "wheel_color": "878787", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 139.78241, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 3051, + "old_cpi": 53.386677, + "old_license_level": 19, + "old_sub_level": 316, + "old_ttrating": 1350, + "oldi_rating": 3062, + "opt_laps_complete": 0, + "position": 14, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 2, + "starting_position_in_class": 2, + "suit": { + "pattern": 2, + "color1": "000000", + "color2": "ffffff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -361961, + "cust_id": 1049323, + "display_name": "Thijn De Jong", + "aggregate_champ_points": 43, + "ai": false, + "average_lap": 1075617, + "best_lap_num": 671, + "best_lap_time": 936899, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 43, + "class_interval": -1, + "country_code": "NL", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 14, + "finish_position_in_class": 9, + "flair_id": 146, + "flair_name": "Netherlands", + "flair_shortname": "NLD", + "friend": false, + "helmet": { + "pattern": 0, + "color1": "ffffff", + "color2": "ffffff", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 44, + "interval": -1, + "laps_complete": 221, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 10, + "color1": "ffffff", + "color2": "ffffff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "1", + "wheel_color": "878787", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 56.54951, + "new_license_level": 18, + "new_sub_level": 281, + "new_ttrating": 1374, + "newi_rating": 2575, + "old_cpi": 45.43084, + "old_license_level": 18, + "old_sub_level": 248, + "old_ttrating": 1374, + "oldi_rating": 2585, + "opt_laps_complete": 0, + "position": 14, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 2, + "starting_position_in_class": 2, + "suit": { + "pattern": 2, + "color1": "000000", + "color2": "ffffff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -361961, + "cust_id": 1049231, + "display_name": "Rens De Jong", + "aggregate_champ_points": 43, + "ai": false, + "average_lap": 1001423, + "best_lap_num": 589, + "best_lap_time": 935447, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 43, + "class_interval": -1, + "country_code": "NL", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 14, + "finish_position_in_class": 9, + "flair_id": 146, + "flair_name": "Netherlands", + "flair_shortname": "NLD", + "friend": false, + "helmet": { + "pattern": 54, + "color1": "ff0000", + "color2": "000000", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 9, + "interval": -1, + "laps_complete": 218, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 10, + "color1": "ffffff", + "color2": "ffffff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "1", + "wheel_color": "878787", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 178.31544, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2033, + "old_cpi": 63.337677, + "old_license_level": 18, + "old_sub_level": 298, + "old_ttrating": 1350, + "oldi_rating": 2043, + "opt_laps_complete": 0, + "position": 14, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 2, + "starting_position_in_class": 2, + "suit": { + "pattern": 2, + "color1": "000000", + "color2": "ffffff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -361961, + "cust_id": 1049336, + "display_name": "Lennon De Ruiter", + "aggregate_champ_points": 43, + "ai": false, + "average_lap": 982431, + "best_lap_num": 500, + "best_lap_time": 943947, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 43, + "class_interval": -1, + "country_code": "NL", + "division": 5, + "division_name": "Division 6", + "drop_race": false, + "finish_position": 14, + "finish_position_in_class": 9, + "flair_id": 146, + "flair_name": "Netherlands", + "flair_shortname": "NLD", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "000000", + "color2": "000000", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 10, + "interval": -1, + "laps_complete": 139, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 10, + "color1": "ffffff", + "color2": "ffffff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "1", + "wheel_color": "878787", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 133.91473, + "new_license_level": 20, + "new_sub_level": 497, + "new_ttrating": 1350, + "newi_rating": 1983, + "old_cpi": 115.908516, + "old_license_level": 20, + "old_sub_level": 475, + "old_ttrating": 1350, + "oldi_rating": 1989, + "opt_laps_complete": 0, + "position": 14, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 2, + "starting_position_in_class": 2, + "suit": { + "pattern": 2, + "color1": "000000", + "color2": "ffffff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 14, + "finish_position_in_class": 9, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 72, + "interval": -1, + "laps_complete": 829, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 10, + "color1": "ffffff", + "color2": "ffffff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "1", + "wheel_color": "878787", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 14, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 2, + "starting_position_in_class": 2, + "suit": { + "pattern": 2, + "color1": "000000", + "color2": "ffffff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -348667, + "display_name": "Speed Eagles Gold", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 1046341, + "best_lap_num": 589, + "best_lap_time": 982942, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 75, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -348667, + "cust_id": 433972, + "display_name": "Łukasz Fryca", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 1048240, + "best_lap_num": 498, + "best_lap_time": 988306, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 75, + "class_interval": -1, + "country_code": "PL", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 15, + "finish_position_in_class": 5, + "flair_id": 167, + "flair_name": "Poland", + "flair_shortname": "POL", + "friend": false, + "helmet": { + "pattern": 42, + "color1": "f3f3f3", + "color2": "e51411", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 16, + "interval": -1, + "laps_complete": 211, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 6, + "color1": "23548f", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "44", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 107.68496, + "new_license_level": 20, + "new_sub_level": 464, + "new_ttrating": 1350, + "newi_rating": 2091, + "old_cpi": 43.955246, + "old_license_level": 18, + "old_sub_level": 243, + "old_ttrating": 1350, + "oldi_rating": 2088, + "opt_laps_complete": 0, + "position": 15, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 17, + "starting_position_in_class": 3, + "suit": { + "pattern": 25, + "color1": "000000", + "color2": "1d70b8", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -348667, + "cust_id": 1150854, + "display_name": "Ivo Dudek2", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 1048355, + "best_lap_num": 450, + "best_lap_time": 987849, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 75, + "class_interval": -1, + "country_code": "PL", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 15, + "finish_position_in_class": 5, + "flair_id": 167, + "flair_name": "Poland", + "flair_shortname": "POL", + "friend": false, + "helmet": { + "pattern": 36, + "color1": "000000", + "color2": "05ff00", + "color3": "0094ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 12, + "interval": -1, + "laps_complete": 210, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 6, + "color1": "23548f", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "44", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 90.289185, + "new_license_level": 16, + "new_sub_level": 495, + "new_ttrating": 1374, + "newi_rating": 2132, + "old_cpi": 39.360443, + "old_license_level": 15, + "old_sub_level": 326, + "old_ttrating": 1374, + "oldi_rating": 2129, + "opt_laps_complete": 0, + "position": 15, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 17, + "starting_position_in_class": 3, + "suit": { + "pattern": 25, + "color1": "000000", + "color2": "1d70b8", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -348667, + "cust_id": 913811, + "display_name": "Janusz Kurnik", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 1025155, + "best_lap_num": 74, + "best_lap_time": 988952, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 75, + "class_interval": -1, + "country_code": "PL", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 15, + "finish_position_in_class": 5, + "flair_id": 167, + "flair_name": "Poland", + "flair_shortname": "POL", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "ffee47", + "color2": "0300c2", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 3, + "interval": -1, + "laps_complete": 210, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 6, + "color1": "23548f", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "44", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 207.23842, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2339, + "old_cpi": 103.43456, + "old_license_level": 20, + "old_sub_level": 457, + "old_ttrating": 1350, + "oldi_rating": 2336, + "opt_laps_complete": 0, + "position": 15, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 17, + "starting_position_in_class": 3, + "suit": { + "pattern": 25, + "color1": "000000", + "color2": "1d70b8", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -348667, + "cust_id": 532947, + "display_name": "Dawid Dlugokecki", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 1032416, + "best_lap_num": 589, + "best_lap_time": 982942, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 75, + "class_interval": -1, + "country_code": "PL", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 15, + "finish_position_in_class": 5, + "flair_id": 167, + "flair_name": "Poland", + "flair_shortname": "POL", + "friend": false, + "helmet": { + "pattern": 26, + "color1": "740004", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 24, + "interval": -1, + "laps_complete": 195, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 6, + "color1": "23548f", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "44", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 79.3237, + "new_license_level": 19, + "new_sub_level": 375, + "new_ttrating": 1350, + "newi_rating": 2670, + "old_cpi": 65.30674, + "old_license_level": 19, + "old_sub_level": 346, + "old_ttrating": 1350, + "oldi_rating": 2667, + "opt_laps_complete": 0, + "position": 15, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 17, + "starting_position_in_class": 3, + "suit": { + "pattern": 25, + "color1": "000000", + "color2": "1d70b8", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 15, + "finish_position_in_class": 5, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 55, + "interval": -1, + "laps_complete": 826, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 6, + "color1": "23548f", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "44", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 15, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 17, + "starting_position_in_class": 3, + "suit": { + "pattern": 25, + "color1": "000000", + "color2": "1d70b8", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -217878, + "display_name": "Katzes Racing League #Beta", + "aggregate_champ_points": 62, + "ai": false, + "average_lap": 1057055, + "best_lap_num": 537, + "best_lap_time": 982064, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 62, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -217878, + "cust_id": 240174, + "display_name": "Steven Lexow", + "aggregate_champ_points": 62, + "ai": false, + "average_lap": 1020130, + "best_lap_num": 675, + "best_lap_time": 986461, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 62, + "class_interval": -1, + "country_code": "DE", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 16, + "finish_position_in_class": 6, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 9, + "color1": "a80000", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 10, + "interval": -1, + "laps_complete": 237, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 22, + "color1": "000000", + "color2": "ff7800", + "color3": "005f99", + "number_font": 3, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "042", + "wheel_color": "ffffff", + "rim_type": 3 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 151.4998, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2787, + "old_cpi": 86.411354, + "old_license_level": 20, + "old_sub_level": 430, + "old_ttrating": 1350, + "oldi_rating": 2788, + "opt_laps_complete": 0, + "position": 16, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 18, + "starting_position_in_class": 4, + "suit": { + "pattern": 21, + "color1": "000000", + "color2": "ededed", + "color3": "F98E1D" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -217878, + "cust_id": 936404, + "display_name": "Alexander Kraft", + "aggregate_champ_points": 62, + "ai": false, + "average_lap": 1014918, + "best_lap_num": 537, + "best_lap_time": 982064, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 62, + "class_interval": -1, + "country_code": "DE", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 16, + "finish_position_in_class": 6, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "ffffff", + "color2": "f06e34", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 22, + "interval": -1, + "laps_complete": 207, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 22, + "color1": "000000", + "color2": "ff7800", + "color3": "005f99", + "number_font": 3, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "042", + "wheel_color": "ffffff", + "rim_type": 3 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 130.4349, + "new_license_level": 20, + "new_sub_level": 493, + "new_ttrating": 1350, + "newi_rating": 3381, + "old_cpi": 176.48804, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 3383, + "opt_laps_complete": 0, + "position": 16, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 18, + "starting_position_in_class": 4, + "suit": { + "pattern": 21, + "color1": "000000", + "color2": "ededed", + "color3": "F98E1D" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -217878, + "cust_id": 267842, + "display_name": "Merlin Banf", + "aggregate_champ_points": 62, + "ai": false, + "average_lap": 1110229, + "best_lap_num": 605, + "best_lap_time": 992520, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 62, + "class_interval": -1, + "country_code": "DE", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 16, + "finish_position_in_class": 6, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 13, + "color1": "000000", + "color2": "011a98", + "color3": "535353", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 22, + "interval": -1, + "laps_complete": 190, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 22, + "color1": "000000", + "color2": "ff7800", + "color3": "005f99", + "number_font": 3, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "042", + "wheel_color": "ffffff", + "rim_type": 3 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 65.71206, + "new_license_level": 16, + "new_sub_level": 447, + "new_ttrating": 1350, + "newi_rating": 1772, + "old_cpi": 28.92387, + "old_license_level": 14, + "old_sub_level": 235, + "old_ttrating": 1350, + "oldi_rating": 1774, + "opt_laps_complete": 0, + "position": 16, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 18, + "starting_position_in_class": 4, + "suit": { + "pattern": 21, + "color1": "000000", + "color2": "ededed", + "color3": "F98E1D" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -217878, + "cust_id": 332861, + "display_name": "Simon Kreß", + "aggregate_champ_points": 62, + "ai": false, + "average_lap": 1035222, + "best_lap_num": 468, + "best_lap_time": 996023, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 62, + "class_interval": -1, + "country_code": "JP", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 16, + "finish_position_in_class": 6, + "flair_id": 104, + "flair_name": "Japan", + "flair_shortname": "JPN", + "friend": false, + "helmet": { + "pattern": 55, + "color1": "000000", + "color2": "390057", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 13, + "interval": -1, + "laps_complete": 184, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 22, + "color1": "000000", + "color2": "ff7800", + "color3": "005f99", + "number_font": 3, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "042", + "wheel_color": "ffffff", + "rim_type": 3 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 159.60707, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 1791, + "old_cpi": 149.68791, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 1793, + "opt_laps_complete": 0, + "position": 16, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 18, + "starting_position_in_class": 4, + "suit": { + "pattern": 21, + "color1": "000000", + "color2": "ededed", + "color3": "F98E1D" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 16, + "finish_position_in_class": 6, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 67, + "interval": -1, + "laps_complete": 818, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 22, + "color1": "000000", + "color2": "ff7800", + "color3": "005f99", + "number_font": 3, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "042", + "wheel_color": "ffffff", + "rim_type": 3 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 16, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 18, + "starting_position_in_class": 4, + "suit": { + "pattern": 21, + "color1": "000000", + "color2": "ededed", + "color3": "F98E1D" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -288965, + "display_name": "Ecurie Col d'Oiseaux Tertre Rouge", + "aggregate_champ_points": 50, + "ai": false, + "average_lap": 1059685, + "best_lap_num": 114, + "best_lap_time": 982815, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 50, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -288965, + "cust_id": 532447, + "display_name": "Paul N T Williams", + "aggregate_champ_points": 50, + "ai": false, + "average_lap": 1021998, + "best_lap_num": 363, + "best_lap_time": 989439, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 50, + "class_interval": -1, + "country_code": "GB", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 17, + "finish_position_in_class": 7, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 49, + "color1": "000103", + "color2": "258126", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 24, + "interval": -1, + "laps_complete": 248, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 11, + "color1": "ffffd1", + "color2": "9b0202", + "color3": "0d3860", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "77", + "wheel_color": "b7b7b7", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 124.73199, + "new_license_level": 20, + "new_sub_level": 486, + "new_ttrating": 1350, + "newi_rating": 2366, + "old_cpi": 125.814064, + "old_license_level": 20, + "old_sub_level": 488, + "old_ttrating": 1350, + "oldi_rating": 2371, + "opt_laps_complete": 0, + "position": 17, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 14, + "starting_position_in_class": 0, + "suit": { + "pattern": 8, + "color1": "ffffd1", + "color2": "a30206", + "color3": "ffd7d1" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -288965, + "cust_id": 381294, + "display_name": "Taiyo Vliegen", + "aggregate_champ_points": 50, + "ai": false, + "average_lap": 1009557, + "best_lap_num": 475, + "best_lap_time": 989776, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 50, + "class_interval": -1, + "country_code": "TH", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 17, + "finish_position_in_class": 7, + "flair_id": 208, + "flair_name": "Thailand", + "flair_shortname": "THA", + "friend": false, + "helmet": { + "pattern": 17, + "color1": "f3bf45", + "color2": "bb2209", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 14, + "interval": -1, + "laps_complete": 226, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 11, + "color1": "ffffd1", + "color2": "9b0202", + "color3": "0d3860", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "77", + "wheel_color": "b7b7b7", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 186.71976, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2058, + "old_cpi": 177.2794, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 2063, + "opt_laps_complete": 0, + "position": 17, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 14, + "starting_position_in_class": 0, + "suit": { + "pattern": 8, + "color1": "ffffd1", + "color2": "a30206", + "color3": "ffd7d1" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -288965, + "cust_id": 435038, + "display_name": "Jochen Siegert", + "aggregate_champ_points": 50, + "ai": false, + "average_lap": 1025213, + "best_lap_num": 639, + "best_lap_time": 990852, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 50, + "class_interval": -1, + "country_code": "DE", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 17, + "finish_position_in_class": 7, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 3, + "color1": "f6faf6", + "color2": "ffffff", + "color3": "f3f4f3", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 38, + "interval": -1, + "laps_complete": 213, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 11, + "color1": "ffffd1", + "color2": "9b0202", + "color3": "0d3860", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "77", + "wheel_color": "b7b7b7", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 65.23617, + "new_license_level": 19, + "new_sub_level": 346, + "new_ttrating": 1350, + "newi_rating": 1832, + "old_cpi": 62.29063, + "old_license_level": 19, + "old_sub_level": 339, + "old_ttrating": 1350, + "oldi_rating": 1837, + "opt_laps_complete": 0, + "position": 17, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 14, + "starting_position_in_class": 0, + "suit": { + "pattern": 8, + "color1": "ffffd1", + "color2": "a30206", + "color3": "ffd7d1" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -288965, + "cust_id": 969021, + "display_name": "Brandon Schmidt3", + "aggregate_champ_points": 50, + "ai": false, + "average_lap": 1007798, + "best_lap_num": 114, + "best_lap_time": 982815, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 50, + "class_interval": -1, + "country_code": "DE", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 17, + "finish_position_in_class": 7, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "9b1a25", + "color2": "798bd8", + "color3": "0b0a0b", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 8, + "interval": -1, + "laps_complete": 129, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 11, + "color1": "ffffd1", + "color2": "9b0202", + "color3": "0d3860", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "77", + "wheel_color": "b7b7b7", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 111.61723, + "new_license_level": 20, + "new_sub_level": 469, + "new_ttrating": 1375, + "newi_rating": 2923, + "old_cpi": 93.56137, + "old_license_level": 20, + "old_sub_level": 442, + "old_ttrating": 1375, + "oldi_rating": 2926, + "opt_laps_complete": 0, + "position": 17, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 14, + "starting_position_in_class": 0, + "suit": { + "pattern": 8, + "color1": "ffffd1", + "color2": "a30206", + "color3": "ffd7d1" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 17, + "finish_position_in_class": 7, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 84, + "interval": -1, + "laps_complete": 816, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 11, + "color1": "ffffd1", + "color2": "9b0202", + "color3": "0d3860", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "77", + "wheel_color": "b7b7b7", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 17, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 14, + "starting_position_in_class": 0, + "suit": { + "pattern": 8, + "color1": "ffffd1", + "color2": "a30206", + "color3": "ffd7d1" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -433705, + "display_name": "SIM RACING GRID ACADEMY - Obsidian", + "aggregate_champ_points": 37, + "ai": false, + "average_lap": 1066106, + "best_lap_num": 364, + "best_lap_time": 982532, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 37, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -433705, + "cust_id": 1048672, + "display_name": "Joshua De Lange", + "aggregate_champ_points": 37, + "ai": false, + "average_lap": 1002960, + "best_lap_num": 364, + "best_lap_time": 982532, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 37, + "class_interval": -1, + "country_code": "NL", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 18, + "finish_position_in_class": 8, + "flair_id": 146, + "flair_name": "Netherlands", + "flair_shortname": "NLD", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "07a9e5", + "color2": "981a53", + "color3": "f981a5", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 26, + "interval": -1, + "laps_complete": 240, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 0, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "10", + "wheel_color": "ffb649", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 94.37405, + "new_license_level": 20, + "new_sub_level": 443, + "new_ttrating": 1350, + "newi_rating": 2529, + "old_cpi": 76.501915, + "old_license_level": 20, + "old_sub_level": 411, + "old_ttrating": 1350, + "oldi_rating": 2540, + "opt_laps_complete": 0, + "position": 18, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 15, + "starting_position_in_class": 1, + "suit": { + "pattern": 4, + "color1": "4a98ff", + "color2": "0012fa", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -433705, + "cust_id": 1359189, + "display_name": "Tóth Károly", + "aggregate_champ_points": 37, + "ai": false, + "average_lap": 1037062, + "best_lap_num": 211, + "best_lap_time": 994293, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 37, + "class_interval": -1, + "country_code": "HU", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 18, + "finish_position_in_class": 8, + "flair_id": 93, + "flair_name": "Hungary", + "flair_shortname": "HUN", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "454545", + "color2": "9f9f9f", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 27, + "interval": -1, + "laps_complete": 215, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 0, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "10", + "wheel_color": "ffb649", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 70.63338, + "new_license_level": 16, + "new_sub_level": 458, + "new_ttrating": 1263, + "newi_rating": 2211, + "old_cpi": 32.79392, + "old_license_level": 14, + "old_sub_level": 254, + "old_ttrating": 1263, + "oldi_rating": 2221, + "opt_laps_complete": 0, + "position": 18, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 15, + "starting_position_in_class": 1, + "suit": { + "pattern": 4, + "color1": "4a98ff", + "color2": "0012fa", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -433705, + "cust_id": 1049578, + "display_name": "Tim Rupp", + "aggregate_champ_points": 37, + "ai": false, + "average_lap": 1007727, + "best_lap_num": 389, + "best_lap_time": 986652, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 37, + "class_interval": -1, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 18, + "finish_position_in_class": 8, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 22, + "color1": "9f0202", + "color2": "111111", + "color3": "d9f357", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 27, + "interval": -1, + "laps_complete": 183, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 0, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "10", + "wheel_color": "ffb649", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 63.569153, + "new_license_level": 18, + "new_sub_level": 298, + "new_ttrating": 1369, + "newi_rating": 2203, + "old_cpi": 27.171917, + "old_license_level": 17, + "old_sub_level": 125, + "old_ttrating": 1369, + "oldi_rating": 2212, + "opt_laps_complete": 0, + "position": 18, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 15, + "starting_position_in_class": 1, + "suit": { + "pattern": 4, + "color1": "4a98ff", + "color2": "0012fa", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -433705, + "cust_id": 428157, + "display_name": "Rhys M Fordham", + "aggregate_champ_points": 37, + "ai": false, + "average_lap": 1071390, + "best_lap_num": 163, + "best_lap_time": 988713, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 37, + "class_interval": -1, + "country_code": "AU", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 18, + "finish_position_in_class": 8, + "flair_id": 16, + "flair_name": "Australia", + "flair_shortname": "AUS", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "000000", + "color2": "111111", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 27, + "interval": -1, + "laps_complete": 173, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 0, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "10", + "wheel_color": "ffb649", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 65.31594, + "new_license_level": 19, + "new_sub_level": 346, + "new_ttrating": 1350, + "newi_rating": 2175, + "old_cpi": 46.233604, + "old_license_level": 18, + "old_sub_level": 250, + "old_ttrating": 1350, + "oldi_rating": 2183, + "opt_laps_complete": 0, + "position": 18, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 15, + "starting_position_in_class": 1, + "suit": { + "pattern": 4, + "color1": "4a98ff", + "color2": "0012fa", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 18, + "finish_position_in_class": 8, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 107, + "interval": -1, + "laps_complete": 811, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 0, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "10", + "wheel_color": "ffb649", + "rim_type": 2 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 18, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 15, + "starting_position_in_class": 1, + "suit": { + "pattern": 4, + "color1": "4a98ff", + "color2": "0012fa", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -479845, + "display_name": "DSDF Racing LMP2", + "aggregate_champ_points": 25, + "ai": false, + "average_lap": 1071884, + "best_lap_num": 585, + "best_lap_time": 985010, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 25, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -479845, + "cust_id": 1010930, + "display_name": "James Seale", + "aggregate_champ_points": 25, + "ai": false, + "average_lap": 1059229, + "best_lap_num": 558, + "best_lap_time": 987780, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 25, + "class_interval": -1, + "country_code": "GB", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 19, + "finish_position_in_class": 9, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 4, + "color1": "0a0a0a", + "color2": "ffffff", + "color3": "ff0000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 39, + "interval": -1, + "laps_complete": 281, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 21, + "color1": "ffffff", + "color2": "ff0000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "ff0000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 221, + "sponsor2": 7, + "car_number": "155", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 59.186558, + "new_license_level": 12, + "new_sub_level": 488, + "new_ttrating": 1649, + "newi_rating": 2544, + "old_cpi": 26.148556, + "old_license_level": 11, + "old_sub_level": 319, + "old_ttrating": 1649, + "oldi_rating": 2563, + "opt_laps_complete": 0, + "position": 19, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 25, + "starting_position_in_class": 11, + "suit": { + "pattern": 32, + "color1": "000000", + "color2": "ff0000", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -479845, + "cust_id": 1062946, + "display_name": "Harley Byrne", + "aggregate_champ_points": 25, + "ai": false, + "average_lap": 1055291, + "best_lap_num": 635, + "best_lap_time": 996812, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 25, + "class_interval": -1, + "country_code": "GB", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 19, + "finish_position_in_class": 9, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "000000", + "color2": "007316", + "color3": "00ff00", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 33, + "interval": -1, + "laps_complete": 273, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 21, + "color1": "ffffff", + "color2": "ff0000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "ff0000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 221, + "sponsor2": 7, + "car_number": "155", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 73.349144, + "new_license_level": 16, + "new_sub_level": 464, + "new_ttrating": 1556, + "newi_rating": 1949, + "old_cpi": 37.23048, + "old_license_level": 15, + "old_sub_level": 318, + "old_ttrating": 1556, + "oldi_rating": 1968, + "opt_laps_complete": 0, + "position": 19, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 25, + "starting_position_in_class": 11, + "suit": { + "pattern": 32, + "color1": "000000", + "color2": "ff0000", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -479845, + "cust_id": 727237, + "display_name": "Albert Webster", + "aggregate_champ_points": 25, + "ai": false, + "average_lap": 1072776, + "best_lap_num": 585, + "best_lap_time": 985010, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 25, + "class_interval": -1, + "country_code": "GB", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 19, + "finish_position_in_class": 9, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 54, + "color1": "ff00f5", + "color2": "ffffff", + "color3": "ff00fc", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 46, + "interval": -1, + "laps_complete": 253, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 21, + "color1": "ffffff", + "color2": "ff0000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "ff0000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 221, + "sponsor2": 7, + "car_number": "155", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 50.475586, + "new_license_level": 12, + "new_sub_level": 464, + "new_ttrating": 1350, + "newi_rating": 2430, + "old_cpi": 19.97199, + "old_license_level": 10, + "old_sub_level": 235, + "old_ttrating": 1350, + "oldi_rating": 2447, + "opt_laps_complete": 0, + "position": 19, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 25, + "starting_position_in_class": 11, + "suit": { + "pattern": 32, + "color1": "000000", + "color2": "ff0000", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 19, + "finish_position_in_class": 9, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 118, + "interval": -1, + "laps_complete": 807, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 21, + "color1": "ffffff", + "color2": "ff0000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "ff0000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 221, + "sponsor2": 7, + "car_number": "155", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 19, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 25, + "starting_position_in_class": 11, + "suit": { + "pattern": 32, + "color1": "000000", + "color2": "ff0000", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -287243, + "display_name": "Team MFM - SURVIVE!", + "aggregate_champ_points": 142, + "ai": false, + "average_lap": 1081147, + "best_lap_num": 87, + "best_lap_time": 1044160, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 142, + "class_interval": 0, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -287243, + "cust_id": 386390, + "display_name": "Micky Denton", + "aggregate_champ_points": 142, + "ai": false, + "average_lap": 1074986, + "best_lap_num": 634, + "best_lap_time": 1045205, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 142, + "class_interval": 0, + "country_code": "GB", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 20, + "finish_position_in_class": 0, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 42, + "color1": "000000", + "color2": "fff20a", + "color3": "000105", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 9, + "interval": -1, + "laps_complete": 229, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 17, + "color1": "dddddd", + "color2": "ffff00", + "color3": "252525", + "number_font": 0, + "number_color1": "000000", + "number_color2": "737373", + "number_color3": "ffffff", + "number_slant": 4, + "sponsor1": 138, + "sponsor2": 7, + "car_number": "21", + "wheel_color": "ffff00", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 145.13077, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2256, + "old_cpi": 80.44081, + "old_license_level": 20, + "old_sub_level": 419, + "old_ttrating": 1350, + "oldi_rating": 2229, + "opt_laps_complete": 0, + "position": 20, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 41, + "starting_position_in_class": 15, + "suit": { + "pattern": 7, + "color1": "252525", + "color2": "DDDDDD", + "color3": "004895" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -287243, + "cust_id": 638036, + "display_name": "Cody Gayer", + "aggregate_champ_points": 142, + "ai": false, + "average_lap": 1070254, + "best_lap_num": 568, + "best_lap_time": 1045355, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 142, + "class_interval": 0, + "country_code": "US", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 20, + "finish_position_in_class": 0, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 67, + "color1": "01020e", + "color2": "d5c325", + "color3": "c91b20", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 29, + "interval": -1, + "laps_complete": 185, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 17, + "color1": "dddddd", + "color2": "ffff00", + "color3": "252525", + "number_font": 0, + "number_color1": "000000", + "number_color2": "737373", + "number_color3": "ffffff", + "number_slant": 4, + "sponsor1": 138, + "sponsor2": 7, + "car_number": "21", + "wheel_color": "ffff00", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 81.2526, + "new_license_level": 20, + "new_sub_level": 420, + "new_ttrating": 1350, + "newi_rating": 3094, + "old_cpi": 86.255455, + "old_license_level": 20, + "old_sub_level": 429, + "old_ttrating": 1350, + "oldi_rating": 3072, + "opt_laps_complete": 0, + "position": 20, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 41, + "starting_position_in_class": 15, + "suit": { + "pattern": 7, + "color1": "252525", + "color2": "DDDDDD", + "color3": "004895" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -287243, + "cust_id": 462083, + "display_name": "Sean Foltz", + "aggregate_champ_points": 142, + "ai": false, + "average_lap": 1077727, + "best_lap_num": 320, + "best_lap_time": 1052938, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 142, + "class_interval": 0, + "country_code": "US", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 20, + "finish_position_in_class": 0, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 36, + "color1": "111111", + "color2": "bead50", + "color3": "ff611d", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 14, + "interval": -1, + "laps_complete": 149, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 17, + "color1": "dddddd", + "color2": "ffff00", + "color3": "252525", + "number_font": 0, + "number_color1": "000000", + "number_color2": "737373", + "number_color3": "ffffff", + "number_slant": 4, + "sponsor1": 138, + "sponsor2": 7, + "car_number": "21", + "wheel_color": "ffff00", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 95.34607, + "new_license_level": 20, + "new_sub_level": 445, + "new_ttrating": 1350, + "newi_rating": 1747, + "old_cpi": 78.618935, + "old_license_level": 20, + "old_sub_level": 415, + "old_ttrating": 1350, + "oldi_rating": 1729, + "opt_laps_complete": 0, + "position": 20, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 41, + "starting_position_in_class": 15, + "suit": { + "pattern": 7, + "color1": "252525", + "color2": "DDDDDD", + "color3": "004895" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -287243, + "cust_id": 585611, + "display_name": "Finley Fitzsimmons", + "aggregate_champ_points": 142, + "ai": false, + "average_lap": 1069337, + "best_lap_num": 87, + "best_lap_time": 1044160, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 142, + "class_interval": 0, + "country_code": "GB", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 20, + "finish_position_in_class": 0, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 24, + "color1": "000000", + "color2": "c9fc00", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 18, + "interval": -1, + "laps_complete": 146, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 17, + "color1": "dddddd", + "color2": "ffff00", + "color3": "252525", + "number_font": 0, + "number_color1": "000000", + "number_color2": "737373", + "number_color3": "ffffff", + "number_slant": 4, + "sponsor1": 138, + "sponsor2": 7, + "car_number": "21", + "wheel_color": "ffff00", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 73.801315, + "new_license_level": 19, + "new_sub_level": 365, + "new_ttrating": 1350, + "newi_rating": 2703, + "old_cpi": 48.809418, + "old_license_level": 18, + "old_sub_level": 259, + "old_ttrating": 1350, + "oldi_rating": 2685, + "opt_laps_complete": 0, + "position": 20, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 41, + "starting_position_in_class": 15, + "suit": { + "pattern": 7, + "color1": "252525", + "color2": "DDDDDD", + "color3": "004895" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -287243, + "cust_id": 463622, + "display_name": "William R Martin", + "aggregate_champ_points": 142, + "ai": false, + "average_lap": 1087969, + "best_lap_num": 407, + "best_lap_time": 1061256, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 142, + "class_interval": 0, + "country_code": "US", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 20, + "finish_position_in_class": 0, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 3, + "color1": "2a3795", + "color2": "ffffff", + "color3": "ed2129", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 8, + "interval": -1, + "laps_complete": 91, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 17, + "color1": "dddddd", + "color2": "ffff00", + "color3": "252525", + "number_font": 0, + "number_color1": "000000", + "number_color2": "737373", + "number_color3": "ffffff", + "number_slant": 4, + "sponsor1": 138, + "sponsor2": 7, + "car_number": "21", + "wheel_color": "ffff00", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 51.95585, + "new_license_level": 15, + "new_sub_level": 368, + "new_ttrating": 1350, + "newi_rating": 1687, + "old_cpi": 36.561356, + "old_license_level": 15, + "old_sub_level": 315, + "old_ttrating": 1350, + "oldi_rating": 1676, + "opt_laps_complete": 0, + "position": 20, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 41, + "starting_position_in_class": 15, + "suit": { + "pattern": 7, + "color1": "252525", + "color2": "DDDDDD", + "color3": "004895" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 20, + "finish_position_in_class": 0, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 78, + "interval": -1, + "laps_complete": 800, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 17, + "color1": "dddddd", + "color2": "ffff00", + "color3": "252525", + "number_font": 0, + "number_color1": "000000", + "number_color2": "737373", + "number_color3": "ffffff", + "number_slant": 4, + "sponsor1": 138, + "sponsor2": 7, + "car_number": "21", + "wheel_color": "ffff00", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 20, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 41, + "starting_position_in_class": 15, + "suit": { + "pattern": 7, + "color1": "252525", + "color2": "DDDDDD", + "color3": "004895" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -457552, + "display_name": "DB3 MOTORSPORT | REMESI", + "aggregate_champ_points": 137, + "ai": false, + "average_lap": 1083873, + "best_lap_num": 265, + "best_lap_time": 1042790, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 137, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -457552, + "cust_id": 1366564, + "display_name": "Christian Seibold", + "aggregate_champ_points": 137, + "ai": false, + "average_lap": 1068879, + "best_lap_num": 118, + "best_lap_time": 1042998, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 137, + "class_interval": -1, + "country_code": "AT", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 21, + "finish_position_in_class": 1, + "flair_id": 17, + "flair_name": "Austria", + "flair_shortname": "AUT", + "friend": false, + "helmet": { + "pattern": 67, + "color1": "393939", + "color2": "ea6500", + "color3": "0a0a0a", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 24, + "interval": -1, + "laps_complete": 230, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "77fa03", + "color2": "ed2129", + "color3": "b0ec02", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "13", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 92.53391, + "new_license_level": 19, + "new_sub_level": 399, + "new_ttrating": 1358, + "newi_rating": 2464, + "old_cpi": 69.27189, + "old_license_level": 19, + "old_sub_level": 355, + "old_ttrating": 1358, + "oldi_rating": 2437, + "opt_laps_complete": 0, + "position": 21, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 27, + "starting_position_in_class": 1, + "suit": { + "pattern": 11, + "color1": "d9003b", + "color2": "ffffff", + "color3": "0011f9" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -457552, + "cust_id": 265899, + "display_name": "Max Sennewald", + "aggregate_champ_points": 137, + "ai": false, + "average_lap": 1074866, + "best_lap_num": 596, + "best_lap_time": 1049105, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 137, + "class_interval": -1, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 21, + "finish_position_in_class": 1, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 35, + "color1": "000000", + "color2": "ff6c0a", + "color3": "00d6ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 13, + "interval": -1, + "laps_complete": 151, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "77fa03", + "color2": "ed2129", + "color3": "b0ec02", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "13", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 58.80615, + "new_license_level": 15, + "new_sub_level": 387, + "new_ttrating": 1445, + "newi_rating": 2201, + "old_cpi": 25.331612, + "old_license_level": 14, + "old_sub_level": 214, + "old_ttrating": 1445, + "oldi_rating": 2184, + "opt_laps_complete": 0, + "position": 21, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 27, + "starting_position_in_class": 1, + "suit": { + "pattern": 11, + "color1": "d9003b", + "color2": "ffffff", + "color3": "0011f9" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -457552, + "cust_id": 1229354, + "display_name": "Domenik Tubes", + "aggregate_champ_points": 137, + "ai": false, + "average_lap": 1080154, + "best_lap_num": 565, + "best_lap_time": 1055050, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 137, + "class_interval": -1, + "country_code": "DE", + "division": 6, + "division_name": "Division 7", + "drop_race": false, + "finish_position": 21, + "finish_position_in_class": 1, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "efd600", + "color2": "d7162d", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 14, + "interval": -1, + "laps_complete": 151, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "77fa03", + "color2": "ed2129", + "color3": "b0ec02", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "13", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 88.43992, + "new_license_level": 19, + "new_sub_level": 392, + "new_ttrating": 1296, + "newi_rating": 1870, + "old_cpi": 61.389915, + "old_license_level": 19, + "old_sub_level": 337, + "old_ttrating": 1296, + "oldi_rating": 1853, + "opt_laps_complete": 0, + "position": 21, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 27, + "starting_position_in_class": 1, + "suit": { + "pattern": 11, + "color1": "d9003b", + "color2": "ffffff", + "color3": "0011f9" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -457552, + "cust_id": 673113, + "display_name": "Gerd Zechner", + "aggregate_champ_points": 137, + "ai": false, + "average_lap": 1062057, + "best_lap_num": 265, + "best_lap_time": 1042790, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 137, + "class_interval": -1, + "country_code": "AT", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 21, + "finish_position_in_class": 1, + "flair_id": 17, + "flair_name": "Austria", + "flair_shortname": "AUT", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "111111", + "color2": "ffffff", + "color3": "fc0706", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 16, + "interval": -1, + "laps_complete": 150, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "77fa03", + "color2": "ed2129", + "color3": "b0ec02", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "13", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 83.24767, + "new_license_level": 19, + "new_sub_level": 383, + "new_ttrating": 1350, + "newi_rating": 3031, + "old_cpi": 65.06985, + "old_license_level": 19, + "old_sub_level": 346, + "old_ttrating": 1350, + "oldi_rating": 3014, + "opt_laps_complete": 0, + "position": 21, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 27, + "starting_position_in_class": 1, + "suit": { + "pattern": 11, + "color1": "d9003b", + "color2": "ffffff", + "color3": "0011f9" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -457552, + "cust_id": 553230, + "display_name": "Pierre Meier", + "aggregate_champ_points": 137, + "ai": false, + "average_lap": 1080146, + "best_lap_num": 533, + "best_lap_time": 1056105, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 137, + "class_interval": -1, + "country_code": "DE", + "division": 6, + "division_name": "Division 7", + "drop_race": false, + "finish_position": 21, + "finish_position_in_class": 1, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 14, + "color1": "eb0b33", + "color2": "161413", + "color3": "fa0e0e", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 19, + "interval": -1, + "laps_complete": 116, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "77fa03", + "color2": "ed2129", + "color3": "b0ec02", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "13", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 41.600945, + "new_license_level": 14, + "new_sub_level": 291, + "new_ttrating": 1350, + "newi_rating": 1734, + "old_cpi": 25.06291, + "old_license_level": 14, + "old_sub_level": 213, + "old_ttrating": 1350, + "oldi_rating": 1721, + "opt_laps_complete": 0, + "position": 21, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 27, + "starting_position_in_class": 1, + "suit": { + "pattern": 11, + "color1": "d9003b", + "color2": "ffffff", + "color3": "0011f9" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 21, + "finish_position_in_class": 1, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 86, + "interval": -1, + "laps_complete": 798, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "77fa03", + "color2": "ed2129", + "color3": "b0ec02", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "13", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 21, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 27, + "starting_position_in_class": 1, + "suit": { + "pattern": 11, + "color1": "d9003b", + "color2": "ffffff", + "color3": "0011f9" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -287336, + "display_name": "W2W Racing Red", + "aggregate_champ_points": 133, + "ai": false, + "average_lap": 1085153, + "best_lap_num": 662, + "best_lap_time": 1042514, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 133, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -287336, + "cust_id": 392017, + "display_name": "Jorge Reyes3", + "aggregate_champ_points": 133, + "ai": false, + "average_lap": 1068517, + "best_lap_num": 662, + "best_lap_time": 1042514, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 133, + "class_interval": -1, + "country_code": "BO", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 22, + "finish_position_in_class": 2, + "flair_id": 28, + "flair_name": "Bolivia", + "flair_shortname": "BES", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "0012ff", + "color2": "3145a5", + "color3": "f00000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 55, + "interval": -1, + "laps_complete": 219, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 15, + "color1": "f3ff06", + "color2": "0e9720", + "color3": "f3ff06", + "number_font": 53, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 2, + "sponsor1": 221, + "sponsor2": 0, + "car_number": "26", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 45.28575, + "new_license_level": 18, + "new_sub_level": 247, + "new_ttrating": 1350, + "newi_rating": 2245, + "old_cpi": 32.465076, + "old_license_level": 17, + "old_sub_level": 153, + "old_ttrating": 1350, + "oldi_rating": 2221, + "opt_laps_complete": 0, + "position": 22, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 28, + "starting_position_in_class": 2, + "suit": { + "pattern": 10, + "color1": "ad1210", + "color2": "000000", + "color3": "ad1210" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -287336, + "cust_id": 332950, + "display_name": "Markus Bulheller", + "aggregate_champ_points": 133, + "ai": false, + "average_lap": 1070863, + "best_lap_num": 422, + "best_lap_time": 1047985, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 133, + "class_interval": -1, + "country_code": "DE", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 22, + "finish_position_in_class": 2, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 64, + "color1": "ad1210", + "color2": "000000", + "color3": "fa0600", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 18, + "interval": -1, + "laps_complete": 216, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 15, + "color1": "f3ff06", + "color2": "0e9720", + "color3": "f3ff06", + "number_font": 53, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 2, + "sponsor1": 221, + "sponsor2": 0, + "car_number": "26", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 126.267044, + "new_license_level": 20, + "new_sub_level": 488, + "new_ttrating": 1350, + "newi_rating": 1883, + "old_cpi": 106.58838, + "old_license_level": 20, + "old_sub_level": 462, + "old_ttrating": 1350, + "oldi_rating": 1859, + "opt_laps_complete": 0, + "position": 22, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 28, + "starting_position_in_class": 2, + "suit": { + "pattern": 10, + "color1": "ad1210", + "color2": "000000", + "color3": "ad1210" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -287336, + "cust_id": 274792, + "display_name": "Brandon Peters2", + "aggregate_champ_points": 133, + "ai": false, + "average_lap": 1076170, + "best_lap_num": 509, + "best_lap_time": 1050183, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 133, + "class_interval": -1, + "country_code": "US", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 22, + "finish_position_in_class": 2, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 65, + "color1": "B40421", + "color2": "000000", + "color3": "008ae6", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 9, + "interval": -1, + "laps_complete": 182, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 15, + "color1": "f3ff06", + "color2": "0e9720", + "color3": "f3ff06", + "number_font": 53, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 2, + "sponsor1": 221, + "sponsor2": 0, + "car_number": "26", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 153.31381, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2214, + "old_cpi": 109.711655, + "old_license_level": 20, + "old_sub_level": 466, + "old_ttrating": 1350, + "oldi_rating": 2194, + "opt_laps_complete": 0, + "position": 22, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 28, + "starting_position_in_class": 2, + "suit": { + "pattern": 10, + "color1": "ad1210", + "color2": "000000", + "color3": "ad1210" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -287336, + "cust_id": 378055, + "display_name": "Jorge V. Carmo", + "aggregate_champ_points": 133, + "ai": false, + "average_lap": 1074664, + "best_lap_num": 206, + "best_lap_time": 1050442, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 133, + "class_interval": -1, + "country_code": "PT", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 22, + "finish_position_in_class": 2, + "flair_id": 168, + "flair_name": "Portugal", + "flair_shortname": "PRT", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "fffc00", + "color2": "111111", + "color3": "ff8804", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 20, + "interval": -1, + "laps_complete": 180, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 15, + "color1": "f3ff06", + "color2": "0e9720", + "color3": "f3ff06", + "number_font": 53, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 2, + "sponsor1": 221, + "sponsor2": 0, + "car_number": "26", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 77.34436, + "new_license_level": 19, + "new_sub_level": 372, + "new_ttrating": 1350, + "newi_rating": 2574, + "old_cpi": 40.53806, + "old_license_level": 18, + "old_sub_level": 231, + "old_ttrating": 1350, + "oldi_rating": 2554, + "opt_laps_complete": 0, + "position": 22, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 28, + "starting_position_in_class": 2, + "suit": { + "pattern": 10, + "color1": "ad1210", + "color2": "000000", + "color3": "ad1210" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 22, + "finish_position_in_class": 2, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 102, + "interval": -1, + "laps_complete": 797, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 15, + "color1": "f3ff06", + "color2": "0e9720", + "color3": "f3ff06", + "number_font": 53, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 2, + "sponsor1": 221, + "sponsor2": 0, + "car_number": "26", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 22, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 28, + "starting_position_in_class": 2, + "suit": { + "pattern": 10, + "color1": "ad1210", + "color2": "000000", + "color3": "ad1210" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -454234, + "display_name": "TKG Simsport PRO", + "aggregate_champ_points": 128, + "ai": false, + "average_lap": 1085188, + "best_lap_num": 116, + "best_lap_time": 1042650, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 128, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -454234, + "cust_id": 1138518, + "display_name": "Aaron J Walker", + "aggregate_champ_points": 128, + "ai": false, + "average_lap": 1081911, + "best_lap_num": 523, + "best_lap_time": 1047190, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 128, + "class_interval": -1, + "country_code": "GO", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 23, + "finish_position_in_class": 3, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "helmet": { + "pattern": 54, + "color1": "000000", + "color2": "000000", + "color3": "5c5c5c", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 46, + "interval": -1, + "laps_complete": 240, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "20", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 51.075874, + "new_license_level": 15, + "new_sub_level": 365, + "new_ttrating": 1350, + "newi_rating": 2117, + "old_cpi": 24.532656, + "old_license_level": 14, + "old_sub_level": 209, + "old_ttrating": 1350, + "oldi_rating": 2092, + "opt_laps_complete": 0, + "position": 23, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 32, + "starting_position_in_class": 6, + "suit": { + "pattern": 8, + "color1": "000000", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -454234, + "cust_id": 1141722, + "display_name": "Joel Allgyer", + "aggregate_champ_points": 128, + "ai": false, + "average_lap": 1075495, + "best_lap_num": 642, + "best_lap_time": 1044889, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 128, + "class_interval": -1, + "country_code": "US", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 23, + "finish_position_in_class": 3, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 29, + "color1": "111111", + "color2": "ffffff", + "color3": "f60000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 28, + "interval": -1, + "laps_complete": 210, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "20", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 70.93398, + "new_license_level": 19, + "new_sub_level": 359, + "new_ttrating": 1271, + "newi_rating": 2584, + "old_cpi": 36.81991, + "old_license_level": 18, + "old_sub_level": 216, + "old_ttrating": 1271, + "oldi_rating": 2563, + "opt_laps_complete": 0, + "position": 23, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 32, + "starting_position_in_class": 6, + "suit": { + "pattern": 8, + "color1": "000000", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -454234, + "cust_id": 678081, + "display_name": "Carter A Thompson", + "aggregate_champ_points": 128, + "ai": false, + "average_lap": 1073221, + "best_lap_num": 116, + "best_lap_time": 1042650, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 128, + "class_interval": -1, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 23, + "finish_position_in_class": 3, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "ff2202", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 60, + "interval": -1, + "laps_complete": 174, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "20", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 31.197826, + "new_license_level": 14, + "new_sub_level": 246, + "new_ttrating": 1350, + "newi_rating": 2617, + "old_cpi": 24.810728, + "old_license_level": 14, + "old_sub_level": 211, + "old_ttrating": 1350, + "oldi_rating": 2600, + "opt_laps_complete": 0, + "position": 23, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 32, + "starting_position_in_class": 6, + "suit": { + "pattern": 8, + "color1": "000000", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -454234, + "cust_id": 698537, + "display_name": "Ben Garey2", + "aggregate_champ_points": 128, + "ai": false, + "average_lap": 1075133, + "best_lap_num": 468, + "best_lap_time": 1047644, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 128, + "class_interval": -1, + "country_code": "US", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 23, + "finish_position_in_class": 3, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 49, + "color1": "ffffff", + "color2": "ffffff", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 77, + "interval": -1, + "laps_complete": 173, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "20", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 25.255388, + "new_license_level": 10, + "new_sub_level": 272, + "new_ttrating": 1350, + "newi_rating": 1750, + "old_cpi": 17.60599, + "old_license_level": 9, + "old_sub_level": 178, + "old_ttrating": 1350, + "oldi_rating": 1733, + "opt_laps_complete": 0, + "position": 23, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 32, + "starting_position_in_class": 6, + "suit": { + "pattern": 8, + "color1": "000000", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 23, + "finish_position_in_class": 3, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 211, + "interval": -1, + "laps_complete": 797, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "20", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 23, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 32, + "starting_position_in_class": 6, + "suit": { + "pattern": 8, + "color1": "000000", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -480346, + "display_name": "Almeida Endurance Racing Black", + "aggregate_champ_points": 124, + "ai": false, + "average_lap": 1088593, + "best_lap_num": 647, + "best_lap_time": 1044415, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 124, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -480346, + "cust_id": 346886, + "display_name": "Adrian Hopp", + "aggregate_champ_points": 124, + "ai": false, + "average_lap": 1072720, + "best_lap_num": 562, + "best_lap_time": 1045246, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 124, + "class_interval": -1, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 24, + "finish_position_in_class": 4, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 21, + "color1": "000000", + "color2": "ffffff", + "color3": "fa0200", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 12, + "interval": -1, + "laps_complete": 242, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 14, + "color1": "FFED00", + "color2": "00C4FF", + "color3": "87C42E", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "18", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 161.57109, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1311, + "newi_rating": 3055, + "old_cpi": 84.49169, + "old_license_level": 19, + "old_sub_level": 385, + "old_ttrating": 1311, + "oldi_rating": 3033, + "opt_laps_complete": 0, + "position": 24, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 46, + "starting_position_in_class": 20, + "suit": { + "pattern": 32, + "color1": "ffffff", + "color2": "fff200", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -480346, + "cust_id": 770894, + "display_name": "Alexander Eger", + "aggregate_champ_points": 124, + "ai": false, + "average_lap": 1062332, + "best_lap_num": 647, + "best_lap_time": 1044415, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 124, + "class_interval": -1, + "country_code": "DE", + "division": 5, + "division_name": "Division 6", + "drop_race": false, + "finish_position": 24, + "finish_position_in_class": 4, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "111111", + "color2": "b82f37", + "color3": "284a94", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 16, + "interval": -1, + "laps_complete": 211, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 14, + "color1": "FFED00", + "color2": "00C4FF", + "color3": "87C42E", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "18", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 100.03695, + "new_license_level": 20, + "new_sub_level": 452, + "new_ttrating": 1350, + "newi_rating": 2036, + "old_cpi": 38.330452, + "old_license_level": 18, + "old_sub_level": 222, + "old_ttrating": 1350, + "oldi_rating": 2017, + "opt_laps_complete": 0, + "position": 24, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 46, + "starting_position_in_class": 20, + "suit": { + "pattern": 32, + "color1": "ffffff", + "color2": "fff200", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -480346, + "cust_id": 1318861, + "display_name": "Pedro Nilsson", + "aggregate_champ_points": 124, + "ai": false, + "average_lap": 1080856, + "best_lap_num": 189, + "best_lap_time": 1050382, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 124, + "class_interval": -1, + "country_code": "BR", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 24, + "finish_position_in_class": 4, + "flair_id": 31, + "flair_name": "Brazil", + "flair_shortname": "BRA", + "friend": false, + "helmet": { + "pattern": 35, + "color1": "ffed00", + "color2": "00c4ff", + "color3": "87c42e", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 27, + "interval": -1, + "laps_complete": 171, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 14, + "color1": "FFED00", + "color2": "00C4FF", + "color3": "87C42E", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "18", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 42.018944, + "new_license_level": 11, + "new_sub_level": 392, + "new_ttrating": 1350, + "newi_rating": 2005, + "old_cpi": 24.106707, + "old_license_level": 11, + "old_sub_level": 307, + "old_ttrating": 1350, + "oldi_rating": 1989, + "opt_laps_complete": 0, + "position": 24, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 46, + "starting_position_in_class": 20, + "suit": { + "pattern": 32, + "color1": "ffffff", + "color2": "fff200", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -480346, + "cust_id": 1403655, + "display_name": "Ianis Iordache", + "aggregate_champ_points": 124, + "ai": false, + "average_lap": 1072517, + "best_lap_num": 224, + "best_lap_time": 1049304, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 124, + "class_interval": -1, + "country_code": "RO", + "division": 10, + "division_name": "Rookie", + "drop_race": false, + "finish_position": 24, + "finish_position_in_class": 4, + "flair_id": 173, + "flair_name": "Romania", + "flair_shortname": "ROU", + "friend": false, + "helmet": { + "pattern": 36, + "color1": "000000", + "color2": "ff0000", + "color3": "8c0000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 33, + "interval": -1, + "laps_complete": 170, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 14, + "color1": "FFED00", + "color2": "00C4FF", + "color3": "87C42E", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "18", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 44.432568, + "new_license_level": 12, + "new_sub_level": 444, + "new_ttrating": 1307, + "newi_rating": 2026, + "old_cpi": 30.39872, + "old_license_level": 11, + "old_sub_level": 342, + "old_ttrating": 1307, + "oldi_rating": 2011, + "opt_laps_complete": 0, + "position": 24, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 46, + "starting_position_in_class": 20, + "suit": { + "pattern": 32, + "color1": "ffffff", + "color2": "fff200", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 24, + "finish_position_in_class": 4, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 88, + "interval": -1, + "laps_complete": 794, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 14, + "color1": "FFED00", + "color2": "00C4FF", + "color3": "87C42E", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "18", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 24, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 46, + "starting_position_in_class": 20, + "suit": { + "pattern": 32, + "color1": "ffffff", + "color2": "fff200", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -480134, + "display_name": "Club 100 Sim Racers", + "aggregate_champ_points": 119, + "ai": false, + "average_lap": 1089527, + "best_lap_num": 303, + "best_lap_time": 1042690, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 119, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -480134, + "cust_id": 133722, + "display_name": "James DeHavillande", + "aggregate_champ_points": 119, + "ai": false, + "average_lap": 1065594, + "best_lap_num": 303, + "best_lap_time": 1042690, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 119, + "class_interval": -1, + "country_code": "GB", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 25, + "finish_position_in_class": 5, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 60, + "color1": "eb0000", + "color2": "0009db", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 20, + "interval": -1, + "laps_complete": 229, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 11, + "color1": "000000", + "color2": "ff0000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "125", + "wheel_color": "b32e2e", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 92.82705, + "new_license_level": 19, + "new_sub_level": 399, + "new_ttrating": 1350, + "newi_rating": 3886, + "old_cpi": 38.696655, + "old_license_level": 18, + "old_sub_level": 224, + "old_ttrating": 1350, + "oldi_rating": 3868, + "opt_laps_complete": 0, + "position": 25, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 31, + "starting_position_in_class": 5, + "suit": { + "pattern": 3, + "color1": "000000", + "color2": "ee6b00", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -480134, + "cust_id": 1183749, + "display_name": "Jack Mitchell-Lowe", + "aggregate_champ_points": 119, + "ai": false, + "average_lap": 1075568, + "best_lap_num": 392, + "best_lap_time": 1050371, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 119, + "class_interval": -1, + "country_code": "GB", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 25, + "finish_position_in_class": 5, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 62, + "color1": "006ee0", + "color2": "e0af00", + "color3": "ff5c00", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 14, + "interval": -1, + "laps_complete": 151, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 11, + "color1": "000000", + "color2": "ff0000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "125", + "wheel_color": "b32e2e", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 81.00438, + "new_license_level": 16, + "new_sub_level": 479, + "new_ttrating": 1350, + "newi_rating": 2129, + "old_cpi": 52.43604, + "old_license_level": 15, + "old_sub_level": 369, + "old_ttrating": 1350, + "oldi_rating": 2117, + "opt_laps_complete": 0, + "position": 25, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 31, + "starting_position_in_class": 5, + "suit": { + "pattern": 3, + "color1": "000000", + "color2": "ee6b00", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -480134, + "cust_id": 979456, + "display_name": "John Adey", + "aggregate_champ_points": 119, + "ai": false, + "average_lap": 1079885, + "best_lap_num": 203, + "best_lap_time": 1054285, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 119, + "class_interval": -1, + "country_code": "GB", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 25, + "finish_position_in_class": 5, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 52, + "color1": "de80cc", + "color2": "c257ee", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 22, + "interval": -1, + "laps_complete": 147, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 11, + "color1": "000000", + "color2": "ff0000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "125", + "wheel_color": "b32e2e", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 52.135857, + "new_license_level": 15, + "new_sub_level": 369, + "new_ttrating": 1360, + "newi_rating": 1943, + "old_cpi": 21.50017, + "old_license_level": 13, + "old_sub_level": 147, + "old_ttrating": 1360, + "oldi_rating": 1931, + "opt_laps_complete": 0, + "position": 25, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 31, + "starting_position_in_class": 5, + "suit": { + "pattern": 3, + "color1": "000000", + "color2": "ee6b00", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -480134, + "cust_id": 804751, + "display_name": "Sam Dimelow", + "aggregate_champ_points": 119, + "ai": false, + "average_lap": 1081405, + "best_lap_num": 515, + "best_lap_time": 1051075, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 119, + "class_interval": -1, + "country_code": "GB", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 25, + "finish_position_in_class": 5, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 12, + "color1": "b80aee", + "color2": "f8ee00", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 17, + "interval": -1, + "laps_complete": 143, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 11, + "color1": "000000", + "color2": "ff0000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "125", + "wheel_color": "b32e2e", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 61.684498, + "new_license_level": 18, + "new_sub_level": 294, + "new_ttrating": 1350, + "newi_rating": 1842, + "old_cpi": 24.449064, + "old_license_level": 17, + "old_sub_level": 109, + "old_ttrating": 1350, + "oldi_rating": 1831, + "opt_laps_complete": 0, + "position": 25, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 31, + "starting_position_in_class": 5, + "suit": { + "pattern": 3, + "color1": "000000", + "color2": "ee6b00", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -480134, + "cust_id": 88596, + "display_name": "James Fremont", + "aggregate_champ_points": 119, + "ai": false, + "average_lap": 1090494, + "best_lap_num": 164, + "best_lap_time": 1058823, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 119, + "class_interval": -1, + "country_code": "GB", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 25, + "finish_position_in_class": 5, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 66, + "color1": "fff73d", + "color2": "3864ff", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 9, + "interval": -1, + "laps_complete": 124, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 11, + "color1": "000000", + "color2": "ff0000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "125", + "wheel_color": "b32e2e", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 93.85955, + "new_license_level": 20, + "new_sub_level": 442, + "new_ttrating": 1350, + "newi_rating": 1920, + "old_cpi": 64.91199, + "old_license_level": 19, + "old_sub_level": 345, + "old_ttrating": 1350, + "oldi_rating": 1910, + "opt_laps_complete": 0, + "position": 25, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 31, + "starting_position_in_class": 5, + "suit": { + "pattern": 3, + "color1": "000000", + "color2": "ee6b00", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 25, + "finish_position_in_class": 5, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 82, + "interval": -1, + "laps_complete": 794, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 11, + "color1": "000000", + "color2": "ff0000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "125", + "wheel_color": "b32e2e", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 25, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 31, + "starting_position_in_class": 5, + "suit": { + "pattern": 3, + "color1": "000000", + "color2": "ee6b00", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -480821, + "display_name": "Team PaceLab - Red", + "aggregate_champ_points": 115, + "ai": false, + "average_lap": 1089613, + "best_lap_num": 13, + "best_lap_time": 1044404, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 115, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -480821, + "cust_id": 1287257, + "display_name": "Burak Egemen Yılmaz", + "aggregate_champ_points": 115, + "ai": false, + "average_lap": 1077671, + "best_lap_num": 132, + "best_lap_time": 1044564, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 115, + "class_interval": -1, + "country_code": "TR", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 26, + "finish_position_in_class": 6, + "flair_id": 215, + "flair_name": "Türkiye", + "flair_shortname": "TUR", + "friend": false, + "helmet": { + "pattern": 36, + "color1": "ffffff", + "color2": "ff0000", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 46, + "interval": -1, + "laps_complete": 344, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "23", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 77.44804, + "new_license_level": 16, + "new_sub_level": 472, + "new_ttrating": 1307, + "newi_rating": 2450, + "old_cpi": 26.810757, + "old_license_level": 14, + "old_sub_level": 223, + "old_ttrating": 1307, + "oldi_rating": 2426, + "opt_laps_complete": 0, + "position": 26, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 50, + "starting_position_in_class": 24, + "suit": { + "pattern": 21, + "color1": "000000", + "color2": "de00ff", + "color3": "230057" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -480821, + "cust_id": 1082557, + "display_name": "Ömer Baykal", + "aggregate_champ_points": 115, + "ai": false, + "average_lap": 1082556, + "best_lap_num": 13, + "best_lap_time": 1044404, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 115, + "class_interval": -1, + "country_code": "TR", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 26, + "finish_position_in_class": 6, + "flair_id": 215, + "flair_name": "Türkiye", + "flair_shortname": "TUR", + "friend": false, + "helmet": { + "pattern": 14, + "color1": "000000", + "color2": "ffa100", + "color3": "ff9100", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 48, + "interval": -1, + "laps_complete": 315, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "23", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 75.97765, + "new_license_level": 19, + "new_sub_level": 369, + "new_ttrating": 1353, + "newi_rating": 2634, + "old_cpi": 37.180595, + "old_license_level": 17, + "old_sub_level": 174, + "old_ttrating": 1353, + "oldi_rating": 2611, + "opt_laps_complete": 0, + "position": 26, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 50, + "starting_position_in_class": 24, + "suit": { + "pattern": 21, + "color1": "000000", + "color2": "de00ff", + "color3": "230057" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -480821, + "cust_id": 1221562, + "display_name": "Özgür Mustafa Divarcı", + "aggregate_champ_points": 115, + "ai": false, + "average_lap": 1093902, + "best_lap_num": 520, + "best_lap_time": 1048413, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 115, + "class_interval": -1, + "country_code": "TR", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 26, + "finish_position_in_class": 6, + "flair_id": 215, + "flair_name": "Türkiye", + "flair_shortname": "TUR", + "friend": false, + "helmet": { + "pattern": 7, + "color1": "ffffff", + "color2": "ffffff", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 25, + "interval": -1, + "laps_complete": 135, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "23", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 48.87903, + "new_license_level": 15, + "new_sub_level": 359, + "new_ttrating": 1500, + "newi_rating": 1706, + "old_cpi": 33.008003, + "old_license_level": 14, + "old_sub_level": 255, + "old_ttrating": 1500, + "oldi_rating": 1696, + "opt_laps_complete": 0, + "position": 26, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 50, + "starting_position_in_class": 24, + "suit": { + "pattern": 21, + "color1": "000000", + "color2": "de00ff", + "color3": "230057" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 26, + "finish_position_in_class": 6, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 119, + "interval": -1, + "laps_complete": 794, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "23", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 26, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 50, + "starting_position_in_class": 24, + "suit": { + "pattern": 21, + "color1": "000000", + "color2": "de00ff", + "color3": "230057" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -413546, + "display_name": "Should be Fine Motorsports", + "aggregate_champ_points": 110, + "ai": false, + "average_lap": 1091183, + "best_lap_num": 533, + "best_lap_time": 1045975, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 110, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -413546, + "cust_id": 1092119, + "display_name": "Chris Singh", + "aggregate_champ_points": 110, + "ai": false, + "average_lap": 1086013, + "best_lap_num": 416, + "best_lap_time": 1049428, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 110, + "class_interval": -1, + "country_code": "US", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 27, + "finish_position_in_class": 7, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 22, + "color1": "f9ff00", + "color2": "ff0000", + "color3": "00c341", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 62, + "interval": -1, + "laps_complete": 291, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 17, + "color1": "efd600", + "color2": "111111", + "color3": "d7162d", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "25", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 54.59016, + "new_license_level": 18, + "new_sub_level": 275, + "new_ttrating": 1350, + "newi_rating": 2797, + "old_cpi": 36.08681, + "old_license_level": 17, + "old_sub_level": 169, + "old_ttrating": 1350, + "oldi_rating": 2777, + "opt_laps_complete": 0, + "position": 27, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 42, + "starting_position_in_class": 16, + "suit": { + "pattern": 33, + "color1": "00f035", + "color2": "020101", + "color3": "e61010" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -413546, + "cust_id": 978547, + "display_name": "Victoria Butler", + "aggregate_champ_points": 110, + "ai": false, + "average_lap": 1074219, + "best_lap_num": 533, + "best_lap_time": 1045975, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 110, + "class_interval": -1, + "country_code": "US", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 27, + "finish_position_in_class": 7, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "1a4b9b", + "color2": "dff000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 6, + "interval": -1, + "laps_complete": 261, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 17, + "color1": "efd600", + "color2": "111111", + "color3": "d7162d", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "25", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 145.79706, + "new_license_level": 12, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 1952, + "old_cpi": 42.277386, + "old_license_level": 11, + "old_sub_level": 393, + "old_ttrating": 1350, + "oldi_rating": 1934, + "opt_laps_complete": 0, + "position": 27, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 42, + "starting_position_in_class": 16, + "suit": { + "pattern": 33, + "color1": "00f035", + "color2": "020101", + "color3": "e61010" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -413546, + "cust_id": 863800, + "display_name": "William Matejcek2", + "aggregate_champ_points": 110, + "ai": false, + "average_lap": 1082130, + "best_lap_num": 465, + "best_lap_time": 1052368, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 110, + "class_interval": -1, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 27, + "finish_position_in_class": 7, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 56, + "color1": "1af000", + "color2": "111111", + "color3": "f40c27", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 15, + "interval": -1, + "laps_complete": 241, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 17, + "color1": "efd600", + "color2": "111111", + "color3": "d7162d", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "25", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 113.510925, + "new_license_level": 20, + "new_sub_level": 472, + "new_ttrating": 1274, + "newi_rating": 2041, + "old_cpi": 33.42086, + "old_license_level": 18, + "old_sub_level": 201, + "old_ttrating": 1274, + "oldi_rating": 2024, + "opt_laps_complete": 0, + "position": 27, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 42, + "starting_position_in_class": 16, + "suit": { + "pattern": 33, + "color1": "00f035", + "color2": "020101", + "color3": "e61010" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 27, + "finish_position_in_class": 7, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 83, + "interval": -1, + "laps_complete": 793, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 17, + "color1": "efd600", + "color2": "111111", + "color3": "d7162d", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "25", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 27, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 42, + "starting_position_in_class": 16, + "suit": { + "pattern": 33, + "color1": "00f035", + "color2": "020101", + "color3": "e61010" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -434794, + "display_name": "Rag1ng Dragons e-Sports #Team Gold", + "aggregate_champ_points": 106, + "ai": false, + "average_lap": 1092164, + "best_lap_num": 616, + "best_lap_time": 1046594, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 106, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -434794, + "cust_id": 785721, + "display_name": "Lucas Benini", + "aggregate_champ_points": 106, + "ai": false, + "average_lap": 1077894, + "best_lap_num": 687, + "best_lap_time": 1049846, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 106, + "class_interval": -1, + "country_code": "BR", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 28, + "finish_position_in_class": 8, + "flair_id": 31, + "flair_name": "Brazil", + "flair_shortname": "BRA", + "friend": false, + "helmet": { + "pattern": 22, + "color1": "ffed00", + "color2": "008cff", + "color3": "1cff00", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 13, + "interval": -1, + "laps_complete": 213, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 4, + "color1": "effc53", + "color2": "43cd41", + "color3": "1e42db", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "30", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 108.44981, + "new_license_level": 20, + "new_sub_level": 465, + "new_ttrating": 1291, + "newi_rating": 2547, + "old_cpi": 54.275417, + "old_license_level": 19, + "old_sub_level": 318, + "old_ttrating": 1291, + "oldi_rating": 2534, + "opt_laps_complete": 0, + "position": 28, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 55, + "starting_position_in_class": 29, + "suit": { + "pattern": 1, + "color1": "22b428", + "color2": "353bcc", + "color3": "d3f118" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -434794, + "cust_id": 767696, + "display_name": "Vinicius Arlindo", + "aggregate_champ_points": 106, + "ai": false, + "average_lap": 1069663, + "best_lap_num": 616, + "best_lap_time": 1046594, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 106, + "class_interval": -1, + "country_code": "BR", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 28, + "finish_position_in_class": 8, + "flair_id": 31, + "flair_name": "Brazil", + "flair_shortname": "BRA", + "friend": false, + "helmet": { + "pattern": 48, + "color1": "faff00", + "color2": "000000", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 15, + "interval": -1, + "laps_complete": 193, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 4, + "color1": "effc53", + "color2": "43cd41", + "color3": "1e42db", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "30", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 92.24609, + "new_license_level": 19, + "new_sub_level": 398, + "new_ttrating": 1574, + "newi_rating": 3651, + "old_cpi": 37.401604, + "old_license_level": 18, + "old_sub_level": 218, + "old_ttrating": 1574, + "oldi_rating": 3640, + "opt_laps_complete": 0, + "position": 28, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 55, + "starting_position_in_class": 29, + "suit": { + "pattern": 1, + "color1": "22b428", + "color2": "353bcc", + "color3": "d3f118" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -434794, + "cust_id": 1302797, + "display_name": "Cadu Rodrigues", + "aggregate_champ_points": 106, + "ai": false, + "average_lap": 1087061, + "best_lap_num": 563, + "best_lap_time": 1048727, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 106, + "class_interval": -1, + "country_code": "BR", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 28, + "finish_position_in_class": 8, + "flair_id": 31, + "flair_name": "Brazil", + "flair_shortname": "BRA", + "friend": false, + "helmet": { + "pattern": 35, + "color1": "000000", + "color2": "858585", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 11, + "interval": -1, + "laps_complete": 179, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 4, + "color1": "effc53", + "color2": "43cd41", + "color3": "1e42db", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "30", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 103.770775, + "new_license_level": 20, + "new_sub_level": 458, + "new_ttrating": 1277, + "newi_rating": 1802, + "old_cpi": 41.475243, + "old_license_level": 18, + "old_sub_level": 234, + "old_ttrating": 1277, + "oldi_rating": 1792, + "opt_laps_complete": 0, + "position": 28, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 55, + "starting_position_in_class": 29, + "suit": { + "pattern": 1, + "color1": "22b428", + "color2": "353bcc", + "color3": "d3f118" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -434794, + "cust_id": 1141882, + "display_name": "Bernardo Martins6", + "aggregate_champ_points": 106, + "ai": false, + "average_lap": 1083352, + "best_lap_num": 319, + "best_lap_time": 1053262, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 106, + "class_interval": -1, + "country_code": "BR", + "division": 5, + "division_name": "Division 6", + "drop_race": false, + "finish_position": 28, + "finish_position_in_class": 8, + "flair_id": 31, + "flair_name": "Brazil", + "flair_shortname": "BRA", + "friend": false, + "helmet": { + "pattern": 8, + "color1": "effc53", + "color2": "43cd41", + "color3": "1e42db", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 14, + "interval": -1, + "laps_complete": 116, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 4, + "color1": "effc53", + "color2": "43cd41", + "color3": "1e42db", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "30", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 62.308594, + "new_license_level": 18, + "new_sub_level": 295, + "new_ttrating": 1350, + "newi_rating": 2102, + "old_cpi": 39.766796, + "old_license_level": 18, + "old_sub_level": 228, + "old_ttrating": 1350, + "oldi_rating": 2095, + "opt_laps_complete": 0, + "position": 28, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 55, + "starting_position_in_class": 29, + "suit": { + "pattern": 1, + "color1": "22b428", + "color2": "353bcc", + "color3": "d3f118" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -434794, + "cust_id": 1141673, + "display_name": "Anderson De Souza Silva", + "aggregate_champ_points": 106, + "ai": false, + "average_lap": 1092235, + "best_lap_num": 268, + "best_lap_time": 1060248, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 106, + "class_interval": -1, + "country_code": "BR", + "division": 6, + "division_name": "Division 7", + "drop_race": false, + "finish_position": 28, + "finish_position_in_class": 8, + "flair_id": 31, + "flair_name": "Brazil", + "flair_shortname": "BRA", + "friend": false, + "helmet": { + "pattern": 57, + "color1": "ffffff", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 19, + "interval": -1, + "laps_complete": 91, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 4, + "color1": "effc53", + "color2": "43cd41", + "color3": "1e42db", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "30", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 53.81801, + "new_license_level": 18, + "new_sub_level": 273, + "new_ttrating": 1350, + "newi_rating": 1411, + "old_cpi": 50.375633, + "old_license_level": 18, + "old_sub_level": 263, + "old_ttrating": 1350, + "oldi_rating": 1406, + "opt_laps_complete": 0, + "position": 28, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 55, + "starting_position_in_class": 29, + "suit": { + "pattern": 1, + "color1": "22b428", + "color2": "353bcc", + "color3": "d3f118" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 28, + "finish_position_in_class": 8, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 72, + "interval": -1, + "laps_complete": 792, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 4, + "color1": "effc53", + "color2": "43cd41", + "color3": "1e42db", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "30", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 28, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 55, + "starting_position_in_class": 29, + "suit": { + "pattern": 1, + "color1": "22b428", + "color2": "353bcc", + "color3": "d3f118" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -454924, + "display_name": "Top Tier Motorsport #222", + "aggregate_champ_points": 102, + "ai": false, + "average_lap": 1093968, + "best_lap_num": 606, + "best_lap_time": 1043768, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 102, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -454924, + "cust_id": 990132, + "display_name": "Bradley Trevett", + "aggregate_champ_points": 102, + "ai": false, + "average_lap": 1078904, + "best_lap_num": 96, + "best_lap_time": 1047704, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 102, + "class_interval": -1, + "country_code": "GB", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 29, + "finish_position_in_class": 9, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 67, + "color1": "00ffd9", + "color2": "ffffff", + "color3": "ff81e4", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 26, + "interval": -1, + "laps_complete": 234, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 4, + "color1": "efd600", + "color2": "111111", + "color3": "d7162d", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "222", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 78.25965, + "new_license_level": 12, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2309, + "old_cpi": 17.627136, + "old_license_level": 9, + "old_sub_level": 178, + "old_ttrating": 1350, + "oldi_rating": 2296, + "opt_laps_complete": 0, + "position": 29, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 49, + "starting_position_in_class": 23, + "suit": { + "pattern": 33, + "color1": "9500f0", + "color2": "111111", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -454924, + "cust_id": 212484, + "display_name": "Thomas Knapton", + "aggregate_champ_points": 102, + "ai": false, + "average_lap": 1069980, + "best_lap_num": 606, + "best_lap_time": 1043768, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 102, + "class_interval": -1, + "country_code": "TH", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 29, + "finish_position_in_class": 9, + "flair_id": 208, + "flair_name": "Thailand", + "flair_shortname": "THA", + "friend": false, + "helmet": { + "pattern": 49, + "color1": "ffffff", + "color2": "ed2129", + "color3": "2a3795", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 32, + "interval": -1, + "laps_complete": 213, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 4, + "color1": "efd600", + "color2": "111111", + "color3": "d7162d", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "222", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 81.22818, + "new_license_level": 20, + "new_sub_level": 420, + "new_ttrating": 1391, + "newi_rating": 2462, + "old_cpi": 83.66629, + "old_license_level": 20, + "old_sub_level": 425, + "old_ttrating": 1391, + "oldi_rating": 2450, + "opt_laps_complete": 0, + "position": 29, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 49, + "starting_position_in_class": 23, + "suit": { + "pattern": 33, + "color1": "9500f0", + "color2": "111111", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -454924, + "cust_id": 1093170, + "display_name": "Tyler Parslow", + "aggregate_champ_points": 102, + "ai": false, + "average_lap": 1076284, + "best_lap_num": 445, + "best_lap_time": 1048132, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 102, + "class_interval": -1, + "country_code": "GB", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 29, + "finish_position_in_class": 9, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "9c00f0", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 19, + "interval": -1, + "laps_complete": 180, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 4, + "color1": "efd600", + "color2": "111111", + "color3": "d7162d", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "222", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 82.85521, + "new_license_level": 19, + "new_sub_level": 382, + "new_ttrating": 1323, + "newi_rating": 2073, + "old_cpi": 57.45987, + "old_license_level": 19, + "old_sub_level": 327, + "old_ttrating": 1323, + "oldi_rating": 2063, + "opt_laps_complete": 0, + "position": 29, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 49, + "starting_position_in_class": 23, + "suit": { + "pattern": 33, + "color1": "9500f0", + "color2": "111111", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -454924, + "cust_id": 855270, + "display_name": "Dan Munro", + "aggregate_champ_points": 102, + "ai": false, + "average_lap": 1087668, + "best_lap_num": 515, + "best_lap_time": 1046019, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 102, + "class_interval": -1, + "country_code": "GB", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 29, + "finish_position_in_class": 9, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "111111", + "color2": "ed1c24", + "color3": "cccccc", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 35, + "interval": -1, + "laps_complete": 164, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 4, + "color1": "efd600", + "color2": "111111", + "color3": "d7162d", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "222", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 37.095116, + "new_license_level": 11, + "new_sub_level": 373, + "new_ttrating": 1350, + "newi_rating": 2026, + "old_cpi": 19.39725, + "old_license_level": 10, + "old_sub_level": 230, + "old_ttrating": 1350, + "oldi_rating": 2017, + "opt_laps_complete": 0, + "position": 29, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 49, + "starting_position_in_class": 23, + "suit": { + "pattern": 33, + "color1": "9500f0", + "color2": "111111", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 29, + "finish_position_in_class": 9, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 112, + "interval": -1, + "laps_complete": 791, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 4, + "color1": "efd600", + "color2": "111111", + "color3": "d7162d", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "222", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 29, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 49, + "starting_position_in_class": 23, + "suit": { + "pattern": 33, + "color1": "9500f0", + "color2": "111111", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -472037, + "display_name": "APEXNOVA SIMRACING PURPLE", + "aggregate_champ_points": 97, + "ai": false, + "average_lap": 1095989, + "best_lap_num": 406, + "best_lap_time": 1045554, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 97, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -472037, + "cust_id": 363097, + "display_name": "Tobias Kracht", + "aggregate_champ_points": 97, + "ai": false, + "average_lap": 1067505, + "best_lap_num": 406, + "best_lap_time": 1045554, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 97, + "class_interval": -1, + "country_code": "DE", + "division": 6, + "division_name": "Division 7", + "drop_race": false, + "finish_position": 30, + "finish_position_in_class": 10, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 35, + "color1": "2575b0", + "color2": "7e1c6e", + "color3": "f90000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 56, + "interval": -1, + "laps_complete": 295, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "fb0ead", + "color2": "424242", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "17", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 57.572872, + "new_license_level": 15, + "new_sub_level": 384, + "new_ttrating": 1350, + "newi_rating": 2797, + "old_cpi": 31.962917, + "old_license_level": 14, + "old_sub_level": 250, + "old_ttrating": 1350, + "oldi_rating": 2783, + "opt_laps_complete": 0, + "position": 30, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 34, + "starting_position_in_class": 8, + "suit": { + "pattern": 17, + "color1": "2F2F2F", + "color2": "404334", + "color3": "2F4F4F" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -472037, + "cust_id": 1375930, + "display_name": "Bartosz Swiechowicz2", + "aggregate_champ_points": 97, + "ai": false, + "average_lap": 1091542, + "best_lap_num": 579, + "best_lap_time": 1048268, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 97, + "class_interval": -1, + "country_code": "DE", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 30, + "finish_position_in_class": 10, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "2e358f", + "color2": "ec232d", + "color3": "0a0a0a", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 21, + "interval": -1, + "laps_complete": 252, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "fb0ead", + "color2": "424242", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "17", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 96.417336, + "new_license_level": 20, + "new_sub_level": 447, + "new_ttrating": 1350, + "newi_rating": 2294, + "old_cpi": 48.92359, + "old_license_level": 19, + "old_sub_level": 302, + "old_ttrating": 1350, + "oldi_rating": 2282, + "opt_laps_complete": 0, + "position": 30, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 34, + "starting_position_in_class": 8, + "suit": { + "pattern": 17, + "color1": "2F2F2F", + "color2": "404334", + "color3": "2F4F4F" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -472037, + "cust_id": 1122337, + "display_name": "Frank Berndt", + "aggregate_champ_points": 97, + "ai": false, + "average_lap": 1099532, + "best_lap_num": 484, + "best_lap_time": 1053714, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 97, + "class_interval": -1, + "country_code": "DE", + "division": 7, + "division_name": "Division 8", + "drop_race": false, + "finish_position": 30, + "finish_position_in_class": 10, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 56, + "color1": "111111", + "color2": "ffffff", + "color3": "2b00d9", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 39, + "interval": -1, + "laps_complete": 242, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "fb0ead", + "color2": "424242", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "17", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 66.943726, + "new_license_level": 19, + "new_sub_level": 350, + "new_ttrating": 1350, + "newi_rating": 1660, + "old_cpi": 41.53764, + "old_license_level": 18, + "old_sub_level": 234, + "old_ttrating": 1350, + "oldi_rating": 1649, + "opt_laps_complete": 0, + "position": 30, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 34, + "starting_position_in_class": 8, + "suit": { + "pattern": 17, + "color1": "2F2F2F", + "color2": "404334", + "color3": "2F4F4F" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 30, + "finish_position_in_class": 10, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 116, + "interval": -1, + "laps_complete": 789, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "fb0ead", + "color2": "424242", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "17", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 30, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 34, + "starting_position_in_class": 8, + "suit": { + "pattern": 17, + "color1": "2F2F2F", + "color2": "404334", + "color3": "2F4F4F" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -175849, + "display_name": "Maniti Racing Yellow", + "aggregate_champ_points": 93, + "ai": false, + "average_lap": 1096796, + "best_lap_num": 393, + "best_lap_time": 1047142, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 156, + "car_name": "Mercedes-AMG GT3 2020", + "carcfg": -1, + "champ_points": 93, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -175849, + "cust_id": 1060062, + "display_name": "Marvin Bär", + "aggregate_champ_points": 93, + "ai": false, + "average_lap": 1067074, + "best_lap_num": 393, + "best_lap_time": 1047142, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 156, + "car_name": "Mercedes-AMG GT3 2020", + "carcfg": -1, + "champ_points": 93, + "class_interval": -1, + "country_code": "DE", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 31, + "finish_position_in_class": 11, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 49, + "color1": "ffffff", + "color2": "bbbbbb", + "color3": "4a4a4a", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 21, + "interval": -1, + "laps_complete": 220, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 156, + "pattern": 0, + "color1": "000000", + "color2": "08ad22", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "78", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 99, + "new_cpi": 92.41379, + "new_license_level": 19, + "new_sub_level": 399, + "new_ttrating": 1350, + "newi_rating": 3092, + "old_cpi": 42.426422, + "old_license_level": 18, + "old_sub_level": 237, + "old_ttrating": 1350, + "oldi_rating": 3083, + "opt_laps_complete": 0, + "position": 31, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 37, + "starting_position_in_class": 11, + "suit": { + "pattern": 29, + "color1": "00ff19", + "color2": "04ff00", + "color3": "42ff00" + }, + "watched": false, + "weight_penalty_kg": 3 + }, + { + "team_id": -175849, + "cust_id": 314054, + "display_name": "Jan-Eike Zanders", + "aggregate_champ_points": 93, + "ai": false, + "average_lap": 1071156, + "best_lap_num": 330, + "best_lap_time": 1049933, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 156, + "car_name": "Mercedes-AMG GT3 2020", + "carcfg": -1, + "champ_points": 93, + "class_interval": -1, + "country_code": "DE", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 31, + "finish_position_in_class": 11, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": true, + "helmet": { + "pattern": 8, + "color1": "47190b", + "color2": "111111", + "color3": "ffee47", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 44, + "interval": -1, + "laps_complete": 214, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 156, + "pattern": 0, + "color1": "000000", + "color2": "08ad22", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "78", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 99, + "new_cpi": 53.88748, + "new_license_level": 18, + "new_sub_level": 274, + "new_ttrating": 1350, + "newi_rating": 2504, + "old_cpi": 40.080284, + "old_license_level": 18, + "old_sub_level": 229, + "old_ttrating": 1350, + "oldi_rating": 2496, + "opt_laps_complete": 0, + "position": 31, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 37, + "starting_position_in_class": 11, + "suit": { + "pattern": 29, + "color1": "00ff19", + "color2": "04ff00", + "color3": "42ff00" + }, + "watched": false, + "weight_penalty_kg": 3 + }, + { + "team_id": -175849, + "cust_id": 1347955, + "display_name": "Kai Kuhlmann", + "aggregate_champ_points": 93, + "ai": false, + "average_lap": 1089556, + "best_lap_num": 515, + "best_lap_time": 1053140, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 156, + "car_name": "Mercedes-AMG GT3 2020", + "carcfg": -1, + "champ_points": 93, + "class_interval": -1, + "country_code": "DE", + "division": 5, + "division_name": "Division 6", + "drop_race": false, + "finish_position": 31, + "finish_position_in_class": 11, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "000000", + "color2": "000000", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 23, + "interval": -1, + "laps_complete": 183, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 156, + "pattern": 0, + "color1": "000000", + "color2": "08ad22", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "78", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 99, + "new_cpi": 81.67377, + "new_license_level": 19, + "new_sub_level": 380, + "new_ttrating": 1350, + "newi_rating": 1918, + "old_cpi": 63.97849, + "old_license_level": 19, + "old_sub_level": 343, + "old_ttrating": 1350, + "oldi_rating": 1911, + "opt_laps_complete": 0, + "position": 31, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 37, + "starting_position_in_class": 11, + "suit": { + "pattern": 29, + "color1": "00ff19", + "color2": "04ff00", + "color3": "42ff00" + }, + "watched": false, + "weight_penalty_kg": 3 + }, + { + "team_id": -175849, + "cust_id": 1279309, + "display_name": "Damian Ziegler2", + "aggregate_champ_points": 93, + "ai": false, + "average_lap": 1096004, + "best_lap_num": 567, + "best_lap_time": 1059589, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 156, + "car_name": "Mercedes-AMG GT3 2020", + "carcfg": -1, + "champ_points": 93, + "class_interval": -1, + "country_code": "DE", + "division": 7, + "division_name": "Division 8", + "drop_race": false, + "finish_position": 31, + "finish_position_in_class": 11, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "00ffee", + "color2": "000aff", + "color3": "00ffee", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 21, + "interval": -1, + "laps_complete": 171, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 156, + "pattern": 0, + "color1": "000000", + "color2": "08ad22", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "78", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 99, + "new_cpi": 74.08013, + "new_license_level": 19, + "new_sub_level": 365, + "new_ttrating": 1350, + "newi_rating": 1573, + "old_cpi": 42.955307, + "old_license_level": 18, + "old_sub_level": 239, + "old_ttrating": 1350, + "oldi_rating": 1566, + "opt_laps_complete": 0, + "position": 31, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 37, + "starting_position_in_class": 11, + "suit": { + "pattern": 29, + "color1": "00ff19", + "color2": "04ff00", + "color3": "42ff00" + }, + "watched": false, + "weight_penalty_kg": 3 + } + ], + "drop_race": false, + "finish_position": 31, + "finish_position_in_class": 11, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 109, + "interval": -1, + "laps_complete": 788, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 156, + "pattern": 0, + "color1": "000000", + "color2": "08ad22", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "78", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 99, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 31, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 37, + "starting_position_in_class": 11, + "suit": { + "pattern": 29, + "color1": "00ff19", + "color2": "04ff00", + "color3": "42ff00" + }, + "watched": false, + "weight_penalty_kg": 3 + }, + { + "team_id": -224061, + "display_name": "Pineapple Racing Club", + "aggregate_champ_points": 88, + "ai": false, + "average_lap": 1098953, + "best_lap_num": 25, + "best_lap_time": 1047073, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 185, + "car_name": "Ford Mustang GT3", + "carcfg": -1, + "champ_points": 88, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -224061, + "cust_id": 638937, + "display_name": "Pawel Dominiak", + "aggregate_champ_points": 88, + "ai": false, + "average_lap": 1079526, + "best_lap_num": 190, + "best_lap_time": 1048527, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 185, + "car_name": "Ford Mustang GT3", + "carcfg": -1, + "champ_points": 88, + "class_interval": -1, + "country_code": "PL", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 32, + "finish_position_in_class": 12, + "flair_id": 167, + "flair_name": "Poland", + "flair_shortname": "POL", + "friend": false, + "helmet": { + "pattern": 68, + "color1": "ffffff", + "color2": "00a3ff", + "color3": "00f7ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 9, + "interval": -1, + "laps_complete": 180, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 185, + "pattern": 12, + "color1": "e3ff54", + "color2": "000000", + "color3": "004092", + "number_font": 0, + "number_color1": "004092", + "number_color2": "ffffff", + "number_color3": "777777", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "14", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 101.919876, + "new_license_level": 20, + "new_sub_level": 455, + "new_ttrating": 1350, + "newi_rating": 2530, + "old_cpi": 36.505352, + "old_license_level": 18, + "old_sub_level": 215, + "old_ttrating": 1350, + "oldi_rating": 2524, + "opt_laps_complete": 0, + "position": 32, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 38, + "starting_position_in_class": 12, + "suit": { + "pattern": 19, + "color1": "252525", + "color2": "7952a2", + "color3": "ecef00" + }, + "watched": false, + "weight_penalty_kg": 10 + }, + { + "team_id": -224061, + "cust_id": 301782, + "display_name": "Ben Cooper5", + "aggregate_champ_points": 88, + "ai": false, + "average_lap": 1074142, + "best_lap_num": 25, + "best_lap_time": 1047073, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 185, + "car_name": "Ford Mustang GT3", + "carcfg": -1, + "champ_points": 88, + "class_interval": -1, + "country_code": "GB", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 32, + "finish_position_in_class": 12, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 46, + "color1": "565555", + "color2": "fff500", + "color3": "ae0077", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 14, + "interval": -1, + "laps_complete": 161, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 185, + "pattern": 12, + "color1": "e3ff54", + "color2": "000000", + "color3": "004092", + "number_font": 0, + "number_color1": "004092", + "number_color2": "ffffff", + "number_color3": "777777", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "14", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 158.22897, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 3233, + "old_cpi": 202.223, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 3228, + "opt_laps_complete": 0, + "position": 32, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 38, + "starting_position_in_class": 12, + "suit": { + "pattern": 19, + "color1": "252525", + "color2": "7952a2", + "color3": "ecef00" + }, + "watched": false, + "weight_penalty_kg": 10 + }, + { + "team_id": -224061, + "cust_id": 407913, + "display_name": "Dale Jackson", + "aggregate_champ_points": 88, + "ai": false, + "average_lap": 1083572, + "best_lap_num": 531, + "best_lap_time": 1052749, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 185, + "car_name": "Ford Mustang GT3", + "carcfg": -1, + "champ_points": 88, + "class_interval": -1, + "country_code": "CA", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 32, + "finish_position_in_class": 12, + "flair_id": 39, + "flair_name": "Canada", + "flair_shortname": "CAN", + "friend": false, + "helmet": { + "pattern": 0, + "color1": "ffe500", + "color2": "ffde00", + "color3": "ffed00", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 26, + "interval": -1, + "laps_complete": 160, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 185, + "pattern": 12, + "color1": "e3ff54", + "color2": "000000", + "color3": "004092", + "number_font": 0, + "number_color1": "004092", + "number_color2": "ffffff", + "number_color3": "777777", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "14", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 63.47874, + "new_license_level": 18, + "new_sub_level": 298, + "new_ttrating": 1350, + "newi_rating": 2370, + "old_cpi": 46.27041, + "old_license_level": 18, + "old_sub_level": 251, + "old_ttrating": 1350, + "oldi_rating": 2365, + "opt_laps_complete": 0, + "position": 32, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 38, + "starting_position_in_class": 12, + "suit": { + "pattern": 19, + "color1": "252525", + "color2": "7952a2", + "color3": "ecef00" + }, + "watched": false, + "weight_penalty_kg": 10 + }, + { + "team_id": -224061, + "cust_id": 930792, + "display_name": "Daniel Marshall8", + "aggregate_champ_points": 88, + "ai": false, + "average_lap": 1118998, + "best_lap_num": 341, + "best_lap_time": 1066673, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 185, + "car_name": "Ford Mustang GT3", + "carcfg": -1, + "champ_points": 88, + "class_interval": -1, + "country_code": "GB", + "division": 7, + "division_name": "Division 8", + "drop_race": false, + "finish_position": 32, + "finish_position_in_class": 12, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "ffffff", + "color2": "ff3131", + "color3": "e4fd03", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 41, + "interval": -1, + "laps_complete": 150, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 185, + "pattern": 12, + "color1": "e3ff54", + "color2": "000000", + "color3": "004092", + "number_font": 0, + "number_color1": "004092", + "number_color2": "ffffff", + "number_color3": "777777", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "14", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 32.370667, + "new_license_level": 11, + "new_sub_level": 352, + "new_ttrating": 1350, + "newi_rating": 1217, + "old_cpi": 23.752806, + "old_license_level": 11, + "old_sub_level": 304, + "old_ttrating": 1350, + "oldi_rating": 1212, + "opt_laps_complete": 0, + "position": 32, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 38, + "starting_position_in_class": 12, + "suit": { + "pattern": 19, + "color1": "252525", + "color2": "7952a2", + "color3": "ecef00" + }, + "watched": false, + "weight_penalty_kg": 10 + }, + { + "team_id": -224061, + "cust_id": 295562, + "display_name": "David Brown23", + "aggregate_champ_points": 88, + "ai": false, + "average_lap": 1110138, + "best_lap_num": 465, + "best_lap_time": 1057464, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 185, + "car_name": "Ford Mustang GT3", + "carcfg": -1, + "champ_points": 88, + "class_interval": -1, + "country_code": "GB", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 32, + "finish_position_in_class": 12, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "6a07e9", + "color2": "ccff00", + "color3": "2d2961", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 16, + "interval": -1, + "laps_complete": 136, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 185, + "pattern": 12, + "color1": "e3ff54", + "color2": "000000", + "color3": "004092", + "number_font": 0, + "number_color1": "004092", + "number_color2": "ffffff", + "number_color3": "777777", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "14", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 86.30251, + "new_license_level": 19, + "new_sub_level": 388, + "new_ttrating": 1350, + "newi_rating": 2284, + "old_cpi": 72.52085, + "old_license_level": 19, + "old_sub_level": 362, + "old_ttrating": 1350, + "oldi_rating": 2280, + "opt_laps_complete": 0, + "position": 32, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 38, + "starting_position_in_class": 12, + "suit": { + "pattern": 19, + "color1": "252525", + "color2": "7952a2", + "color3": "ecef00" + }, + "watched": false, + "weight_penalty_kg": 10 + } + ], + "drop_race": false, + "finish_position": 32, + "finish_position_in_class": 12, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 106, + "interval": -1, + "laps_complete": 787, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 185, + "pattern": 12, + "color1": "e3ff54", + "color2": "000000", + "color3": "004092", + "number_font": 0, + "number_color1": "004092", + "number_color2": "ffffff", + "number_color3": "777777", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "14", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 32, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 38, + "starting_position_in_class": 12, + "suit": { + "pattern": 19, + "color1": "252525", + "color2": "7952a2", + "color3": "ecef00" + }, + "watched": false, + "weight_penalty_kg": 10 + }, + { + "team_id": -327700, + "display_name": "SFR ITALIA", + "aggregate_champ_points": 84, + "ai": false, + "average_lap": 1101454, + "best_lap_num": 385, + "best_lap_time": 1045474, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 84, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -327700, + "cust_id": 1005007, + "display_name": "Andrea Lamponi", + "aggregate_champ_points": 84, + "ai": false, + "average_lap": 1090352, + "best_lap_num": 603, + "best_lap_time": 1047058, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 84, + "class_interval": -1, + "country_code": "IT", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 33, + "finish_position_in_class": 13, + "flair_id": 101, + "flair_name": "Italy", + "flair_shortname": "ITA", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "5481fc", + "color2": "ffffff", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 46, + "interval": -1, + "laps_complete": 295, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 11, + "color1": "D4FF0F", + "color2": "00FF00", + "color3": "111111", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "19", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 75.235085, + "new_license_level": 19, + "new_sub_level": 367, + "new_ttrating": 1302, + "newi_rating": 2284, + "old_cpi": 72.3915, + "old_license_level": 19, + "old_sub_level": 362, + "old_ttrating": 1302, + "oldi_rating": 2276, + "opt_laps_complete": 0, + "position": 33, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 53, + "starting_position_in_class": 27, + "suit": { + "pattern": 22, + "color1": "faff00", + "color2": "000000", + "color3": "7ef22e" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -327700, + "cust_id": 967697, + "display_name": "Fabio Lamberto", + "aggregate_champ_points": 84, + "ai": false, + "average_lap": 1075330, + "best_lap_num": 385, + "best_lap_time": 1045474, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 84, + "class_interval": -1, + "country_code": "IT", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 33, + "finish_position_in_class": 13, + "flair_id": 101, + "flair_name": "Italy", + "flair_shortname": "ITA", + "friend": false, + "helmet": { + "pattern": 36, + "color1": "d4ff0f", + "color2": "00ff00", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 39, + "interval": -1, + "laps_complete": 270, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 11, + "color1": "D4FF0F", + "color2": "00FF00", + "color3": "111111", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "19", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 76.99228, + "new_license_level": 19, + "new_sub_level": 371, + "new_ttrating": 1715, + "newi_rating": 1903, + "old_cpi": 49.640137, + "old_license_level": 18, + "old_sub_level": 261, + "old_ttrating": 1715, + "oldi_rating": 1896, + "opt_laps_complete": 0, + "position": 33, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 53, + "starting_position_in_class": 27, + "suit": { + "pattern": 22, + "color1": "faff00", + "color2": "000000", + "color3": "7ef22e" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -327700, + "cust_id": 814236, + "display_name": "Alan Binacchi", + "aggregate_champ_points": 84, + "ai": false, + "average_lap": 1109829, + "best_lap_num": 81, + "best_lap_time": 1049096, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 84, + "class_interval": -1, + "country_code": "IT", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 33, + "finish_position_in_class": 13, + "flair_id": 101, + "flair_name": "Italy", + "flair_shortname": "ITA", + "friend": false, + "helmet": { + "pattern": 11, + "color1": "10e632", + "color2": "daed1c", + "color3": "cccccc", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 32, + "interval": -1, + "laps_complete": 220, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 11, + "color1": "D4FF0F", + "color2": "00FF00", + "color3": "111111", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "19", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 77.29383, + "new_license_level": 19, + "new_sub_level": 372, + "new_ttrating": 1309, + "newi_rating": 2487, + "old_cpi": 67.18803, + "old_license_level": 19, + "old_sub_level": 350, + "old_ttrating": 1309, + "oldi_rating": 2481, + "opt_laps_complete": 0, + "position": 33, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 53, + "starting_position_in_class": 27, + "suit": { + "pattern": 22, + "color1": "faff00", + "color2": "000000", + "color3": "7ef22e" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 33, + "finish_position_in_class": 13, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 117, + "interval": -1, + "laps_complete": 785, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 11, + "color1": "D4FF0F", + "color2": "00FF00", + "color3": "111111", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "19", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 33, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 53, + "starting_position_in_class": 27, + "suit": { + "pattern": 22, + "color1": "faff00", + "color2": "000000", + "color3": "7ef22e" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -298205, + "display_name": "CDLC", + "aggregate_champ_points": 79, + "ai": false, + "average_lap": 1105729, + "best_lap_num": 296, + "best_lap_time": 1050186, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 188, + "car_name": "McLaren 720S GT3 EVO", + "carcfg": -1, + "champ_points": 79, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -298205, + "cust_id": 692986, + "display_name": "Andreas Carlsson", + "aggregate_champ_points": 79, + "ai": false, + "average_lap": 1088416, + "best_lap_num": 296, + "best_lap_time": 1050186, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 188, + "car_name": "McLaren 720S GT3 EVO", + "carcfg": -1, + "champ_points": 79, + "class_interval": -1, + "country_code": "SE", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 34, + "finish_position_in_class": 14, + "flair_id": 203, + "flair_name": "Sweden", + "flair_shortname": "SWE", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "000000", + "color2": "1e1e1e", + "color3": "007dff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 11, + "interval": -1, + "laps_complete": 439, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 188, + "pattern": 4, + "color1": "0073d2", + "color2": "ff5c00", + "color3": "292d33", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "46", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 97, + "new_cpi": 336.55923, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1375, + "newi_rating": 2873, + "old_cpi": 138.13417, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1375, + "oldi_rating": 2867, + "opt_laps_complete": 0, + "position": 34, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 39, + "starting_position_in_class": 13, + "suit": { + "pattern": 31, + "color1": "000000", + "color2": "0378ff", + "color3": "ff4d00" + }, + "watched": false, + "weight_penalty_kg": 5 + }, + { + "team_id": -298205, + "cust_id": 340070, + "display_name": "Marco Henderson", + "aggregate_champ_points": 79, + "ai": false, + "average_lap": 1098248, + "best_lap_num": 468, + "best_lap_time": 1057543, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 188, + "car_name": "McLaren 720S GT3 EVO", + "carcfg": -1, + "champ_points": 79, + "class_interval": -1, + "country_code": "DE", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 34, + "finish_position_in_class": 14, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 58, + "color1": "000000", + "color2": "e9ed21", + "color3": "ff0000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 41, + "interval": -1, + "laps_complete": 343, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 188, + "pattern": 4, + "color1": "0073d2", + "color2": "ff5c00", + "color3": "292d33", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "46", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 97, + "new_cpi": 106.09341, + "new_license_level": 20, + "new_sub_level": 461, + "new_ttrating": 1350, + "newi_rating": 1709, + "old_cpi": 127.72311, + "old_license_level": 20, + "old_sub_level": 490, + "old_ttrating": 1350, + "oldi_rating": 1704, + "opt_laps_complete": 0, + "position": 34, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 39, + "starting_position_in_class": 13, + "suit": { + "pattern": 31, + "color1": "000000", + "color2": "0378ff", + "color3": "ff4d00" + }, + "watched": false, + "weight_penalty_kg": 5 + } + ], + "drop_race": false, + "finish_position": 34, + "finish_position_in_class": 14, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 52, + "interval": -1, + "laps_complete": 782, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 188, + "pattern": 4, + "color1": "0073d2", + "color2": "ff5c00", + "color3": "292d33", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "46", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 97, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 34, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 39, + "starting_position_in_class": 13, + "suit": { + "pattern": 31, + "color1": "000000", + "color2": "0378ff", + "color3": "ff4d00" + }, + "watched": false, + "weight_penalty_kg": 5 + }, + { + "team_id": -248147, + "display_name": "IPM Yellow", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 1115711, + "best_lap_num": 269, + "best_lap_time": 1048927, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 173, + "car_name": "Ferrari 296 GT3", + "carcfg": -1, + "champ_points": 75, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -248147, + "cust_id": 19071, + "display_name": "Peter Terrana", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 1076811, + "best_lap_num": 269, + "best_lap_time": 1048927, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 173, + "car_name": "Ferrari 296 GT3", + "carcfg": -1, + "champ_points": 75, + "class_interval": -1, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 35, + "finish_position_in_class": 15, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 34, + "color1": "DAF109", + "color2": "000000", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 30, + "interval": -1, + "laps_complete": 210, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 173, + "pattern": 9, + "color1": "ccf312", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "698", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 69.72993, + "new_license_level": 19, + "new_sub_level": 356, + "new_ttrating": 1350, + "newi_rating": 2620, + "old_cpi": 45.854206, + "old_license_level": 18, + "old_sub_level": 249, + "old_ttrating": 1350, + "oldi_rating": 2617, + "opt_laps_complete": 0, + "position": 35, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 44, + "starting_position_in_class": 18, + "suit": { + "pattern": 27, + "color1": "23231f", + "color2": "131415", + "color3": "f2f12c" + }, + "watched": false, + "weight_penalty_kg": 3 + }, + { + "team_id": -248147, + "cust_id": 816995, + "display_name": "Andrew L King", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 1092993, + "best_lap_num": 440, + "best_lap_time": 1054409, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 173, + "car_name": "Ferrari 296 GT3", + "carcfg": -1, + "champ_points": 75, + "class_interval": -1, + "country_code": "US", + "division": 5, + "division_name": "Division 6", + "drop_race": false, + "finish_position": 35, + "finish_position_in_class": 15, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 22, + "color1": "ffffff", + "color2": "000000", + "color3": "ff0000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 18, + "interval": -1, + "laps_complete": 176, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 173, + "pattern": 9, + "color1": "ccf312", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "698", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 82.34817, + "new_license_level": 16, + "new_sub_level": 481, + "new_ttrating": 1350, + "newi_rating": 1500, + "old_cpi": 42.822727, + "old_license_level": 14, + "old_sub_level": 295, + "old_ttrating": 1350, + "oldi_rating": 1498, + "opt_laps_complete": 0, + "position": 35, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 44, + "starting_position_in_class": 18, + "suit": { + "pattern": 27, + "color1": "23231f", + "color2": "131415", + "color3": "f2f12c" + }, + "watched": false, + "weight_penalty_kg": 3 + }, + { + "team_id": -248147, + "cust_id": 317035, + "display_name": "Riley Hawkins", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 1095546, + "best_lap_num": 649, + "best_lap_time": 1049063, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 173, + "car_name": "Ferrari 296 GT3", + "carcfg": -1, + "champ_points": 75, + "class_interval": -1, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 35, + "finish_position_in_class": 15, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 14, + "color1": "000000", + "color2": "d3f702", + "color3": "1f1f1f", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 10, + "interval": -1, + "laps_complete": 155, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 173, + "pattern": 9, + "color1": "ccf312", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "698", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 91.36659, + "new_license_level": 16, + "new_sub_level": 497, + "new_ttrating": 1350, + "newi_rating": 2143, + "old_cpi": 41.030315, + "old_license_level": 14, + "old_sub_level": 289, + "old_ttrating": 1350, + "oldi_rating": 2141, + "opt_laps_complete": 0, + "position": 35, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 44, + "starting_position_in_class": 18, + "suit": { + "pattern": 27, + "color1": "23231f", + "color2": "131415", + "color3": "f2f12c" + }, + "watched": false, + "weight_penalty_kg": 3 + }, + { + "team_id": -248147, + "cust_id": 231184, + "display_name": "John Szpyt", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 1113514, + "best_lap_num": 525, + "best_lap_time": 1052492, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 173, + "car_name": "Ferrari 296 GT3", + "carcfg": -1, + "champ_points": 75, + "class_interval": -1, + "country_code": "US", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 35, + "finish_position_in_class": 15, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "EFF141", + "color2": "000000", + "color3": "AE7E32", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 18, + "interval": -1, + "laps_complete": 121, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 173, + "pattern": 9, + "color1": "ccf312", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "698", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 92.23367, + "new_license_level": 20, + "new_sub_level": 440, + "new_ttrating": 1350, + "newi_rating": 2928, + "old_cpi": 101.18706, + "old_license_level": 20, + "old_sub_level": 454, + "old_ttrating": 1350, + "oldi_rating": 2927, + "opt_laps_complete": 0, + "position": 35, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 44, + "starting_position_in_class": 18, + "suit": { + "pattern": 27, + "color1": "23231f", + "color2": "131415", + "color3": "f2f12c" + }, + "watched": false, + "weight_penalty_kg": 3 + }, + { + "team_id": -248147, + "cust_id": 203002, + "display_name": "Yusef Rayyan", + "aggregate_champ_points": 75, + "ai": false, + "average_lap": 1095641, + "best_lap_num": 298, + "best_lap_time": 1049851, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 173, + "car_name": "Ferrari 296 GT3", + "carcfg": -1, + "champ_points": 75, + "class_interval": -1, + "country_code": "PS", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 35, + "finish_position_in_class": 15, + "flair_id": 160, + "flair_name": "Palestine", + "flair_shortname": "PSE", + "friend": false, + "helmet": { + "pattern": 45, + "color1": "ffffff", + "color2": "0047ff", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 11, + "interval": -1, + "laps_complete": 113, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 173, + "pattern": 9, + "color1": "ccf312", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "698", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 106.409164, + "new_license_level": 20, + "new_sub_level": 462, + "new_ttrating": 1350, + "newi_rating": 2061, + "old_cpi": 98.81735, + "old_license_level": 20, + "old_sub_level": 450, + "old_ttrating": 1350, + "oldi_rating": 2060, + "opt_laps_complete": 0, + "position": 35, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 44, + "starting_position_in_class": 18, + "suit": { + "pattern": 27, + "color1": "23231f", + "color2": "131415", + "color3": "f2f12c" + }, + "watched": false, + "weight_penalty_kg": 3 + } + ], + "drop_race": false, + "finish_position": 35, + "finish_position_in_class": 15, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 87, + "interval": -1, + "laps_complete": 775, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 173, + "pattern": 9, + "color1": "ccf312", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "698", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 35, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 44, + "starting_position_in_class": 18, + "suit": { + "pattern": 27, + "color1": "23231f", + "color2": "131415", + "color3": "f2f12c" + }, + "watched": false, + "weight_penalty_kg": 3 + }, + { + "team_id": -415465, + "display_name": "WFLM Motorsport Vortex", + "aggregate_champ_points": 71, + "ai": false, + "average_lap": 1115907, + "best_lap_num": 27, + "best_lap_time": 1046042, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 71, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -415465, + "cust_id": 884646, + "display_name": "Luc Sarramea", + "aggregate_champ_points": 71, + "ai": false, + "average_lap": 1084141, + "best_lap_num": 414, + "best_lap_time": 1049424, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 71, + "class_interval": -1, + "country_code": "FR", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 36, + "finish_position_in_class": 16, + "flair_id": 71, + "flair_name": "France", + "flair_shortname": "FRA", + "friend": false, + "helmet": { + "pattern": 54, + "color1": "ffffff", + "color2": "ebff00", + "color3": "a60ca5", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 22, + "interval": -1, + "laps_complete": 180, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 3, + "color1": "FF7000", + "color2": "73ECFF", + "color3": "0F0017", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "29", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 88.50855, + "new_license_level": 20, + "new_sub_level": 433, + "new_ttrating": 1350, + "newi_rating": 2035, + "old_cpi": 79.95873, + "old_license_level": 20, + "old_sub_level": 418, + "old_ttrating": 1350, + "oldi_rating": 2035, + "opt_laps_complete": 0, + "position": 36, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 43, + "starting_position_in_class": 17, + "suit": { + "pattern": 28, + "color1": "0f0017", + "color2": "ff0021", + "color3": "ddecec" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -415465, + "cust_id": 412861, + "display_name": "Gabin Berniere", + "aggregate_champ_points": 71, + "ai": false, + "average_lap": 1074226, + "best_lap_num": 331, + "best_lap_time": 1047698, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 71, + "class_interval": -1, + "country_code": "FR", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 36, + "finish_position_in_class": 16, + "flair_id": 71, + "flair_name": "France", + "flair_shortname": "FRA", + "friend": false, + "helmet": { + "pattern": 22, + "color1": "247813", + "color2": "adab00", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 29, + "interval": -1, + "laps_complete": 175, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 3, + "color1": "FF7000", + "color2": "73ECFF", + "color3": "0F0017", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "29", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 72.100784, + "new_license_level": 20, + "new_sub_level": 402, + "new_ttrating": 1350, + "newi_rating": 2364, + "old_cpi": 71.67104, + "old_license_level": 20, + "old_sub_level": 401, + "old_ttrating": 1350, + "oldi_rating": 2363, + "opt_laps_complete": 0, + "position": 36, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 43, + "starting_position_in_class": 17, + "suit": { + "pattern": 28, + "color1": "0f0017", + "color2": "ff0021", + "color3": "ddecec" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -415465, + "cust_id": 66635, + "display_name": "Pascal Chauveau", + "aggregate_champ_points": 71, + "ai": false, + "average_lap": 1119207, + "best_lap_num": 271, + "best_lap_time": 1055925, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 71, + "class_interval": -1, + "country_code": "FR", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 36, + "finish_position_in_class": 16, + "flair_id": 71, + "flair_name": "France", + "flair_shortname": "FRA", + "friend": false, + "helmet": { + "pattern": 34, + "color1": "000000", + "color2": "040405", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 12, + "interval": -1, + "laps_complete": 159, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 3, + "color1": "FF7000", + "color2": "73ECFF", + "color3": "0F0017", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "29", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 109.85736, + "new_license_level": 20, + "new_sub_level": 467, + "new_ttrating": 1350, + "newi_rating": 1897, + "old_cpi": 85.71045, + "old_license_level": 20, + "old_sub_level": 428, + "old_ttrating": 1350, + "oldi_rating": 1896, + "opt_laps_complete": 0, + "position": 36, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 43, + "starting_position_in_class": 17, + "suit": { + "pattern": 28, + "color1": "0f0017", + "color2": "ff0021", + "color3": "ddecec" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -415465, + "cust_id": 916540, + "display_name": "Sylvain Dury", + "aggregate_champ_points": 71, + "ai": false, + "average_lap": 1108767, + "best_lap_num": 599, + "best_lap_time": 1052803, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 71, + "class_interval": -1, + "country_code": "FR", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 36, + "finish_position_in_class": 16, + "flair_id": 71, + "flair_name": "France", + "flair_shortname": "FRA", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "ffffff", + "color2": "000000", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 10, + "interval": -1, + "laps_complete": 141, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 3, + "color1": "FF7000", + "color2": "73ECFF", + "color3": "0F0017", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "29", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 122.00728, + "new_license_level": 20, + "new_sub_level": 483, + "new_ttrating": 1350, + "newi_rating": 2069, + "old_cpi": 100.24075, + "old_license_level": 20, + "old_sub_level": 453, + "old_ttrating": 1350, + "oldi_rating": 2068, + "opt_laps_complete": 0, + "position": 36, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 43, + "starting_position_in_class": 17, + "suit": { + "pattern": 28, + "color1": "0f0017", + "color2": "ff0021", + "color3": "ddecec" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -415465, + "cust_id": 1294295, + "display_name": "Florïan Chevreuïl", + "aggregate_champ_points": 71, + "ai": false, + "average_lap": 1082097, + "best_lap_num": 27, + "best_lap_time": 1046042, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 71, + "class_interval": -1, + "country_code": "FR", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 36, + "finish_position_in_class": 16, + "flair_id": 71, + "flair_name": "France", + "flair_shortname": "FRA", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 42, + "interval": -1, + "laps_complete": 120, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 3, + "color1": "FF7000", + "color2": "73ECFF", + "color3": "0F0017", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "29", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 33.223705, + "new_license_level": 17, + "new_sub_level": 156, + "new_ttrating": 1350, + "newi_rating": 2683, + "old_cpi": 31.96522, + "old_license_level": 17, + "old_sub_level": 150, + "old_ttrating": 1350, + "oldi_rating": 2683, + "opt_laps_complete": 0, + "position": 36, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 43, + "starting_position_in_class": 17, + "suit": { + "pattern": 28, + "color1": "0f0017", + "color2": "ff0021", + "color3": "ddecec" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 36, + "finish_position_in_class": 16, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 115, + "interval": -1, + "laps_complete": 775, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 3, + "color1": "FF7000", + "color2": "73ECFF", + "color3": "0F0017", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "29", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 36, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 43, + "starting_position_in_class": 17, + "suit": { + "pattern": 28, + "color1": "0f0017", + "color2": "ff0021", + "color3": "ddecec" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -471181, + "display_name": "PRS Team Europe", + "aggregate_champ_points": 66, + "ai": false, + "average_lap": 1124011, + "best_lap_num": 199, + "best_lap_time": 1050125, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 185, + "car_name": "Ford Mustang GT3", + "carcfg": -1, + "champ_points": 66, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -471181, + "cust_id": 28014, + "display_name": "Ronny Kuritz", + "aggregate_champ_points": 66, + "ai": false, + "average_lap": 1149100, + "best_lap_num": 199, + "best_lap_time": 1050125, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 185, + "car_name": "Ford Mustang GT3", + "carcfg": -1, + "champ_points": 66, + "class_interval": -1, + "country_code": "DE", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 37, + "finish_position_in_class": 17, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 4, + "color1": "000000", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 30, + "interval": -1, + "laps_complete": 226, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 185, + "pattern": 20, + "color1": "515151", + "color2": "FFFFFF", + "color3": "000000", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "16", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 123.47534, + "new_license_level": 20, + "new_sub_level": 485, + "new_ttrating": 1374, + "newi_rating": 3246, + "old_cpi": 271.7144, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1374, + "oldi_rating": 3248, + "opt_laps_complete": 0, + "position": 37, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 56, + "starting_position_in_class": 30, + "suit": { + "pattern": 3, + "color1": "0083ff", + "color2": "ffffff", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 10 + }, + { + "team_id": -471181, + "cust_id": 524603, + "display_name": "Philip Zangger", + "aggregate_champ_points": 66, + "ai": false, + "average_lap": 1084973, + "best_lap_num": 269, + "best_lap_time": 1055861, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 185, + "car_name": "Ford Mustang GT3", + "carcfg": -1, + "champ_points": 66, + "class_interval": -1, + "country_code": "AT", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 37, + "finish_position_in_class": 17, + "flair_id": 17, + "flair_name": "Austria", + "flair_shortname": "AUT", + "friend": false, + "helmet": { + "pattern": 35, + "color1": "37b7ff", + "color2": "0083ff", + "color3": "0030ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 13, + "interval": -1, + "laps_complete": 193, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 185, + "pattern": 20, + "color1": "515151", + "color2": "FFFFFF", + "color3": "000000", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "16", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 191.81573, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2254, + "old_cpi": 228.99771, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 2255, + "opt_laps_complete": 0, + "position": 37, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 56, + "starting_position_in_class": 30, + "suit": { + "pattern": 3, + "color1": "0083ff", + "color2": "ffffff", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 10 + }, + { + "team_id": -471181, + "cust_id": 360197, + "display_name": "Andreas Herrmann", + "aggregate_champ_points": 66, + "ai": false, + "average_lap": 1133251, + "best_lap_num": 144, + "best_lap_time": 1064588, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 185, + "car_name": "Ford Mustang GT3", + "carcfg": -1, + "champ_points": 66, + "class_interval": -1, + "country_code": "DE", + "division": 6, + "division_name": "Division 7", + "drop_race": false, + "finish_position": 37, + "finish_position_in_class": 17, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 17, + "color1": "e3230d", + "color2": "ccff00", + "color3": "2f1670", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 23, + "interval": -1, + "laps_complete": 185, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 185, + "pattern": 20, + "color1": "515151", + "color2": "FFFFFF", + "color3": "000000", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "16", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 97.70701, + "new_license_level": 20, + "new_sub_level": 449, + "new_ttrating": 1350, + "newi_rating": 1300, + "old_cpi": 98.205894, + "old_license_level": 20, + "old_sub_level": 449, + "old_ttrating": 1350, + "oldi_rating": 1301, + "opt_laps_complete": 0, + "position": 37, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 56, + "starting_position_in_class": 30, + "suit": { + "pattern": 3, + "color1": "0083ff", + "color2": "ffffff", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 10 + }, + { + "team_id": -471181, + "cust_id": 36064, + "display_name": "Holger Kluener", + "aggregate_champ_points": 66, + "ai": false, + "average_lap": 1081909, + "best_lap_num": 112, + "best_lap_time": 1052851, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 185, + "car_name": "Ford Mustang GT3", + "carcfg": -1, + "champ_points": 66, + "class_interval": -1, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 37, + "finish_position_in_class": 17, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "fbf3f3", + "color2": "6a6c6b", + "color3": "2540e9", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 26, + "interval": -1, + "laps_complete": 165, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 185, + "pattern": 20, + "color1": "515151", + "color2": "FFFFFF", + "color3": "000000", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "16", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 93.92481, + "new_license_level": 20, + "new_sub_level": 443, + "new_ttrating": 1364, + "newi_rating": 2459, + "old_cpi": 120.59289, + "old_license_level": 20, + "old_sub_level": 481, + "old_ttrating": 1364, + "oldi_rating": 2460, + "opt_laps_complete": 0, + "position": 37, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 56, + "starting_position_in_class": 30, + "suit": { + "pattern": 3, + "color1": "0083ff", + "color2": "ffffff", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 10 + } + ], + "drop_race": false, + "finish_position": 37, + "finish_position_in_class": 17, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 92, + "interval": -1, + "laps_complete": 769, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 185, + "pattern": 20, + "color1": "515151", + "color2": "FFFFFF", + "color3": "000000", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "16", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 37, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 56, + "starting_position_in_class": 30, + "suit": { + "pattern": 3, + "color1": "0083ff", + "color2": "ffffff", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 10 + }, + { + "team_id": -159911, + "display_name": "Austrian Simracers Blue", + "aggregate_champ_points": 62, + "ai": false, + "average_lap": 1171829, + "best_lap_num": 469, + "best_lap_time": 1043770, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 62, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -159911, + "cust_id": 672284, + "display_name": "Steven Felber", + "aggregate_champ_points": 62, + "ai": false, + "average_lap": 1111150, + "best_lap_num": 541, + "best_lap_time": 1053265, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 62, + "class_interval": -1, + "country_code": "DE", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 38, + "finish_position_in_class": 18, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 67, + "color1": "f00016", + "color2": "07f752", + "color3": "1a4b9b", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 32, + "interval": -1, + "laps_complete": 183, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "ffffff", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "255", + "wheel_color": "7a7767", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 74.18782, + "new_license_level": 19, + "new_sub_level": 365, + "new_ttrating": 1302, + "newi_rating": 2056, + "old_cpi": 85.77246, + "old_license_level": 19, + "old_sub_level": 387, + "old_ttrating": 1302, + "oldi_rating": 2058, + "opt_laps_complete": 0, + "position": 38, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 29, + "starting_position_in_class": 3, + "suit": { + "pattern": 19, + "color1": "000000", + "color2": "FFFFFF", + "color3": "FF0000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -159911, + "cust_id": 393889, + "display_name": "Stefan Kapeller", + "aggregate_champ_points": 62, + "ai": false, + "average_lap": 1080559, + "best_lap_num": 185, + "best_lap_time": 1048693, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 62, + "class_interval": -1, + "country_code": "AT", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 38, + "finish_position_in_class": 18, + "flair_id": 17, + "flair_name": "Austria", + "flair_shortname": "AUT", + "friend": false, + "helmet": { + "pattern": 3, + "color1": "000000", + "color2": "000000", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 21, + "interval": -1, + "laps_complete": 162, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "ffffff", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "255", + "wheel_color": "7a7767", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 73.49295, + "new_license_level": 19, + "new_sub_level": 364, + "new_ttrating": 1350, + "newi_rating": 2665, + "old_cpi": 48.046413, + "old_license_level": 18, + "old_sub_level": 256, + "old_ttrating": 1350, + "oldi_rating": 2667, + "opt_laps_complete": 0, + "position": 38, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 29, + "starting_position_in_class": 3, + "suit": { + "pattern": 19, + "color1": "000000", + "color2": "FFFFFF", + "color3": "FF0000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -159911, + "cust_id": 915496, + "display_name": "Julian Weilguny", + "aggregate_champ_points": 62, + "ai": false, + "average_lap": 1075531, + "best_lap_num": 340, + "best_lap_time": 1047882, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 62, + "class_interval": -1, + "country_code": "AT", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 38, + "finish_position_in_class": 18, + "flair_id": 17, + "flair_name": "Austria", + "flair_shortname": "AUT", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "ffffff", + "color2": "000000", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 47, + "interval": -1, + "laps_complete": 159, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "ffffff", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "255", + "wheel_color": "7a7767", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 37.487766, + "new_license_level": 17, + "new_sub_level": 175, + "new_ttrating": 1137, + "newi_rating": 2163, + "old_cpi": 30.539976, + "old_license_level": 17, + "old_sub_level": 143, + "old_ttrating": 1137, + "oldi_rating": 2165, + "opt_laps_complete": 0, + "position": 38, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 29, + "starting_position_in_class": 3, + "suit": { + "pattern": 19, + "color1": "000000", + "color2": "FFFFFF", + "color3": "FF0000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -159911, + "cust_id": 1356430, + "display_name": "Dominik Aumayr", + "aggregate_champ_points": 62, + "ai": false, + "average_lap": 1121887, + "best_lap_num": 244, + "best_lap_time": 1056552, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 62, + "class_interval": -1, + "country_code": "AT", + "division": 8, + "division_name": "Division 9", + "drop_race": false, + "finish_position": 38, + "finish_position_in_class": 18, + "flair_id": 17, + "flair_name": "Austria", + "flair_shortname": "AUT", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "2e358f", + "color2": "ec232d", + "color3": "0a0a0a", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 12, + "interval": -1, + "laps_complete": 118, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "ffffff", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "255", + "wheel_color": "7a7767", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 59.740463, + "new_license_level": 18, + "new_sub_level": 289, + "new_ttrating": 1350, + "newi_rating": 1560, + "old_cpi": 34.018543, + "old_license_level": 18, + "old_sub_level": 204, + "old_ttrating": 1350, + "oldi_rating": 1562, + "opt_laps_complete": 0, + "position": 38, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 29, + "starting_position_in_class": 3, + "suit": { + "pattern": 19, + "color1": "000000", + "color2": "FFFFFF", + "color3": "FF0000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -159911, + "cust_id": 1003691, + "display_name": "David Kinzlhofer", + "aggregate_champ_points": 62, + "ai": false, + "average_lap": 1113307, + "best_lap_num": 469, + "best_lap_time": 1043770, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 62, + "class_interval": -1, + "country_code": "AT", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 38, + "finish_position_in_class": 18, + "flair_id": 17, + "flair_name": "Austria", + "flair_shortname": "AUT", + "friend": false, + "helmet": { + "pattern": 36, + "color1": "8700ff", + "color2": "b500ff", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 16, + "interval": -1, + "laps_complete": 116, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "ffffff", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "255", + "wheel_color": "7a7767", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 59.09998, + "new_license_level": 18, + "new_sub_level": 287, + "new_ttrating": 1350, + "newi_rating": 2814, + "old_cpi": 39.52622, + "old_license_level": 18, + "old_sub_level": 227, + "old_ttrating": 1350, + "oldi_rating": 2816, + "opt_laps_complete": 0, + "position": 38, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 29, + "starting_position_in_class": 3, + "suit": { + "pattern": 19, + "color1": "000000", + "color2": "FFFFFF", + "color3": "FF0000" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 38, + "finish_position_in_class": 18, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 128, + "interval": -1, + "laps_complete": 738, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "ffffff", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "255", + "wheel_color": "7a7767", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 38, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 29, + "starting_position_in_class": 3, + "suit": { + "pattern": 19, + "color1": "000000", + "color2": "FFFFFF", + "color3": "FF0000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -333656, + "display_name": "Bite Point Racing", + "aggregate_champ_points": 57, + "ai": false, + "average_lap": 1175243, + "best_lap_num": 228, + "best_lap_time": 1045543, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 57, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -333656, + "cust_id": 944341, + "display_name": "Michael T Anderson", + "aggregate_champ_points": 57, + "ai": false, + "average_lap": 1117297, + "best_lap_num": 196, + "best_lap_time": 1049249, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 57, + "class_interval": -1, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 39, + "finish_position_in_class": 19, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 15, + "color1": "000000", + "color2": "7b7b7b", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 26, + "interval": -1, + "laps_complete": 168, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "fd0000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "45", + "wheel_color": "000000", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 65.23408, + "new_license_level": 19, + "new_sub_level": 346, + "new_ttrating": 1350, + "newi_rating": 2432, + "old_cpi": 44.956455, + "old_license_level": 18, + "old_sub_level": 246, + "old_ttrating": 1350, + "oldi_rating": 2437, + "opt_laps_complete": 0, + "position": 39, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 54, + "starting_position_in_class": 28, + "suit": { + "pattern": 32, + "color1": "000000", + "color2": "04db00", + "color3": "9800d7" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -333656, + "cust_id": 1118703, + "display_name": "Zach Houston", + "aggregate_champ_points": 57, + "ai": false, + "average_lap": 1126895, + "best_lap_num": 228, + "best_lap_time": 1045543, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 57, + "class_interval": -1, + "country_code": "US", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 39, + "finish_position_in_class": 19, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 47, + "color1": "ffffff", + "color2": "e3e3e3", + "color3": "fffbfb", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 16, + "interval": -1, + "laps_complete": 145, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "fd0000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "45", + "wheel_color": "000000", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 86.11366, + "new_license_level": 19, + "new_sub_level": 388, + "new_ttrating": 1350, + "newi_rating": 2043, + "old_cpi": 68.1075, + "old_license_level": 19, + "old_sub_level": 352, + "old_ttrating": 1350, + "oldi_rating": 2046, + "opt_laps_complete": 0, + "position": 39, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 54, + "starting_position_in_class": 28, + "suit": { + "pattern": 32, + "color1": "000000", + "color2": "04db00", + "color3": "9800d7" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -333656, + "cust_id": 936022, + "display_name": "Francis Crosby", + "aggregate_champ_points": 57, + "ai": false, + "average_lap": 1078108, + "best_lap_num": 485, + "best_lap_time": 1051367, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 57, + "class_interval": -1, + "country_code": "CA", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 39, + "finish_position_in_class": 19, + "flair_id": 39, + "flair_name": "Canada", + "flair_shortname": "CAN", + "friend": false, + "helmet": { + "pattern": 61, + "color1": "ff0000", + "color2": "f7f7f7", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 25, + "interval": -1, + "laps_complete": 121, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "fd0000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "45", + "wheel_color": "000000", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 57.7853, + "new_license_level": 19, + "new_sub_level": 328, + "new_ttrating": 1350, + "newi_rating": 2454, + "old_cpi": 58.822685, + "old_license_level": 19, + "old_sub_level": 330, + "old_ttrating": 1350, + "oldi_rating": 2457, + "opt_laps_complete": 0, + "position": 39, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 54, + "starting_position_in_class": 28, + "suit": { + "pattern": 32, + "color1": "000000", + "color2": "04db00", + "color3": "9800d7" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -333656, + "cust_id": 1118745, + "display_name": "John Bostwick", + "aggregate_champ_points": 57, + "ai": false, + "average_lap": 1095709, + "best_lap_num": 105, + "best_lap_time": 1052177, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 57, + "class_interval": -1, + "country_code": "US", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 39, + "finish_position_in_class": 19, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 57, + "color1": "ffffff", + "color2": "000000", + "color3": "006510", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 11, + "interval": -1, + "laps_complete": 94, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "fd0000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "45", + "wheel_color": "000000", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 62.90936, + "new_license_level": 18, + "new_sub_level": 297, + "new_ttrating": 1350, + "newi_rating": 1662, + "old_cpi": 44.14429, + "old_license_level": 18, + "old_sub_level": 243, + "old_ttrating": 1350, + "oldi_rating": 1664, + "opt_laps_complete": 0, + "position": 39, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 54, + "starting_position_in_class": 28, + "suit": { + "pattern": 32, + "color1": "000000", + "color2": "04db00", + "color3": "9800d7" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -333656, + "cust_id": 333541, + "display_name": "Jason Holland", + "aggregate_champ_points": 57, + "ai": false, + "average_lap": 1085336, + "best_lap_num": 316, + "best_lap_time": 1059764, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 57, + "class_interval": -1, + "country_code": "US", + "division": 5, + "division_name": "Division 6", + "drop_race": false, + "finish_position": 39, + "finish_position_in_class": 19, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 68, + "color1": "dff000", + "color2": "dbf709", + "color3": "f4f20c", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 6, + "interval": -1, + "laps_complete": 62, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "fd0000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "45", + "wheel_color": "000000", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 46.301888, + "new_license_level": 18, + "new_sub_level": 251, + "new_ttrating": 1350, + "newi_rating": 1758, + "old_cpi": 33.16012, + "old_license_level": 18, + "old_sub_level": 200, + "old_ttrating": 1350, + "oldi_rating": 1759, + "opt_laps_complete": 0, + "position": 39, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 54, + "starting_position_in_class": 28, + "suit": { + "pattern": 32, + "color1": "000000", + "color2": "04db00", + "color3": "9800d7" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -333656, + "cust_id": 76444, + "display_name": "David Turnbull", + "aggregate_champ_points": 57, + "ai": false, + "average_lap": 1339848, + "best_lap_num": 629, + "best_lap_time": 1049164, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 57, + "class_interval": -1, + "country_code": "PS", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 39, + "finish_position_in_class": 19, + "flair_id": 160, + "flair_name": "Palestine", + "flair_shortname": "PSE", + "friend": false, + "helmet": { + "pattern": 68, + "color1": "08ff08", + "color2": "08ff08", + "color3": "08ff08", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 19, + "interval": -1, + "laps_complete": 43, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "fd0000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "45", + "wheel_color": "000000", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 81.29756, + "new_license_level": 20, + "new_sub_level": 420, + "new_ttrating": 1350, + "newi_rating": 3365, + "old_cpi": 130.76617, + "old_license_level": 20, + "old_sub_level": 493, + "old_ttrating": 1350, + "oldi_rating": 3366, + "opt_laps_complete": 0, + "position": 39, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 54, + "starting_position_in_class": 28, + "suit": { + "pattern": 32, + "color1": "000000", + "color2": "04db00", + "color3": "9800d7" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 39, + "finish_position_in_class": 19, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 103, + "interval": -1, + "laps_complete": 633, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "fd0000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "45", + "wheel_color": "000000", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 39, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 54, + "starting_position_in_class": 28, + "suit": { + "pattern": 32, + "color1": "000000", + "color2": "04db00", + "color3": "9800d7" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -332725, + "display_name": "Miracle Kids Success Academy", + "aggregate_champ_points": 53, + "ai": false, + "average_lap": 1096667, + "best_lap_num": 205, + "best_lap_time": 1048784, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 206, + "car_name": "Aston Martin Vantage GT3 EVO", + "carcfg": -1, + "champ_points": 53, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -332725, + "cust_id": 920918, + "display_name": "Justin Noel", + "aggregate_champ_points": 53, + "ai": false, + "average_lap": 1097573, + "best_lap_num": 205, + "best_lap_time": 1048784, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 206, + "car_name": "Aston Martin Vantage GT3 EVO", + "carcfg": -1, + "champ_points": 53, + "class_interval": -1, + "country_code": "US", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 40, + "finish_position_in_class": 20, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 54, + "color1": "ffffff", + "color2": "ff0000", + "color3": "0003ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 19, + "interval": -1, + "laps_complete": 274, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 206, + "pattern": 19, + "color1": "FFFFFF", + "color2": "FF0000", + "color3": "0003FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "24", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 99, + "new_cpi": 133.95572, + "new_license_level": 20, + "new_sub_level": 497, + "new_ttrating": 1350, + "newi_rating": 3078, + "old_cpi": 48.731533, + "old_license_level": 18, + "old_sub_level": 258, + "old_ttrating": 1350, + "oldi_rating": 3089, + "opt_laps_complete": 0, + "position": 40, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 52, + "starting_position_in_class": 26, + "suit": { + "pattern": 0, + "color1": "2a3795", + "color2": "ec1c23", + "color3": "eeeeee" + }, + "watched": false, + "weight_penalty_kg": 12 + }, + { + "team_id": -332725, + "cust_id": 871024, + "display_name": "Oliver Noden-Mayor", + "aggregate_champ_points": 53, + "ai": false, + "average_lap": 1081764, + "best_lap_num": 559, + "best_lap_time": 1051290, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 206, + "car_name": "Aston Martin Vantage GT3 EVO", + "carcfg": -1, + "champ_points": 53, + "class_interval": -1, + "country_code": "GB", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 40, + "finish_position_in_class": 20, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 27, + "color1": "efff00", + "color2": "000000", + "color3": "ff00a1", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 32, + "interval": -1, + "laps_complete": 208, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 206, + "pattern": 19, + "color1": "FFFFFF", + "color2": "FF0000", + "color3": "0003FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "24", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 99, + "new_cpi": 65.09682, + "new_license_level": 19, + "new_sub_level": 346, + "new_ttrating": 1335, + "newi_rating": 1866, + "old_cpi": 38.145134, + "old_license_level": 18, + "old_sub_level": 221, + "old_ttrating": 1335, + "oldi_rating": 1875, + "opt_laps_complete": 0, + "position": 40, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 52, + "starting_position_in_class": 26, + "suit": { + "pattern": 0, + "color1": "2a3795", + "color2": "ec1c23", + "color3": "eeeeee" + }, + "watched": false, + "weight_penalty_kg": 12 + }, + { + "team_id": -332725, + "cust_id": 428248, + "display_name": "Travis Skrumeda", + "aggregate_champ_points": 53, + "ai": false, + "average_lap": 1084930, + "best_lap_num": 330, + "best_lap_time": 1055100, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 206, + "car_name": "Aston Martin Vantage GT3 EVO", + "carcfg": -1, + "champ_points": 53, + "class_interval": -1, + "country_code": "CA", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 40, + "finish_position_in_class": 20, + "flair_id": 39, + "flair_name": "Canada", + "flair_shortname": "CAN", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "000000", + "color2": "ffffff", + "color3": "ff0000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 8, + "interval": -1, + "laps_complete": 150, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 206, + "pattern": 19, + "color1": "FFFFFF", + "color2": "FF0000", + "color3": "0003FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "24", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 99, + "new_cpi": 120.023125, + "new_license_level": 20, + "new_sub_level": 480, + "new_ttrating": 1350, + "newi_rating": 1875, + "old_cpi": 73.85349, + "old_license_level": 19, + "old_sub_level": 365, + "old_ttrating": 1350, + "oldi_rating": 1881, + "opt_laps_complete": 0, + "position": 40, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 52, + "starting_position_in_class": 26, + "suit": { + "pattern": 0, + "color1": "2a3795", + "color2": "ec1c23", + "color3": "eeeeee" + }, + "watched": false, + "weight_penalty_kg": 12 + } + ], + "drop_race": false, + "finish_position": 40, + "finish_position_in_class": 20, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 59, + "interval": -1, + "laps_complete": 632, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 206, + "pattern": 19, + "color1": "FFFFFF", + "color2": "FF0000", + "color3": "0003FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "24", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 99, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 40, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 52, + "starting_position_in_class": 26, + "suit": { + "pattern": 0, + "color1": "2a3795", + "color2": "ec1c23", + "color3": "eeeeee" + }, + "watched": false, + "weight_penalty_kg": 12 + }, + { + "team_id": -142589, + "display_name": "Team Highside - Vette", + "aggregate_champ_points": 48, + "ai": false, + "average_lap": 1096161, + "best_lap_num": 294, + "best_lap_time": 1042746, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 184, + "car_name": "Chevrolet Corvette Z06 GT3.R", + "carcfg": -1, + "champ_points": 48, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -142589, + "cust_id": 45780, + "display_name": "Brandon Hastings", + "aggregate_champ_points": 48, + "ai": false, + "average_lap": 1082297, + "best_lap_num": 438, + "best_lap_time": 1051761, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 184, + "car_name": "Chevrolet Corvette Z06 GT3.R", + "carcfg": -1, + "champ_points": 48, + "class_interval": -1, + "country_code": "US", + "division": 7, + "division_name": "Division 8", + "drop_race": false, + "finish_position": 41, + "finish_position_in_class": 21, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 0, + "color1": "000000", + "color2": "000000", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 17, + "interval": -1, + "laps_complete": 203, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 184, + "pattern": 12, + "color1": "0085ff", + "color2": "0085ff", + "color3": "d50000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "242424", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "216", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 96, + "new_cpi": 108.082184, + "new_license_level": 20, + "new_sub_level": 464, + "new_ttrating": 1296, + "newi_rating": 1209, + "old_cpi": 52.402893, + "old_license_level": 18, + "old_sub_level": 269, + "old_ttrating": 1296, + "oldi_rating": 1216, + "opt_laps_complete": 0, + "position": 41, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 57, + "starting_position_in_class": 31, + "suit": { + "pattern": 25, + "color1": "FA7400", + "color2": "000000", + "color3": "FFFFFF" + }, + "watched": false, + "weight_penalty_kg": 10 + }, + { + "team_id": -142589, + "cust_id": 815454, + "display_name": "Ryszard Mann", + "aggregate_champ_points": 48, + "ai": false, + "average_lap": 1064624, + "best_lap_num": 294, + "best_lap_time": 1042746, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 184, + "car_name": "Chevrolet Corvette Z06 GT3.R", + "carcfg": -1, + "champ_points": 48, + "class_interval": -1, + "country_code": "PL", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 41, + "finish_position_in_class": 21, + "flair_id": 167, + "flair_name": "Poland", + "flair_shortname": "POL", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "111111", + "color2": "000000", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 9, + "interval": -1, + "laps_complete": 149, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 184, + "pattern": 12, + "color1": "0085ff", + "color2": "0085ff", + "color3": "d50000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "242424", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "216", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 96, + "new_cpi": 100.49302, + "new_license_level": 20, + "new_sub_level": 453, + "new_ttrating": 1350, + "newi_rating": 4058, + "old_cpi": 60.732594, + "old_license_level": 19, + "old_sub_level": 335, + "old_ttrating": 1350, + "oldi_rating": 4064, + "opt_laps_complete": 0, + "position": 41, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 57, + "starting_position_in_class": 31, + "suit": { + "pattern": 25, + "color1": "FA7400", + "color2": "000000", + "color3": "FFFFFF" + }, + "watched": false, + "weight_penalty_kg": 10 + }, + { + "team_id": -142589, + "cust_id": 132004, + "display_name": "Adam Benefiel", + "aggregate_champ_points": 48, + "ai": false, + "average_lap": 1074680, + "best_lap_num": 203, + "best_lap_time": 1044341, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 184, + "car_name": "Chevrolet Corvette Z06 GT3.R", + "carcfg": -1, + "champ_points": 48, + "class_interval": -1, + "country_code": "US", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 41, + "finish_position_in_class": 21, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "1495e6", + "color2": "080807", + "color3": "a5aaac", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 7, + "interval": -1, + "laps_complete": 147, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 184, + "pattern": 12, + "color1": "0085ff", + "color2": "0085ff", + "color3": "d50000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "242424", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "216", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 96, + "new_cpi": 202.51263, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 1856, + "old_cpi": 174.75714, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 1862, + "opt_laps_complete": 0, + "position": 41, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 57, + "starting_position_in_class": 31, + "suit": { + "pattern": 25, + "color1": "FA7400", + "color2": "000000", + "color3": "FFFFFF" + }, + "watched": false, + "weight_penalty_kg": 10 + }, + { + "team_id": -142589, + "cust_id": 112242, + "display_name": "Corey Heim", + "aggregate_champ_points": 48, + "ai": false, + "average_lap": 1172460, + "best_lap_num": 506, + "best_lap_time": 1045189, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 184, + "car_name": "Chevrolet Corvette Z06 GT3.R", + "carcfg": -1, + "champ_points": 48, + "class_interval": -1, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 41, + "finish_position_in_class": 21, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "ffffff", + "color2": "ff1a1d", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 9, + "interval": -1, + "laps_complete": 96, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 184, + "pattern": 12, + "color1": "0085ff", + "color2": "0085ff", + "color3": "d50000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "242424", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "216", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 96, + "new_cpi": 40.625633, + "new_license_level": 11, + "new_sub_level": 387, + "new_ttrating": 1350, + "newi_rating": 2624, + "old_cpi": 27.158167, + "old_license_level": 11, + "old_sub_level": 325, + "old_ttrating": 1350, + "oldi_rating": 2628, + "opt_laps_complete": 0, + "position": 41, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 57, + "starting_position_in_class": 31, + "suit": { + "pattern": 25, + "color1": "FA7400", + "color2": "000000", + "color3": "FFFFFF" + }, + "watched": false, + "weight_penalty_kg": 10 + } + ], + "drop_race": false, + "finish_position": 41, + "finish_position_in_class": 21, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 42, + "interval": -1, + "laps_complete": 595, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 184, + "pattern": 12, + "color1": "0085ff", + "color2": "0085ff", + "color3": "d50000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "242424", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "216", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": 96, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 41, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 57, + "starting_position_in_class": 31, + "suit": { + "pattern": 25, + "color1": "FA7400", + "color2": "000000", + "color3": "FFFFFF" + }, + "watched": false, + "weight_penalty_kg": 10 + }, + { + "team_id": -467249, + "display_name": "Simtec Racing Team #474", + "aggregate_champ_points": 44, + "ai": false, + "average_lap": 1585841, + "best_lap_num": 23, + "best_lap_time": 1044780, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 44, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -467249, + "cust_id": 1257116, + "display_name": "Ben Milden", + "aggregate_champ_points": 44, + "ai": false, + "average_lap": 1103265, + "best_lap_num": 288, + "best_lap_time": 1051828, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 44, + "class_interval": -1, + "country_code": "GB", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 42, + "finish_position_in_class": 22, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 7, + "color1": "6ae1d3", + "color2": "07f2cf", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 48, + "interval": -1, + "laps_complete": 179, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 3, + "color1": "42c6ef", + "color2": "111111", + "color3": "0b0b0a", + "number_font": 9, + "number_color1": "000000", + "number_color2": "f4f4f4", + "number_color3": "fafafa", + "number_slant": 0, + "sponsor1": 221, + "sponsor2": 0, + "car_number": "472", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 43.59755, + "new_license_level": 14, + "new_sub_level": 298, + "new_ttrating": 1350, + "newi_rating": 1814, + "old_cpi": 40.21797, + "old_license_level": 14, + "old_sub_level": 286, + "old_ttrating": 1350, + "oldi_rating": 1824, + "opt_laps_complete": 0, + "position": 42, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 30, + "starting_position_in_class": 4, + "suit": { + "pattern": 5, + "color1": "11e5e5", + "color2": "030303", + "color3": "030303" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -467249, + "cust_id": 849891, + "display_name": "Neil Woodward", + "aggregate_champ_points": 44, + "ai": false, + "average_lap": 1104196, + "best_lap_num": 322, + "best_lap_time": 1048060, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 44, + "class_interval": -1, + "country_code": "GB", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 42, + "finish_position_in_class": 22, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 68, + "color1": "ffffff", + "color2": "f40a0a", + "color3": "5481fc", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 24, + "interval": -1, + "laps_complete": 178, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 3, + "color1": "42c6ef", + "color2": "111111", + "color3": "0b0b0a", + "number_font": 9, + "number_color1": "000000", + "number_color2": "f4f4f4", + "number_color3": "fafafa", + "number_slant": 0, + "sponsor1": 221, + "sponsor2": 0, + "car_number": "472", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 64.28204, + "new_license_level": 12, + "new_sub_level": 499, + "new_ttrating": 1303, + "newi_rating": 2196, + "old_cpi": 43.666557, + "old_license_level": 11, + "old_sub_level": 398, + "old_ttrating": 1303, + "oldi_rating": 2206, + "opt_laps_complete": 0, + "position": 42, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 30, + "starting_position_in_class": 4, + "suit": { + "pattern": 5, + "color1": "11e5e5", + "color2": "030303", + "color3": "030303" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -467249, + "cust_id": 1174682, + "display_name": "Craig Law", + "aggregate_champ_points": 44, + "ai": false, + "average_lap": 1107913, + "best_lap_num": 23, + "best_lap_time": 1044780, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 44, + "class_interval": -1, + "country_code": "NIR", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 42, + "finish_position_in_class": 22, + "flair_id": 239, + "flair_name": "Northern Ireland", + "flair_shortname": "NIR", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "ffffff", + "color2": "4076bc", + "color3": "c8d92b", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 24, + "interval": -1, + "laps_complete": 128, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 3, + "color1": "42c6ef", + "color2": "111111", + "color3": "0b0b0a", + "number_font": 9, + "number_color1": "000000", + "number_color2": "f4f4f4", + "number_color3": "fafafa", + "number_slant": 0, + "sponsor1": 221, + "sponsor2": 0, + "car_number": "472", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 54.50814, + "new_license_level": 18, + "new_sub_level": 275, + "new_ttrating": 1350, + "newi_rating": 2559, + "old_cpi": 42.040413, + "old_license_level": 18, + "old_sub_level": 236, + "old_ttrating": 1350, + "oldi_rating": 2567, + "opt_laps_complete": 0, + "position": 42, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 30, + "starting_position_in_class": 4, + "suit": { + "pattern": 5, + "color1": "11e5e5", + "color2": "030303", + "color3": "030303" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -467249, + "cust_id": 1250818, + "display_name": "Peter Van Lieshout", + "aggregate_champ_points": 44, + "ai": false, + "average_lap": 1070092, + "best_lap_num": 372, + "best_lap_time": 1048683, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 44, + "class_interval": -1, + "country_code": "NL", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 42, + "finish_position_in_class": 22, + "flair_id": 146, + "flair_name": "Netherlands", + "flair_shortname": "NLD", + "friend": false, + "helmet": { + "pattern": 61, + "color1": "f21818", + "color2": "f1e7e8", + "color3": "0656db", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 6, + "interval": -1, + "laps_complete": 60, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 3, + "color1": "42c6ef", + "color2": "111111", + "color3": "0b0b0a", + "number_font": 9, + "number_color1": "000000", + "number_color2": "f4f4f4", + "number_color3": "fafafa", + "number_slant": 0, + "sponsor1": 221, + "sponsor2": 0, + "car_number": "472", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 47.407192, + "new_license_level": 18, + "new_sub_level": 254, + "new_ttrating": 1350, + "newi_rating": 2355, + "old_cpi": 34.515156, + "old_license_level": 18, + "old_sub_level": 206, + "old_ttrating": 1350, + "oldi_rating": 2359, + "opt_laps_complete": 0, + "position": 42, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 30, + "starting_position_in_class": 4, + "suit": { + "pattern": 5, + "color1": "11e5e5", + "color2": "030303", + "color3": "030303" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 42, + "finish_position_in_class": 22, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 102, + "interval": -1, + "laps_complete": 545, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 3, + "color1": "42c6ef", + "color2": "111111", + "color3": "0b0b0a", + "number_font": 9, + "number_color1": "000000", + "number_color2": "f4f4f4", + "number_color3": "fafafa", + "number_slant": 0, + "sponsor1": 221, + "sponsor2": 0, + "car_number": "472", + "wheel_color": "000000", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 42, + "qual_lap_time": -1, + "reason_out": "Running", + "reason_out_id": 0, + "starting_position": 30, + "starting_position_in_class": 4, + "suit": { + "pattern": 5, + "color1": "11e5e5", + "color2": "030303", + "color3": "030303" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -316329, + "display_name": "Milwauchibre Racing Team", + "aggregate_champ_points": 39, + "ai": false, + "average_lap": 1127442, + "best_lap_num": 40, + "best_lap_time": 1046986, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 39, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -316329, + "cust_id": 879626, + "display_name": "Nicolas De Saint Riquier", + "aggregate_champ_points": 39, + "ai": false, + "average_lap": 1110616, + "best_lap_num": 40, + "best_lap_time": 1046986, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 39, + "class_interval": -1, + "country_code": "FR", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 43, + "finish_position_in_class": 23, + "flair_id": 71, + "flair_name": "France", + "flair_shortname": "FRA", + "friend": false, + "helmet": { + "pattern": 35, + "color1": "000000", + "color2": "ff0000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 59, + "interval": -1, + "laps_complete": 255, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "FFFFFF", + "color2": "6900FF", + "color3": "FF00ED", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "27", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 49.39754, + "new_license_level": 18, + "new_sub_level": 260, + "new_ttrating": 1350, + "newi_rating": 2166, + "old_cpi": 32.16721, + "old_license_level": 17, + "old_sub_level": 151, + "old_ttrating": 1350, + "oldi_rating": 2187, + "opt_laps_complete": 0, + "position": 43, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 45, + "starting_position_in_class": 19, + "suit": { + "pattern": 22, + "color1": "404040", + "color2": "bebebe", + "color3": "b78a00" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -316329, + "cust_id": 371715, + "display_name": "Dimitri Picard", + "aggregate_champ_points": 39, + "ai": false, + "average_lap": 1132295, + "best_lap_num": 423, + "best_lap_time": 1050909, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 39, + "class_interval": -1, + "country_code": "FR", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 43, + "finish_position_in_class": 23, + "flair_id": 71, + "flair_name": "France", + "flair_shortname": "FRA", + "friend": false, + "helmet": { + "pattern": 48, + "color1": "404040", + "color2": "6949e9", + "color3": "b78a00", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 22, + "interval": -1, + "laps_complete": 220, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "FFFFFF", + "color2": "6900FF", + "color3": "FF00ED", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "27", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 94.97356, + "new_license_level": 20, + "new_sub_level": 444, + "new_ttrating": 1350, + "newi_rating": 2222, + "old_cpi": 70.97905, + "old_license_level": 19, + "old_sub_level": 359, + "old_ttrating": 1350, + "oldi_rating": 2241, + "opt_laps_complete": 0, + "position": 43, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 45, + "starting_position_in_class": 19, + "suit": { + "pattern": 22, + "color1": "404040", + "color2": "bebebe", + "color3": "b78a00" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 43, + "finish_position_in_class": 23, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 81, + "interval": -1, + "laps_complete": 475, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "FFFFFF", + "color2": "6900FF", + "color3": "FF00ED", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "27", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 43, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 45, + "starting_position_in_class": 19, + "suit": { + "pattern": 22, + "color1": "404040", + "color2": "bebebe", + "color3": "b78a00" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -246761, + "display_name": "Vortex Racing Alpha", + "aggregate_champ_points": 32, + "ai": false, + "average_lap": 1004897, + "best_lap_num": 361, + "best_lap_time": 936125, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 32, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -246761, + "cust_id": 447778, + "display_name": "craig Benefiel", + "aggregate_champ_points": 32, + "ai": false, + "average_lap": 963605, + "best_lap_num": 361, + "best_lap_time": 936125, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 32, + "class_interval": -1, + "country_code": "US", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 44, + "finish_position_in_class": 10, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "111111", + "color2": "cccccc", + "color3": "ed1c24", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 17, + "interval": -1, + "laps_complete": 168, + "laps_lead": 73, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 5, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 2, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "51", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 76.59716, + "new_license_level": 19, + "new_sub_level": 370, + "new_ttrating": 1350, + "newi_rating": 1974, + "old_cpi": 43.42212, + "old_license_level": 18, + "old_sub_level": 241, + "old_ttrating": 1350, + "oldi_rating": 1991, + "opt_laps_complete": 0, + "position": 44, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 1, + "starting_position_in_class": 1, + "suit": { + "pattern": 27, + "color1": "111111", + "color2": "83ccff", + "color3": "cccccc" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -246761, + "cust_id": 616203, + "display_name": "Bas Schilstra", + "aggregate_champ_points": 32, + "ai": false, + "average_lap": 975688, + "best_lap_num": 328, + "best_lap_time": 943707, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 32, + "class_interval": -1, + "country_code": "NL", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 44, + "finish_position_in_class": 10, + "flair_id": 146, + "flair_name": "Netherlands", + "flair_shortname": "NLD", + "friend": false, + "helmet": { + "pattern": 52, + "color1": "111111", + "color2": "83ccff", + "color3": "cccccc", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 4, + "interval": -1, + "laps_complete": 144, + "laps_lead": 142, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 5, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 2, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "51", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 106.54864, + "new_license_level": 16, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 1948, + "old_cpi": 40.78813, + "old_license_level": 14, + "old_sub_level": 288, + "old_ttrating": 1350, + "oldi_rating": 1963, + "opt_laps_complete": 0, + "position": 44, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 1, + "starting_position_in_class": 1, + "suit": { + "pattern": 27, + "color1": "111111", + "color2": "83ccff", + "color3": "cccccc" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -246761, + "cust_id": 764441, + "display_name": "Craig N Hayes", + "aggregate_champ_points": 32, + "ai": false, + "average_lap": 1052197, + "best_lap_num": 223, + "best_lap_time": 936974, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 32, + "class_interval": -1, + "country_code": "US", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 44, + "finish_position_in_class": 10, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 21, + "color1": "ffffff", + "color2": "447ac0", + "color3": "ee3442", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 24, + "interval": -1, + "laps_complete": 122, + "laps_lead": 83, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 5, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 2, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "51", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 54.297966, + "new_license_level": 18, + "new_sub_level": 275, + "new_ttrating": 1350, + "newi_rating": 3130, + "old_cpi": 45.711266, + "old_license_level": 18, + "old_sub_level": 249, + "old_ttrating": 1350, + "oldi_rating": 3143, + "opt_laps_complete": 0, + "position": 44, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 1, + "starting_position_in_class": 1, + "suit": { + "pattern": 27, + "color1": "111111", + "color2": "83ccff", + "color3": "cccccc" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 44, + "finish_position_in_class": 10, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 45, + "interval": -1, + "laps_complete": 434, + "laps_lead": 298, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 5, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 2, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "51", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 44, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 1, + "starting_position_in_class": 1, + "suit": { + "pattern": 27, + "color1": "111111", + "color2": "83ccff", + "color3": "cccccc" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -385439, + "display_name": "TRC Endurance 01", + "aggregate_champ_points": 12, + "ai": false, + "average_lap": 1087485, + "best_lap_num": 10, + "best_lap_time": 988667, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 12, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -385439, + "cust_id": 1118747, + "display_name": "Zack Heiderstadt", + "aggregate_champ_points": 12, + "ai": false, + "average_lap": 1020198, + "best_lap_num": 10, + "best_lap_time": 988667, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 12, + "class_interval": -1, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 45, + "finish_position_in_class": 10, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "aeaeae", + "color2": "0c00b1", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 10, + "interval": -1, + "laps_complete": 120, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 5, + "color1": "FFFFFF", + "color2": "941FB7", + "color3": "80FF00", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "9", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 70.23805, + "new_license_level": 16, + "new_sub_level": 457, + "new_ttrating": 1295, + "newi_rating": 3101, + "old_cpi": 38.609806, + "old_license_level": 14, + "old_sub_level": 279, + "old_ttrating": 1295, + "oldi_rating": 3129, + "opt_laps_complete": 0, + "position": 45, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 20, + "starting_position_in_class": 6, + "suit": { + "pattern": 30, + "color1": "2508d3", + "color2": "000000", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -385439, + "cust_id": 1242051, + "display_name": "Oliver Bird2", + "aggregate_champ_points": 12, + "ai": false, + "average_lap": 1096795, + "best_lap_num": 281, + "best_lap_time": 990692, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 12, + "class_interval": -1, + "country_code": "GB", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 45, + "finish_position_in_class": 10, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "1f2892", + "color2": "7de54c", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 8, + "interval": -1, + "laps_complete": 118, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 5, + "color1": "FFFFFF", + "color2": "941FB7", + "color3": "80FF00", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "9", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 103.03802, + "new_license_level": 20, + "new_sub_level": 457, + "new_ttrating": 1350, + "newi_rating": 2365, + "old_cpi": 73.883995, + "old_license_level": 19, + "old_sub_level": 365, + "old_ttrating": 1350, + "oldi_rating": 2392, + "opt_laps_complete": 0, + "position": 45, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 20, + "starting_position_in_class": 6, + "suit": { + "pattern": 30, + "color1": "2508d3", + "color2": "000000", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -385439, + "cust_id": 1119763, + "display_name": "Gavin Cambre", + "aggregate_champ_points": 12, + "ai": false, + "average_lap": 1138937, + "best_lap_num": 182, + "best_lap_time": 999036, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 12, + "class_interval": -1, + "country_code": "US", + "division": 5, + "division_name": "Division 6", + "drop_race": false, + "finish_position": 45, + "finish_position_in_class": 10, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 17, + "color1": "000000", + "color2": "fbfbfb", + "color3": "00fff2", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 8, + "interval": -1, + "laps_complete": 81, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 5, + "color1": "FFFFFF", + "color2": "941FB7", + "color3": "80FF00", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "9", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 66.35065, + "new_license_level": 19, + "new_sub_level": 348, + "new_ttrating": 1350, + "newi_rating": 1588, + "old_cpi": 47.03421, + "old_license_level": 18, + "old_sub_level": 253, + "old_ttrating": 1350, + "oldi_rating": 1607, + "opt_laps_complete": 0, + "position": 45, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 20, + "starting_position_in_class": 6, + "suit": { + "pattern": 30, + "color1": "2508d3", + "color2": "000000", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 45, + "finish_position_in_class": 10, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 26, + "interval": -1, + "laps_complete": 319, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 5, + "color1": "FFFFFF", + "color2": "941FB7", + "color3": "80FF00", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "9", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 45, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 20, + "starting_position_in_class": 6, + "suit": { + "pattern": 30, + "color1": "2508d3", + "color2": "000000", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -278104, + "display_name": "Melanzani Racing 102", + "aggregate_champ_points": 21, + "ai": false, + "average_lap": 1027463, + "best_lap_num": 12, + "best_lap_time": 940999, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 21, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -278104, + "cust_id": 119560, + "display_name": "Alvin Frauenknecht", + "aggregate_champ_points": 21, + "ai": false, + "average_lap": 968297, + "best_lap_num": 12, + "best_lap_time": 940999, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 21, + "class_interval": -1, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 46, + "finish_position_in_class": 11, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 63, + "color1": "000000", + "color2": "717171", + "color3": "e5ff00", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 9, + "interval": -1, + "laps_complete": 115, + "laps_lead": 1, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 0, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "cccccc", + "number_color3": "666666", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "4", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 76.36244, + "new_license_level": 19, + "new_sub_level": 370, + "new_ttrating": 1350, + "newi_rating": 2133, + "old_cpi": 31.524208, + "old_license_level": 17, + "old_sub_level": 148, + "old_ttrating": 1350, + "oldi_rating": 2162, + "opt_laps_complete": 0, + "position": 46, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 4, + "starting_position_in_class": 4, + "suit": { + "pattern": 22, + "color1": "000000", + "color2": "69b9eb", + "color3": "fa8c17" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -278104, + "cust_id": 218608, + "display_name": "Iven Daemmrich", + "aggregate_champ_points": 21, + "ai": false, + "average_lap": 1132683, + "best_lap_num": 108, + "best_lap_time": 946685, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 21, + "class_interval": -1, + "country_code": "CN", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 46, + "finish_position_in_class": 11, + "flair_id": 45, + "flair_name": "China", + "flair_shortname": "CHN", + "friend": false, + "helmet": { + "pattern": 68, + "color1": "ffffff", + "color2": "e81114", + "color3": "2A3795", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 8, + "interval": -1, + "laps_complete": 72, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 0, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "cccccc", + "number_color3": "666666", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "4", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 149.12212, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2673, + "old_cpi": 171.62451, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 2692, + "opt_laps_complete": 0, + "position": 46, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 4, + "starting_position_in_class": 4, + "suit": { + "pattern": 22, + "color1": "000000", + "color2": "69b9eb", + "color3": "fa8c17" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -278104, + "cust_id": 946764, + "display_name": "Thomas Vogel", + "aggregate_champ_points": 21, + "ai": false, + "average_lap": 975055, + "best_lap_num": 164, + "best_lap_time": 948854, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 21, + "class_interval": -1, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 46, + "finish_position_in_class": 11, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "020005", + "color2": "000000", + "color3": "6a07da", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 54, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 0, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "cccccc", + "number_color3": "666666", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "4", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 194.06157, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2231, + "old_cpi": 155.29985, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 2245, + "opt_laps_complete": 0, + "position": 46, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 4, + "starting_position_in_class": 4, + "suit": { + "pattern": 22, + "color1": "000000", + "color2": "69b9eb", + "color3": "fa8c17" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": false, + "finish_position": 46, + "finish_position_in_class": 11, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 17, + "interval": -1, + "laps_complete": 241, + "laps_lead": 1, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 0, + "color1": "ffffff", + "color2": "cccccc", + "color3": "666666", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "cccccc", + "number_color3": "666666", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "4", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 46, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 4, + "starting_position_in_class": 4, + "suit": { + "pattern": 22, + "color1": "000000", + "color2": "69b9eb", + "color3": "fa8c17" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -296646, + "display_name": "Uprise Motorsports", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -296646, + "cust_id": 320315, + "display_name": "AJ Heider", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1073534, + "best_lap_num": 27, + "best_lap_time": 1046940, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "BA", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 47, + "finish_position_in_class": 24, + "flair_id": 29, + "flair_name": "Bosnia and Herzegovina", + "flair_shortname": "BIH", + "friend": false, + "helmet": { + "pattern": 66, + "color1": "000000", + "color2": "0500cb", + "color3": "00d0ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 11, + "interval": -1, + "laps_complete": 91, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 2, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "53", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 94.6242, + "new_license_level": 20, + "new_sub_level": 444, + "new_ttrating": 1350, + "newi_rating": 2675, + "old_cpi": 97.26926, + "old_license_level": 20, + "old_sub_level": 448, + "old_ttrating": 1350, + "oldi_rating": 2698, + "opt_laps_complete": 0, + "position": 47, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 33, + "starting_position_in_class": 7, + "suit": { + "pattern": 4, + "color1": "000000", + "color2": "ff190f", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -296646, + "cust_id": 348147, + "display_name": "Connor Trifari", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1087287, + "best_lap_num": 116, + "best_lap_time": 1045236, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GS", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 47, + "finish_position_in_class": 24, + "flair_id": 196, + "flair_name": "South Georgia & South Sandwich Islands", + "flair_shortname": "SGS", + "friend": false, + "helmet": { + "pattern": 2, + "color1": "ff0000", + "color2": "ffffff", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 19, + "interval": -1, + "laps_complete": 76, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 2, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "53", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 50.541496, + "new_license_level": 18, + "new_sub_level": 264, + "new_ttrating": 1350, + "newi_rating": 3082, + "old_cpi": 56.433605, + "old_license_level": 18, + "old_sub_level": 281, + "old_ttrating": 1350, + "oldi_rating": 3100, + "opt_laps_complete": 0, + "position": 47, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 33, + "starting_position_in_class": 7, + "suit": { + "pattern": 4, + "color1": "000000", + "color2": "ff190f", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -296646, + "cust_id": 448051, + "display_name": "Diego Roldan", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1083250, + "best_lap_num": 191, + "best_lap_time": 1051721, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "MX", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 47, + "finish_position_in_class": 24, + "flair_id": 134, + "flair_name": "Mexico", + "flair_shortname": "MEX", + "friend": false, + "helmet": { + "pattern": 9, + "color1": "0c0c0c", + "color2": "ffffff", + "color3": "de0019", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 11, + "interval": -1, + "laps_complete": 68, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 2, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "53", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 38.158615, + "new_license_level": 14, + "new_sub_level": 278, + "new_ttrating": 1350, + "newi_rating": 1896, + "old_cpi": 28.696474, + "old_license_level": 14, + "old_sub_level": 234, + "old_ttrating": 1350, + "oldi_rating": 1912, + "opt_laps_complete": 0, + "position": 47, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 33, + "starting_position_in_class": 7, + "suit": { + "pattern": 4, + "color1": "000000", + "color2": "ff190f", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -296646, + "cust_id": 252495, + "display_name": "Chris Lilly", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1225282, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "US", + "division": 5, + "division_name": "Division 6", + "drop_race": false, + "finish_position": 47, + "finish_position_in_class": 24, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 46, + "color1": "000000", + "color2": "0057ff", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 1, + "interval": -1, + "laps_complete": 2, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 2, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "53", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 24.062311, + "new_license_level": 14, + "new_sub_level": 206, + "new_ttrating": 1350, + "newi_rating": 1493, + "old_cpi": 24.925983, + "old_license_level": 14, + "old_sub_level": 212, + "old_ttrating": 1350, + "oldi_rating": 1493, + "opt_laps_complete": 0, + "position": 47, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 33, + "starting_position_in_class": 7, + "suit": { + "pattern": 4, + "color1": "000000", + "color2": "ff190f", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 47, + "finish_position_in_class": 24, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 42, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 2, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "53", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 47, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 33, + "starting_position_in_class": 7, + "suit": { + "pattern": 4, + "color1": "000000", + "color2": "ff190f", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -243532, + "display_name": "THLF eSports Multinational by Raceverse.at", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -243532, + "cust_id": 876981, + "display_name": "Bjørn Sundèn", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1083671, + "best_lap_num": 90, + "best_lap_time": 1060103, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "NO", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 48, + "finish_position_in_class": 25, + "flair_id": 156, + "flair_name": "Norway", + "flair_shortname": "NOR", + "friend": false, + "helmet": { + "pattern": 3, + "color1": "ff0000", + "color2": "ccff00", + "color3": "cbeb05", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 3, + "interval": -1, + "laps_complete": 62, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 23, + "color1": "ff9cfd", + "color2": "ffffff", + "color3": "0500ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "444", + "wheel_color": "ffffff", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 109.46123, + "new_license_level": 20, + "new_sub_level": 466, + "new_ttrating": 1350, + "newi_rating": 2002, + "old_cpi": 88.64039, + "old_license_level": 19, + "old_sub_level": 392, + "old_ttrating": 1350, + "oldi_rating": 2021, + "opt_laps_complete": 0, + "position": 48, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 51, + "starting_position_in_class": 25, + "suit": { + "pattern": 10, + "color1": "00ff1e", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -243532, + "cust_id": 1335570, + "display_name": "Jordan Elmore", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1077287, + "best_lap_num": 22, + "best_lap_time": 1050504, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 48, + "finish_position_in_class": 25, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 56, + "color1": "ff0000", + "color2": "000000", + "color3": "acacac", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 10, + "interval": -1, + "laps_complete": 61, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 23, + "color1": "ff9cfd", + "color2": "ffffff", + "color3": "0500ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "444", + "wheel_color": "ffffff", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 61.234966, + "new_license_level": 18, + "new_sub_level": 293, + "new_ttrating": 1325, + "newi_rating": 2474, + "old_cpi": 59.90275, + "old_license_level": 18, + "old_sub_level": 290, + "old_ttrating": 1325, + "oldi_rating": 2494, + "opt_laps_complete": 0, + "position": 48, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 51, + "starting_position_in_class": 25, + "suit": { + "pattern": 10, + "color1": "00ff1e", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -243532, + "cust_id": 204799, + "display_name": "Derek Lanham", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1096959, + "best_lap_num": 149, + "best_lap_time": 1048466, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 48, + "finish_position_in_class": 25, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 5, + "color1": "ffffff", + "color2": "000000", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 7, + "interval": -1, + "laps_complete": 52, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 23, + "color1": "ff9cfd", + "color2": "ffffff", + "color3": "0500ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "444", + "wheel_color": "ffffff", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 68.58949, + "new_license_level": 19, + "new_sub_level": 353, + "new_ttrating": 1350, + "newi_rating": 2577, + "old_cpi": 63.863583, + "old_license_level": 19, + "old_sub_level": 343, + "old_ttrating": 1350, + "oldi_rating": 2594, + "opt_laps_complete": 0, + "position": 48, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 51, + "starting_position_in_class": 25, + "suit": { + "pattern": 10, + "color1": "00ff1e", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -243532, + "cust_id": 110764, + "display_name": "Joshua Bourque Bolin Queen", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "US", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 48, + "finish_position_in_class": 25, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 8, + "color1": "5e0e67", + "color2": "ffffff", + "color3": "200623", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 23, + "color1": "ff9cfd", + "color2": "ffffff", + "color3": "0500ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "444", + "wheel_color": "ffffff", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 48, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 51, + "starting_position_in_class": 25, + "suit": { + "pattern": 10, + "color1": "00ff1e", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 48, + "finish_position_in_class": 25, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 20, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 23, + "color1": "ff9cfd", + "color2": "ffffff", + "color3": "0500ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "000000", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "444", + "wheel_color": "ffffff", + "rim_type": 1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 48, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 51, + "starting_position_in_class": 25, + "suit": { + "pattern": 10, + "color1": "00ff1e", + "color2": "000000", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -398466, + "display_name": "Leche Condensada Racing Team", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -398466, + "cust_id": 1188331, + "display_name": "Diego Gonzalez Martin", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1159747, + "best_lap_num": 19, + "best_lap_time": 1052482, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "ES", + "division": 4, + "division_name": "Division 5", + "drop_race": true, + "finish_position": 49, + "finish_position_in_class": 26, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 44, + "color1": "000000", + "color2": "ecd108", + "color3": "f00000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 15, + "interval": -1, + "laps_complete": 76, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "F5F9F4", + "color2": "000000", + "color3": "EDF4EE", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "28", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 52.043076, + "new_license_level": 18, + "new_sub_level": 268, + "new_ttrating": 1350, + "newi_rating": 2273, + "old_cpi": 47.192017, + "old_license_level": 18, + "old_sub_level": 254, + "old_ttrating": 1350, + "oldi_rating": 2311, + "opt_laps_complete": 0, + "position": 49, + "qual_lap_time": -1, + "reason_out": "DQ/Scoring Invalidated", + "reason_out_id": 34, + "starting_position": 47, + "starting_position_in_class": 21, + "suit": { + "pattern": 33, + "color1": "103fe6", + "color2": "f3f3f3", + "color3": "f60909" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -398466, + "cust_id": 1107477, + "display_name": "Carlos Saek", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 16068019, + "best_lap_num": 52, + "best_lap_time": 1059580, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "ES", + "division": 4, + "division_name": "Division 5", + "drop_race": true, + "finish_position": 49, + "finish_position_in_class": 26, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 34, + "color1": "000000", + "color2": "7bfcab", + "color3": "515151", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 23, + "interval": -1, + "laps_complete": 23, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "F5F9F4", + "color2": "000000", + "color3": "EDF4EE", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "28", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 28.689007, + "new_license_level": 17, + "new_sub_level": 134, + "new_ttrating": 1350, + "newi_rating": 1833, + "old_cpi": 42.800854, + "old_license_level": 18, + "old_sub_level": 239, + "old_ttrating": 1350, + "oldi_rating": 1845, + "opt_laps_complete": 0, + "position": 49, + "qual_lap_time": -1, + "reason_out": "DQ/Scoring Invalidated", + "reason_out_id": 34, + "starting_position": 47, + "starting_position_in_class": 21, + "suit": { + "pattern": 33, + "color1": "103fe6", + "color2": "f3f3f3", + "color3": "f60909" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -398466, + "cust_id": 1110076, + "display_name": "Abel Ros", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1128765, + "best_lap_num": 60, + "best_lap_time": 1057677, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "ES", + "division": 3, + "division_name": "Division 4", + "drop_race": true, + "finish_position": 49, + "finish_position_in_class": 26, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 58, + "color1": "ee0000", + "color2": "e0fa0c", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 9, + "interval": -1, + "laps_complete": 20, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "F5F9F4", + "color2": "000000", + "color3": "EDF4EE", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "28", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 63.223633, + "new_license_level": 19, + "new_sub_level": 341, + "new_ttrating": 1364, + "newi_rating": 2580, + "old_cpi": 79.276924, + "old_license_level": 19, + "old_sub_level": 375, + "old_ttrating": 1364, + "oldi_rating": 2590, + "opt_laps_complete": 0, + "position": 49, + "qual_lap_time": -1, + "reason_out": "DQ/Scoring Invalidated", + "reason_out_id": 34, + "starting_position": 47, + "starting_position_in_class": 21, + "suit": { + "pattern": 33, + "color1": "103fe6", + "color2": "f3f3f3", + "color3": "f60909" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -398466, + "cust_id": 401283, + "display_name": "Alex Serrano Martinez", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "ES", + "division": 4, + "division_name": "Division 5", + "drop_race": true, + "finish_position": 49, + "finish_position_in_class": 26, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "ffffff", + "color2": "fc0706", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "F5F9F4", + "color2": "000000", + "color3": "EDF4EE", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "28", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 55.97871, + "new_license_level": 19, + "new_sub_level": 323, + "new_ttrating": 1305, + "newi_rating": 2303, + "old_cpi": 56.21595, + "old_license_level": 19, + "old_sub_level": 323, + "old_ttrating": 1305, + "oldi_rating": 2303, + "opt_laps_complete": 0, + "position": 49, + "qual_lap_time": -1, + "reason_out": "DQ/Scoring Invalidated", + "reason_out_id": 34, + "starting_position": 47, + "starting_position_in_class": 21, + "suit": { + "pattern": 33, + "color1": "103fe6", + "color2": "f3f3f3", + "color3": "f60909" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -398466, + "cust_id": 1214818, + "display_name": "Alex Pascual3", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "ES", + "division": 2, + "division_name": "Division 3", + "drop_race": true, + "finish_position": 49, + "finish_position_in_class": 26, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 49, + "color1": "faff04", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "F5F9F4", + "color2": "000000", + "color3": "EDF4EE", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "28", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 49, + "qual_lap_time": -1, + "reason_out": "DQ/Scoring Invalidated", + "reason_out_id": 34, + "starting_position": 47, + "starting_position_in_class": 21, + "suit": { + "pattern": 33, + "color1": "103fe6", + "color2": "f3f3f3", + "color3": "f60909" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": true, + "finish_position": 49, + "finish_position_in_class": 26, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 47, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "F5F9F4", + "color2": "000000", + "color3": "EDF4EE", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "28", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 49, + "qual_lap_time": -1, + "reason_out": "DQ/Scoring Invalidated", + "reason_out_id": 34, + "starting_position": 47, + "starting_position_in_class": 21, + "suit": { + "pattern": 33, + "color1": "103fe6", + "color2": "f3f3f3", + "color3": "f60909" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -379972, + "display_name": "Primal Racing 1", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -379972, + "cust_id": 737050, + "display_name": "Magnus Mortensen2", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1040291, + "best_lap_num": 22, + "best_lap_time": 935397, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "DK", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 50, + "finish_position_in_class": 12, + "flair_id": 56, + "flair_name": "Denmark", + "flair_shortname": "DNK", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "000000", + "color2": "1c1a7b", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 17, + "interval": -1, + "laps_complete": 62, + "laps_lead": 53, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "8", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 75.986855, + "new_license_level": 20, + "new_sub_level": 410, + "new_ttrating": 1350, + "newi_rating": 2622, + "old_cpi": 100.1537, + "old_license_level": 20, + "old_sub_level": 452, + "old_ttrating": 1350, + "oldi_rating": 2672, + "opt_laps_complete": 0, + "position": 50, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 0, + "starting_position_in_class": 0, + "suit": { + "pattern": 1, + "color1": "f1732e", + "color2": "372a75", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -379972, + "cust_id": 728131, + "display_name": "Frederik Juhl Nielsen", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1067603, + "best_lap_num": 97, + "best_lap_time": 937399, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "DK", + "division": 1, + "division_name": "Division 2", + "drop_race": false, + "finish_position": 50, + "finish_position_in_class": 12, + "flair_id": 56, + "flair_name": "Denmark", + "flair_shortname": "DNK", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "f1732e", + "color2": "372a75", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 7, + "interval": -1, + "laps_complete": 49, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "8", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 46.074566, + "new_license_level": 18, + "new_sub_level": 250, + "new_ttrating": 1339, + "newi_rating": 2732, + "old_cpi": 38.211376, + "old_license_level": 18, + "old_sub_level": 222, + "old_ttrating": 1339, + "oldi_rating": 2771, + "opt_laps_complete": 0, + "position": 50, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 0, + "starting_position_in_class": 0, + "suit": { + "pattern": 1, + "color1": "f1732e", + "color2": "372a75", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -379972, + "cust_id": 712036, + "display_name": "Darien Lizano", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "PR", + "division": 3, + "division_name": "Division 4", + "drop_race": false, + "finish_position": 50, + "finish_position_in_class": 12, + "flair_id": 169, + "flair_name": "Puerto Rico", + "flair_shortname": "PRI", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "cd1ca1", + "color2": "18d7d7", + "color3": "d4dce8", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "8", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 50, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 0, + "starting_position_in_class": 0, + "suit": { + "pattern": 1, + "color1": "f1732e", + "color2": "372a75", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -379972, + "cust_id": 1043553, + "display_name": "Adam Fahim3", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "MY", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 50, + "finish_position_in_class": 12, + "flair_id": 125, + "flair_name": "Malaysia", + "flair_shortname": "MYS", + "friend": false, + "helmet": { + "pattern": 22, + "color1": "fffb00", + "color2": "ffffff", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "8", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 50, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 0, + "starting_position_in_class": 0, + "suit": { + "pattern": 1, + "color1": "f1732e", + "color2": "372a75", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -379972, + "cust_id": 1085548, + "display_name": "Jakob Simesen", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 196, + "car_name": "Ferrari 499P", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "DK", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 50, + "finish_position_in_class": 12, + "flair_id": 56, + "flair_name": "Denmark", + "flair_shortname": "DNK", + "friend": false, + "helmet": { + "pattern": 48, + "color1": "ff0000", + "color2": "ffffff", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "8", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 50, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 0, + "starting_position_in_class": 0, + "suit": { + "pattern": 1, + "color1": "f1732e", + "color2": "372a75", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": false, + "finish_position": 50, + "finish_position_in_class": 12, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 24, + "interval": -1, + "laps_complete": 0, + "laps_lead": 53, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 196, + "pattern": 0, + "color1": "2a3795", + "color2": "ed2129", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "8", + "wheel_color": "000000", + "rim_type": 0 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 50, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 0, + "starting_position_in_class": 0, + "suit": { + "pattern": 1, + "color1": "f1732e", + "color2": "372a75", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -483219, + "display_name": "Velocity X Rhythm Racing Team", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 188, + "car_name": "McLaren 720S GT3 EVO", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -483219, + "cust_id": 1283272, + "display_name": "Mario García Muriel", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1056228, + "best_lap_num": 86, + "best_lap_time": 1045160, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 188, + "car_name": "McLaren 720S GT3 EVO", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "ES", + "division": 1, + "division_name": "Division 2", + "drop_race": true, + "finish_position": 51, + "finish_position_in_class": 27, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "231f20", + "color2": "808080", + "color3": "f26722", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 7, + "interval": -1, + "laps_complete": 61, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 188, + "pattern": 1, + "color1": "FF0000", + "color2": "00FF00", + "color3": "0000FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "31", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 97, + "new_cpi": 43.159573, + "new_license_level": 17, + "new_sub_level": 197, + "new_ttrating": 1350, + "newi_rating": 3435, + "old_cpi": 30.48215, + "old_license_level": 17, + "old_sub_level": 143, + "old_ttrating": 1350, + "oldi_rating": 3486, + "opt_laps_complete": 0, + "position": 51, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 26, + "starting_position_in_class": 0, + "suit": { + "pattern": 1, + "color1": "231f20", + "color2": "808080", + "color3": "f26722" + }, + "watched": false, + "weight_penalty_kg": 5 + }, + { + "team_id": -483219, + "cust_id": 1233001, + "display_name": "Mauro Agustin Arriola Aranela", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1087741, + "best_lap_num": 57, + "best_lap_time": 1055563, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 188, + "car_name": "McLaren 720S GT3 EVO", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "AR", + "division": 3, + "division_name": "Division 4", + "drop_race": true, + "finish_position": 51, + "finish_position_in_class": 27, + "flair_id": 13, + "flair_name": "Argentina", + "flair_shortname": "ARG", + "friend": false, + "helmet": { + "pattern": 9, + "color1": "0222f4", + "color2": "f9f9f9", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 13, + "interval": -1, + "laps_complete": 29, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 188, + "pattern": 1, + "color1": "FF0000", + "color2": "00FF00", + "color3": "0000FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "31", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 97, + "new_cpi": 21.797512, + "new_license_level": 10, + "new_sub_level": 249, + "new_ttrating": 1350, + "newi_rating": 1665, + "old_cpi": 21.029593, + "old_license_level": 10, + "old_sub_level": 243, + "old_ttrating": 1350, + "oldi_rating": 1689, + "opt_laps_complete": 0, + "position": 51, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 26, + "starting_position_in_class": 0, + "suit": { + "pattern": 1, + "color1": "231f20", + "color2": "808080", + "color3": "f26722" + }, + "watched": false, + "weight_penalty_kg": 5 + }, + { + "team_id": -483219, + "cust_id": 1376075, + "display_name": "Darío Llopis", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1264340, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 188, + "car_name": "McLaren 720S GT3 EVO", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "ES", + "division": 5, + "division_name": "Division 6", + "drop_race": true, + "finish_position": 51, + "finish_position_in_class": 27, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 7, + "color1": "8f6b00", + "color2": "b98b00", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 7, + "interval": -1, + "laps_complete": 5, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 188, + "pattern": 1, + "color1": "FF0000", + "color2": "00FF00", + "color3": "0000FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "31", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 97, + "new_cpi": 18.233788, + "new_license_level": 10, + "new_sub_level": 220, + "new_ttrating": 1350, + "newi_rating": 1585, + "old_cpi": 19.105652, + "old_license_level": 10, + "old_sub_level": 228, + "old_ttrating": 1350, + "oldi_rating": 1589, + "opt_laps_complete": 0, + "position": 51, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 26, + "starting_position_in_class": 0, + "suit": { + "pattern": 1, + "color1": "231f20", + "color2": "808080", + "color3": "f26722" + }, + "watched": false, + "weight_penalty_kg": 5 + } + ], + "drop_race": true, + "finish_position": 51, + "finish_position_in_class": 27, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 27, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 188, + "pattern": 1, + "color1": "FF0000", + "color2": "00FF00", + "color3": "0000FF", + "number_font": 0, + "number_color1": "FFFFFF", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "31", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 97, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 51, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 26, + "starting_position_in_class": 0, + "suit": { + "pattern": 1, + "color1": "231f20", + "color2": "808080", + "color3": "f26722" + }, + "watched": false, + "weight_penalty_kg": 5 + }, + { + "team_id": -467225, + "display_name": "DCS Racing Green", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -467225, + "cust_id": 1193552, + "display_name": "Nikos Nota", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1104297, + "best_lap_num": 65, + "best_lap_time": 1045754, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GR", + "division": 3, + "division_name": "Division 4", + "drop_race": true, + "finish_position": 52, + "finish_position_in_class": 28, + "flair_id": 80, + "flair_name": "Greece", + "flair_shortname": "GRC", + "friend": false, + "helmet": { + "pattern": 67, + "color1": "ffffff", + "color2": "fff500", + "color3": "fff500", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 17, + "interval": -1, + "laps_complete": 61, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "e0aa42", + "color2": "0ea2eb", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "22", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 29.04801, + "new_license_level": 13, + "new_sub_level": 194, + "new_ttrating": 1305, + "newi_rating": 3058, + "old_cpi": 21.94943, + "old_license_level": 13, + "old_sub_level": 150, + "old_ttrating": 1305, + "oldi_rating": 3142, + "opt_laps_complete": 0, + "position": 52, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 35, + "starting_position_in_class": 9, + "suit": { + "pattern": 33, + "color1": "ffffff", + "color2": "60a6c9", + "color3": "1a1f43" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -467225, + "cust_id": 618064, + "display_name": "Lexi Taylor", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1100085, + "best_lap_num": 36, + "best_lap_time": 1066419, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GB", + "division": 7, + "division_name": "Division 8", + "drop_race": true, + "finish_position": 52, + "finish_position_in_class": 28, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 35, + "color1": "ffe116", + "color2": "117900", + "color3": "00046b", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 2, + "interval": -1, + "laps_complete": 7, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "e0aa42", + "color2": "0ea2eb", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "22", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 37.60446, + "new_license_level": 15, + "new_sub_level": 319, + "new_ttrating": 1350, + "newi_rating": 1864, + "old_cpi": 36.71224, + "old_license_level": 15, + "old_sub_level": 316, + "old_ttrating": 1350, + "oldi_rating": 1874, + "opt_laps_complete": 0, + "position": 52, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 35, + "starting_position_in_class": 9, + "suit": { + "pattern": 33, + "color1": "ffffff", + "color2": "60a6c9", + "color3": "1a1f43" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -467225, + "cust_id": 1415804, + "display_name": "Christian Ranzani2", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "SO", + "division": 10, + "division_name": "Rookie", + "drop_race": true, + "finish_position": 52, + "finish_position_in_class": 28, + "flair_id": 194, + "flair_name": "Somalia", + "flair_shortname": "SOM", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "ffffff", + "color2": "2e358f", + "color3": "ec232d", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "e0aa42", + "color2": "0ea2eb", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "22", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 52, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 35, + "starting_position_in_class": 9, + "suit": { + "pattern": 33, + "color1": "ffffff", + "color2": "60a6c9", + "color3": "1a1f43" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": true, + "finish_position": 52, + "finish_position_in_class": 28, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 19, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "e0aa42", + "color2": "0ea2eb", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "22", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 52, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 35, + "starting_position_in_class": 9, + "suit": { + "pattern": 33, + "color1": "ffffff", + "color2": "60a6c9", + "color3": "1a1f43" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -298823, + "display_name": "TEN MAD MEN Alpha", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -298823, + "cust_id": 363120, + "display_name": "Vins Alamar", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1177627, + "best_lap_num": 41, + "best_lap_time": 1049909, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "ES", + "division": 3, + "division_name": "Division 4", + "drop_race": true, + "finish_position": 53, + "finish_position_in_class": 29, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 22, + "color1": "b8b8b8", + "color2": "0010ad", + "color3": "6698ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 8, + "interval": -1, + "laps_complete": 31, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "ffffff", + "color2": "0013a5", + "color3": "ff5c00", + "number_font": 0, + "number_color1": "f3eeeb", + "number_color2": "ffffff", + "number_color3": "ffffff", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "010", + "wheel_color": "32312f", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 30.895468, + "new_license_level": 14, + "new_sub_level": 245, + "new_ttrating": 1336, + "newi_rating": 1893, + "old_cpi": 27.22615, + "old_license_level": 13, + "old_sub_level": 184, + "old_ttrating": 1336, + "oldi_rating": 1931, + "opt_laps_complete": 0, + "position": 53, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 40, + "starting_position_in_class": 14, + "suit": { + "pattern": 1, + "color1": "e1ce30", + "color2": "ebe8e8", + "color3": "1c46ed" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -298823, + "cust_id": 376421, + "display_name": "Jorge Leiva Ruiz", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1064642, + "best_lap_num": 27, + "best_lap_time": 1046539, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "CL", + "division": 2, + "division_name": "Division 3", + "drop_race": true, + "finish_position": 53, + "finish_position_in_class": 29, + "flair_id": 44, + "flair_name": "Chile", + "flair_shortname": "CHL", + "friend": false, + "helmet": { + "pattern": 67, + "color1": "000000", + "color2": "00a0bc", + "color3": "c7c7c7", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 6, + "interval": -1, + "laps_complete": 30, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "ffffff", + "color2": "0013a5", + "color3": "ff5c00", + "number_font": 0, + "number_color1": "f3eeeb", + "number_color2": "ffffff", + "number_color3": "ffffff", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "010", + "wheel_color": "32312f", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 65.18878, + "new_license_level": 19, + "new_sub_level": 346, + "new_ttrating": 1350, + "newi_rating": 2447, + "old_cpi": 66.34217, + "old_license_level": 19, + "old_sub_level": 348, + "old_ttrating": 1350, + "oldi_rating": 2484, + "opt_laps_complete": 0, + "position": 53, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 40, + "starting_position_in_class": 14, + "suit": { + "pattern": 1, + "color1": "e1ce30", + "color2": "ebe8e8", + "color3": "1c46ed" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -298823, + "cust_id": 527810, + "display_name": "Javi Abad", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "ES", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 53, + "finish_position_in_class": 29, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 10, + "color1": "ffffff", + "color2": "000000", + "color3": "41ff00", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "ffffff", + "color2": "0013a5", + "color3": "ff5c00", + "number_font": 0, + "number_color1": "f3eeeb", + "number_color2": "ffffff", + "number_color3": "ffffff", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "010", + "wheel_color": "32312f", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 53, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 40, + "starting_position_in_class": 14, + "suit": { + "pattern": 1, + "color1": "e1ce30", + "color2": "ebe8e8", + "color3": "1c46ed" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -298823, + "cust_id": 554983, + "display_name": "Dan Moreno", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "CH", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 53, + "finish_position_in_class": 29, + "flair_id": 204, + "flair_name": "Switzerland", + "flair_shortname": "CHE", + "friend": false, + "helmet": { + "pattern": 68, + "color1": "b4b640", + "color2": "111111", + "color3": "1a2c6d", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "ffffff", + "color2": "0013a5", + "color3": "ff5c00", + "number_font": 0, + "number_color1": "f3eeeb", + "number_color2": "ffffff", + "number_color3": "ffffff", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "010", + "wheel_color": "32312f", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 53, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 40, + "starting_position_in_class": 14, + "suit": { + "pattern": 1, + "color1": "e1ce30", + "color2": "ebe8e8", + "color3": "1c46ed" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -298823, + "cust_id": 803476, + "display_name": "Jose Carlos Rodriguez", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "ES", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 53, + "finish_position_in_class": 29, + "flair_id": 198, + "flair_name": "Spain", + "flair_shortname": "ESP", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "fc0706", + "color2": "111111", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "ffffff", + "color2": "0013a5", + "color3": "ff5c00", + "number_font": 0, + "number_color1": "f3eeeb", + "number_color2": "ffffff", + "number_color3": "ffffff", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "010", + "wheel_color": "32312f", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 53, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 40, + "starting_position_in_class": 14, + "suit": { + "pattern": 1, + "color1": "e1ce30", + "color2": "ebe8e8", + "color3": "1c46ed" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 53, + "finish_position_in_class": 29, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 14, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "ffffff", + "color2": "0013a5", + "color3": "ff5c00", + "number_font": 0, + "number_color1": "f3eeeb", + "number_color2": "ffffff", + "number_color3": "ffffff", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "010", + "wheel_color": "32312f", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 53, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 40, + "starting_position_in_class": 14, + "suit": { + "pattern": 1, + "color1": "e1ce30", + "color2": "ebe8e8", + "color3": "1c46ed" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -199580, + "display_name": "IntoTheApex.com Gold", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -199580, + "cust_id": 142817, + "display_name": "Charlie Ryan", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 975438, + "best_lap_num": 25, + "best_lap_time": 943009, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": true, + "finish_position": 54, + "finish_position_in_class": 13, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 2, + "color1": "000000", + "color2": "ED2129", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 6, + "interval": -1, + "laps_complete": 47, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "069", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 42.451843, + "new_license_level": 18, + "new_sub_level": 238, + "new_ttrating": 1350, + "newi_rating": 2179, + "old_cpi": 33.555664, + "old_license_level": 18, + "old_sub_level": 202, + "old_ttrating": 1350, + "oldi_rating": 2266, + "opt_laps_complete": 0, + "position": 54, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 7, + "starting_position_in_class": 7, + "suit": { + "pattern": 19, + "color1": "000000", + "color2": "0d1fc5", + "color3": "e3e110" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -199580, + "cust_id": 32703, + "display_name": "Chris Cable", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": true, + "finish_position": 54, + "finish_position_in_class": 13, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 32, + "color1": "000000", + "color2": "ff0605", + "color3": "e0e0e0", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 1, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "069", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 78.61671, + "new_license_level": 19, + "new_sub_level": 374, + "new_ttrating": 1350, + "newi_rating": 2597, + "old_cpi": 78.61671, + "old_license_level": 19, + "old_sub_level": 374, + "old_ttrating": 1350, + "oldi_rating": 2599, + "opt_laps_complete": 0, + "position": 54, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 7, + "starting_position_in_class": 7, + "suit": { + "pattern": 19, + "color1": "000000", + "color2": "0d1fc5", + "color3": "e3e110" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -199580, + "cust_id": 25230, + "display_name": "Bruce Perry", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "US", + "division": 3, + "division_name": "Division 4", + "drop_race": true, + "finish_position": 54, + "finish_position_in_class": 13, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 9, + "color1": "f9f9f9", + "color2": "0098fe", + "color3": "f9ebd7", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "069", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 236.64212, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2155, + "old_cpi": 234.75113, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 2155, + "opt_laps_complete": 0, + "position": 54, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 7, + "starting_position_in_class": 7, + "suit": { + "pattern": 19, + "color1": "000000", + "color2": "0d1fc5", + "color3": "e3e110" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -199580, + "cust_id": 113433, + "display_name": "Joshua Kotten", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4029, + "car_class_name": "GTP", + "car_class_short_name": "GTP", + "car_id": 174, + "car_name": "Porsche 963 GTP", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "US", + "division": 2, + "division_name": "Division 3", + "drop_race": true, + "finish_position": 54, + "finish_position_in_class": 13, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 59, + "color1": "000000", + "color2": "efac00", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "069", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 54, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 7, + "starting_position_in_class": 7, + "suit": { + "pattern": 19, + "color1": "000000", + "color2": "0d1fc5", + "color3": "e3e110" + }, + "watched": false, + "weight_penalty_kg": 2 + } + ], + "drop_race": true, + "finish_position": 54, + "finish_position_in_class": 13, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 6, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 174, + "pattern": 1, + "color1": "ff0000", + "color2": "00ff00", + "color3": "0000ff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "069", + "wheel_color": "000000", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 54, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 7, + "starting_position_in_class": 7, + "suit": { + "pattern": 19, + "color1": "000000", + "color2": "0d1fc5", + "color3": "e3e110" + }, + "watched": false, + "weight_penalty_kg": 2 + }, + { + "team_id": -401232, + "display_name": "Kika Cetasso Racing Team", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -401232, + "cust_id": 127024, + "display_name": "Fernando Cardoso", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1152969, + "best_lap_num": 20, + "best_lap_time": 1049065, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "CA", + "division": 4, + "division_name": "Division 5", + "drop_race": true, + "finish_position": 55, + "finish_position_in_class": 30, + "flair_id": 39, + "flair_name": "Canada", + "flair_shortname": "CAN", + "friend": false, + "helmet": { + "pattern": 42, + "color1": "000000", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 19, + "interval": -1, + "laps_complete": 43, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "ffffff", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 3, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "12", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 46.205784, + "new_license_level": 18, + "new_sub_level": 250, + "new_ttrating": 1350, + "newi_rating": 1513, + "old_cpi": 57.07806, + "old_license_level": 19, + "old_sub_level": 326, + "old_ttrating": 1350, + "oldi_rating": 1571, + "opt_laps_complete": 0, + "position": 55, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 58, + "starting_position_in_class": 32, + "suit": { + "pattern": 2, + "color1": "000000", + "color2": "ffffff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -401232, + "cust_id": 1099564, + "display_name": "Gabriel Cardoso5", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "CA", + "division": 1, + "division_name": "Division 2", + "drop_race": true, + "finish_position": 55, + "finish_position_in_class": 30, + "flair_id": 39, + "flair_name": "Canada", + "flair_shortname": "CAN", + "friend": false, + "helmet": { + "pattern": 56, + "color1": "ccff00", + "color2": "111111", + "color3": "391c83", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "ffffff", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 3, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "12", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 55, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 58, + "starting_position_in_class": 32, + "suit": { + "pattern": 2, + "color1": "000000", + "color2": "ffffff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": true, + "finish_position": 55, + "finish_position_in_class": 30, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 19, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 8, + "color1": "ffffff", + "color2": "000000", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 3, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "12", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 55, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 58, + "starting_position_in_class": 32, + "suit": { + "pattern": 2, + "color1": "000000", + "color2": "ffffff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -298487, + "display_name": "Parc Motorsport Team Purple", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -298487, + "cust_id": 784148, + "display_name": "Krzysztof Olender2", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1095344, + "best_lap_num": 12, + "best_lap_time": 1045575, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "PL", + "division": 3, + "division_name": "Division 4", + "drop_race": true, + "finish_position": 56, + "finish_position_in_class": 31, + "flair_id": 167, + "flair_name": "Poland", + "flair_shortname": "POL", + "friend": false, + "helmet": { + "pattern": 43, + "color1": "eaff00", + "color2": "00e0ff", + "color3": "db00ff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 14, + "interval": -1, + "laps_complete": 38, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 9, + "color1": "000000", + "color2": "8700ff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "97", + "wheel_color": "000000", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 36.04055, + "new_license_level": 14, + "new_sub_level": 269, + "new_ttrating": 1350, + "newi_rating": 2615, + "old_cpi": 42.249332, + "old_license_level": 14, + "old_sub_level": 293, + "old_ttrating": 1350, + "oldi_rating": 2719, + "opt_laps_complete": 0, + "position": 56, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 48, + "starting_position_in_class": 22, + "suit": { + "pattern": 28, + "color1": "000000", + "color2": "7800ff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -298487, + "cust_id": 589222, + "display_name": "Mateusz Boruta5", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "PL", + "division": 3, + "division_name": "Division 4", + "drop_race": true, + "finish_position": 56, + "finish_position_in_class": 31, + "flair_id": 167, + "flair_name": "Poland", + "flair_shortname": "POL", + "friend": false, + "helmet": { + "pattern": 8, + "color1": "fa1c1c", + "color2": "000000", + "color3": "d24f86", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 9, + "color1": "000000", + "color2": "8700ff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "97", + "wheel_color": "000000", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 56, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 48, + "starting_position_in_class": 22, + "suit": { + "pattern": 28, + "color1": "000000", + "color2": "7800ff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -298487, + "cust_id": 972927, + "display_name": "Tomasz Rogacki", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "PL", + "division": 2, + "division_name": "Division 3", + "drop_race": true, + "finish_position": 56, + "finish_position_in_class": 31, + "flair_id": 167, + "flair_name": "Poland", + "flair_shortname": "POL", + "friend": false, + "helmet": { + "pattern": 28, + "color1": "0460eb", + "color2": "f06e34", + "color3": "111111", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 9, + "color1": "000000", + "color2": "8700ff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "97", + "wheel_color": "000000", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 56, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 48, + "starting_position_in_class": 22, + "suit": { + "pattern": 28, + "color1": "000000", + "color2": "7800ff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -298487, + "cust_id": 1056161, + "display_name": "Aleks Rusinek", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "PL", + "division": 3, + "division_name": "Division 4", + "drop_race": true, + "finish_position": 56, + "finish_position_in_class": 31, + "flair_id": 167, + "flair_name": "Poland", + "flair_shortname": "POL", + "friend": false, + "helmet": { + "pattern": 29, + "color1": "8000ff", + "color2": "000000", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 9, + "color1": "000000", + "color2": "8700ff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "97", + "wheel_color": "000000", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 46.348267, + "new_license_level": 18, + "new_sub_level": 251, + "new_ttrating": 1350, + "newi_rating": 2095, + "old_cpi": 46.346268, + "old_license_level": 18, + "old_sub_level": 251, + "old_ttrating": 1350, + "oldi_rating": 2095, + "opt_laps_complete": 0, + "position": 56, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 48, + "starting_position_in_class": 22, + "suit": { + "pattern": 28, + "color1": "000000", + "color2": "7800ff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": true, + "finish_position": 56, + "finish_position_in_class": 31, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 14, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 9, + "color1": "000000", + "color2": "8700ff", + "color3": "ffffff", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "97", + "wheel_color": "000000", + "rim_type": 3 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 56, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 48, + "starting_position_in_class": 22, + "suit": { + "pattern": 28, + "color1": "000000", + "color2": "7800ff", + "color3": "ffffff" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -420531, + "display_name": "Angler Racing", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -420531, + "cust_id": 941901, + "display_name": "Paddy Armstrong", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 1060695, + "best_lap_num": 23, + "best_lap_time": 1043936, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "SCT", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 57, + "finish_position_in_class": 32, + "flair_id": 237, + "flair_name": "Scotland", + "flair_shortname": "SCT", + "friend": false, + "helmet": { + "pattern": 57, + "color1": "838383", + "color2": "ffffff", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 11, + "interval": -1, + "laps_complete": 29, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "000000", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "6", + "wheel_color": "c8bd9f", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": 78.350105, + "new_license_level": 20, + "new_sub_level": 415, + "new_ttrating": 1260, + "newi_rating": 2157, + "old_cpi": 111.6487, + "old_license_level": 20, + "old_sub_level": 469, + "old_ttrating": 1260, + "oldi_rating": 2252, + "opt_laps_complete": 0, + "position": 57, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 36, + "starting_position_in_class": 10, + "suit": { + "pattern": 1, + "color1": "000000", + "color2": "ff00de", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -420531, + "cust_id": 1020483, + "display_name": "Samuel Yoseph", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "US", + "division": 3, + "division_name": "Division 4", + "drop_race": true, + "finish_position": 57, + "finish_position_in_class": 32, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "ffffff", + "color2": "1a4b9b", + "color3": "dff000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "000000", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "6", + "wheel_color": "c8bd9f", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 57, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 36, + "starting_position_in_class": 10, + "suit": { + "pattern": 1, + "color1": "000000", + "color2": "ff00de", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -420531, + "cust_id": 1039541, + "display_name": "Serge Sas", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "BE", + "division": 4, + "division_name": "Division 5", + "drop_race": false, + "finish_position": 57, + "finish_position_in_class": 32, + "flair_id": 23, + "flair_name": "Belgium", + "flair_shortname": "BEL", + "friend": false, + "helmet": { + "pattern": 35, + "color1": "000000", + "color2": "fac31e", + "color3": "ff0000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "000000", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "6", + "wheel_color": "c8bd9f", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 57, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 36, + "starting_position_in_class": 10, + "suit": { + "pattern": 1, + "color1": "000000", + "color2": "ff00de", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -420531, + "cust_id": 1218990, + "display_name": "Matt O'Donoghue", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 4011, + "car_class_name": "IMSA23", + "car_class_short_name": "IMSA23", + "car_id": 169, + "car_name": "Porsche 911 GT3 R (992)", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "SCT", + "division": 2, + "division_name": "Division 3", + "drop_race": false, + "finish_position": 57, + "finish_position_in_class": 32, + "flair_id": 237, + "flair_name": "Scotland", + "flair_shortname": "SCT", + "friend": false, + "helmet": { + "pattern": 23, + "color1": "000000", + "color2": "ff00e6", + "color3": "000000", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "000000", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "6", + "wheel_color": "c8bd9f", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 57, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 36, + "starting_position_in_class": 10, + "suit": { + "pattern": 1, + "color1": "000000", + "color2": "ff00de", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + } + ], + "drop_race": false, + "finish_position": 57, + "finish_position_in_class": 32, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 11, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 169, + "pattern": 0, + "color1": "000000", + "color2": "000000", + "color3": "000000", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "6", + "wheel_color": "c8bd9f", + "rim_type": 2 + }, + "max_pct_fuel_fill": 98, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 57, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 36, + "starting_position_in_class": 10, + "suit": { + "pattern": 1, + "color1": "000000", + "color2": "ff00de", + "color3": "000000" + }, + "watched": false, + "weight_penalty_kg": 15 + }, + { + "team_id": -169135, + "display_name": "BMW M Plower #557", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GO", + "division": -1, + "driver_results": [ + { + "team_id": -169135, + "cust_id": 374188, + "display_name": "Lars Wiele", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "DE", + "division": 1, + "division_name": "Division 2", + "drop_race": true, + "finish_position": 58, + "finish_position_in_class": 11, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 2, + "color1": "6f9556", + "color2": "111111", + "color3": "efd600", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 6, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 1, + "color1": "6f9556", + "color2": "111111", + "color3": "efd600", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "557", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 108.826164, + "new_license_level": 20, + "new_sub_level": 465, + "new_ttrating": 1350, + "newi_rating": 3266, + "old_cpi": 140.98111, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 3386, + "opt_laps_complete": 0, + "position": 58, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 23, + "starting_position_in_class": 9, + "suit": { + "pattern": 19, + "color1": "0c0fb4", + "color2": "299467", + "color3": "d1f100" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -169135, + "cust_id": 441146, + "display_name": "Robert J Besinga", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "US", + "division": 3, + "division_name": "Division 4", + "drop_race": true, + "finish_position": 58, + "finish_position_in_class": 11, + "flair_id": 223, + "flair_name": "United States", + "flair_shortname": "USA", + "friend": false, + "helmet": { + "pattern": 17, + "color1": "ffffff", + "color2": "000000", + "color3": "001367", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 1, + "color1": "6f9556", + "color2": "111111", + "color3": "efd600", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "557", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 58, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 23, + "starting_position_in_class": 9, + "suit": { + "pattern": 19, + "color1": "0c0fb4", + "color2": "299467", + "color3": "d1f100" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -169135, + "cust_id": 500311, + "display_name": "Joshua Easey", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "GB", + "division": 2, + "division_name": "Division 3", + "drop_race": true, + "finish_position": 58, + "finish_position_in_class": 11, + "flair_id": 222, + "flair_name": "United Kingdom", + "flair_shortname": "GBR", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "cccccc", + "color2": "111111", + "color3": "ed1c24", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 1, + "color1": "6f9556", + "color2": "111111", + "color3": "efd600", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "557", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 211.58789, + "new_license_level": 20, + "new_sub_level": 499, + "new_ttrating": 1350, + "newi_rating": 2446, + "old_cpi": 209.03923, + "old_license_level": 20, + "old_sub_level": 499, + "old_ttrating": 1350, + "oldi_rating": 2446, + "opt_laps_complete": 0, + "position": 58, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 23, + "starting_position_in_class": 9, + "suit": { + "pattern": 19, + "color1": "0c0fb4", + "color2": "299467", + "color3": "d1f100" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -169135, + "cust_id": 638713, + "display_name": "Barnabás Tóth", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "HU", + "division": 4, + "division_name": "Division 5", + "drop_race": true, + "finish_position": 58, + "finish_position_in_class": 11, + "flair_id": 93, + "flair_name": "Hungary", + "flair_shortname": "HUN", + "friend": false, + "helmet": { + "pattern": 1, + "color1": "ee3442", + "color2": "ffffff", + "color3": "447ac0", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 1, + "color1": "6f9556", + "color2": "111111", + "color3": "efd600", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "557", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": 32.60926, + "new_license_level": 17, + "new_sub_level": 153, + "new_ttrating": 1370, + "newi_rating": 1729, + "old_cpi": 33.197025, + "old_license_level": 17, + "old_sub_level": 156, + "old_ttrating": 1370, + "oldi_rating": 1729, + "opt_laps_complete": 0, + "position": 58, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 23, + "starting_position_in_class": 9, + "suit": { + "pattern": 19, + "color1": "0c0fb4", + "color2": "299467", + "color3": "d1f100" + }, + "watched": false, + "weight_penalty_kg": -1 + }, + { + "team_id": -169135, + "cust_id": 989424, + "display_name": "Kay Bautzmann", + "aggregate_champ_points": 0, + "ai": false, + "average_lap": 0, + "best_lap_num": -1, + "best_lap_time": -1, + "best_nlaps_num": -1, + "best_nlaps_time": -1, + "best_qual_lap_at": "1970-01-01T00:00:00Z", + "best_qual_lap_num": -1, + "best_qual_lap_time": -1, + "car_class_id": 2523, + "car_class_name": "Dallara P217", + "car_class_short_name": "Dallara P217", + "car_id": 128, + "car_name": "Dallara P217", + "carcfg": -1, + "champ_points": 0, + "class_interval": -1, + "country_code": "DE", + "division": 2, + "division_name": "Division 3", + "drop_race": true, + "finish_position": 58, + "finish_position_in_class": 11, + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "friend": false, + "helmet": { + "pattern": 35, + "color1": "f5a9b8", + "color2": "5bcefa", + "color3": "ffffff", + "face_type": 0, + "helmet_type": 0 + }, + "incidents": 0, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 1, + "color1": "6f9556", + "color2": "111111", + "color3": "efd600", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "557", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 58, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 23, + "starting_position_in_class": 9, + "suit": { + "pattern": 19, + "color1": "0c0fb4", + "color2": "299467", + "color3": "d1f100" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ], + "drop_race": true, + "finish_position": 58, + "finish_position_in_class": 11, + "flair_id": 2, + "flair_name": "Global", + "flair_shortname": "GLO", + "friend": false, + "incidents": 6, + "interval": -1, + "laps_complete": 0, + "laps_lead": 0, + "league_agg_points": 0, + "league_points": 0, + "license_change_oval": -1, + "license_change_road": -1, + "livery": { + "car_id": 128, + "pattern": 1, + "color1": "6f9556", + "color2": "111111", + "color3": "efd600", + "number_font": 0, + "number_color1": "ffffff", + "number_color2": "777777", + "number_color3": "000000", + "number_slant": 0, + "sponsor1": 0, + "sponsor2": 0, + "car_number": "557", + "wheel_color": null, + "rim_type": -1 + }, + "max_pct_fuel_fill": -1, + "new_cpi": -1, + "new_license_level": -1, + "new_sub_level": -1, + "new_ttrating": -1, + "newi_rating": -1, + "old_cpi": -1, + "old_license_level": -1, + "old_sub_level": -1, + "old_ttrating": -1, + "oldi_rating": -1, + "opt_laps_complete": 0, + "position": 58, + "qual_lap_time": -1, + "reason_out": "Disconnected", + "reason_out_id": 32, + "starting_position": 23, + "starting_position_in_class": 9, + "suit": { + "pattern": 19, + "color1": "0c0fb4", + "color2": "299467", + "color3": "d1f100" + }, + "watched": false, + "weight_penalty_kg": -1 + } + ] + } + ], + "session_splits": [ + { + "subsession_id": 82799828, + "event_strength_of_field": 8977 + }, + { + "subsession_id": 82799829, + "event_strength_of_field": 6816 + }, + { + "subsession_id": 82799830, + "event_strength_of_field": 5678 + }, + { + "subsession_id": 82799831, + "event_strength_of_field": 5040 + }, + { + "subsession_id": 82799832, + "event_strength_of_field": 4606 + }, + { + "subsession_id": 82799833, + "event_strength_of_field": 4245 + }, + { + "subsession_id": 82799834, + "event_strength_of_field": 3957 + }, + { + "subsession_id": 82799835, + "event_strength_of_field": 3742 + }, + { + "subsession_id": 82799836, + "event_strength_of_field": 3564 + }, + { + "subsession_id": 82799837, + "event_strength_of_field": 3399 + }, + { + "subsession_id": 82799838, + "event_strength_of_field": 3276 + }, + { + "subsession_id": 82799839, + "event_strength_of_field": 3129 + }, + { + "subsession_id": 82799840, + "event_strength_of_field": 3010 + }, + { + "subsession_id": 82799841, + "event_strength_of_field": 2905 + }, + { + "subsession_id": 82799842, + "event_strength_of_field": 2822 + }, + { + "subsession_id": 82799843, + "event_strength_of_field": 2745 + }, + { + "subsession_id": 82799844, + "event_strength_of_field": 2660 + }, + { + "subsession_id": 82799845, + "event_strength_of_field": 2577 + }, + { + "subsession_id": 82799846, + "event_strength_of_field": 2505 + }, + { + "subsession_id": 82799847, + "event_strength_of_field": 2437 + }, + { + "subsession_id": 82799848, + "event_strength_of_field": 2371 + }, + { + "subsession_id": 82799849, + "event_strength_of_field": 2312 + }, + { + "subsession_id": 82799850, + "event_strength_of_field": 2259 + }, + { + "subsession_id": 82799851, + "event_strength_of_field": 2207 + }, + { + "subsession_id": 82799852, + "event_strength_of_field": 2154 + }, + { + "subsession_id": 82799853, + "event_strength_of_field": 2096 + }, + { + "subsession_id": 82799854, + "event_strength_of_field": 2049 + }, + { + "subsession_id": 82799855, + "event_strength_of_field": 2004 + }, + { + "subsession_id": 82799856, + "event_strength_of_field": 1953 + }, + { + "subsession_id": 82799857, + "event_strength_of_field": 1903 + }, + { + "subsession_id": 82799858, + "event_strength_of_field": 1856 + }, + { + "subsession_id": 82799859, + "event_strength_of_field": 1809 + }, + { + "subsession_id": 82799860, + "event_strength_of_field": 1769 + }, + { + "subsession_id": 82799861, + "event_strength_of_field": 1724 + }, + { + "subsession_id": 82799862, + "event_strength_of_field": 1676 + }, + { + "subsession_id": 82799863, + "event_strength_of_field": 1622 + }, + { + "subsession_id": 82799864, + "event_strength_of_field": 1574 + }, + { + "subsession_id": 82799865, + "event_strength_of_field": 1510 + }, + { + "subsession_id": 82799866, + "event_strength_of_field": 1435 + }, + { + "subsession_id": 82799867, + "event_strength_of_field": 1357 + }, + { + "subsession_id": 82799868, + "event_strength_of_field": 1247 + }, + { + "subsession_id": 82799869, + "event_strength_of_field": 1208 + }, + { + "subsession_id": 82799870, + "event_strength_of_field": 960 + } + ], + "special_event_type": -1, + "start_time": "2026-01-17T12:00:00Z", + "track": { + "category": "Road", + "category_id": 2, + "config_name": "Road Course", + "track_id": 192, + "track_name": "Daytona International Speedway" + }, + "track_state": { + "leave_marbles": true, + "practice_rubber": -1, + "qualify_rubber": -1, + "race_rubber": -1, + "warmup_rubber": -1 + }, + "weather": { + "allow_fog": false, + "fog": 0, + "precip_mm2hr_before_final_session": 0, + "precip_mm_final_session": 0, + "precip_option": 8, + "precip_time_pct": 0, + "rel_humidity": 0, + "simulated_start_time": "2026-01-24T13:00:00", + "skies": 3, + "temp_units": 1, + "temp_value": 21, + "time_of_day": 0, + "track_water": 0, + "type": 3, + "version": 1, + "weather_var_initial": 0, + "weather_var_ongoing": 0, + "wind_dir": 0, + "wind_units": 1, + "wind_value": 3 + } +} \ No newline at end of file diff --git a/tests/test_client.py b/tests/test_client.py index fbbce0e..bad516e 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -277,6 +277,26 @@ def test_result_with_parameters(self, mock_get_resource): self.assertIsInstance(response, ResultsGetResponse) self.assertEqual(response.subsession_id, 82263872) + @patch.object(irDataClient, "_get_resource") + def test_result_with_parameters_and_team(self, mock_get_resource): + mock_get_resource.return_value = self._get_mock_data("result_with_team.json") + + subsession_id = 12345 + include_licenses = True + response = self.client.result( + subsession_id=subsession_id, include_licenses=include_licenses + ) + + mock_get_resource.assert_called_once_with( + "/data/results/get", + payload={ + "subsession_id": subsession_id, + "include_licenses": include_licenses, + }, + ) + self.assertIsInstance(response, ResultsGetResponse) + self.assertEqual(response.subsession_id, 82799850) + @patch.object(irDataClient, "_get_resource") def test_result_without_optional_parameters(self, mock_get_resource): mock_get_resource.return_value = self._get_mock_data("result.json") From 83b9314edc40cf86980b5562746da13cc39e4f84 Mon Sep 17 00:00:00 2001 From: Joachim Doh Date: Fri, 23 Jan 2026 11:38:40 +0100 Subject: [PATCH 09/10] Allow activity in MemberProfileResponse to be optional and add test for member profile with no activity --- src/iracingdataapi/models/responses.py | 2 +- .../member_profile_no_activity.json | 394 ++++++++++++++++++ tests/test_client.py | 12 + 3 files changed, 407 insertions(+), 1 deletion(-) create mode 100644 tests/mock_return_data/member_profile_no_activity.json diff --git a/src/iracingdataapi/models/responses.py b/src/iracingdataapi/models/responses.py index d1a1eed..91d80ce 100644 --- a/src/iracingdataapi/models/responses.py +++ b/src/iracingdataapi/models/responses.py @@ -213,7 +213,7 @@ class MemberGetResponse(BaseModel): class MemberProfileResponse(BaseModel): - activity: MemberActivity + activity: MemberActivity | None = None cust_id: int disabled: bool follow_counts: MemberFollowCounts diff --git a/tests/mock_return_data/member_profile_no_activity.json b/tests/mock_return_data/member_profile_no_activity.json new file mode 100644 index 0000000..7709b81 --- /dev/null +++ b/tests/mock_return_data/member_profile_no_activity.json @@ -0,0 +1,394 @@ +{ + "recent_awards": [ + { + "member_award_id": 48252426, + "award_id": 1422, + "achievement": true, + "award_count": 1, + "award_date": "2025-01-28", + "award_order": 1, + "awarded_description": "Completed two consecutive sports car finishes at own iRating or higher.", + "cust_id": 168966, + "description": "Complete 2 consecutive official Sports Car Road races with no loss of iRating. You must score championship points and complete 50% of the laps the class winner completes, rounded down, for the race to count toward this award. This award may not be earned while participating in a team event.", + "group_name": "Consistent Finish Level 1 - Sports Car Road", + "has_pdf": false, + "icon_url_large": "/member_images/award_templates/awardicons/consistent-dirt-road-1_128x128.jpg", + "icon_url_small": "/member_images/award_templates/awardicons/consistent-dirt-road-1_64x64.jpg", + "icon_url_unawarded": "/member_images/award_templates/awardicons/consistent-dirt-road-1_64x64_bw.jpg", + "name": "Consistent Finish Level 1 - Sports Car Road", + "progress": 2, + "progress_label": "consistent finishes", + "threshold": 2, + "viewed": true, + "weight": 715 + }, + { + "member_award_id": 48254741, + "award_id": 1404, + "achievement": true, + "award_count": 3, + "award_date": "2025-01-28", + "award_order": 3, + "awarded_description": "Polesitter for an official sports car race.", + "cust_id": 168966, + "description": "Start an official Sports Car Road race from the 1st spot on the grid for your car class. This award may not be earned while participating in a team event.", + "group_name": "Polesitter Award - Sports Car Road", + "has_pdf": false, + "icon_url_large": "/member_images/award_templates/awardicons/polesitter_award_dirt_road_128x128.jpg", + "icon_url_small": "/member_images/award_templates/awardicons/polesitter_award_dirt_road_64x64.jpg", + "icon_url_unawarded": "/member_images/award_templates/awardicons/polesitter_award_dirt_road_64x64_bw.jpg", + "name": "Polesitter Award - Sports Car Road", + "subsession_id": 74458312, + "viewed": true, + "weight": 585 + }, + { + "member_award_id": 48252390, + "award_id": 1404, + "achievement": true, + "award_count": 3, + "award_date": "2025-01-28", + "award_order": 2, + "awarded_description": "Polesitter for an official sports car race.", + "cust_id": 168966, + "description": "Start an official Sports Car Road race from the 1st spot on the grid for your car class. This award may not be earned while participating in a team event.", + "group_name": "Polesitter Award - Sports Car Road", + "has_pdf": false, + "icon_url_large": "/member_images/award_templates/awardicons/polesitter_award_dirt_road_128x128.jpg", + "icon_url_small": "/member_images/award_templates/awardicons/polesitter_award_dirt_road_64x64.jpg", + "icon_url_unawarded": "/member_images/award_templates/awardicons/polesitter_award_dirt_road_64x64_bw.jpg", + "name": "Polesitter Award - Sports Car Road", + "subsession_id": 74456215, + "viewed": true, + "weight": 585 + }, + { + "member_award_id": 48143064, + "award_id": 1404, + "achievement": true, + "award_count": 3, + "award_date": "2025-01-24", + "award_order": 1, + "awarded_description": "Polesitter for an official sports car race.", + "cust_id": 168966, + "description": "Start an official Sports Car Road race from the 1st spot on the grid for your car class. This award may not be earned while participating in a team event.", + "group_name": "Polesitter Award - Sports Car Road", + "has_pdf": false, + "icon_url_large": "/member_images/award_templates/awardicons/polesitter_award_dirt_road_128x128.jpg", + "icon_url_small": "/member_images/award_templates/awardicons/polesitter_award_dirt_road_64x64.jpg", + "icon_url_unawarded": "/member_images/award_templates/awardicons/polesitter_award_dirt_road_64x64_bw.jpg", + "name": "Polesitter Award - Sports Car Road", + "subsession_id": 74358862, + "viewed": true, + "weight": 585 + }, + { + "member_award_id": 48144718, + "award_id": 1396, + "achievement": false, + "award_count": 8, + "award_date": "2025-01-24", + "award_order": 8, + "awarded_description": "2025 Daytona 24 3rd Place - Split #1", + "cust_id": 168966, + "display_date": "2025-01-24", + "group_name": "Season Race Overall", + "has_pdf": true, + "icon_background_color": "#a2a2a2", + "icon_url_large": "/member_images/award_templates/icons/certificate_blue_128.jpg", + "icon_url_small": "/member_images/award_templates/icons/certificate_blue_64.jpg", + "icon_url_unawarded": "/member_images/award_templates/icons/certificate_bw_64.jpg", + "name": "Special Event Racing Award", + "subsession_id": 74206920, + "viewed": true, + "weight": 0 + }, + { + "member_award_id": 48143053, + "award_id": 1425, + "achievement": false, + "award_count": 1, + "award_date": "2025-01-24", + "award_order": 1, + "awarded_description": "2025-01-24, IMSA iRacing Series", + "cust_id": 168966, + "description": "Awarded for your first official race win in a Sports Car Road series. This award may not be earned while participating in a team event.", + "display_date": "2025-01-24", + "group_name": "First Sports Car Road Series Race Win", + "has_pdf": true, + "icon_background_color": "#a2a2a2", + "icon_url_large": "/member_images/award_templates/icons/certificate_blue_128.jpg", + "icon_url_small": "/member_images/award_templates/icons/certificate_blue_64.jpg", + "icon_url_unawarded": "/member_images/award_templates/icons/certificate_bw_64.jpg", + "name": "First Win Sports Car Road Course", + "subsession_id": 74358862, + "viewed": true, + "weight": 0 + } + ], + "activity": null, + "success": true, + "image_url": "https://scorpio-assets.s3.amazonaws.com/members/messaging-services/non_expiring/member_profile_image/0?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20260122T091119Z&X-Amz-SignedHeaders=host&X-Amz-Credential=AKIAUO6OO4A3WX3RTXUZ%2F20260122%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Expires=60&X-Amz-Signature=be56978ac997c158bb9ea69db696b92cc6d386b46b7c752e3403b5fcf8bc6eef", + "member_info": { + "ai": false, + "country": "Netherlands", + "country_code": "NL", + "cust_id": 168966, + "display_name": "Max Verstappen", + "flair_id": 146, + "flair_name": "Netherlands", + "flair_shortname": "NLD", + "helmet": { + "pattern": 59, + "color1": "ffffff", + "color2": "ff8029", + "color3": "000000", + "face_type": 8, + "helmet_type": 0 + }, + "last_login": "2026-01-21T19:59:05.80965059Z", + "licenses": [ + { + "category_id": 1, + "category": "oval", + "category_name": "Oval", + "license_level": 10, + "safety_rating": 2.31, + "cpi": 19.474789, + "irating": 3377, + "tt_rating": 1350, + "mpr_num_races": 5, + "color": "feec04", + "group_name": "Class C", + "group_id": 3, + "pro_promotable": false, + "seq": 1, + "mpr_num_tts": 0 + }, + { + "category_id": 5, + "category": "sports_car", + "category_name": "Sports Car", + "license_level": 20, + "safety_rating": 4.99, + "cpi": 137.64151, + "irating": 9484, + "tt_rating": 1350, + "mpr_num_races": 3, + "color": "0153db", + "group_name": "Class A", + "group_id": 5, + "pro_promotable": false, + "seq": 2, + "mpr_num_tts": 0 + }, + { + "category_id": 6, + "category": "formula_car", + "category_name": "Formula Car", + "license_level": 20, + "safety_rating": 4.93, + "cpi": 130.02899, + "irating": 9382, + "tt_rating": 1350, + "mpr_num_races": 0, + "color": "0153db", + "group_name": "Class A", + "group_id": 5, + "pro_promotable": false, + "seq": 3, + "mpr_num_tts": 0 + }, + { + "category_id": 3, + "category": "dirt_oval", + "category_name": "Dirt Oval", + "license_level": 2, + "safety_rating": 2.5, + "cpi": 10.10941, + "irating": 1350, + "tt_rating": 1350, + "mpr_num_races": 0, + "color": "fc0706", + "group_name": "Rookie", + "group_id": 1, + "pro_promotable": false, + "seq": 4, + "mpr_num_tts": 0 + }, + { + "category_id": 4, + "category": "dirt_road", + "category_name": "Dirt Road", + "license_level": 2, + "safety_rating": 2.57, + "cpi": 10.5953865, + "irating": 1413, + "tt_rating": 1350, + "mpr_num_races": 1, + "color": "fc0706", + "group_name": "Rookie", + "group_id": 1, + "pro_promotable": false, + "seq": 5, + "mpr_num_tts": 0 + } + ], + "member_since": "2014-09-25" + }, + "disabled": false, + "license_history": [ + { + "category_id": 1, + "category": "oval", + "category_name": "Oval", + "license_level": 10, + "safety_rating": 2.31, + "cpi": 19.474789, + "irating": 3377, + "tt_rating": 1350, + "color": "feec04", + "group_name": "Class C", + "group_id": 3, + "seq": 1 + }, + { + "category_id": 5, + "category": "sports_car", + "category_name": "Sports Car", + "license_level": 20, + "safety_rating": 4.99, + "cpi": 137.64151, + "irating": 9484, + "tt_rating": 1350, + "color": "0153db", + "group_name": "Class A", + "group_id": 5, + "seq": 2 + }, + { + "category_id": 6, + "category": "formula_car", + "category_name": "Formula Car", + "license_level": 20, + "safety_rating": 4.93, + "cpi": 130.02899, + "irating": 9382, + "tt_rating": 1350, + "color": "0153db", + "group_name": "Class A", + "group_id": 5, + "seq": 3 + }, + { + "category_id": 3, + "category": "dirt_oval", + "category_name": "Dirt Oval", + "license_level": 2, + "safety_rating": 2.5, + "cpi": 10.10941, + "irating": 1350, + "tt_rating": 1350, + "color": "fc0706", + "group_name": "Rookie", + "group_id": 1, + "seq": 4 + }, + { + "category_id": 4, + "category": "dirt_road", + "category_name": "Dirt Road", + "license_level": 2, + "safety_rating": 2.57, + "cpi": 10.5953865, + "irating": 1413, + "tt_rating": 1350, + "color": "fc0706", + "group_name": "Rookie", + "group_id": 1, + "seq": 5 + }, + { + "category_id": 2, + "category": "road", + "category_name": "Road", + "license_level": 20, + "safety_rating": 4.93, + "cpi": 130.02899, + "irating": 9382, + "tt_rating": 1350, + "color": "0153db", + "group_name": "Class A", + "group_id": 5, + "seq": 6 + } + ], + "recent_events": [ + { + "event_type": "HOSTED", + "subsession_id": 82912212, + "start_time": "2026-01-21T16:25:19Z", + "event_id": 4960573, + "event_name": "Merc Darwins", + "simsession_type": 3, + "starting_position": -1, + "finish_position": 0, + "best_lap_time": -1, + "percent_rank": -1, + "car_id": 156, + "car_name": "Mercedes-AMG GT3 2020", + "logo_url": null, + "track": { + "config_name": "Gesamtstrecke 24h", + "track_id": 252, + "track_name": "Nürburgring Combined" + } + }, + { + "event_type": "LEAGUE", + "subsession_id": 82592590, + "start_time": "2026-01-09T19:49:54Z", + "event_id": 6982, + "event_name": "Team Redline", + "simsession_type": 3, + "starting_position": -1, + "finish_position": 41, + "best_lap_time": -1, + "percent_rank": -1, + "car_id": 159, + "car_name": "BMW M Hybrid V8", + "logo_url": "https://members-leagueimages.iracing.com/6982/teamredline_banner_2_small.png", + "track": { + "config_name": "Road Course", + "track_id": 192, + "track_name": "Daytona International Speedway" + } + }, + { + "event_type": "LEAGUE", + "subsession_id": 82591037, + "start_time": "2026-01-09T18:36:35Z", + "event_id": 6982, + "event_name": "Team Redline", + "simsession_type": 3, + "starting_position": -1, + "finish_position": 46, + "best_lap_time": -1, + "percent_rank": -1, + "car_id": 196, + "car_name": "Ferrari 499P", + "logo_url": "https://members-leagueimages.iracing.com/6982/teamredline_banner_2_small.png", + "track": { + "config_name": "Road Course", + "track_id": 192, + "track_name": "Daytona International Speedway" + } + } + ], + "cust_id": 168966, + "is_generic_image": true, + "follow_counts": { + "followers": 22592, + "follows": 8240 + } +} \ No newline at end of file diff --git a/tests/test_client.py b/tests/test_client.py index bad516e..6654f0c 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -1181,6 +1181,18 @@ def test_member_profile(self, mock_get_resource): "/data/member/profile", payload=expected_payload ) + @patch.object(irDataClient, "_get_resource") + def test_member_profile_no_activity(self, mock_get_resource): + mock_get_resource.return_value = self._get_mock_data("member_profile_no_activity.json") + cust_id = 123 + expected_payload = {"cust_id": cust_id} + + self.client.member_profile(cust_id) + + mock_get_resource.assert_called_once_with( + "/data/member/profile", payload=expected_payload + ) + @patch.object(irDataClient, "_get_resource") def test_stats_member_bests(self, mock_get_resource): mock_get_resource.return_value = self._get_mock_data("stats_member_bests.json") From b32c794ffc722f1e40ff6cb9f292edecd3bb4995 Mon Sep 17 00:00:00 2001 From: Joachim Doh Date: Fri, 23 Jan 2026 11:40:43 +0100 Subject: [PATCH 10/10] changed to old member.json --- tests/mock_return_data/member.json | 48 +++++++++++++++--------------- 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/tests/mock_return_data/member.json b/tests/mock_return_data/member.json index e087025..8e6ab5d 100644 --- a/tests/mock_return_data/member.json +++ b/tests/mock_return_data/member.json @@ -1,26 +1,26 @@ { - "success": true, - "cust_ids": [ - 168966 - ], - "members": [ - { - "cust_id": 168966, - "display_name": "Max Verstappen", - "helmet": { - "pattern": 59, - "color1": "ffffff", - "color2": "ff8029", - "color3": "000000", - "face_type": 8, - "helmet_type": 0 - }, - "last_login": "2026-01-21T19:59:05.80965059Z", - "member_since": "2014-09-25", - "flair_id": 146, - "flair_name": "Netherlands", - "flair_shortname": "NLD", - "ai": false - } - ] + "success": true, + "cust_ids": [ + 473030 + ], + "members": [ + { + "cust_id": 473030, + "display_name": "Lukas Schwenk", + "helmet": { + "pattern": 57, + "color1": "002bff", + "color2": "f7f7f7", + "color3": "33ff00", + "face_type": 0, + "helmet_type": 0 + }, + "last_login": "2025-12-30T14:42:17.88734704Z", + "member_since": "2020-04-10", + "flair_id": 77, + "flair_name": "Germany", + "flair_shortname": "DEU", + "ai": false + } + ] } \ No newline at end of file