[instance_information] app_version: 4.0.4 cu_version: 5337 platform_name: macOS 11.2.3 [device_information] model: x86_64 manufacturer: Apple serial: C02W80Y0HTD6 [debug_log] [2021-03-15 12:19:06] app.server.message_send_for_controller: {"type":"update_event_status","data":"running"} [2021-03-15 12:19:01] app.server.message_send_for_controller: {"type":"update_event_status","data":"starting"} [2021-03-15 12:18:59] app.server.message_send_for_controller: {"type":"update_event_status","data":"prepare_for_start"} [2021-03-15 12:17:45] app.server.message_send_for_controller: {"type":"update_controller_state","data":{"controller":"1","state":"active"}} [2021-03-15 12:15:08] app.server.message_send_for_controller: {"type":"update_event_status","data":"running"} [2021-03-15 12:15:03] app.server.message_send_for_controller: {"type":"update_event_status","data":"restarting"} [2021-03-15 12:14:59] app.server.message_send_for_controller: {"type":"update_event_status","data":"suspended"} [2021-03-15 12:12:37] app.server.message_send_for_controller: {"type":"update_event_status","data":"running"} [2021-03-15 12:12:32] app.server.message_send_for_controller: {"type":"update_event_status","data":"starting"} [2021-03-15 12:12:20] app.server.message_send_for_controller: {"type":"update_event_status","data":"prepare_for_start"} [2021-03-15 12:08:21] app.server.message_send_for_controller: {"type":"update_controller_state","data":{"controller":"1","state":"active"}} [2021-03-15 12:04:04] app.server.message_send_for_controller: {"type":"update_controller_state","data":{"controller":"1","state":"active"}} [2021-03-15 12:03:56] app.server.message_send_for_controller: {"type":"update_event_status","data":"running"} [2021-03-15 12:03:50] app.server.message_send_for_controller: {"type":"update_event_status","data":"starting"} [2021-03-15 12:03:50] app.server.message_send_for_controller: {"type":"update_event_status","data":"prepare_for_start"} [options] app.options.sound_output_type: queue app.options.sound_new_leader: speech app.options.sound_race_start: yes app.options.language: de app.options.display_fullscreen_button: no app.options.timetable_sorting: dynamic app.options.sound_race_volume: 0.6 app.options.show_connection_advice: no app.options.ignore_ai_car: yes app.options.display_start_button: yes app.options.sound_vsc_ending: speech app.options.sound_race: sounds/race.mp3 app.options.sound_current_leader: speech app.options.show_average_lap_speed: always app.options.sound_penalty_served: speech app.options.sound_pitstop_complete: speech 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.lapcounter_display: forwards app.options.sound_low_fuel: speech app.options.use_fastclick: 0 app.options.sound_two_laps: speech app.options.sound_2_minutes: speech app.options.detect_missed_laps_checklane: no app.options.sound_5_minutes: speech app.options.sound_applause_qual: both app.options.sound_sector_overall_best: none app.options.sound_bell: speech app.options.show_timetable_advice: no app.options.sound_ten_laps: speech app.options.display_vsc_button: no app.options.sound_sector_personal_best: none app.options.sound_10_minutes: speech app.options.sound_last_lap: speech app.options.display_esc_button: no 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.active_track: 2 app.options.sound_halftime_qualifying: speech app.options.vsc_brakes: 0 app.options.finish_style_time: instant 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.debug_mode: yes app.options.sound_caution: speech app.options.timetable_display_image: logo app.options.sound_applause_3rd: speech app.options.position_tower_enabled: no app.options.stop_after_event_end: no app.options.sound_last_minute: speech app.options.vsc_speed: 0 app.options.sound_tire_change_complete: speech app.options.sound_language: de-DE app.options.sound_jumpstart: speech app.options.sound_tank_empty: speech app.options.increase_grid_lights: yes app.options.sound_halftime_race: speech app.options.sound_pits_warning: generic app.options.display_active_track: no app.options.ignore_safety_car: yes app.options.sound_applause: both app.options.sound_damage_repaired: speech app.options.background: url(img/bg/start_grid_blur.jpg) no-repeat center app.options.race_finish_style: first app.options.display_penalty_button: yes app.options.background_custom: app.options.show_sector_times: never [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, digital_analog 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 backups(id,date,file) VALUES ('1','2021-01-06 11:35:32','file:///Users/tobiaslanger/Library/Containers/com.trademarc.smartrace/Data/Library/Application%20Support/com.trademarc.smartrace/files/SmartRace-Backup_06-01-2021_1609929332421.srbk'); 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 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 ('yes','','9','','Jörg','','',NULL,'','Jörg','normal'); INSERT OR REPLACE INTO cars(brakes,active,tags,`decoder_type`,image,laps,fuel,speed,tyres,`digital_analog`,name,manufacturer,id,`interval_counter`,scale,magnets,logo,`changed_on`,interval,sound,comment) VALUES ('14',NULL,NULL,NULL,'cdvfile://localhost/persistent/SmartRace/1579516360445.jpg','2312','8','15','Ortmann',NULL,'Porsche 911 GT3 RSR Lechner Racing "Carrera Race Taxi"','Carrera','1','2312','1:32',NULL,'porsche.png','2021-03-14 14:33:53','','-',''); INSERT OR REPLACE INTO cars(brakes,active,tags,`decoder_type`,image,laps,fuel,speed,tyres,`digital_analog`,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',NULL,'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,`digital_analog`,name,manufacturer,id,`interval_counter`,scale,magnets,logo,`changed_on`,interval,sound,comment) VALUES ('8','yes','[]','Carrera (default)','cdvfile://localhost/persistent/SmartRace/1579528031459.jpg','1259','8','11','Ortmann',NULL,'Audi R8 LMS "Yaco Racing, No. 50"','Carrera','3','1259','1:32','yes','audi.png','2020-09-27 15:53:41','','-',''); INSERT OR REPLACE INTO cars(brakes,active,tags,`decoder_type`,image,laps,fuel,speed,tyres,`digital_analog`,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',NULL,'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,`digital_analog`,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',NULL,'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,`digital_analog`,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',NULL,'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,`digital_analog`,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',NULL,'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,`digital_analog`,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',NULL,'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,`digital_analog`,name,manufacturer,id,`interval_counter`,scale,magnets,logo,`changed_on`,interval,sound,comment) VALUES ('8',NULL,'[]',NULL,'','83','8','15','Ortmann',NULL,'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,`digital_analog`,name,manufacturer,id,`interval_counter`,scale,magnets,logo,`changed_on`,interval,sound,comment) VALUES ('8',NULL,'[]',NULL,'','136','8','11','Original',NULL,'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,`digital_analog`,name,manufacturer,id,`interval_counter`,scale,magnets,logo,`changed_on`,interval,sound,comment) VALUES ('8',NULL,'[]',NULL,'','1402','8','11','Ortmann',NULL,'Audi A5 DTM','Carrera','11','1402','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,`digital_analog`,name,manufacturer,id,`interval_counter`,scale,magnets,logo,`changed_on`,interval,sound,comment) VALUES (NULL,'yes','[]','Carrera (default)','cdvfile://localhost/persistent/SmartRace/1609243588965.jpg','25',NULL,NULL,'Ortmann',NULL,'BMW M4 DTM „M.Wittmann, No. 11"','Carrera','12','25','1:32','no','bmw.png',NULL,'','-',''); INSERT OR REPLACE INTO cars(brakes,active,tags,`decoder_type`,image,laps,fuel,speed,tyres,`digital_analog`,name,manufacturer,id,`interval_counter`,scale,magnets,logo,`changed_on`,interval,sound,comment) VALUES (NULL,'yes','[]','Carrera (default)','cdvfile://localhost/persistent/SmartRace/1609243703953.jpg','21',NULL,NULL,'Ortmann',NULL,'BMW M6 GT3 „ROWE RACING, No. 99"','Carrera','13','21','1:32','no','bmw.png',NULL,'','-',''); INSERT OR REPLACE INTO cars(brakes,active,tags,`decoder_type`,image,laps,fuel,speed,tyres,`digital_analog`,name,manufacturer,id,`interval_counter`,scale,magnets,logo,`changed_on`,interval,sound,comment) VALUES (NULL,'yes','[]','Carrera (default)','cdvfile://localhost/persistent/SmartRace/1609243800912.jpg','',NULL,NULL,'Ortmann',NULL,'Audi R8 LMS „No. 22A"','Carrera','14','','1:32','no','audi.png',NULL,'','-',''); INSERT OR REPLACE INTO tracks(length,`maximum_lap_time`,id,image,`pitstop_delta`,name,`minimum_lap_time`) VALUES ('1075','','2','cdvfile://localhost/persistent/SmartRace/1609244325563.jpg','','Habichthorst-Ring','4'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('1','1','','5261','5353','1615748443077.0','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('1','1','','5262','5500','1615748448510.0','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('1','1','','5276','5539','1615748543373.0','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('1','1','','5284','5513','1615748589935.0','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('1','1','','5294','5539','1615748663799.0','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('13','1','','5310','5114','1615806299681.0','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('13','1','','5311','5124','1615806304768.0','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('13','1','','5312','5609','1615806310447.0','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('13','1','','5313','5661','1615806316184.0','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('13','1','','5314','5763','1615806321866.0','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('13','1','','5316','5294','1615806337279.0','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('13','1','','5318','5307','1615806355561.0','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('13','1','','5319','5819','1615806361469.0','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('13','1','','5320','5669','1615806367094.0','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('13','1','','5327','5697','1615806428747.0','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('1','1','','5329','5516','1615806512346.0','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('1','1','','5345','5505','1615806629520.0','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('1','1','','5348','5458','1615806646619.0','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('1','1','','5351','5496','1615806663605.0','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('1','1','','5361','5459','1615806721828.0','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('12','1','','5389','5156','1615807071041.0','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('12','1','','5390','5148','1615807076224.0','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('12','1','','5391','5249','1615807081452.0','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('12','1','','5392','5409','1615807086905.0','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('12','1','','5393','5257','1615807092080.0','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('12','1','','5395','5288','1615807107437.0','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('12','1','','5397','5461','1615807118687.0','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('12','1','','5403','5297','1615807171059.0','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('12','1','','5406','5505','1615807187991.0','2'); INSERT OR REPLACE INTO records(`car_id`,`driver_id`,`sector_times`,id,laptime,date,`track_id`) VALUES ('12','1','','5412','5418','1615807222755.0','2');