Show firebird.log [FOUND messages for interval when this test was running]
Jump to: output_first_mismatch    outcomes_full_history    elapsed_time_chart
Show cross-report outcomes.

Annotation type Annotation details
2 @message
assert   
    rdb_trg_name TRG_ATTACH
    rdb_trg_type 8192
    rdb_trg_name TRG_DETACH
    rdb_trg_type 8193
    Error at disconnect:
    Execute statement error
    335544830 : Too many recursion levels of EXECUTE STATEMENT
    Data source : Firebird::
  - At trigger 'TRG_DETACH'
  + At trigger "PUBLIC"."TRG_DETACH"
    Error at disconnect:
    Execute statement error
    335544830 : Too many recursion levels of EXECUTE STATEMENT
    Data source : Firebird::
  - At trigger 'TRG_DETACH'
  + At trigger "PUBLIC"."TRG_DETACH"

LOG DETAILS:

2025-06-30 05:41:01.512
2025-06-30 05:41:01.524 act = <firebird.qa.plugin.Action object at [hex]>
2025-06-30 05:41:01.531 tmp_sql = PosixPath('/var/tmp/qa_2024/test_11679/tmp_8077.sql')
2025-06-30 05:41:01.538 tmp_log = PosixPath('/var/tmp/qa_2024/test_11679/tmp_8077.log')
2025-06-30 05:41:01.543 capsys = <_pytest.capture.CaptureFixture object at [hex]>
2025-06-30 05:41:01.549
2025-06-30 05:41:01.554 @pytest.mark.es_eds
2025-06-30 05:41:01.560 @pytest.mark.version('>=4.0.5')
2025-06-30 05:41:01.567 def test_1(act: Action, tmp_sql: Path, tmp_log: Path, capsys):
2025-06-30 05:41:01.573
2025-06-30 05:41:01.580 test_sql = f"""
2025-06-30 05:41:01.587 set list on;
2025-06-30 05:41:01.593 set bail on;
2025-06-30 05:41:01.598
2025-06-30 05:41:01.607 set term ^;
2025-06-30 05:41:01.618 create or alter trigger trg_detach on disconnect as begin end
2025-06-30 05:41:01.631 ^
2025-06-30 05:41:01.643 create or alter trigger trg_attach on connect as begin end
2025-06-30 05:41:01.651 ^
2025-06-30 05:41:01.663 create sequence g_attach
2025-06-30 05:41:01.671 ^
2025-06-30 05:41:01.677 create sequence g_detach
2025-06-30 05:41:01.685 ^
2025-06-30 05:41:01.692 create sequence g_diff
2025-06-30 05:41:01.700 ^
2025-06-30 05:41:01.709 create exception exc_too_deep_recursion 'Execution terminated by @1: recursion depth exceeded the threshold @2 by @3'
2025-06-30 05:41:01.716 ^
2025-06-30 05:41:01.724 recreate table log(id int primary key, att bigint default current_connection, event_name varchar(6) )
2025-06-30 05:41:01.735 ^
2025-06-30 05:41:01.744 create or alter trigger trg_attach on connect as
2025-06-30 05:41:01.751 declare v_pool_size int;
2025-06-30 05:41:01.759 begin
2025-06-30 05:41:01.768 if ( gen_id(g_attach,0) <= {STOP_RECURSIVE_ES_AFTER_ITER} ) then
2025-06-30 05:41:01.775 in autonomous transaction do
2025-06-30 05:41:01.781 insert into log(id, event_name) values (-gen_id(g_attach,1), 'attach');
2025-06-30 05:41:01.787 else
2025-06-30 05:41:01.792 exception exc_too_deep_recursion using ('trg_attach', {STOP_RECURSIVE_ES_AFTER_ITER}, gen_id(g_attach,1) - {STOP_RECURSIVE_ES_AFTER_ITER} - 1)
2025-06-30 05:41:01.797 ;
2025-06-30 05:41:01.808 end
2025-06-30 05:41:01.816 ^
2025-06-30 05:41:01.824 create or alter trigger trg_detach on disconnect as
2025-06-30 05:41:01.836 begin
2025-06-30 05:41:01.846 if ( gen_id(g_detach,0) <= {STOP_RECURSIVE_ES_AFTER_ITER} ) then
2025-06-30 05:41:01.855 execute statement ('insert into log(id, event_name) values(?, ?)') (gen_id(g_detach,1), 'detach')
2025-06-30 05:41:01.863 with autonomous transaction
2025-06-30 05:41:01.874 on external 'localhost:' || rdb$get_context('SYSTEM', 'DB_NAME')
2025-06-30 05:41:01.887 as user '{act.db.user}' password '{act.db.password}' role 'R' || replace(uuid_to_char(gen_uuid()),'-','')
2025-06-30 05:41:01.897 ;
2025-06-30 05:41:01.908 else
2025-06-30 05:41:01.919 exception exc_too_deep_recursion using ('trg_detach', {STOP_RECURSIVE_ES_AFTER_ITER}, gen_id(g_detach,1) - {STOP_RECURSIVE_ES_AFTER_ITER} - 1)
2025-06-30 05:41:01.934 ;
2025-06-30 05:41:01.946 end
2025-06-30 05:41:01.955 ^
2025-06-30 05:41:01.963 set term ;^
2025-06-30 05:41:01.974 commit;
2025-06-30 05:41:01.986 select
2025-06-30 05:41:01.996 rdb$trigger_name as "rdb_trg_name"
2025-06-30 05:41:02.006 ,rdb$trigger_type as "rdb_trg_type"
2025-06-30 05:41:02.012 from rdb$triggers
2025-06-30 05:41:02.019 where rdb$system_flag is distinct from 1
2025-06-30 05:41:02.025 order by rdb$trigger_name;
2025-06-30 05:41:02.031 rollback;
2025-06-30 05:41:02.039 connect '{act.db.dsn}' user {act.db.user} password '{act.db.password}';
2025-06-30 05:41:02.049 quit;
2025-06-30 05:41:02.058 """
2025-06-30 05:41:02.066 with open(tmp_sql, 'w') as f:
2025-06-30 05:41:02.075 f.write(test_sql)
2025-06-30 05:41:02.088
2025-06-30 05:41:02.099 # Get Firebird log before test
2025-06-30 05:41:02.108 # ----------------------------
2025-06-30 05:41:02.116 fb_log_init = act.get_firebird_log()
2025-06-30 05:41:02.122 failed_finish_isql_msg = ''
2025-06-30 05:41:02.131 with act.db.connect() as con:
2025-06-30 05:41:02.143 with open(tmp_log, 'w') as f:
2025-06-30 05:41:02.153 try:
2025-06-30 05:41:02.165 p_handed_isql = subprocess.Popen( [act.vars['isql'], '-i', str(tmp_sql),
2025-06-30 05:41:02.179 '-user', act.db.user,
2025-06-30 05:41:02.190 '-password', act.db.password, act.db.dsn],
2025-06-30 05:41:02.198 stdout = f,
2025-06-30 05:41:02.207 stderr = subprocess.STDOUT
2025-06-30 05:41:02.215 )
2025-06-30 05:41:02.226
2025-06-30 05:41:02.234 for i in range(MAX_WAIT_FOR_ISQL_TERMINATE):
2025-06-30 05:41:02.241 time.sleep(1)
2025-06-30 05:41:02.248 # Check if child process has terminated.
2025-06-30 05:41:02.262 # Set and return returncode attribute. Otherwise, returns None.
2025-06-30 05:41:02.274 if p_handed_isql.poll() is not None:
2025-06-30 05:41:02.284 break
2025-06-30 05:41:02.291
2025-06-30 05:41:02.303 finally:
2025-06-30 05:41:02.315 p_handed_isql.terminate()
2025-06-30 05:41:02.327
2025-06-30 05:41:02.338 if p_handed_isql.poll() is None:
2025-06-30 05:41:02.349 failed_finish_isql_msg = f'isql_outcome: process WAS NOT terminated in {MAX_WAIT_FOR_ISQL_TERMINATE} second. Probably MAX_WAIT_FOR_ISQL_TERMINATE value must be increased.'
2025-06-30 05:41:02.355
2025-06-30 05:41:02.364 # Get Firebird log after test
2025-06-30 05:41:02.371 # ----------------------------
2025-06-30 05:41:02.378 fb_log_curr = act.get_firebird_log()
2025-06-30 05:41:02.388
2025-06-30 05:41:02.399 with open(tmp_log, 'a') as f:
2025-06-30 05:41:02.405 if failed_finish_isql_msg:
2025-06-30 05:41:02.411 f.write(failed_finish_isql_msg+'\n')
2025-06-30 05:41:02.418 for line in unified_diff(fb_log_init, fb_log_curr):
2025-06-30 05:41:02.427 if line.startswith('+'):
2025-06-30 05:41:02.438 f.write(line[1:] + '\n')
2025-06-30 05:41:02.447
2025-06-30 05:41:02.455
2025-06-30 05:41:02.463 expected_stdout = f"""
2025-06-30 05:41:02.472 rdb_trg_name                    TRG_ATTACH
2025-06-30 05:41:02.479 rdb_trg_type                    8192
2025-06-30 05:41:02.485 rdb_trg_name                    TRG_DETACH
2025-06-30 05:41:02.492 rdb_trg_type                    8193
2025-06-30 05:41:02.504
2025-06-30 05:41:02.517 Error at disconnect:
2025-06-30 05:41:02.531 Execute statement error at attach :
2025-06-30 05:41:02.543 335544830 : Too many recursion levels of EXECUTE STATEMENT
2025-06-30 05:41:02.556 Data source : Firebird::
2025-06-30 05:41:02.565 At trigger 'TRG_DETACH'
2025-06-30 05:41:02.573
2025-06-30 05:41:02.579 Error at disconnect:
2025-06-30 05:41:02.593 Execute statement error at attach :
2025-06-30 05:41:02.606 335544830 : Too many recursion levels of EXECUTE STATEMENT
2025-06-30 05:41:02.619 Data source : Firebird::
2025-06-30 05:41:02.630 At trigger 'TRG_DETACH'
2025-06-30 05:41:02.640 """
2025-06-30 05:41:02.647
2025-06-30 05:41:02.655 with open(tmp_log, 'r') as f:
2025-06-30 05:41:02.665 for line in f:
2025-06-30 05:41:02.676 print(line)
2025-06-30 05:41:02.691
2025-06-30 05:41:02.702 act.expected_stdout = expected_stdout
2025-06-30 05:41:02.711 act.stdout = capsys.readouterr().out
2025-06-30 05:41:02.721 >       assert act.clean_stdout == act.clean_expected_stdout
2025-06-30 05:41:02.728 E       assert
2025-06-30 05:41:02.735 E           rdb_trg_name TRG_ATTACH
2025-06-30 05:41:02.742 E           rdb_trg_type 8192
2025-06-30 05:41:02.750 E           rdb_trg_name TRG_DETACH
2025-06-30 05:41:02.758 E           rdb_trg_type 8193
2025-06-30 05:41:02.765 E           Error at disconnect:
2025-06-30 05:41:02.771 E           Execute statement error
2025-06-30 05:41:02.778 E           335544830 : Too many recursion levels of EXECUTE STATEMENT
2025-06-30 05:41:02.790 E           Data source : Firebird::
2025-06-30 05:41:02.796 E         - At trigger 'TRG_DETACH'
2025-06-30 05:41:02.808 E         + At trigger "PUBLIC"."TRG_DETACH"
2025-06-30 05:41:02.823 E           Error at disconnect:
2025-06-30 05:41:02.837 E           Execute statement error
2025-06-30 05:41:02.850 E           335544830 : Too many recursion levels of EXECUTE STATEMENT
2025-06-30 05:41:02.860 E           Data source : Firebird::
2025-06-30 05:41:02.869 E         - At trigger 'TRG_DETACH'
2025-06-30 05:41:02.883 E         + At trigger "PUBLIC"."TRG_DETACH"
2025-06-30 05:41:02.909
2025-06-30 05:41:02.922 tests/bugs/gh_8077_test.py:199: AssertionError
2025-06-30 05:41:02.933 ---------------------------- Captured stdout setup -----------------------------
2025-06-30 05:41:02.947 Creating db: localhost:/var/tmp/qa_2024/test_11679/test.fdb [page_size=None, sql_dialect=None, charset='NONE', user=SYSDBA, password=masterkey]
3 #text
act = <firebird.qa.plugin.Action pytest object at [hex]>
tmp_sql = PosixPath('/var/tmp/qa_2024/test_11679/tmp_8077.sql')
tmp_log = PosixPath('/var/tmp/qa_2024/test_11679/tmp_8077.log')
capsys = <_pytest.capture.CaptureFixture pytest object at [hex]>

    @pytest.mark.es_eds
    @pytest.mark.version('>=4.0.5')
    def test_1(act: Action, tmp_sql: Path, tmp_log: Path, capsys):
    
        test_sql = f"""
            set list on;
            set bail on;
    
            set term ^;
            create or alter trigger trg_detach on disconnect as begin end
            ^
            create or alter trigger trg_attach on connect as begin end
            ^
            create sequence g_attach
            ^
            create sequence g_detach
            ^
            create sequence g_diff
            ^
            create exception exc_too_deep_recursion 'Execution terminated by @1: recursion depth exceeded the threshold @2 by @3'
            ^
            recreate table log(id int primary key, att bigint default current_connection, event_name varchar(6) )
            ^
            create or alter trigger trg_attach on connect as
                declare v_pool_size int;
            begin
                if ( gen_id(g_attach,0) <= {STOP_RECURSIVE_ES_AFTER_ITER} ) then
                    in autonomous transaction do
                    insert into log(id, event_name) values (-gen_id(g_attach,1), 'attach');
                else
                    exception exc_too_deep_recursion using ('trg_attach', {STOP_RECURSIVE_ES_AFTER_ITER}, gen_id(g_attach,1) - {STOP_RECURSIVE_ES_AFTER_ITER} - 1)
                    ;
            end
            ^
            create or alter trigger trg_detach on disconnect as
            begin
                if ( gen_id(g_detach,0) <= {STOP_RECURSIVE_ES_AFTER_ITER} ) then
                    execute statement ('insert into log(id, event_name) values(?, ?)') (gen_id(g_detach,1), 'detach')
                    with autonomous transaction
                    on external 'localhost:' || rdb$get_context('SYSTEM', 'DB_NAME')
                        as user '{act.db.user}' password '{act.db.password}' role 'R' || replace(uuid_to_char(gen_uuid()),'-','')
                    ;
                else
                    exception exc_too_deep_recursion using ('trg_detach', {STOP_RECURSIVE_ES_AFTER_ITER}, gen_id(g_detach,1) - {STOP_RECURSIVE_ES_AFTER_ITER} - 1)
                    ;
            end
            ^
            set term ;^
            commit;
            select
                rdb$trigger_name as "rdb_trg_name"
                ,rdb$trigger_type as "rdb_trg_type"
            from rdb$triggers
            where rdb$system_flag is distinct from 1
            order by rdb$trigger_name;
            rollback;
            connect '{act.db.dsn}' user {act.db.user} password '{act.db.password}';
            quit;
        """
        with open(tmp_sql, 'w') as f:
            f.write(test_sql)
    
        # Get Firebird log before test
        # ----------------------------
        fb_log_init = act.get_firebird_log()
        failed_finish_isql_msg = ''
        with act.db.connect() as con:
            with open(tmp_log, 'w') as f:
                try:
                    p_handed_isql = subprocess.Popen( [act.vars['isql'], '-i', str(tmp_sql),
                                                      '-user', act.db.user,
                                                      '-password', act.db.password, act.db.dsn],
                                                      stdout = f,
                                                      stderr = subprocess.STDOUT
                                                    )
    
                    for i in range(MAX_WAIT_FOR_ISQL_TERMINATE):
                        time.sleep(1)
                        # Check if child process has terminated.
                        # Set and return returncode attribute. Otherwise, returns None.
                        if p_handed_isql.poll() is not None:
                            break
    
                finally:
                    p_handed_isql.terminate()
    
                if p_handed_isql.poll() is None:
                    failed_finish_isql_msg = f'isql_outcome: process WAS NOT terminated in {MAX_WAIT_FOR_ISQL_TERMINATE} second. Probably MAX_WAIT_FOR_ISQL_TERMINATE value must be increased.'
    
        # Get Firebird log after test
        # ----------------------------
        fb_log_curr = act.get_firebird_log()
    
        with open(tmp_log, 'a') as f:
            if failed_finish_isql_msg:
                f.write(failed_finish_isql_msg+'\n')
            for line in unified_diff(fb_log_init, fb_log_curr):
                if line.startswith('+'):
                    f.write(line[1:] + '\n')
    
    
        expected_stdout = f"""
            rdb_trg_name                    TRG_ATTACH
            rdb_trg_type                    8192
            rdb_trg_name                    TRG_DETACH
            rdb_trg_type                    8193
    
            Error at disconnect:
            Execute statement error at attach :
            335544830 : Too many recursion levels of EXECUTE STATEMENT
            Data source : Firebird::
            At trigger 'TRG_DETACH'
    
            Error at disconnect:
            Execute statement error at attach :
            335544830 : Too many recursion levels of EXECUTE STATEMENT
            Data source : Firebird::
            At trigger 'TRG_DETACH'
        """
    
        with open(tmp_log, 'r') as f:
            for line in f:
                print(line)
    
        act.expected_stdout = expected_stdout
        act.stdout = capsys.readouterr().out
>       assert act.clean_stdout == act.clean_expected_stdout
E       assert   
E           rdb_trg_name TRG_ATTACH
E           rdb_trg_type 8192
E           rdb_trg_name TRG_DETACH
E           rdb_trg_type 8193
E           Error at disconnect:
E           Execute statement error
E           335544830 : Too many recursion levels of EXECUTE STATEMENT
E           Data source : Firebird::
E         - At trigger 'TRG_DETACH'
E         + At trigger "PUBLIC"."TRG_DETACH"
E           Error at disconnect:
E           Execute statement error
E           335544830 : Too many recursion levels of EXECUTE STATEMENT
E           Data source : Firebird::
E         - At trigger 'TRG_DETACH'
E         + At trigger "PUBLIC"."TRG_DETACH"

tests/bugs/gh_8077_test.py:199: AssertionError
Full history of outcomes and elapsed time, ms:
NN SNAP_INFO CS_outcome SS_outcome CS_run_time SS_run_time CS_run_beg CS_run_end SS_run_beg SS_run_end
1 6.0.0.881 2025.06.27 7035d F F 11644 5403 2025.06.30 02:03:38.798 2025.06.30 02:03:50.442 2025.06.29 23:19:10.467 2025.06.29 23:19:15.870
2 6.0.0.877 2025.06.26 8e38f F F 10619 4397 2025.06.27 01:42:41.200 2025.06.27 01:42:51.819 2025.06.26 23:10:11.769 2025.06.26 23:10:16.166
3 6.0.0.876 2025.06.25 b1bec F F 10572 5331 2025.06.26 01:46:31.709 2025.06.26 01:46:42.281 2025.06.25 23:12:06.275 2025.06.25 23:12:11.606
4 6.0.0.863 2025.06.24 c3c20 F F 10639 4328 2025.06.25 01:46:49.466 2025.06.25 01:47:00.105 2025.06.24 23:11:51.310 2025.06.24 23:11:55.638
5 6.0.0.858 2025.06.23 8d6f7 F F 10624 4496 2025.06.24 01:47:10.914 2025.06.24 01:47:21.538 2025.06.23 23:11:59.898 2025.06.23 23:12:04.394
6 6.0.0.849 2025.06.20 7b79c F F 10593 4463 2025.06.21 01:58:43.595 2025.06.21 01:58:54.188 2025.06.20 23:21:11.941 2025.06.20 23:21:16.404
7 6.0.0.848 2025.06.19 c483c F F 10506 4451 2025.06.20 01:55:04.173 2025.06.20 01:55:14.679 2025.06.19 23:17:59.396 2025.06.19 23:18:03.847
8 6.0.0.845 2025.06.18 22b12 F F 10595 4311 2025.06.19 02:03:44.044 2025.06.19 02:03:54.639 2025.06.18 23:21:06.703 2025.06.18 23:21:11.014
9 6.0.0.843 2025.06.16 995f4 F F 10568 2242 2025.06.18 02:01:58.586 2025.06.18 02:02:09.154 2025.06.17 23:23:24.058 2025.06.17 23:23:26.300
10 6.0.0.840 2025.06.14 29bca F F 10591 4245 2025.06.16 01:53:46.721 2025.06.16 01:53:57.312 2025.06.15 23:15:24.450 2025.06.15 23:15:28.695
11 6.0.0.838 2025.06.13 0e28a F F 11625 5478 2025.06.14 02:06:49.474 2025.06.14 02:07:01.099 2025.06.13 23:23:03.028 2025.06.13 23:23:08.506
12 6.0.0.835 2025.06.12 2cf29 F F 10582 3226 2025.06.13 02:06:47.722 2025.06.13 02:06:58.304 2025.06.12 23:27:08.288 2025.06.12 23:27:11.514
13 6.0.0.834 2025.06.11 e889f F F 10603 4289 2025.06.12 02:01:59.968 2025.06.12 02:02:10.571 2025.06.11 23:23:16.454 2025.06.11 23:23:20.743
14 6.0.0.800 2025.06.10 1f226 P P 16919 5422 2025.06.11 00:28:51.190 2025.06.11 00:29:08.109 2025.06.10 22:21:24.151 2025.06.10 22:21:29.573
15 6.0.0.799 2025.06.07 be644 P P 9506 4308 2025.06.10 00:30:29.611 2025.06.10 00:30:39.117 2025.06.09 22:20:59.251 2025.06.09 22:21:03.559
16 6.0.0.797 2025.06.06 303e8 P P 10579 3261 2025.06.07 00:34:11.932 2025.06.07 00:34:22.511 2025.06.06 22:20:32.220 2025.06.06 22:20:35.481
17 6.0.0.795 2025.05.29 7a71a P P 9538 4393 2025.06.06 00:29:02.741 2025.06.06 00:29:12.279 2025.06.05 22:19:40.626 2025.06.05 22:19:45.019
18 6.0.0.792 2025.05.28 b4327 P P 19275 5532 2025.05.29 00:43:00.114 2025.05.29 00:43:19.389 2025.05.28 22:22:36.743 2025.05.28 22:22:42.275
19 6.0.0.791 2025.05.27 02db8 P P 10617 5447 2025.05.28 00:40:11.354 2025.05.28 00:40:21.971 2025.05.27 22:21:40.743 2025.05.27 22:21:46.190
20 6.0.0.789 2025.05.21 64051 P P 10581 4467 2025.05.25 00:32:52.691 2025.05.25 00:33:03.272 2025.05.24 22:20:52.767 2025.05.24 22:20:57.234
21 6.0.0.787 2025.05.20 230ad P P 10572 5455 2025.05.21 00:30:00.371 2025.05.21 00:30:10.943 2025.05.20 22:19:18.106 2025.05.20 22:19:23.561
22 6.0.0.783 2025.05.12 37320 P P 11619 4287 2025.05.19 12:03:24.841 2025.05.19 12:03:36.460 2025.05.19 10:08:04.970 2025.05.19 10:08:09.257
23 6.0.0.779 2025.05.11 136fa P P 16941 4453 2025.05.12 00:25:13.984 2025.05.12 00:25:30.925 2025.05.11 22:18:49.736 2025.05.11 22:18:54.189
24 6.0.0.778 2025.05.07 d735e P P 16864 2281 2025.05.08 00:27:25.394 2025.05.08 00:27:42.258 2025.05.07 22:17:41.833 2025.05.07 22:17:44.114
25 6.0.0.776 2025.05.06 007cd P P 18051 3259 2025.05.07 00:21:42.710 2025.05.07 00:22:00.761 2025.05.06 22:17:37.704 2025.05.06 22:17:40.963
26 6.0.0.770 2025.05.05 82c4a P P 18989 3259 2025.05.06 00:20:55.754 2025.05.06 00:21:14.743 2025.05.05 22:16:53.028 2025.05.05 22:16:56.287
27 6.0.0.767 2025.05.01 cdd29 P P 9533 3476 2025.05.02 00:18:15.797 2025.05.02 00:18:25.330 2025.05.01 22:16:25.098 2025.05.01 22:16:28.574
28 6.0.0.762 2025.04.30 5cb15 P P 9526 4463 2025.05.01 00:14:23.160 2025.05.01 00:14:32.686 2025.04.30 22:15:11.539 2025.04.30 22:15:16.002
29 6.0.0.755 2025.04.29 739c6 P P 10597 4437 2025.04.30 00:17:03.633 2025.04.30 00:17:14.230 2025.04.29 22:16:27.578 2025.04.29 22:16:32.015
30 6.0.0.753 2025.04.27 29ab3 P P 17053 4386 2025.04.28 00:19:08.158 2025.04.28 00:19:25.211 2025.04.27 22:15:49.351 2025.04.27 22:15:53.737
31 6.0.0.745 2025.04.21 78ad8 P P 12577 2220 2025.04.26 00:15:04.510 2025.04.26 00:15:17.087 2025.04.25 22:17:09.587 2025.04.25 22:17:11.807
32 6.0.0.744 2025.04.19 e883a P P 12675 2235 2025.04.20 00:17:09.075 2025.04.20 00:17:21.750 2025.04.19 22:16:40.203 2025.04.19 22:16:42.438
33 6.0.0.742 2025.04.17 abc3b P P 9568 2226 2025.04.19 00:18:59.351 2025.04.19 00:19:08.919 2025.04.18 22:16:57.194 2025.04.18 22:16:59.420
34 6.0.0.737 2025.04.16 fe52b P P 9540 2266 2025.04.17 00:15:55.157 2025.04.17 00:16:04.697 2025.04.16 22:16:58.483 2025.04.16 22:17:00.749
35 6.0.0.736 2025.04.14 3e6be P P 15873 4391 2025.04.14 23:57:02.477 2025.04.14 23:57:18.350 2025.04.14 22:08:31.576 2025.04.14 22:08:35.967
36 6.0.0.735 2025.04.13 6635c P P 11729 4669 2025.04.14 00:00:20.777 2025.04.14 00:00:32.506 2025.04.13 22:09:44.545 2025.04.13 22:09:49.214
37 6.0.0.734 2025.04.12 12f3f P P 15833 4652 2025.04.12 23:57:52.798 2025.04.12 23:58:08.631 2025.04.12 22:08:59.695 2025.04.12 22:09:04.347
38 6.0.0.730 2025.04.11 240b8 P P 15912 4710 2025.04.11 23:59:48.459 2025.04.12 00:00:04.371 2025.04.11 22:08:32.641 2025.04.11 22:08:37.351
39 6.0.0.726 2025.04.10 d79c6 P P 12740 4376 2025.04.10 23:59:27.718 2025.04.10 23:59:40.458 2025.04.10 22:08:35.278 2025.04.10 22:08:39.654
40 6.0.0.725 2025.04.09 a2b05 P P 16940 4396 2025.04.10 00:00:33.578 2025.04.10 00:00:50.518 2025.04.09 22:10:16.051 2025.04.09 22:10:20.447
41 6.0.0.722 2025.04.08 a8b86 P P 11816 3260 2025.04.09 00:16:26.458 2025.04.09 00:16:38.274 2025.04.08 22:16:23.191 2025.04.08 22:16:26.451
42 6.0.0.719 2025.04.06 90fd9 P P 9496 4484 2025.04.07 00:13:55.150 2025.04.07 00:14:04.646 2025.04.06 22:15:01.943 2025.04.06 22:15:06.427
43 6.0.0.717 2025.04.04 53d70 P P 10491 4320 2025.04.05 00:09:04.283 2025.04.05 00:09:14.774 2025.04.04 22:14:24.794 2025.04.04 22:14:29.114
44 6.0.0.716 2025.04.03 fc636 P P 16981 3339 2025.04.04 00:13:39.906 2025.04.04 00:13:56.887 2025.04.03 22:15:55.154 2025.04.03 22:15:58.493
45 6.0.0.715 2025.04.02 907ed P P 15638 3215 2025.04.03 00:13:15.179 2025.04.03 00:13:30.817 2025.04.02 22:15:59.827 2025.04.02 22:16:03.042
46 6.0.0.710 2025.04.01 40651 P P 17023 3363 2025.04.02 00:12:01.238 2025.04.02 00:12:18.261 2025.04.01 22:15:09.087 2025.04.01 22:15:12.450
47 6.0.0.708 2025.03.31 cb069 P P 9504 4435 2025.04.01 00:02:32.758 2025.04.01 00:02:42.262 2025.03.31 22:09:48.391 2025.03.31 22:09:52.826
48 6.0.0.707 2025.03.28 4bd4f P P 16947 4410 2025.03.31 00:02:57.518 2025.03.31 00:03:14.465 2025.03.30 22:10:24.766 2025.03.30 22:10:29.176
49 6.0.0.698 2025.03.26 d72a7 P P 18028 3240 2025.03.28 00:25:21.602 2025.03.28 00:25:39.630 2025.03.27 22:16:30.583 2025.03.27 22:16:33.823
50 6.0.0.693 2025.03.24 0b559 P P 17961 4367 2025.03.25 00:11:44.286 2025.03.25 00:12:02.247 2025.03.24 22:13:16.123 2025.03.24 22:13:20.490
51 6.0.0.687 2025.03.22 730aa P P 9567 4392 2025.03.24 00:22:20.104 2025.03.24 00:22:29.671 2025.03.23 22:19:34.178 2025.03.23 22:19:38.570
52 6.0.0.686 2025.03.20 71bf6 P P 18088 5497 2025.03.21 00:28:33.058 2025.03.21 00:28:51.146 2025.03.20 22:21:47.630 2025.03.20 22:21:53.127
53 6.0.0.685 2025.03.19 a8577 P P 16937 5473 2025.03.20 00:31:42.649 2025.03.20 00:31:59.586 2025.03.19 22:19:45.840 2025.03.19 22:19:51.313
54 6.0.0.680 2025.03.18 90d29 P P 751 341 2025.03.19 10:51:18.741 2025.03.19 10:51:19.492 2025.03.19 09:05:48.105 2025.03.19 09:05:48.446
55 6.0.0.677 2025.03.16 c0a60 P P 640 425 2025.03.17 00:20:55.177 2025.03.17 00:20:55.817 2025.03.16 22:19:28.414 2025.03.16 22:19:28.839
56 6.0.0.676 2025.03.15 3034f P P 750 451 2025.03.16 15:53:17.645 2025.03.16 15:53:18.395 2025.03.16 14:10:23.807 2025.03.16 14:10:24.258
57 6.0.0.673 2025.03.13 40f5b P P 1095 549 2025.03.14 00:19:25.942 2025.03.14 00:19:27.037 2025.03.13 22:18:17.482 2025.03.13 22:18:18.031
58 6.0.0.671 2025.03.12 a4fff P P 709 521 2025.03.13 00:23:00.973 2025.03.13 00:23:01.682 2025.03.12 22:21:12.783 2025.03.12 22:21:13.304
59 6.0.0.663 2025.03.11 daad2 P P 703 446 2025.03.12 00:21:11.747 2025.03.12 00:21:12.450 2025.03.11 22:20:34.642 2025.03.11 22:20:35.088
60 6.0.0.661 2025.03.07 b9869 P P 1210 574 2025.03.11 00:00:06.923 2025.03.11 00:00:08.133 2025.03.10 22:12:28.646 2025.03.10 22:12:29.220
61 6.0.0.660 2025.03.04 a6700 P P 1087 309 2025.03.07 00:09:21.728 2025.03.07 00:09:22.815 2025.03.06 22:16:03.225 2025.03.06 22:16:03.534
62 6.0.0.658 2025.03.03 f15f8 P P 548 449 2025.03.04 00:03:55.966 2025.03.04 00:03:56.514 2025.03.03 22:12:39.501 2025.03.03 22:12:39.950
63 6.0.0.656 2025.02.27 25fb4 P P 697 668 2025.03.03 00:32:20.682 2025.03.03 00:32:21.379 2025.03.02 22:22:38.623 2025.03.02 22:22:39.291
64 6.0.0.655 2025.02.25 6e3e0 P P 1199 565 2025.02.27 00:07:59.351 2025.02.27 00:08:00.550 2025.02.26 22:14:36.803 2025.02.26 22:14:37.368
65 6.0.0.654 2025.02.24 b7141 P P 572 361 2025.02.25 00:11:12.006 2025.02.25 00:11:12.578 2025.02.24 22:15:48.514 2025.02.24 22:15:48.875
66 6.0.0.652 2025.02.22 22662 P P 787 350 2025.02.24 07:28:35.538 2025.02.24 07:28:36.325 2025.02.24 00:29:04.280 2025.02.24 00:29:04.630
67 6.0.0.647 2025.02.21 9fccb P P 665 557 2025.02.22 00:12:29.519 2025.02.22 00:12:30.184 2025.02.21 22:19:44.518 2025.02.21 22:19:45.075
68 6.0.0.640 2025.02.19 9b8ac P P 621 329 2025.02.20 00:10:31.694 2025.02.20 00:10:32.315 2025.02.19 22:14:31.955 2025.02.19 22:14:32.284
69 6.0.0.639 2025.02.18 201a4 P P 621 309 2025.02.19 00:02:28.811 2025.02.19 00:02:29.432 2025.02.18 22:13:37.490 2025.02.18 22:13:37.799
70 6.0.0.637 2025.02.12 6d0f5 P P 925 388 2025.02.14 00:20:18.578 2025.02.14 00:20:19.503 2025.02.13 22:19:28.514 2025.02.13 22:19:28.902
71 6.0.0.636 2025.02.11 0424f P P 617 529 2025.02.12 00:17:58.075 2025.02.12 00:17:58.692 2025.02.11 22:18:56.477 2025.02.11 22:18:57.006
72 6.0.0.635 2025.02.10 f640f P P 1099 551 2025.02.11 00:15:20.185 2025.02.11 00:15:21.284 2025.02.10 22:19:34.420 2025.02.10 22:19:34.971
73 6.0.0.629 2025.02.07 194f9 P P 645 573 2025.02.08 00:15:47.315 2025.02.08 00:15:47.960 2025.02.07 22:18:00.309 2025.02.07 22:18:00.882
74 6.0.0.628 2025.02.06 859d5 P P 725 405 2025.02.07 00:31:51.570 2025.02.07 00:31:52.295 2025.02.06 22:26:06.739 2025.02.06 22:26:07.144
75 6.0.0.621 2025.02.05 34fe7 P P 1068 572 2025.02.06 00:28:07.221 2025.02.06 00:28:08.289 2025.02.05 22:26:36.187 2025.02.05 22:26:36.759
76 6.0.0.609 2025.02.04 76d57 P P 597 618 2025.02.05 00:21:09.579 2025.02.05 00:21:10.176 2025.02.04 22:23:38.270 2025.02.04 22:23:38.888
77 6.0.0.607 2025.02.03 1985b P P 560 537 2025.02.04 00:19:49.658 2025.02.04 00:19:50.218 2025.02.03 22:24:06.634 2025.02.03 22:24:07.171
78 6.0.0.601 2025.02.01 6af07 P P 968 311 2025.02.02 00:12:57.870 2025.02.02 00:12:58.838 2025.02.01 22:17:26.443 2025.02.01 22:17:26.754
79 6.0.0.600 2025.01.27 188de P P 1127 483 2025.01.28 00:20:16.748 2025.01.28 00:20:17.875 2025.01.27 22:19:09.907 2025.01.27 22:19:10.390
80 6.0.0.599 2025.01.25 ba588 P P 1164 496 2025.01.26 00:20:21.358 2025.01.26 00:20:22.522 2025.01.25 22:19:39.251 2025.01.25 22:19:39.747
81 6.0.0.598 2025.01.23 ddbc3 P P 626 531 2025.01.25 00:21:03.923 2025.01.25 00:21:04.549 2025.01.24 22:18:17.591 2025.01.24 22:18:18.122
82 6.0.0.595 2025.01.22 e62f3 P P 635 576 2025.01.23 00:12:24.703 2025.01.23 00:12:25.338 2025.01.22 22:15:52.379 2025.01.22 22:15:52.955
83 6.0.0.594 2025.01.21 47fb6 P P 1032 541 2025.01.22 00:07:41.530 2025.01.22 00:07:42.562 2025.01.21 22:15:27.015 2025.01.21 22:15:27.556
84 6.0.0.590 2025.01.20 9dc1e P P 705 341 2025.01.21 00:14:53.877 2025.01.21 00:14:54.582 2025.01.20 22:18:44.358 2025.01.20 22:18:44.699
85 6.0.0.588 2025.01.19 b1c4e P P 1124 363 2025.01.20 00:12:13.655 2025.01.20 00:12:14.779 2025.01.19 22:17:10.415 2025.01.19 22:17:10.778
86 6.0.0.587 2025.01.18 63e6e P P 655 545 2025.01.19 00:16:33.730 2025.01.19 00:16:34.385 2025.01.18 22:18:44.779 2025.01.18 22:18:45.324
87 6.0.0.585 2025.01.16 2d6bb P P 1024 326 2025.01.18 00:09:17.110 2025.01.18 00:09:18.134 2025.01.17 22:16:27.392 2025.01.17 22:16:27.718
88 6.0.0.584 2025.01.15 a0aa2 P P 957 559 2025.01.16 00:14:48.465 2025.01.16 00:14:49.422 2025.01.15 22:18:39.704 2025.01.15 22:18:40.263
89 6.0.0.581 2025.01.14 21e9e P P 604 319 2025.01.15 00:16:12.203 2025.01.15 00:16:12.807 2025.01.14 22:17:29.722 2025.01.14 22:17:30.041
90 6.0.0.577 2025.01.13 7e293 P P 749 332 2025.01.14 00:16:17.248 2025.01.14 00:16:17.997 2025.01.13 22:17:47.615 2025.01.13 22:17:47.947
91 6.0.0.576 2025.01.12 05898 P P 642 301 2025.01.13 00:11:56.395 2025.01.13 00:11:57.037 2025.01.12 22:16:23.762 2025.01.12 22:16:24.063
92 6.0.0.573 2025.01.10 c20f3 P P 591 488 2025.01.11 00:14:19.695 2025.01.11 00:14:20.286 2025.01.10 22:17:16.934 2025.01.10 22:17:17.422
93 6.0.0.571 2024.12.31 81bba P P 1039 288 2024.12.31 23:50:36.035 2024.12.31 23:50:37.074 2024.12.31 22:00:56.280 2024.12.31 22:00:56.568
94 6.0.0.570 2024.12.30 c3c8d P P 1008 318 2024.12.30 23:49:23.735 2024.12.30 23:49:24.743 2024.12.30 22:00:52.409 2024.12.30 22:00:52.727
95 6.0.0.565 2024.12.28 5fc59 P P 552 334 2024.12.30 12:25:36.140 2024.12.30 12:25:36.692 2024.12.30 11:09:44.196 2024.12.30 11:09:44.530
96 6.0.0.564 2024.12.26 12514 P P 922 296 2024.12.26 23:51:00.394 2024.12.26 23:51:01.316 2024.12.26 22:00:58.469 2024.12.26 22:00:58.765
97 6.0.0.560 2024.12.25 fa83e P P 492 320 2024.12.25 23:42:29.603 2024.12.25 23:42:30.095 2024.12.25 22:00:54.397 2024.12.25 22:00:54.717
98 6.0.0.559 2024.12.23 cc800 P P 497 349 2024.12.24 23:44:32.795 2024.12.24 23:44:33.292 2024.12.24 22:01:21.856 2024.12.24 22:01:22.205
99 6.0.0.556 2024.12.22 a0404 P P 512 290 2024.12.22 23:51:06.223 2024.12.22 23:51:06.735 2024.12.22 22:00:45.607 2024.12.22 22:00:45.897
100 6.0.0.555 2024.12.19 6990a P P 552 314 2024.12.21 13:01:03.215 2024.12.21 13:01:03.767 2024.12.21 11:45:28.701 2024.12.21 11:45:29.015
101 6.0.0.553 2024.12.17 d1f8a P P 936 291 2024.12.17 23:44:34.198 2024.12.17 23:44:35.134 2024.12.17 22:01:24.419 2024.12.17 22:01:24.710
102 6.0.0.552 2024.12.11 85e25 P P 526 302 2024.12.15 23:49:54.727 2024.12.15 23:49:55.253 2024.12.15 22:01:06.739 2024.12.15 22:01:07.041
103 6.0.0.550 2024.12.10 b37ac P P 679 302 2024.12.10 23:45:19.196 2024.12.10 23:45:19.875 2024.12.10 22:02:16.451 2024.12.10 22:02:16.753
104 6.0.0.548 2024.12.08 2cc77 P P 524 309 2024.12.08 23:40:41.607 2024.12.08 23:40:42.131 2024.12.08 22:00:05.382 2024.12.08 22:00:05.691
105 6.0.0.544 2024.12.05 96943 P P 978 287 2024.12.05 23:44:24.787 2024.12.05 23:44:25.765 2024.12.05 22:03:26.060 2024.12.05 22:03:26.347
106 6.0.0.543 2024.12.03 30b77 P P 967 298 2024.12.03 23:45:54.520 2024.12.03 23:45:55.487 2024.12.03 22:02:01.122 2024.12.03 22:02:01.420
107 6.0.0.540 2024.12.02 4a1f4 P P 552 300 2024.12.02 23:41:43.811 2024.12.02 23:41:44.363 2024.12.02 22:01:21.934 2024.12.02 22:01:22.234
108 6.0.0.539 2024.11.28 1f283 P P 566 322 2024.11.29 23:53:31.711 2024.11.29 23:53:32.277 2024.11.29 22:01:46.381 2024.11.29 22:01:46.703
109 6.0.0.535 2024.11.26 77b95 P P 520 311 2024.11.26 23:36:51.467 2024.11.26 23:36:51.987 2024.11.26 21:59:24.108 2024.11.26 21:59:24.419
110 6.0.0.534 2024.11.25 e9584 P P 504 302 2024.11.25 23:38:12.087 2024.11.25 23:38:12.591 2024.11.25 22:00:10.810 2024.11.25 22:00:11.112
111 6.0.0.533 2024.11.17 933ac P P 562 345 2024.11.22 09:42:52.445 2024.11.22 09:42:53.007 2024.11.22 08:29:39.711 2024.11.22 08:29:40.056
112 6.0.0.532 2024.11.16 9e263 P P 512 313 2024.11.16 23:25:41.466 2024.11.16 23:25:41.978 2024.11.16 22:00:09.149 2024.11.16 22:00:09.462
113 6.0.0.530 2024.11.15 49804 P P 899 319 2024.11.16 01:36:19.491 2024.11.16 01:36:20.390 2024.11.15 23:59:28.845 2024.11.15 23:59:29.164
114 6.0.0.528 2024.11.14 9625b P P 577 375 2024.11.15 01:39:31.246 2024.11.15 01:39:31.823 2024.11.15 00:00:54.259 2024.11.15 00:00:54.634
115 6.0.0.526 2024.11.12 65b80 P P 779 298 2024.11.14 01:38:57.844 2024.11.14 01:38:58.623 2024.11.14 00:00:22.989 2024.11.14 00:00:23.287
116 6.0.0.523 2024.11.08 8ca23 P P 938 354 2024.11.11 01:35:29.856 2024.11.11 01:35:30.794 2024.11.10 23:59:16.661 2024.11.10 23:59:17.015
117 6.0.0.520 2024.11.07 4eefa P P 501 312 2024.11.08 01:32:56.546 2024.11.08 01:32:57.047 2024.11.07 23:58:54.057 2024.11.07 23:58:54.369
118 6.0.0.516 2024.11.04 b0c36 P P 937 312 2024.11.05 01:31:51.230 2024.11.05 01:31:52.167 2024.11.04 23:58:34.294 2024.11.04 23:58:34.606
119 6.0.0.515 2024.10.30 d53f3 P P 520 300 2024.11.04 01:34:18.393 2024.11.04 01:34:18.913 2024.11.03 23:59:06.109 2024.11.03 23:59:06.409
120 6.0.0.512 2024.10.29 833ef P P 521 307 2024.10.30 01:36:49.538 2024.10.30 01:36:50.059 2024.10.30 00:00:30.173 2024.10.30 00:00:30.480
121 6.0.0.511 2024.10.26 c4bc9 P P 980 323 2024.10.29 01:37:00.701 2024.10.29 01:37:01.681 2024.10.29 00:00:07.222 2024.10.29 00:00:07.545
122 6.0.0.509 2024.10.25 3aedb P P 996 317 2024.10.26 01:46:47.805 2024.10.26 01:46:48.801 2024.10.26 00:02:55.730 2024.10.26 00:02:56.047
123 6.0.0.508 2024.10.24 a8f5b P P 1028 313 2024.10.25 01:41:07.433 2024.10.25 01:41:08.461 2024.10.25 00:01:19.656 2024.10.25 00:01:19.969
124 6.0.0.502 2024.10.22 6bfd7 P P 578 339 2024.10.23 01:40:39.159 2024.10.23 01:40:39.737 2024.10.23 00:00:58.778 2024.10.23 00:00:59.117
125 6.0.0.500 2024.10.21 be565 P P 572 314 2024.10.22 17:45:54.455 2024.10.22 17:45:55.027 2024.10.22 16:30:36.793 2024.10.22 16:30:37.107
126 6.0.0.499 2024.10.19 6214b P P 527 319 2024.10.20 01:41:56.325 2024.10.20 01:41:56.852 2024.10.20 00:01:57.735 2024.10.20 00:01:58.054
127 6.0.0.498 2024.10.18 591a7 P P 1055 298 2024.10.19 01:39:05.431 2024.10.19 01:39:06.486 2024.10.19 00:00:22.455 2024.10.19 00:00:22.753
128 6.0.0.494 2024.10.17 cf5a4 P P 976 332 2024.10.18 01:39:54.425 2024.10.18 01:39:55.401 2024.10.18 00:01:44.810 2024.10.18 00:01:45.142
129 6.0.0.491 2024.10.14 dc5fb P P 851 303 2024.10.15 01:36:16.458 2024.10.15 01:36:17.309 2024.10.14 23:59:35.130 2024.10.14 23:59:35.433
130 6.0.0.489 2024.10.11 2ba59 P P 1258 338 2024.10.12 01:43:01.665 2024.10.12 01:43:02.923 2024.10.12 00:01:36.814 2024.10.12 00:01:37.152
131 6.0.0.488 2024.10.09 1c93e P P 551 347 2024.10.10 01:51:28.769 2024.10.10 01:51:29.320 2024.10.10 00:04:13.861 2024.10.10 00:04:14.208
132 6.0.0.487 2024.10.06 065a3 P P 549 331 2024.10.07 01:50:22.414 2024.10.07 01:50:22.963 2024.10.07 00:04:05.763 2024.10.07 00:04:06.094
133 6.0.0.485 2024.10.04 e95c1 P P 648 323 2024.10.05 01:52:37.025 2024.10.05 01:52:37.673 2024.10.05 00:04:03.139 2024.10.05 00:04:03.462
134 6.0.0.483 2024.10.02 5e5ae P P 551 320 2024.10.03 01:47:36.145 2024.10.03 01:47:36.696 2024.10.03 00:03:29.148 2024.10.03 00:03:29.468
135 6.0.0.478 2024.09.30 b5010 P P 616 297 2024.10.01 01:42:15.392 2024.10.01 01:42:16.008 2024.10.01 00:02:55.879 2024.10.01 00:02:56.176
136 6.0.0.474 2024.09.26 e4efb P P 501 358 2024.09.30 01:43:06.851 2024.09.30 01:43:07.352 2024.09.30 00:01:51.296 2024.09.30 00:01:51.654
137 6.0.0.471 2024.09.24 01b51 P P 1122 324 2024.09.25 23:46:36.947 2024.09.25 23:46:38.069 2024.09.25 22:02:27.910 2024.09.25 22:02:28.234
138 6.0.0.470 2024.09.23 77cc0 P P 1048 293 2024.09.23 23:45:13.857 2024.09.23 23:45:14.905 2024.09.23 22:02:37.872 2024.09.23 22:02:38.165
139 6.0.0.467 2024.09.21 ea0b8 P P 1021 298 2024.09.22 23:43:35.204 2024.09.22 23:43:36.225 2024.09.22 22:01:52.737 2024.09.22 22:01:53.035
140 6.0.0.466 2024.09.20 32dc6 P P 611 311 2024.09.20 23:42:10.066 2024.09.20 23:42:10.677 2024.09.20 22:01:35.206 2024.09.20 22:01:35.517
141 6.0.0.461 2024.09.17 2c895 P P 822 603 2024.09.18 00:15:00.675 2024.09.18 00:15:01.497 2024.09.17 22:22:09.874 2024.09.17 22:22:10.477
142 6.0.0.460 2024.09.11 3c253 P P 1161 601 2024.09.17 00:16:09.505 2024.09.17 00:16:10.666 2024.09.16 22:23:25.755 2024.09.16 22:23:26.356
143 6.0.0.457 2024.09.09 fdc6f P P 813 505 2024.09.10 00:39:02.316 2024.09.10 00:39:03.129 2024.09.09 22:32:31.173 2024.09.09 22:32:31.678
144 6.0.0.455 2024.09.07 500d8 P P 800 544 2024.09.08 00:35:28.593 2024.09.08 00:35:29.393 2024.09.07 22:30:35.321 2024.09.07 22:30:35.865
145 6.0.0.454 2024.09.05 4d70f P P 1090 529 2024.09.06 00:18:46.335 2024.09.06 00:18:47.425 2024.09.05 22:25:40.280 2024.09.05 22:25:40.809
146 6.0.0.452 2024.09.04 9ff9c P P 804 636 2024.09.05 00:16:12.009 2024.09.05 00:16:12.813 2024.09.04 22:23:53.357 2024.09.04 22:23:53.993
147 6.0.0.450 2024.09.02 27124 P P 799 917 2024.09.04 01:25:51.553 2024.09.04 01:25:52.352 2024.09.03 22:52:07.650 2024.09.03 22:52:08.567
148 6.0.0.447 2024.09.01 056ec P P 1389 560 2024.09.02 00:40:41.532 2024.09.02 00:40:42.921 2024.09.01 22:29:46.077 2024.09.01 22:29:46.637
149 6.0.0.446 2024.08.30 fe1b2 P P 1068 549 2024.09.01 00:45:49.700 2024.09.01 00:45:50.768 2024.08.31 22:41:42.256 2024.08.31 22:41:42.805
150 6.0.0.444 2024.08.28 785d4 P P 777 542 2024.08.30 00:57:50.532 2024.08.30 00:57:51.309 2024.08.29 22:51:00.422 2024.08.29 22:51:00.964
151 6.0.0.442 2024.08.21 4a68f P P 1074 1919 2024.08.28 02:38:46.560 2024.08.28 02:38:47.634 2024.08.27 23:43:01.397 2024.08.27 23:43:03.316
152 6.0.0.441 2024.08.20 75042 P P 980 621 2024.08.21 00:30:54.149 2024.08.21 00:30:55.129 2024.08.20 22:30:59.408 2024.08.20 22:31:00.029
153 6.0.0.438 2024.08.16 088b5 P P 1212 686 2024.08.18 23:45:45.093 2024.08.18 23:45:46.305 2024.08.18 22:08:42.061 2024.08.18 22:08:42.747
154 6.0.0.437 2024.08.14 3c88b P P 717 561 2024.08.15 23:43:09.002 2024.08.15 23:43:09.719 2024.08.15 22:07:33.057 2024.08.15 22:07:33.618
155 6.0.0.432 2024.08.11 e82ac P P 638 348 2024.08.12 23:41:42.073 2024.08.12 23:41:42.711 2024.08.12 22:06:07.333 2024.08.12 22:06:07.681
156 6.0.0.431 2024.08.09 de5a7 P P 738 620 2024.08.09 23:43:15.375 2024.08.09 23:43:16.113 2024.08.09 22:06:58.137 2024.08.09 22:06:58.757
157 6.0.0.428 2024.08.08 9191b P P 827 533 2024.08.08 23:42:25.779 2024.08.08 23:42:26.606 2024.08.08 22:06:29.628 2024.08.08 22:06:30.161
158 6.0.0.423 2024.08.07 33b41 P P 740 441 2024.08.08 09:31:34.454 2024.08.08 09:31:35.194 2024.08.08 08:14:10.693 2024.08.08 08:14:11.134
159 6.0.0.421 2024.08.06 ed60d F F 703 287 2024.08.06 23:25:38.089 2024.08.06 23:25:38.792 2024.08.06 22:02:16.160 2024.08.06 22:02:16.447
160 6.0.0.419 2024.08.05 3505a F F 772 251 2024.08.05 23:27:47.097 2024.08.05 23:27:47.869 2024.08.05 22:02:14.902 2024.08.05 22:02:15.153
161 6.0.0.409 2024.08.02 ec18f P P 729 287 2024.08.04 23:32:13.840 2024.08.04 23:32:14.569 2024.08.04 22:03:05.777 2024.08.04 22:03:06.064
162 6.0.0.406 2024.08.01 b20be P P 791 283 2024.08.01 23:31:00.831 2024.08.01 23:31:01.622 2024.08.01 22:02:31.562 2024.08.01 22:02:31.845
163 6.0.0.405 2024.07.31 a62ac P P 769 307 2024.07.31 23:29:26.197 2024.07.31 23:29:26.966 2024.07.31 22:02:16.308 2024.07.31 22:02:16.615
164 6.0.0.403 2024.07.29 30f03 P P 781 292 2024.07.29 23:29:01.624 2024.07.29 23:29:02.405 2024.07.29 22:02:01.764 2024.07.29 22:02:02.056
165 6.0.0.401 2024.07.26 24e41 P P 808 313 2024.07.26 23:25:29.662 2024.07.26 23:25:30.470 2024.07.26 22:01:56.180 2024.07.26 22:01:56.493
166 6.0.0.400 2024.07.24 5bb78 P P 829 311 2024.07.24 23:25:13.016 2024.07.24 23:25:13.845 2024.07.24 22:02:12.498 2024.07.24 22:02:12.809
167 6.0.0.398 2024.07.23 85b18 P P 768 247 2024.07.23 23:33:18.901 2024.07.23 23:33:19.669 2024.07.23 22:07:18.864 2024.07.23 22:07:19.111
168 6.0.0.397 2024.07.22 c734c P P 809 267 2024.07.22 23:25:14.780 2024.07.22 23:25:15.589 2024.07.22 22:02:08.105 2024.07.22 22:02:08.372
169 6.0.0.396 2024.07.13 cf952 P P 744 285 2024.07.21 23:26:10.077 2024.07.21 23:26:10.821 2024.07.21 22:01:53.779 2024.07.21 22:01:54.064
170 6.0.0.395 2024.07.10 845f4 P P 714 301 2024.07.12 23:26:36.291 2024.07.12 23:26:37.005 2024.07.12 22:01:04.746 2024.07.12 22:01:05.047
171 6.0.0.392 2024.07.09 ea301 P P 720 264 2024.07.09 23:22:36.977 2024.07.09 23:22:37.697 2024.07.09 22:00:36.811 2024.07.09 22:00:37.075
172 6.0.0.391 2024.07.08 7d50c P P 822 288 2024.07.08 23:23:51.296 2024.07.08 23:23:52.118 2024.07.08 22:01:32.188 2024.07.08 22:01:32.476
173 6.0.0.389 2024.07.05 cc71c P P 762 320 2024.07.05 23:27:30.124 2024.07.05 23:27:30.886 2024.07.05 22:01:22.754 2024.07.05 22:01:23.074
174 6.0.0.388 2024.06.30 e5700 P P 796 301 2024.06.30 23:24:11.744 2024.06.30 23:24:12.540 2024.06.30 22:01:55.000 2024.06.30 22:01:55.301
175 6.0.0.387 2024.06.27 7c28a P P 736 275 2024.06.27 23:23:09.613 2024.06.27 23:23:10.349 2024.06.27 22:01:38.068 2024.06.27 22:01:38.343
176 6.0.0.386 2024.06.23 7c57f P P 699 288 2024.06.23 23:20:34.845 2024.06.23 23:20:35.544 2024.06.23 22:00:22.214 2024.06.23 22:00:22.502
177 6.0.0.384 2024.06.21 24d99 P P 582 300 2024.06.21 23:24:54.111 2024.06.21 23:24:54.693 2024.06.21 22:01:25.880 2024.06.21 22:01:26.180
178 6.0.0.374 2024.06.13 0097d P P 743 276 2024.06.20 23:22:56.829 2024.06.20 23:22:57.572 2024.06.20 22:00:49.448 2024.06.20 22:00:49.724
179 6.0.0.373 2024.06.09 363f0 P P 472 287 2024.06.13 13:34:03.160 2024.06.13 13:34:03.632 2024.06.13 12:24:31.776 2024.06.13 12:24:32.063
180 6.0.0.371 2024.06.08 f7130 P P 410 296 2024.06.11 22:20:52.985 2024.06.11 22:20:53.395 2024.06.11 21:18:45.041 2024.06.11 21:18:45.337
181 6.0.0.366 2024.05.30 ab2c9 P P 816 232 2024.06.12 09:30:05.920 2024.06.12 09:30:06.736 2024.06.12 07:53:18.489 2024.06.12 07:53:18.721
182 6.0.0.363 2024.05.27 06703 P P 460 238 2024.06.12 14:27:25.409 2024.06.12 14:27:25.869 2024.06.12 13:22:08.945 2024.06.12 13:22:09.183
183 6.0.0.359 2024.05.23 9cb11 P P 502 266 2024.06.12 12:19:33.782 2024.06.12 12:19:34.284 2024.06.12 11:14:29.443 2024.06.12 11:14:29.709
184 6.0.0.358 2024.05.21 995dd F F 553 245 2024.06.12 17:02:37.115 2024.06.12 17:02:37.668 2024.06.12 15:59:05.727 2024.06.12 15:59:05.972
185 6.0.0.357 2024.05.18 bf6c4 F F 595 289 2024.06.12 21:39:00.939 2024.06.12 21:39:01.534 2024.06.12 20:35:13.170 2024.06.12 20:35:13.459
186 6.0.0.356 2024.05.17 eab06 F F 524 285 2024.06.13 05:45:24.348 2024.06.13 05:45:24.872 2024.06.13 04:41:47.294 2024.06.13 04:41:47.579
187 6.0.0.355 2024.05.16 8dd6e F F 401 226 2024.06.13 07:52:50.632 2024.06.13 07:52:51.033 2024.06.13 06:49:43.076 2024.06.13 06:49:43.302
188 6.0.0.354 2024.05.15 d3adc F F 510 324 2024.06.13 10:58:46.867 2024.06.13 10:58:47.377 2024.06.13 09:49:57.668 2024.06.13 09:49:57.992
189 6.0.0.351 2024.05.14 2e3e0 F F 599 287 2024.06.13 16:12:34.634 2024.06.13 16:12:35.233 2024.06.13 15:02:54.387 2024.06.13 15:02:54.674

Elapsed time, ms. Chart for last 150 runs:

Last commits information (all timestamps in UTC):