[instance_information] app_version: 3.15.4 cu_version: 5337 platform_name: Mac OS X 10.15.7 [device_information] model: x86_64 manufacturer: Apple serial: C02NNG8EG085 [debug_log] Das Log ist noch leer. Bitte stelle sicher, dass der Debug-Modus in den Einstellungen aktiviert wurde. [options] app.options.sound_output_type: queue app.options.active_track: 2 app.options.display_vsc_button: no app.options.sound_new_leader: speech app.options.sound_vsc_deployed: speech app.options.display_grid_lights: yes app.options.confetti_effect: yes app.options.sound_five_laps: speech app.options.sound_10_minutes: speech app.options.vsc_brakes: 0 app.options.display_fullscreen_button: no app.options.finish_style_time: instant app.options.timetable_sorting: dynamic app.options.vsc_deploy_time: 20 app.options.sound_bell_alt: speech app.options.unit_display: metric app.options.show_crossed_indicator: 3000 app.options.sound_language: de-DE app.options.ignore_ai_car: yes app.options.show_sector_times: never app.options.display_start_button: yes app.options.sound_vsc_ending: speech app.options.sound_race: sounds/race.mp3 app.options.sound_caution: speech app.options.timetable_display_image: logo app.options.sound_applause_3rd: speech app.options.sound_current_leader: speech app.options.show_average_lap_speed: always app.options.use_fastclick: 0 app.options.vsc_speed: 0 app.options.sound_penalty_served: speech app.options.sound_pitstop_complete: speech app.options.detect_missed_laps_checklane: no app.options.stop_after_event_end: no app.options.sound_in_pits: both app.options.background_opacity: 0 app.options.sound_applause_2nd: speech app.options.sound_tts_rate: 1.6 app.options.language: de app.options.lapcounter_display: forwards app.options.sound_low_fuel: speech app.options.sound_tank_empty: speech app.options.display_esc_button: no app.options.sound_two_laps: speech app.options.increase_grid_lights: yes app.options.sound_2_minutes: speech app.options.sound_halftime_qualifying: speech app.options.sound_halftime_race: speech app.options.sound_pits_warning: generic app.options.sound_last_minute: speech app.options.display_active_track: no app.options.sound_tire_change_complete: speech app.options.sound_race_volume: 0.6 app.options.sound_applause_qual: both app.options.sound_sector_overall_best: none app.options.sound_applause: both app.options.sound_damage_repaired: speech app.options.sound_bell: speech app.options.background: url(img/bg/start_grid_blur.jpg) no-repeat center app.options.sound_race_start: yes app.options.race_finish_style: first app.options.ignore_safety_car: yes app.options.show_timetable_advice: no app.options.sound_ten_laps: speech app.options.display_penalty_button: yes app.options.sound_sector_personal_best: none app.options.background_custom: app.options.sound_5_minutes: speech app.options.debug_mode: no app.options.sound_last_lap: speech [database] DROP TABLE IF EXISTS backups; CREATE TABLE backups (id integer primary key autoincrement, date text, file text); DROP TABLE IF EXISTS drivers; CREATE TABLE drivers (id integer primary key autoincrement, name text NOT NULL, name_tts text NOT NULL, team integer, image text, start_no integer, start_no_color_background text, start_no_color_text text, start_no_color_border text, start_no_text_style text, active text); DROP TABLE IF EXISTS teams; CREATE TABLE teams (id integer primary key autoincrement, name text NOT NULL, location text, comment text, image text); DROP TABLE IF EXISTS cars; CREATE TABLE cars (id integer primary key autoincrement, name text NOT NULL, manufacturer text, scale text, tyres text, logo text, image text, speed integer, brakes integer, fuel integer, changed_on text, laps integer, interval integer, interval_counter integer, comment text, sound text, tags text, decoder_type text, magnets text, active text); DROP TABLE IF EXISTS tracks; CREATE TABLE tracks (id integer primary key autoincrement, name text NOT NULL, length text, minimum_lap_time text, maximum_lap_time text, pitstop_delta text, image text); DROP TABLE IF EXISTS championships; CREATE TABLE championships (id integer primary key autoincrement, name text NOT NULL, type text, races integer, points text, participants text, cars text, used_controllers text, comment text, image text, points_for_fastest_lap integer, points_for_pole_position integer); DROP TABLE IF EXISTS records; CREATE TABLE records (id integer primary key autoincrement, track_id integer, driver_id integer, car_id integer, laptime integer, sector_times text, date text); DROP TABLE IF EXISTS `history_event`; CREATE TABLE history_event (id integer primary key autoincrement, title text, duration integer, type text, target_time integer, target_laps integer, best_laptime integer, track_id integer, championship_id, date text, ticker text, publish_id integer); DROP TABLE IF EXISTS `history_event_result`; CREATE TABLE history_event_result (id integer primary key autoincrement, event_id integer, position integer, driver_id integer, car_id integer, controller_id integer, laps integer, best_laptime integer, pitstops integer, gap text, disqualified integer, retired integer); DROP TABLE IF EXISTS `history_event_lap`; CREATE TABLE history_event_lap (id integer primary key autoincrement, event_id integer, controller_id integer, lap_number integer, lap_time integer, leader integer, position integer, pitstop integer, pitstop_duration text); DROP TABLE IF EXISTS `cars_tags`; CREATE TABLE cars_tags (id integer primary key autoincrement, name text NOT NULL); INSERT OR REPLACE INTO drivers(active,`start_no_color_background`,id,`start_no`,`name_tts`,image,`start_no_color_text`,team,`start_no_color_border`,name,`start_no_text_style`) VALUES (NULL,NULL,'1',NULL,'Tobi','',NULL,NULL,NULL,'Tobi',NULL); INSERT OR REPLACE INTO drivers(active,`start_no_color_background`,id,`start_no`,`name_tts`,image,`start_no_color_text`,team,`start_no_color_border`,name,`start_no_text_style`) VALUES (NULL,NULL,'2',NULL,'Noha','',NULL,NULL,NULL,'Noah',NULL); INSERT OR REPLACE INTO drivers(active,`start_no_color_background`,id,`start_no`,`name_tts`,image,`start_no_color_text`,team,`start_no_color_border`,name,`start_no_text_style`) VALUES (NULL,NULL,'3',NULL,'Carolina','',NULL,NULL,NULL,'Carolina',NULL); INSERT OR REPLACE INTO drivers(active,`start_no_color_background`,id,`start_no`,`name_tts`,image,`start_no_color_text`,team,`start_no_color_border`,name,`start_no_text_style`) VALUES (NULL,NULL,'4',NULL,'Alex','',NULL,NULL,NULL,'Alex',NULL); INSERT OR REPLACE INTO drivers(active,`start_no_color_background`,id,`start_no`,`name_tts`,image,`start_no_color_text`,team,`start_no_color_border`,name,`start_no_text_style`) VALUES (NULL,'','5','','Alfred','','',NULL,'','Alfred','normal'); INSERT OR REPLACE INTO drivers(active,`start_no_color_background`,id,`start_no`,`name_tts`,image,`start_no_color_text`,team,`start_no_color_border`,name,`start_no_text_style`) VALUES (NULL,'','7','','Geisterauto','','',NULL,'','Ghostcar ','normal'); INSERT OR REPLACE INTO drivers(active,`start_no_color_background`,id,`start_no`,`name_tts`,image,`start_no_color_text`,team,`start_no_color_border`,name,`start_no_text_style`) VALUES (NULL,'','8','','Basti','','',NULL,'','Basti ','normal'); INSERT OR REPLACE INTO cars(brakes,active,tags,`decoder_type`,image,laps,fuel,speed,tyres,name,manufacturer,id,`interval_counter`,scale,magnets,logo,`changed_on`,interval,sound,comment) VALUES ('8',NULL,NULL,NULL,'cdvfile://localhost/persistent/SmartRace/1579516360445.jpg','2118','8','11','Ortmann','Porsche 911 GT3 RSR Lechner Racing "Carrera Race Taxi"','Carrera','1','2118','1:32',NULL,'porsche.png','2020-07-15 19:53:38','','-',''); INSERT OR REPLACE INTO cars(brakes,active,tags,`decoder_type`,image,laps,fuel,speed,tyres,name,manufacturer,id,`interval_counter`,scale,magnets,logo,`changed_on`,interval,sound,comment) VALUES (NULL,NULL,NULL,NULL,'cdvfile://localhost/persistent/SmartRace/1579527862304.jpg','',NULL,NULL,'Ortmann','BMW Z4 M Coupe Schubert Motorsport','Carrera','2','','1:32',NULL,'bmw.png',NULL,'','-',''); INSERT OR REPLACE INTO cars(brakes,active,tags,`decoder_type`,image,laps,fuel,speed,tyres,name,manufacturer,id,`interval_counter`,scale,magnets,logo,`changed_on`,interval,sound,comment) VALUES ('8',NULL,'[]',NULL,'cdvfile://localhost/persistent/SmartRace/1579528031459.jpg','1259','8','11','Ortmann','Audi R8 LMS "Yaco Racing, No. 50"','Carrera','3','1259','1:32',NULL,'audi.png','2020-09-27 15:53:41','','-',''); INSERT OR REPLACE INTO cars(brakes,active,tags,`decoder_type`,image,laps,fuel,speed,tyres,name,manufacturer,id,`interval_counter`,scale,magnets,logo,`changed_on`,interval,sound,comment) VALUES (NULL,NULL,NULL,NULL,'cdvfile://localhost/persistent/SmartRace/1579528151896.jpg','',NULL,NULL,'Original','Ferrari 150 Italia „Felipe Massa, No. 6“','Carrera','4','','1:32',NULL,'ferrari.png',NULL,'','-',''); INSERT OR REPLACE INTO cars(brakes,active,tags,`decoder_type`,image,laps,fuel,speed,tyres,name,manufacturer,id,`interval_counter`,scale,magnets,logo,`changed_on`,interval,sound,comment) VALUES (NULL,NULL,NULL,NULL,'cdvfile://localhost/persistent/SmartRace/1579528407722.jpg','',NULL,NULL,'Original','McLaren Mercedes MP4—22, No. 1','Carrera','5','','1:32',NULL,'mclaren.png',NULL,'','-',''); INSERT OR REPLACE INTO cars(brakes,active,tags,`decoder_type`,image,laps,fuel,speed,tyres,name,manufacturer,id,`interval_counter`,scale,magnets,logo,`changed_on`,interval,sound,comment) VALUES ('8',NULL,'[]',NULL,'cdvfile://localhost/persistent/SmartRace/1587188334887.jpg','562','8','15','Ortmann','Porsche GT3 RSR „Proton Competition No. 77“','Carrera','6','562','1:24',NULL,'porsche.png','2020-07-15 19:49:56','','-',''); INSERT OR REPLACE INTO cars(brakes,active,tags,`decoder_type`,image,laps,fuel,speed,tyres,name,manufacturer,id,`interval_counter`,scale,magnets,logo,`changed_on`,interval,sound,comment) VALUES ('4',NULL,'[]',NULL,'cdvfile://localhost/persistent/SmartRace/1587188248352.jpg','1079','8','15','Ortmann','Audi R8 LMS „Yaco Racing, No. 16“','Carrera','7','1079','1:24',NULL,'audi.png','2020-09-27 15:53:41','','-',''); INSERT OR REPLACE INTO cars(brakes,active,tags,`decoder_type`,image,laps,fuel,speed,tyres,name,manufacturer,id,`interval_counter`,scale,magnets,logo,`changed_on`,interval,sound,comment) VALUES (NULL,NULL,'[]',NULL,'cdvfile://localhost/persistent/SmartRace/1587188298480.jpg','817',NULL,NULL,'Ortmann','Bill Thomas Cheetah','Carrera','8','817','1:24',NULL,'btm.png',NULL,'','-',''); INSERT OR REPLACE INTO cars(brakes,active,tags,`decoder_type`,image,laps,fuel,speed,tyres,name,manufacturer,id,`interval_counter`,scale,magnets,logo,`changed_on`,interval,sound,comment) VALUES ('8',NULL,'[]',NULL,'','83','8','15','Ortmann','Mercedes Benz AMG','Carrera','9','83','1:24',NULL,'mercedes.png','2020-05-09 20:02:02','','-',''); INSERT OR REPLACE INTO cars(brakes,active,tags,`decoder_type`,image,laps,fuel,speed,tyres,name,manufacturer,id,`interval_counter`,scale,magnets,logo,`changed_on`,interval,sound,comment) VALUES ('8',NULL,'[]',NULL,'','136','8','11','Original','BMW M1','Carrera','10','136','1:32',NULL,'bmw.png','2020-08-25 20:06:41','','-',''); INSERT OR REPLACE INTO cars(brakes,active,tags,`decoder_type`,image,laps,fuel,speed,tyres,name,manufacturer,id,`interval_counter`,scale,magnets,logo,`changed_on`,interval,sound,comment) VALUES ('8',NULL,'[]',NULL,'','1402','8','11','Ortmann','Audi A5 DTM','Carrera','11','1402','1:32',NULL,'audi.png','2020-09-27 15:53:41','','-',''); INSERT OR REPLACE INTO tracks(length,`maximum_lap_time`,id,image,`pitstop_delta`,name,`minimum_lap_time`) VALUES ('1072','','2','','','Habichthorst-Ring','4'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('6','1','','471','5210','1587739197242','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('6','1','','483','5104','1587739265886','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('8','1','','516','5126','1587739762433','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('8','1','','518','5188','1587739772975','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('8','1','','519','5235','1587739778213','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('8','1','','521','5106','1587739789242','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('8','1','','522','5066','1587739794204','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('8','1','','523','5251','1587739799474','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('8','1','','524','5234','1587739804719','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('8','1','','533','5147','1587739879162','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('8','1','','539','5164','1587739917209','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('8','1','','542','5133','1587739932988','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('8','7','','989','5487','1587883447675','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('8','7','','1009','5603','1587883606857','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('8','7','','1116','5481','1587884281280','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('8','7','','1493','5500','1588174208058','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('8','7','','1495','5555','1588174213622','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('8','7','','1497','5533','1588174219266','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('6','1','','1546','5214','1588174474612','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('6','1','','1616','5106','1588174752958','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('8','7','','1641','5540','1588186486572','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('8','7','','1677','5581','1588186675323','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('8','7','','1679','5583','1588186680882','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('8','7','','1681','5534','1588186686502','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('7','1','','1693','4790','1588186717334','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('6','2','','1878','6067','1588943807337','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('6','2','','1879','6359','1588943813773','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('6','2','','1881','7455','1588943912152','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('6','2','','1882','6857','1588943943171','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('6','2','','1884','6358','1588944000306','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('6','2','','1885','10934','1588944011095','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('6','2','','1886','5997','1588944017060','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('6','2','','1888','6481','1588944070926','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('6','2','','1890','6220','1588944132702','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('6','2','','1892','6364','1588944202316','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('6','1','','2137','5107','1588950771890','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('9','4','','2181','4928','1589047296578','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('7','1','','2188','4723','1589047381285','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('7','1','','2190','4704','1589047385937','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('7','1','','2192','4785','1589047390731','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('7','1','','2194','4742','1589047395523','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('7','1','','2196','4710','1589047400193','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('9','4','','2212','4957','1589047543343','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('9','4','','2244','4940','1589047918664','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('9','4','','2275','4943','1589048047380','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('9','4','','2287','4938','1589048086385','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('9','4','','2294','4953','1589048108505','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('7','1','','2306','4761','1589048154417','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('9','4','','2309','4980','1589048161337','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('7','1','','2316','4738','1589048178635','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('9','4','','2325','4941','1589048208580','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('9','4','','2329','4816','1589048218435','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('9','4','','2331','4820','1589048223214','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('7','1','','2332','4787','1589048227532','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('10','4','','2401','5068','1589049024518','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('10','4','','2406','5051','1589049042455','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('10','4','','2453','5054','1589049243326','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('10','4','','2457','4998','1589049261462','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('10','4','','2466','5075','1589049293848','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('10','4','','2522','5059','1589049551072','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('1','1','','3301','4706','1589054883439','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('1','1','','3303','4703','1589054888120','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('1','1','','3345','4693','1589055061890','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('1','1','','3387','4735','1589055193870','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('1','1','','3452','4736','1589055695557','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('11','4','','3482','4466','1589055973643','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('11','4','','3483','4381','1589055978076','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('11','4','','3528','4492','1589056497698','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('11','4','','3560','4489','1589056631923','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('11','4','','3581','4483','1589056757677','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('11','4','','3583','4497','1589056766927','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('1','1','','3603','4663','1589056864540','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('11','4','','3651','4462','1589057062957','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('1','1','','3690','4717','1589057225474','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('11','4','','3708','4505','1589057307600','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('1','1','','3709','4627','1589057308209','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('11','4','','3712','4432','1589057318595','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('1','1','','3718','4686','1589057337606','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('11','4','','3893','4483','1589058094130','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('1','1','','3934','4713','1589058296696','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('3','3','','4167','5732','1591891861443','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('3','3','','4178','5510','1592676253735','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('3','3','','4179','5444','1592676259171','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('3','3','','4180','5437','1592676264572','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('1','8','','4183','6442','1592676270940','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('1','8','','4189','6871','1592676315726','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('3','3','','4190','5477','1592676317616','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('1','8','','4194','7584','1592676337112','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('1','8','','4196','6932','1592676343995','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('3','3','','4202','5770','1592676369914','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('1','8','','4203','6308','1592676372816','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('1','8','','4209','6508','1592676420970','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('3','3','','4210','5358','1592676421146','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('3','3','','4211','5508','1592676426554','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('1','8','','4212','6317','1592676427390','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('1','8','','4214','8709','1592676465851','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('1','8','','4215','6544','1592676472462','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('3','3','','4217','5862','1592676482788','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('3','3','','4218','5407','1592676488048','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('1','8','','4225','6440','1592676564039','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('7','1','','4253','4775','1594835348588','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('6','1','','4258','5215','1594835415649','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('6','1','','4260','4983','1594835426052','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('6','1','','4261','5032','1594835431084','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('6','1','','4262','5222','1594835436276','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('6','1','','4263','4988','1594835441210','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('3','7','','4393','5689','1594836170584','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('3','7','','4428','5691','1594836367872','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('3','7','','4430','5674','1594836373579','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('3','7','','4436','5687','1594836390858','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('3','7','','4438','5667','1594836396669','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('3','7','','4446','5696','1594836435707','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('3','7','','4448','5686','1594836441377','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('3','7','','4452','5690','1594836452734','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('3','7','','4469','5683','1594836499448','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('3','7','','4471','5683','1594836505168','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('10','4','','4854','5028','1598378779953','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('3','1','','4864','4619','1598378826057','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('3','1','','4874','4614','1598378860430','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('10','4','','4885','5012','1598378896524','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('10','4','','4919','5083','1598379176505','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('10','4','','4924','5038','1598379259972','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('3','1','','4989','4566','1598379772897','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('3','1','','4990','4600','1598379777411','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('3','1','','5099','4592','1598380412720','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('3','1','','5100','4612','1598380417276','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('3','1','','5101','4599','1598380422029','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('3','1','','5103','4620','1598380431423','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('3','1','','5163','4616','1598380707144','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('3','1','','5173','4590','1598380746088','2');