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
firebird.qa.plugin.ExecutionError: gbak execution failed

LOG DETAILS:

2025-06-27 05:15:16.111
2025-06-27 05:15:16.119 act_src = <firebird.qa.plugin.Action object at [hex]>
2025-06-27 05:15:16.127 act_res = <firebird.qa.plugin.Action object at [hex]>
2025-06-27 05:15:16.138 tmp_fbk = PosixPath('/var/tmp/qa_2024/test_1879/tmp_core_4524.encrypted.fbk')
2025-06-27 05:15:16.150 capsys = <_pytest.capture.CaptureFixture object at [hex]>
2025-06-27 05:15:16.160
2025-06-27 05:15:16.172 @pytest.mark.encryption
2025-06-27 05:15:16.181 @pytest.mark.version('>=4.0')
2025-06-27 05:15:16.192 def test_1(act_src: Action, act_res: Action, tmp_fbk:Path, capsys):
2025-06-27 05:15:16.201
2025-06-27 05:15:16.212 init_sql = """
2025-06-27 05:15:16.221 set bail on;
2025-06-27 05:15:16.235 create sequence gen_ba0bab start with 12192683;
2025-06-27 05:15:16.245 create sequence gen_badf00d start with 195948557;
2025-06-27 05:15:16.257 create sequence gen_caca0  start with 830624;
2025-06-27 05:15:16.268 create sequence gen_c0ffee start with 12648430;
2025-06-27 05:15:16.275 create sequence gen_dec0de start with 14598366;
2025-06-27 05:15:16.282 create sequence gen_decade start with 14600926;
2025-06-27 05:15:16.287 create sequence gen_7FFFFFFF start with 2147483647;
2025-06-27 05:15:16.295 commit;
2025-06-27 05:15:16.306 """
2025-06-27 05:15:16.314
2025-06-27 05:15:16.321 act_src.expected_stdout = ''
2025-06-27 05:15:16.328 act_src.isql(switches = ['-q'], input = init_sql, combine_output = True, io_enc = locale.getpreferredencoding())
2025-06-27 05:15:16.334 assert act_src.clean_stdout == act_src.clean_expected_stdout
2025-06-27 05:15:16.344 act_src.reset()
2025-06-27 05:15:16.351
2025-06-27 05:15:16.358 check_sequence_values=[]
2025-06-27 05:15:16.364 with act_src.db.connect() as con:
2025-06-27 05:15:16.371 with con.cursor() as cur:
2025-06-27 05:15:16.377 get_current_seq_values='''
2025-06-27 05:15:16.383 execute block returns( gen_curr bigint) as
2025-06-27 05:15:16.391 declare gen_name rdb$generator_name;
2025-06-27 05:15:16.397 begin
2025-06-27 05:15:16.405 for
2025-06-27 05:15:16.412 select rdb$generator_name from rdb$generators where rdb$system_flag is distinct from 1 order by rdb$generator_id
2025-06-27 05:15:16.418 into gen_name
2025-06-27 05:15:16.425 do begin
2025-06-27 05:15:16.431 execute statement 'execute block returns(g bigint) as begin g = gen_id('|| gen_name ||', 0); suspend;  end' into gen_curr;
2025-06-27 05:15:16.437 suspend;
2025-06-27 05:15:16.444 end
2025-06-27 05:15:16.456 end
2025-06-27 05:15:16.462 '''
2025-06-27 05:15:16.468
2025-06-27 05:15:16.475 # Obtain current values of user generators:
2025-06-27 05:15:16.482 # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2025-06-27 05:15:16.489 cur.execute(get_current_seq_values)
2025-06-27 05:15:16.496 for r in cur:
2025-06-27 05:15:16.502 check_sequence_values += r[0],
2025-06-27 05:15:16.509
2025-06-27 05:15:16.515
2025-06-27 05:15:16.520 # Obtain page size and ID of generators page:
2025-06-27 05:15:16.525 # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2025-06-27 05:15:16.530 cur.execute('select m.mon$page_size,min(rdb$page_number) from mon$database m cross join rdb$pages p where p.rdb$page_type = 9 group by 1')
2025-06-27 05:15:16.535 pg_size, gen_page_number = -1,-1
2025-06-27 05:15:16.540 for r in cur:
2025-06-27 05:15:16.546 pg_size=r[0]
2025-06-27 05:15:16.552 gen_page_number=r[1]
2025-06-27 05:15:16.557 # print(r[0],r[1])
2025-06-27 05:15:16.563
2025-06-27 05:15:16.569
2025-06-27 05:15:16.576 # Read gen page, convert it to hex and check whether generator values can be found there or no:
2025-06-27 05:15:16.582 # Expected result: YES for all values because DB not encrypted now.
2025-06-27 05:15:16.589 # ~~~~~~~~~~~~~~~
2025-06-27 05:15:16.598 check_page_for_readable_values(act_src.db.db_path, gen_page_number, pg_size, check_sequence_values, False, 'INIT. ')
2025-06-27 05:15:16.604
2025-06-27 05:15:16.616 act_src.expected_stdout = 'INIT. ' + SUCCESS_MSG
2025-06-27 05:15:16.625 act_src.stdout = capsys.readouterr().out
2025-06-27 05:15:16.632 assert act_src.clean_stdout == act_src.clean_expected_stdout
2025-06-27 05:15:16.638 act_src.reset()
2025-06-27 05:15:16.643
2025-06-27 05:15:16.649 ######################################################
2025-06-27 05:15:16.656
2025-06-27 05:15:16.661 t1=py_dt.datetime.now()
2025-06-27 05:15:16.667 d1 = t1-t1
2025-06-27 05:15:16.678 sttm = f'alter database encrypt with "{ENCRYPTION_PLUGIN}" key "{ENCRYPTION_KEY}"'
2025-06-27 05:15:16.687 try:
2025-06-27 05:15:16.694 con.execute_immediate(sttm)
2025-06-27 05:15:16.700 con.commit()
2025-06-27 05:15:16.706 except DatabaseError as e:
2025-06-27 05:15:16.711 print( e.__str__() )
2025-06-27 05:15:16.716
2025-06-27 05:15:16.722 act_src.expected_stdout = ''
2025-06-27 05:15:16.728 act_src.stdout = capsys.readouterr().out
2025-06-27 05:15:16.736 assert act_src.clean_stdout == act_src.clean_expected_stdout
2025-06-27 05:15:16.744 act_src.reset()
2025-06-27 05:15:16.751
2025-06-27 05:15:16.758 while True:
2025-06-27 05:15:16.764 t2=py_dt.datetime.now()
2025-06-27 05:15:16.771 d1=t2-t1
2025-06-27 05:15:16.780 if d1.seconds*1000 + d1.microseconds//1000 > MAX_WAITING_ENCR_FINISH:
2025-06-27 05:15:16.787 con.execute_immediate(f"select 'TIMEOUT EXPIRATION: encryption took {d1.seconds*1000 + d1.microseconds//1000} ms which exceeds limit = {MAX_WAITING_ENCR_FINISH} ms.' as msg from rdb$database")
2025-06-27 05:15:16.793 break
2025-06-27 05:15:16.799
2025-06-27 05:15:16.805 # Possible output:
2025-06-27 05:15:16.811 #     Database not encrypted
2025-06-27 05:15:16.817 #     Database encrypted, crypt thread not complete
2025-06-27 05:15:16.823 act_src.isql(switches=['-q'], input = 'show database;', combine_output = True)
2025-06-27 05:15:16.829 if 'Database encrypted' in act_src.stdout:
2025-06-27 05:15:16.834 if 'not complete' in act_src.stdout:
2025-06-27 05:15:16.840 pass
2025-06-27 05:15:16.846 else:
2025-06-27 05:15:16.851 break
2025-06-27 05:15:16.857 act_src.reset()
2025-06-27 05:15:16.863
2025-06-27 05:15:16.869 if d1.seconds*1000 + d1.microseconds//1000 <= MAX_WAITING_ENCR_FINISH:
2025-06-27 05:15:16.875 act_src.reset()
2025-06-27 05:15:16.880 act_src.gstat(switches=['-e'])
2025-06-27 05:15:16.886
2025-06-27 05:15:16.892 # Data pages: total 884803, encrypted 884803, non-crypted 0
2025-06-27 05:15:16.903 # ...
2025-06-27 05:15:16.911 pattern = re.compile('(data|index|blob|generator)\\s+pages[:]{0,1}\\s+total[:]{0,1}\\s+\\d+[,]{0,1}\\s+encrypted[:]{0,1}\\s+\\d+.*[,]{0,1}non-crypted[:]{0,1}\\s+\\d+.*', re.IGNORECASE)
2025-06-27 05:15:16.917 for line in act_src.stdout.splitlines():
2025-06-27 05:15:16.923 if pattern.match(line.strip()):
2025-06-27 05:15:16.930 # We assume that every line finishes with number of NON-crypted pages, and this number must be 0:
2025-06-27 05:15:16.935 words = line.split()
2025-06-27 05:15:16.941 if words[-1] == '0':
2025-06-27 05:15:16.948 print(words[0] + ': expected, ' +  words[-1])
2025-06-27 05:15:16.955 else:
2025-06-27 05:15:16.961 print(words[0] + ': UNEXPECTED, ' +  words[-1])
2025-06-27 05:15:16.966
2025-06-27 05:15:16.971 expected_gstat_tail = """
2025-06-27 05:15:16.977 Data: expected, 0
2025-06-27 05:15:16.981 Index: expected, 0
2025-06-27 05:15:16.986 Blob: expected, 0
2025-06-27 05:15:16.991 Generator: expected, 0
2025-06-27 05:15:16.997 """
2025-06-27 05:15:17.002 act_src.expected_stdout = expected_gstat_tail
2025-06-27 05:15:17.008 act_src.stdout = capsys.readouterr().out
2025-06-27 05:15:17.014 assert act_src.clean_stdout == act_src.clean_expected_stdout
2025-06-27 05:15:17.020 act_src.reset()
2025-06-27 05:15:17.026
2025-06-27 05:15:17.033 else:
2025-06-27 05:15:17.044 print(f'TIMEOUT EXPIRATION: encryption took {d1.seconds*1000 + d1.microseconds//1000} ms which exceeds limit = {MAX_WAITING_ENCR_FINISH} ms.')
2025-06-27 05:15:17.054
2025-06-27 05:15:17.062 ######################################################
2025-06-27 05:15:17.067
2025-06-27 05:15:17.073 # see also core_6071_test.py:
2025-06-27 05:15:17.080 act_src.gbak(switches=['-b', '-KEYHOLDER', ENCRYPTION_HOLDER, '-crypt', ENCRYPTION_PLUGIN, act_src.db.dsn, str(tmp_fbk)])
2025-06-27 05:15:17.086 act_src.reset()
2025-06-27 05:15:17.092
2025-06-27 05:15:17.100 >           act_src.gbak(switches=['-rep', '-KEYHOLDER', ENCRYPTION_HOLDER, str(tmp_fbk), act_res.db.dsn ])
2025-06-27 05:15:17.107 E           firebird.qa.plugin.ExecutionError: gbak execution failed
2025-06-27 05:15:17.114
2025-06-27 05:15:17.125 tests/bugs/core_4524_test.py:251: ExecutionError
2025-06-27 05:15:17.132 ---------------------------- Captured stdout setup -----------------------------
2025-06-27 05:15:17.138 Creating db: localhost:/var/tmp/qa_2024/test_1879/test.fdb [page_size=None, sql_dialect=None, charset='NONE', user=SYSDBA, password=masterkey]
2025-06-27 05:15:17.144 Creating db: localhost:/var/tmp/qa_2024/test_1879/tmp_core_4524.restored.fdb [page_size=None, sql_dialect=None, charset='NONE', user=SYSDBA, password=masterkey]
2025-06-27 05:15:17.150 -------------------------- Captured gbak stderr call ---------------------------
2025-06-27 05:15:17.156 gbak: ERROR:Problems with just created database encryption
2025-06-27 05:15:17.162 gbak:Exiting before completion due to errors
3 #text
act_src = <firebird.qa.plugin.Action pytest object at [hex]>
act_res = <firebird.qa.plugin.Action pytest object at [hex]>
tmp_fbk = PosixPath('/var/tmp/qa_2024/test_1879/tmp_core_4524.encrypted.fbk')
capsys = <_pytest.capture.CaptureFixture pytest object at [hex]>

    @pytest.mark.encryption
    @pytest.mark.version('>=4.0')
    def test_1(act_src: Action, act_res: Action, tmp_fbk:Path, capsys):
    
        init_sql = """
            set bail on;
            create sequence gen_ba0bab start with 12192683;
            create sequence gen_badf00d start with 195948557;
            create sequence gen_caca0  start with 830624;
            create sequence gen_c0ffee start with 12648430;
            create sequence gen_dec0de start with 14598366;
            create sequence gen_decade start with 14600926;
            create sequence gen_7FFFFFFF start with 2147483647;
            commit;
        """
    
        act_src.expected_stdout = ''
        act_src.isql(switches = ['-q'], input = init_sql, combine_output = True, io_enc = locale.getpreferredencoding())
        assert act_src.clean_stdout == act_src.clean_expected_stdout
        act_src.reset()
    
        check_sequence_values=[]
        with act_src.db.connect() as con:
            with con.cursor() as cur:
                get_current_seq_values='''
                    execute block returns( gen_curr bigint) as
                        declare gen_name rdb$generator_name;
                    begin
                        for
                            select rdb$generator_name from rdb$generators where rdb$system_flag is distinct from 1 order by rdb$generator_id
                            into gen_name
                        do begin
                            execute statement 'execute block returns(g bigint) as begin g = gen_id('|| gen_name ||', 0); suspend;  end' into gen_curr;
                            suspend;
                        end
                    end
                '''
    
                # Obtain current values of user generators:
                # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                cur.execute(get_current_seq_values)
                for r in cur:
                    check_sequence_values += r[0],
    
    
                # Obtain page size and ID of generators page:
                # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                cur.execute('select m.mon$page_size,min(rdb$page_number) from mon$database m cross join rdb$pages p where p.rdb$page_type = 9 group by 1')
                pg_size, gen_page_number = -1,-1
                for r in cur:
                    pg_size=r[0]
                    gen_page_number=r[1]
                    # print(r[0],r[1])
    
    
            # Read gen page, convert it to hex and check whether generator values can be found there or no:
            # Expected result: YES for all values because DB not encrypted now.
            # ~~~~~~~~~~~~~~~
            check_page_for_readable_values(act_src.db.db_path, gen_page_number, pg_size, check_sequence_values, False, 'INIT. ')
    
            act_src.expected_stdout = 'INIT. ' + SUCCESS_MSG
            act_src.stdout = capsys.readouterr().out
            assert act_src.clean_stdout == act_src.clean_expected_stdout
            act_src.reset()
    
            ######################################################
    
            t1=py_dt.datetime.now()
            d1 = t1-t1
            sttm = f'alter database encrypt with "{ENCRYPTION_PLUGIN}" key "{ENCRYPTION_KEY}"'
            try:
                con.execute_immediate(sttm)
                con.commit()
            except DatabaseError as e:
                print( e.__str__() )
    
            act_src.expected_stdout = ''
            act_src.stdout = capsys.readouterr().out
            assert act_src.clean_stdout == act_src.clean_expected_stdout
            act_src.reset()
    
            while True:
                t2=py_dt.datetime.now()
                d1=t2-t1
                if d1.seconds*1000 + d1.microseconds//1000 > MAX_WAITING_ENCR_FINISH:
                    con.execute_immediate(f"select 'TIMEOUT EXPIRATION: encryption took {d1.seconds*1000 + d1.microseconds//1000} ms which exceeds limit = {MAX_WAITING_ENCR_FINISH} ms.' as msg from rdb$database")
                    break
    
                # Possible output:
                #     Database not encrypted
                #     Database encrypted, crypt thread not complete
                act_src.isql(switches=['-q'], input = 'show database;', combine_output = True)
                if 'Database encrypted' in act_src.stdout:
                    if 'not complete' in act_src.stdout:
                        pass
                    else:
                        break
                act_src.reset()
    
            if d1.seconds*1000 + d1.microseconds//1000 <= MAX_WAITING_ENCR_FINISH:
                act_src.reset()
                act_src.gstat(switches=['-e'])
    
                # Data pages: total 884803, encrypted 884803, non-crypted 0
                # ...
                pattern = re.compile('(data|index|blob|generator)\\s+pages[:]{0,1}\\s+total[:]{0,1}\\s+\\d+[,]{0,1}\\s+encrypted[:]{0,1}\\s+\\d+.*[,]{0,1}non-crypted[:]{0,1}\\s+\\d+.*', re.IGNORECASE)
                for line in act_src.stdout.splitlines():
                    if pattern.match(line.strip()):
                        # We assume that every line finishes with number of NON-crypted pages, and this number must be 0:
                        words = line.split()
                        if words[-1] == '0':
                            print(words[0] + ': expected, ' +  words[-1])
                        else:
                            print(words[0] + ': UNEXPECTED, ' +  words[-1])
    
                expected_gstat_tail = """
                    Data: expected, 0
                    Index: expected, 0
                    Blob: expected, 0
                    Generator: expected, 0
                """
                act_src.expected_stdout = expected_gstat_tail
                act_src.stdout = capsys.readouterr().out
                assert act_src.clean_stdout == act_src.clean_expected_stdout
                act_src.reset()
    
            else:
                print(f'TIMEOUT EXPIRATION: encryption took {d1.seconds*1000 + d1.microseconds//1000} ms which exceeds limit = {MAX_WAITING_ENCR_FINISH} ms.')
    
            ######################################################
    
            # see also core_6071_test.py:
            act_src.gbak(switches=['-b', '-KEYHOLDER', ENCRYPTION_HOLDER, '-crypt', ENCRYPTION_PLUGIN, act_src.db.dsn, str(tmp_fbk)])
            act_src.reset()
    
>           act_src.gbak(switches=['-rep', '-KEYHOLDER', ENCRYPTION_HOLDER, str(tmp_fbk), act_res.db.dsn ])
E           firebird.qa.plugin.ExecutionError: gbak execution failed

tests/bugs/core_4524_test.py:251: ExecutionError
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.877 2025.06.26 8e38f F F 11791 11341 2025.06.27 00:16:50.483 2025.06.27 00:17:02.274 2025.06.26 21:33:54.305 2025.06.26 21:34:05.646
2 6.0.0.876 2025.06.25 b1bec F F 12194 11316 2025.06.26 00:19:47.679 2025.06.26 00:19:59.873 2025.06.25 21:34:37.117 2025.06.25 21:34:48.433
3 6.0.0.863 2025.06.24 c3c20 F F 2588 1653 2025.06.25 00:20:58.549 2025.06.25 00:21:01.137 2025.06.24 21:33:53.991 2025.06.24 21:33:55.644
4 6.0.0.858 2025.06.23 8d6f7 F F 2966 1808 2025.06.24 00:20:27.437 2025.06.24 00:20:30.403 2025.06.23 21:34:30.094 2025.06.23 21:34:31.902
5 6.0.0.849 2025.06.20 7b79c F F 2681 1918 2025.06.21 00:30:44.273 2025.06.21 00:30:46.954 2025.06.20 21:37:55.133 2025.06.20 21:37:57.051
6 6.0.0.848 2025.06.19 c483c F F 2965 1809 2025.06.20 00:26:59.715 2025.06.20 00:27:02.680 2025.06.19 21:36:21.909 2025.06.19 21:36:23.718
7 6.0.0.845 2025.06.18 22b12 F F 2739 1918 2025.06.19 00:33:09.541 2025.06.19 00:33:12.280 2025.06.18 21:35:51.697 2025.06.18 21:35:53.615
8 6.0.0.843 2025.06.16 995f4 F F 2646 2056 2025.06.18 00:34:32.806 2025.06.18 00:34:35.452 2025.06.17 21:38:17.481 2025.06.17 21:38:19.537
9 6.0.0.840 2025.06.14 29bca F F 2849 1779 2025.06.16 00:23:58.633 2025.06.16 00:24:01.482 2025.06.15 21:34:48.715 2025.06.15 21:34:50.494
10 6.0.0.838 2025.06.13 0e28a F F 2704 1892 2025.06.14 00:35:50.213 2025.06.14 00:35:52.917 2025.06.13 21:35:51.217 2025.06.13 21:35:53.109
11 6.0.0.835 2025.06.12 2cf29 F F 2752 2027 2025.06.13 00:36:52.254 2025.06.13 00:36:55.006 2025.06.12 21:41:36.929 2025.06.12 21:41:38.956
12 6.0.0.834 2025.06.11 e889f F F 2750 1879 2025.06.12 00:33:45.273 2025.06.12 00:33:48.023 2025.06.11 21:37:27.511 2025.06.11 21:37:29.390
13 6.0.0.800 2025.06.10 1f226 P P 2643 1813 2025.06.10 23:35:02.957 2025.06.10 23:35:05.600 2025.06.10 21:36:39.245 2025.06.10 21:36:41.058
14 6.0.0.799 2025.06.07 be644 P P 3809 1835 2025.06.09 23:34:20.256 2025.06.09 23:34:24.065 2025.06.09 21:36:12.271 2025.06.09 21:36:14.106
15 6.0.0.797 2025.06.06 303e8 P P 3923 1695 2025.06.06 23:35:37.647 2025.06.06 23:35:41.570 2025.06.06 21:33:32.847 2025.06.06 21:33:34.542
16 6.0.0.795 2025.05.29 7a71a P P 3829 1865 2025.06.05 23:32:20.581 2025.06.05 23:32:24.410 2025.06.05 21:32:58.732 2025.06.05 21:33:00.597
17 6.0.0.792 2025.05.28 b4327 P P 3916 1703 2025.05.28 23:40:47.909 2025.05.28 23:40:51.825 2025.05.28 21:34:13.292 2025.05.28 21:34:14.995
18 6.0.0.791 2025.05.27 02db8 P P 3994 1821 2025.05.27 23:39:01.091 2025.05.27 23:39:05.085 2025.05.27 21:33:31.852 2025.05.27 21:33:33.673
19 6.0.0.789 2025.05.21 64051 P P 4125 1769 2025.05.24 23:35:54.769 2025.05.24 23:35:58.894 2025.05.24 21:33:22.236 2025.05.24 21:33:24.005
20 6.0.0.787 2025.05.20 230ad P P 3974 1840 2025.05.20 23:33:14.363 2025.05.20 23:33:18.337 2025.05.20 21:33:23.949 2025.05.20 21:33:25.789
21 6.0.0.783 2025.05.12 37320 P P 2632 1721 2025.05.19 11:12:26.919 2025.05.19 11:12:29.551 2025.05.19 09:24:47.652 2025.05.19 09:24:49.373
22 6.0.0.779 2025.05.11 136fa P P 3232 1909 2025.05.11 23:30:18.959 2025.05.11 23:30:22.191 2025.05.11 21:32:45.582 2025.05.11 21:32:47.491
23 6.0.0.778 2025.05.07 d735e P P 4014 1724 2025.05.07 23:29:37.666 2025.05.07 23:29:41.680 2025.05.07 21:32:48.383 2025.05.07 21:32:50.107
24 6.0.0.776 2025.05.06 007cd P P 4114 1718 2025.05.06 23:21:57.924 2025.05.06 23:22:02.038 2025.05.06 21:32:37.718 2025.05.06 21:32:39.436
25 6.0.0.770 2025.05.05 82c4a P P 4158 1793 2025.05.05 23:21:05.621 2025.05.05 23:21:09.779 2025.05.05 21:32:50.290 2025.05.05 21:32:52.083
26 6.0.0.767 2025.05.01 cdd29 P P 3998 1700 2025.05.01 23:19:39.193 2025.05.01 23:19:43.191 2025.05.01 21:32:42.483 2025.05.01 21:32:44.183
27 6.0.0.762 2025.04.30 5cb15 P P 3716 1582 2025.04.30 23:16:56.782 2025.04.30 23:17:00.498 2025.04.30 21:32:16.827 2025.04.30 21:32:18.409
28 6.0.0.755 2025.04.29 739c6 P P 3883 1724 2025.04.29 23:19:06.382 2025.04.29 23:19:10.265 2025.04.29 21:32:29.984 2025.04.29 21:32:31.708
29 6.0.0.753 2025.04.27 29ab3 P P 3718 1747 2025.04.27 23:19:10.412 2025.04.27 23:19:14.130 2025.04.27 21:32:27.330 2025.04.27 21:32:29.077
30 6.0.0.745 2025.04.21 78ad8 P P 3804 1773 2025.04.25 23:18:39.058 2025.04.25 23:18:42.862 2025.04.25 21:33:55.877 2025.04.25 21:33:57.650
31 6.0.0.744 2025.04.19 e883a P P 4041 1720 2025.04.19 23:20:01.301 2025.04.19 23:20:05.342 2025.04.19 21:32:37.260 2025.04.19 21:32:38.980
32 6.0.0.742 2025.04.17 abc3b P P 3858 1746 2025.04.18 23:20:53.620 2025.04.18 23:20:57.478 2025.04.18 21:32:38.854 2025.04.18 21:32:40.600
33 6.0.0.737 2025.04.16 fe52b P P 3784 1591 2025.04.16 23:20:20.674 2025.04.16 23:20:24.458 2025.04.16 21:32:34.787 2025.04.16 21:32:36.378
34 6.0.0.736 2025.04.14 3e6be P P 3453 1661 2025.04.14 23:06:27.645 2025.04.14 23:06:31.098 2025.04.14 21:31:03.466 2025.04.14 21:31:05.127
35 6.0.0.735 2025.04.13 6635c P P 2734 1630 2025.04.13 23:07:47.167 2025.04.13 23:07:49.901 2025.04.13 21:31:33.957 2025.04.13 21:31:35.587
36 6.0.0.734 2025.04.12 12f3f P P 3555 1562 2025.04.12 23:06:46.458 2025.04.12 23:06:50.013 2025.04.12 21:31:11.500 2025.04.12 21:31:13.062
37 6.0.0.730 2025.04.11 240b8 P P 3517 1559 2025.04.11 23:07:42.533 2025.04.11 23:07:46.050 2025.04.11 21:31:00.373 2025.04.11 21:31:01.932
38 6.0.0.726 2025.04.10 d79c6 P P 3489 1484 2025.04.10 23:07:29.045 2025.04.10 23:07:32.534 2025.04.10 21:31:06.563 2025.04.10 21:31:08.047
39 6.0.0.725 2025.04.09 a2b05 P P 3420 1591 2025.04.09 23:07:33.830 2025.04.09 23:07:37.250 2025.04.09 21:31:31.411 2025.04.09 21:31:33.002
40 6.0.0.722 2025.04.08 a8b86 P P 2305 1696 2025.04.08 23:18:06.906 2025.04.08 23:18:09.211 2025.04.08 21:32:32.571 2025.04.08 21:32:34.267
41 6.0.0.719 2025.04.06 90fd9 P P 4213 1749 2025.04.06 23:16:16.613 2025.04.06 23:16:20.826 2025.04.06 21:32:47.183 2025.04.06 21:32:48.932
42 6.0.0.717 2025.04.04 53d70 P P 3652 1751 2025.04.04 23:13:52.123 2025.04.04 23:13:55.775 2025.04.04 21:32:15.799 2025.04.04 21:32:17.550
43 6.0.0.716 2025.04.03 fc636 P P 2186 1656 2025.04.03 23:17:13.122 2025.04.03 23:17:15.308 2025.04.03 21:32:27.379 2025.04.03 21:32:29.035
44 6.0.0.715 2025.04.02 907ed P P 3769 1698 2025.04.02 23:17:02.337 2025.04.02 23:17:06.106 2025.04.02 21:32:47.029 2025.04.02 21:32:48.727
45 6.0.0.710 2025.04.01 40651 P P 2355 1635 2025.04.01 23:16:03.867 2025.04.01 23:16:06.222 2025.04.01 21:32:23.167 2025.04.01 21:32:24.802
46 6.0.0.708 2025.03.31 cb069 P P 2194 1665 2025.03.31 23:08:58.450 2025.03.31 23:09:00.644 2025.03.31 21:31:36.362 2025.03.31 21:31:38.027
47 6.0.0.707 2025.03.28 4bd4f P P 3627 1612 2025.03.30 23:08:33.081 2025.03.30 23:08:36.708 2025.03.30 21:31:31.226 2025.03.30 21:31:32.838
48 6.0.0.698 2025.03.26 d72a7 P P 4162 1584 2025.03.27 23:20:50.922 2025.03.27 23:20:55.084 2025.03.27 21:32:54.546 2025.03.27 21:32:56.130
49 6.0.0.693 2025.03.24 0b559 P P 2705 1571 2025.03.24 23:13:32.467 2025.03.24 23:13:35.172 2025.03.24 21:32:50.002 2025.03.24 21:32:51.573
50 6.0.0.687 2025.03.22 730aa P P 4013 1697 2025.03.23 23:23:12.809 2025.03.23 23:23:16.822 2025.03.23 21:32:49.676 2025.03.23 21:32:51.373
51 6.0.0.686 2025.03.20 71bf6 P P 3865 1701 2025.03.20 23:26:50.453 2025.03.20 23:26:54.318 2025.03.20 21:33:15.618 2025.03.20 21:33:17.319
52 6.0.0.685 2025.03.19 a8577 P P 3872 1565 2025.03.19 23:24:51.170 2025.03.19 23:24:55.042 2025.03.19 21:32:49.187 2025.03.19 21:32:50.752
53 6.0.0.680 2025.03.18 90d29 P P 735 468 2025.03.19 09:59:43.139 2025.03.19 09:59:43.874 2025.03.19 08:22:30.442 2025.03.19 08:22:30.910
54 6.0.0.677 2025.03.16 c0a60 P P 1173 467 2025.03.16 23:18:10.242 2025.03.16 23:18:11.415 2025.03.16 21:33:02.315 2025.03.16 21:33:02.782
55 6.0.0.676 2025.03.15 3034f P P 738 441 2025.03.16 15:01:36.700 2025.03.16 15:01:37.438 2025.03.16 13:28:19.595 2025.03.16 13:28:20.036
56 6.0.0.673 2025.03.13 40f5b P P 1150 411 2025.03.13 23:17:13.410 2025.03.13 23:17:14.560 2025.03.13 21:32:36.677 2025.03.13 21:32:37.088
57 6.0.0.671 2025.03.12 a4fff P P 1188 389 2025.03.12 23:21:10.047 2025.03.12 23:21:11.235 2025.03.12 21:33:12.234 2025.03.12 21:33:12.623
58 6.0.0.663 2025.03.11 daad2 P P 1207 425 2025.03.11 23:19:15.321 2025.03.11 23:19:16.528 2025.03.11 21:33:24.960 2025.03.11 21:33:25.385
59 6.0.0.661 2025.03.07 b9869 P P 795 413 2025.03.10 23:05:53.306 2025.03.10 23:05:54.101 2025.03.10 21:31:53.592 2025.03.10 21:31:54.005
60 6.0.0.660 2025.03.04 a6700 P P 854 434 2025.03.06 23:12:18.510 2025.03.06 23:12:19.364 2025.03.06 21:32:14.107 2025.03.06 21:32:14.541
61 6.0.0.658 2025.03.03 f15f8 P P 1024 381 2025.03.03 23:08:08.321 2025.03.03 23:08:09.345 2025.03.03 21:31:53.621 2025.03.03 21:31:54.002
62 6.0.0.656 2025.02.27 25fb4 P P 1211 505 2025.03.02 23:24:33.427 2025.03.02 23:24:34.638 2025.03.02 21:33:54.965 2025.03.02 21:33:55.470
63 6.0.0.655 2025.02.25 6e3e0 P P 1151 440 2025.02.26 23:10:43.950 2025.02.26 23:10:45.101 2025.02.26 21:31:59.684 2025.02.26 21:32:00.124
64 6.0.0.654 2025.02.24 b7141 P P 939 418 2025.02.24 23:12:05.159 2025.02.24 23:12:06.098 2025.02.24 21:32:13.454 2025.02.24 21:32:13.872
65 6.0.0.652 2025.02.22 22662 P P 728 390 2025.02.24 06:35:19.038 2025.02.24 06:35:19.766 2025.02.23 23:49:12.547 2025.02.23 23:49:12.937
66 6.0.0.647 2025.02.21 9fccb P P 1135 437 2025.02.21 23:14:49.434 2025.02.21 23:14:50.569 2025.02.21 21:35:50.452 2025.02.21 21:35:50.889
67 6.0.0.640 2025.02.19 9b8ac P P 639 431 2025.02.19 23:11:20.263 2025.02.19 23:11:20.902 2025.02.19 21:32:42.639 2025.02.19 21:32:43.070
68 6.0.0.639 2025.02.18 201a4 P P 593 408 2025.02.18 23:06:48.008 2025.02.18 23:06:48.601 2025.02.18 21:31:55.741 2025.02.18 21:31:56.149
69 6.0.0.637 2025.02.12 6d0f5 P P 744 417 2025.02.13 23:17:56.851 2025.02.13 23:17:57.595 2025.02.13 21:32:45.535 2025.02.13 21:32:45.952
70 6.0.0.636 2025.02.11 0424f P P 579 417 2025.02.11 23:16:37.278 2025.02.11 23:16:37.857 2025.02.11 21:32:16.700 2025.02.11 21:32:17.117
71 6.0.0.635 2025.02.10 f640f P P 893 473 2025.02.10 23:16:06.913 2025.02.10 23:16:07.806 2025.02.10 21:33:03.512 2025.02.10 21:33:03.985
72 6.0.0.629 2025.02.07 194f9 P P 1089 418 2025.02.07 23:14:45.661 2025.02.07 23:14:46.750 2025.02.07 21:32:35.219 2025.02.07 21:32:35.637
73 6.0.0.628 2025.02.06 859d5 P P 1130 420 2025.02.06 23:21:18.027 2025.02.06 23:21:19.157 2025.02.06 21:32:26.186 2025.02.06 21:32:26.606
74 6.0.0.621 2025.02.05 34fe7 P P 1193 424 2025.02.05 23:22:13.014 2025.02.05 23:22:14.207 2025.02.05 21:32:34.366 2025.02.05 21:32:34.790
75 6.0.0.609 2025.02.04 76d57 P P 1107 405 2025.02.04 23:16:51.463 2025.02.04 23:16:52.570 2025.02.04 21:32:35.105 2025.02.04 21:32:35.510
76 6.0.0.607 2025.02.03 1985b P P 1053 465 2025.02.03 23:17:32.550 2025.02.03 23:17:33.603 2025.02.03 21:32:56.902 2025.02.03 21:32:57.367
77 6.0.0.601 2025.02.01 6af07 P P 863 471 2025.02.01 23:13:49.754 2025.02.01 23:13:50.617 2025.02.01 21:32:12.799 2025.02.01 21:32:13.270
78 6.0.0.600 2025.01.27 188de P P 603 424 2025.01.27 23:17:30.466 2025.01.27 23:17:31.069 2025.01.27 21:32:28.018 2025.01.27 21:32:28.442
79 6.0.0.599 2025.01.25 ba588 P P 1139 412 2025.01.25 23:18:32.267 2025.01.25 23:18:33.406 2025.01.25 21:32:49.155 2025.01.25 21:32:49.567
80 6.0.0.598 2025.01.23 ddbc3 P P 1095 439 2025.01.24 23:18:07.658 2025.01.24 23:18:08.753 2025.01.24 21:32:29.980 2025.01.24 21:32:30.419
81 6.0.0.595 2025.01.22 e62f3 P P 583 391 2025.01.22 23:11:34.775 2025.01.22 23:11:35.358 2025.01.22 21:32:10.011 2025.01.22 21:32:10.402
82 6.0.0.594 2025.01.21 47fb6 P P 588 403 2025.01.21 23:11:03.667 2025.01.21 23:11:04.255 2025.01.21 21:32:04.307 2025.01.21 21:32:04.710
83 6.0.0.590 2025.01.20 9dc1e P P 620 389 2025.01.20 23:16:46.251 2025.01.20 23:16:46.871 2025.01.20 21:32:19.981 2025.01.20 21:32:20.370
84 6.0.0.588 2025.01.19 b1c4e P P 626 432 2025.01.19 23:13:05.941 2025.01.19 23:13:06.567 2025.01.19 21:33:10.657 2025.01.19 21:33:11.089
85 6.0.0.587 2025.01.18 63e6e P P 1123 471 2025.01.18 23:15:47.560 2025.01.18 23:15:48.683 2025.01.18 21:32:58.160 2025.01.18 21:32:58.631
86 6.0.0.585 2025.01.16 2d6bb P P 625 402 2025.01.17 23:10:36.997 2025.01.17 23:10:37.622 2025.01.17 21:32:00.721 2025.01.17 21:32:01.123
87 6.0.0.584 2025.01.15 a0aa2 P P 1076 501 2025.01.15 23:14:55.775 2025.01.15 23:14:56.851 2025.01.15 21:32:46.396 2025.01.15 21:32:46.897
88 6.0.0.581 2025.01.14 21e9e P P 905 427 2025.01.14 23:15:55.181 2025.01.14 23:15:56.086 2025.01.14 21:32:24.465 2025.01.14 21:32:24.892
89 6.0.0.577 2025.01.13 7e293 P P 1055 387 2025.01.13 23:16:29.426 2025.01.13 23:16:30.481 2025.01.13 21:32:35.343 2025.01.13 21:32:35.730
90 6.0.0.576 2025.01.12 05898 P P 1148 411 2025.01.12 23:13:40.855 2025.01.12 23:13:42.003 2025.01.12 21:32:09.909 2025.01.12 21:32:10.320
91 6.0.0.573 2025.01.10 c20f3 P P 1198 446 2025.01.10 23:14:19.188 2025.01.10 23:14:20.386 2025.01.10 21:32:25.912 2025.01.10 21:32:26.358
92 6.0.0.571 2024.12.31 81bba P P 993 315 2024.12.31 22:49:35.130 2024.12.31 22:49:36.123 2024.12.31 21:28:51.726 2024.12.31 21:28:52.041
93 6.0.0.570 2024.12.30 c3c8d P P 1039 322 2024.12.30 22:48:53.860 2024.12.30 22:48:54.899 2024.12.30 21:28:57.507 2024.12.30 21:28:57.829
94 6.0.0.565 2024.12.28 5fc59 P P 525 310 2024.12.30 11:46:59.268 2024.12.30 11:46:59.793 2024.12.30 10:37:32.465 2024.12.30 10:37:32.775
95 6.0.0.564 2024.12.26 12514 P P 995 328 2024.12.26 22:50:29.698 2024.12.26 22:50:30.693 2024.12.26 21:28:49.449 2024.12.26 21:28:49.777
96 6.0.0.560 2024.12.25 fa83e P P 996 295 2024.12.25 22:50:14.230 2024.12.25 22:50:15.226 2024.12.25 21:28:57.461 2024.12.25 21:28:57.756
97 6.0.0.559 2024.12.23 cc800 P P 1008 308 2024.12.24 22:52:51.006 2024.12.24 22:52:52.014 2024.12.24 21:29:04.060 2024.12.24 21:29:04.368
98 6.0.0.556 2024.12.22 a0404 P P 987 308 2024.12.22 22:51:04.011 2024.12.22 22:51:04.998 2024.12.22 21:29:10.525 2024.12.22 21:29:10.833
99 6.0.0.555 2024.12.19 6990a P P 530 302 2024.12.21 12:23:19.917 2024.12.21 12:23:20.447 2024.12.21 11:04:09.814 2024.12.21 11:04:10.116
100 6.0.0.553 2024.12.17 d1f8a P P 935 315 2024.12.17 22:52:03.270 2024.12.17 22:52:04.205 2024.12.17 21:29:17.045 2024.12.17 21:29:17.360
101 6.0.0.552 2024.12.11 85e25 P P 1012 319 2024.12.15 22:50:40.995 2024.12.15 22:50:42.007 2024.12.15 21:29:13.143 2024.12.15 21:29:13.462
102 6.0.0.550 2024.12.10 b37ac P P 961 344 2024.12.10 22:53:50.259 2024.12.10 22:53:51.220 2024.12.10 21:29:33.963 2024.12.10 21:29:34.307
103 6.0.0.548 2024.12.08 2cc77 P P 956 325 2024.12.08 22:48:04.989 2024.12.08 22:48:05.945 2024.12.08 21:28:47.152 2024.12.08 21:28:47.477
104 6.0.0.544 2024.12.05 96943 P P 996 314 2024.12.05 22:53:12.498 2024.12.05 22:53:13.494 2024.12.05 21:29:54.813 2024.12.05 21:29:55.127
105 6.0.0.543 2024.12.03 30b77 P P 955 319 2024.12.03 22:52:41.623 2024.12.03 22:52:42.578 2024.12.03 21:29:25.798 2024.12.03 21:29:26.117
106 6.0.0.540 2024.12.02 4a1f4 P P 527 345 2024.12.02 22:46:47.604 2024.12.02 22:46:48.131 2024.12.02 21:28:52.139 2024.12.02 21:28:52.484
107 6.0.0.539 2024.11.28 1f283 P P 962 288 2024.11.29 22:51:42.023 2024.11.29 22:51:42.985 2024.11.29 21:29:06.851 2024.11.29 21:29:07.139
108 6.0.0.535 2024.11.26 77b95 P P 527 302 2024.11.26 22:43:45.731 2024.11.26 22:43:46.258 2024.11.26 21:28:11.358 2024.11.26 21:28:11.660
109 6.0.0.534 2024.11.25 e9584 P P 497 334 2024.11.25 22:44:52.659 2024.11.25 22:44:53.156 2024.11.25 21:28:27.281 2024.11.25 21:28:27.615
110 6.0.0.533 2024.11.17 933ac P P 541 314 2024.11.22 09:04:00.492 2024.11.22 09:04:01.033 2024.11.22 07:57:44.574 2024.11.22 07:57:44.888
111 6.0.0.532 2024.11.16 9e263 P P 1057 308 2024.11.16 22:40:52.641 2024.11.16 22:40:53.698 2024.11.16 21:28:28.304 2024.11.16 21:28:28.612
112 6.0.0.530 2024.11.15 49804 P P 486 304 2024.11.16 00:44:19.028 2024.11.16 00:44:19.514 2024.11.15 23:28:12.957 2024.11.15 23:28:13.261
113 6.0.0.528 2024.11.14 9625b P P 834 332 2024.11.15 00:45:41.454 2024.11.15 00:45:42.288 2024.11.14 23:28:38.709 2024.11.14 23:28:39.041
114 6.0.0.526 2024.11.12 65b80 P P 526 295 2024.11.14 00:45:13.136 2024.11.14 00:45:13.662 2024.11.13 23:28:14.874 2024.11.13 23:28:15.169
115 6.0.0.523 2024.11.08 8ca23 P P 1003 310 2024.11.11 00:43:10.507 2024.11.11 00:43:11.510 2024.11.10 23:27:54.301 2024.11.10 23:27:54.611
116 6.0.0.520 2024.11.07 4eefa P P 515 381 2024.11.08 00:41:48.670 2024.11.08 00:41:49.185 2024.11.07 23:27:58.333 2024.11.07 23:27:58.714
117 6.0.0.516 2024.11.04 b0c36 P P 936 294 2024.11.05 00:41:20.531 2024.11.05 00:41:21.467 2024.11.04 23:27:55.045 2024.11.04 23:27:55.339
118 6.0.0.515 2024.10.30 d53f3 P P 879 331 2024.11.04 00:42:35.991 2024.11.04 00:42:36.870 2024.11.03 23:27:59.428 2024.11.03 23:27:59.759
119 6.0.0.512 2024.10.29 833ef P P 708 300 2024.10.30 00:44:20.634 2024.10.30 00:44:21.342 2024.10.29 23:28:41.403 2024.10.29 23:28:41.703
120 6.0.0.511 2024.10.26 c4bc9 P P 561 326 2024.10.29 00:44:23.668 2024.10.29 00:44:24.229 2024.10.28 23:28:09.341 2024.10.28 23:28:09.667
121 6.0.0.509 2024.10.25 3aedb P P 1103 327 2024.10.26 00:50:17.336 2024.10.26 00:50:18.439 2024.10.25 23:29:11.174 2024.10.25 23:29:11.501
122 6.0.0.508 2024.10.24 a8f5b P P 666 310 2024.10.25 00:46:23.688 2024.10.25 00:46:24.354 2024.10.24 23:28:51.834 2024.10.24 23:28:52.144
123 6.0.0.502 2024.10.22 6bfd7 P P 903 308 2024.10.23 00:45:52.259 2024.10.23 00:45:53.162 2024.10.22 23:28:43.377 2024.10.22 23:28:43.685
124 6.0.0.500 2024.10.21 be565 P P 581 351 2024.10.22 17:06:18.995 2024.10.22 17:06:19.576 2024.10.22 15:57:52.828 2024.10.22 15:57:53.179
125 6.0.0.499 2024.10.19 6214b P P 511 319 2024.10.20 00:47:03.532 2024.10.20 00:47:04.043 2024.10.19 23:29:13.696 2024.10.19 23:29:14.015
126 6.0.0.498 2024.10.18 591a7 P P 961 330 2024.10.19 00:45:16.196 2024.10.19 00:45:17.157 2024.10.18 23:28:25.792 2024.10.18 23:28:26.122
127 6.0.0.494 2024.10.17 cf5a4 P P 515 332 2024.10.18 00:46:10.343 2024.10.18 00:46:10.858 2024.10.17 23:29:17.170 2024.10.17 23:29:17.502
128 6.0.0.491 2024.10.14 dc5fb P P 933 307 2024.10.15 00:43:31.553 2024.10.15 00:43:32.486 2024.10.14 23:28:11.385 2024.10.14 23:28:11.692
129 6.0.0.489 2024.10.11 2ba59 P P 1041 316 2024.10.12 00:47:51.244 2024.10.12 00:47:52.285 2024.10.11 23:28:45.524 2024.10.11 23:28:45.840
130 6.0.0.488 2024.10.09 1c93e P P 970 318 2024.10.10 00:54:01.500 2024.10.10 00:54:02.470 2024.10.09 23:29:50.488 2024.10.09 23:29:50.806
131 6.0.0.487 2024.10.06 065a3 P P 652 334 2024.10.07 00:52:59.136 2024.10.07 00:52:59.788 2024.10.06 23:30:11.448 2024.10.06 23:30:11.782
132 6.0.0.485 2024.10.04 e95c1 P P 1208 311 2024.10.05 00:54:56.933 2024.10.05 00:54:58.141 2024.10.04 23:29:23.443 2024.10.04 23:29:23.754
133 6.0.0.483 2024.10.02 5e5ae P P 956 321 2024.10.03 00:52:00.912 2024.10.03 00:52:01.868 2024.10.02 23:29:16.051 2024.10.02 23:29:16.372
134 6.0.0.478 2024.09.30 b5010 P P 1005 315 2024.10.01 00:49:08.548 2024.10.01 00:49:09.553 2024.09.30 23:29:04.858 2024.09.30 23:29:05.173
135 6.0.0.474 2024.09.26 e4efb P P 523 319 2024.09.30 00:47:23.262 2024.09.30 00:47:23.785 2024.09.29 23:28:46.185 2024.09.29 23:28:46.504
136 6.0.0.471 2024.09.24 01b51 P P 647 333 2024.09.25 22:49:24.478 2024.09.25 22:49:25.125 2024.09.25 21:28:43.665 2024.09.25 21:28:43.998
137 6.0.0.470 2024.09.23 77cc0 P P 622 314 2024.09.23 22:48:54.664 2024.09.23 22:48:55.286 2024.09.23 21:28:57.051 2024.09.23 21:28:57.365
138 6.0.0.467 2024.09.21 ea0b8 P P 838 314 2024.09.22 22:47:48.013 2024.09.22 22:47:48.851 2024.09.22 21:28:31.025 2024.09.22 21:28:31.339
139 6.0.0.466 2024.09.20 32dc6 P P 586 317 2024.09.20 22:46:56.787 2024.09.20 22:46:57.373 2024.09.20 21:28:28.388 2024.09.20 21:28:28.705
140 6.0.0.461 2024.09.17 2c895 P P 867 484 2024.09.17 23:14:20.513 2024.09.17 23:14:21.380 2024.09.17 21:34:25.178 2024.09.17 21:34:25.662
141 6.0.0.460 2024.09.11 3c253 P P 1039 525 2024.09.16 23:15:40.764 2024.09.16 23:15:41.803 2024.09.16 21:34:30.427 2024.09.16 21:34:30.952
142 6.0.0.457 2024.09.09 fdc6f P P 1176 578 2024.09.09 23:30:47.065 2024.09.09 23:30:48.241 2024.09.09 21:35:50.907 2024.09.09 21:35:51.485
143 6.0.0.455 2024.09.07 500d8 P P 1139 575 2024.09.07 23:27:56.697 2024.09.07 23:27:57.836 2024.09.07 21:36:07.679 2024.09.07 21:36:08.254
144 6.0.0.454 2024.09.05 4d70f P P 1076 534 2024.09.05 23:15:49.513 2024.09.05 23:15:50.589 2024.09.05 21:35:05.367 2024.09.05 21:35:05.901
145 6.0.0.452 2024.09.04 9ff9c P P 750 609 2024.09.04 23:15:33.424 2024.09.04 23:15:34.174 2024.09.04 21:34:40.607 2024.09.04 21:34:41.216
146 6.0.0.450 2024.09.02 27124 P P 2114 582 2024.09.04 00:03:24.630 2024.09.04 00:03:26.744 2024.09.03 21:46:48.369 2024.09.03 21:46:48.951
147 6.0.0.447 2024.09.01 056ec P P 715 579 2024.09.01 23:28:43.933 2024.09.01 23:28:44.648 2024.09.01 21:34:20.064 2024.09.01 21:34:20.643
148 6.0.0.446 2024.08.30 fe1b2 P P 1040 502 2024.08.31 23:32:28.477 2024.08.31 23:32:29.517 2024.08.31 21:45:59.763 2024.08.31 21:46:00.265
149 6.0.0.444 2024.08.28 785d4 P P 1876 540 2024.08.29 23:49:49.373 2024.08.29 23:49:51.249 2024.08.29 21:46:02.629 2024.08.29 21:46:03.169
150 6.0.0.442 2024.08.21 4a68f P P 1901 992 2024.08.28 00:51:19.309 2024.08.28 00:51:21.210 2024.08.27 21:53:28.705 2024.08.27 21:53:29.697
151 6.0.0.441 2024.08.20 75042 P P 1260 585 2024.08.20 23:22:12.149 2024.08.20 23:22:13.409 2024.08.20 21:35:39.915 2024.08.20 21:35:40.500
152 6.0.0.438 2024.08.16 088b5 P P 1122 486 2024.08.18 22:52:36.217 2024.08.18 22:52:37.339 2024.08.18 21:30:59.983 2024.08.18 21:31:00.469
153 6.0.0.437 2024.08.14 3c88b P P 1040 421 2024.08.15 22:51:14.721 2024.08.15 22:51:15.761 2024.08.15 21:30:57.330 2024.08.15 21:30:57.751
154 6.0.0.432 2024.08.11 e82ac P P 1131 446 2024.08.12 22:50:06.437 2024.08.12 22:50:07.568 2024.08.12 21:30:40.382 2024.08.12 21:30:40.828
155 6.0.0.431 2024.08.09 de5a7 P P 1211 436 2024.08.09 22:50:55.108 2024.08.09 22:50:56.319 2024.08.09 21:31:10.946 2024.08.09 21:31:11.382
156 6.0.0.428 2024.08.08 9191b P P 1184 479 2024.08.08 22:50:04.885 2024.08.08 22:50:06.069 2024.08.08 21:31:02.966 2024.08.08 21:31:03.445
157 6.0.0.423 2024.08.07 33b41 P P 663 442 2024.08.08 08:49:27.258 2024.08.08 08:49:27.921 2024.08.08 07:38:38.833 2024.08.08 07:38:39.275
158 6.0.0.421 2024.08.06 ed60d P P 690 289 2024.08.06 22:38:16.861 2024.08.06 22:38:17.551 2024.08.06 21:28:41.113 2024.08.06 21:28:41.402
159 6.0.0.419 2024.08.05 3505a P P 735 293 2024.08.05 22:40:30.234 2024.08.05 22:40:30.969 2024.08.05 21:28:52.026 2024.08.05 21:28:52.319
160 6.0.0.409 2024.08.02 ec18f P P 808 306 2024.08.04 22:42:44.637 2024.08.04 22:42:45.445 2024.08.04 21:29:08.374 2024.08.04 21:29:08.680
161 6.0.0.406 2024.08.01 b20be P P 773 297 2024.08.01 22:41:39.649 2024.08.01 22:41:40.422 2024.08.01 21:28:50.660 2024.08.01 21:28:50.957
162 6.0.0.405 2024.07.31 a62ac P P 740 296 2024.07.31 22:41:10.689 2024.07.31 22:41:11.429 2024.07.31 21:28:55.839 2024.07.31 21:28:56.135
163 6.0.0.403 2024.07.29 30f03 P P 721 304 2024.07.29 22:40:50.799 2024.07.29 22:40:51.520 2024.07.29 21:28:40.166 2024.07.29 21:28:40.470
164 6.0.0.401 2024.07.26 24e41 P P 778 277 2024.07.26 22:38:12.946 2024.07.26 22:38:13.724 2024.07.26 21:28:37.236 2024.07.26 21:28:37.513
165 6.0.0.400 2024.07.24 5bb78 P P 759 268 2024.07.24 22:38:17.342 2024.07.24 22:38:18.101 2024.07.24 21:28:41.736 2024.07.24 21:28:42.004
166 6.0.0.398 2024.07.23 85b18 P P 445 296 2024.07.23 22:43:42.618 2024.07.23 22:43:43.063 2024.07.23 21:28:42.905 2024.07.23 21:28:43.201
167 6.0.0.397 2024.07.22 c734c P P 740 315 2024.07.22 22:37:59.989 2024.07.22 22:38:00.729 2024.07.22 21:28:39.128 2024.07.22 21:28:39.443
168 6.0.0.396 2024.07.13 cf952 P P 800 290 2024.07.21 22:37:56.893 2024.07.21 22:37:57.693 2024.07.21 21:28:25.413 2024.07.21 21:28:25.703
169 6.0.0.395 2024.07.10 845f4 P P 675 306 2024.07.12 22:37:47.417 2024.07.12 22:37:48.092 2024.07.12 21:28:13.779 2024.07.12 21:28:14.085
170 6.0.0.392 2024.07.09 ea301 P P 756 291 2024.07.09 22:35:31.569 2024.07.09 22:35:32.325 2024.07.09 21:28:13.467 2024.07.09 21:28:13.758
171 6.0.0.391 2024.07.08 7d50c P P 820 305 2024.07.08 22:36:54.397 2024.07.08 22:36:55.217 2024.07.08 21:28:29.835 2024.07.08 21:28:30.140
172 6.0.0.389 2024.07.05 cc71c P P 850 293 2024.07.05 22:37:38.942 2024.07.05 22:37:39.792 2024.07.05 21:28:23.018 2024.07.05 21:28:23.311
173 6.0.0.388 2024.06.30 e5700 P P 734 296 2024.06.30 22:36:45.126 2024.06.30 22:36:45.860 2024.06.30 21:28:32.982 2024.06.30 21:28:33.278
174 6.0.0.387 2024.06.27 7c28a P P 749 269 2024.06.27 22:36:50.747 2024.06.27 22:36:51.496 2024.06.27 21:28:38.259 2024.06.27 21:28:38.528
175 6.0.0.386 2024.06.23 7c57f P P 707 298 2024.06.23 22:34:34.189 2024.06.23 22:34:34.896 2024.06.23 21:28:07.169 2024.06.23 21:28:07.467
176 6.0.0.384 2024.06.21 24d99 P P 800 276 2024.06.21 22:37:29.297 2024.06.21 22:37:30.097 2024.06.21 21:28:08.210 2024.06.21 21:28:08.486
177 6.0.0.374 2024.06.13 0097d P P 404 295 2024.06.20 22:37:26.045 2024.06.20 22:37:26.449 2024.06.20 21:28:12.575 2024.06.20 21:28:12.870
178 6.0.0.373 2024.06.09 363f0 P P 514 321 2024.06.13 12:54:25.232 2024.06.13 12:54:25.746 2024.06.13 11:51:22.482 2024.06.13 11:51:22.803
179 6.0.0.371 2024.06.08 f7130 P P 394 246 2024.06.11 21:45:55.674 2024.06.11 21:45:56.068 2024.06.11 20:49:42.888 2024.06.11 20:49:43.134
180 6.0.0.366 2024.05.30 ab2c9 P P 776 280 2024.06.12 08:32:55.049 2024.06.12 08:32:55.825 2024.06.12 07:21:42.107 2024.06.12 07:21:42.387
181 6.0.0.363 2024.05.27 06703 P P 447 219 2024.06.12 13:51:21.179 2024.06.12 13:51:21.626 2024.06.12 12:52:59.415 2024.06.12 12:52:59.634
182 6.0.0.359 2024.05.23 9cb11 P P 498 216 2024.06.12 11:43:49.206 2024.06.12 11:43:49.704 2024.06.12 10:44:52.500 2024.06.12 10:44:52.716
183 6.0.0.358 2024.05.21 995dd P P 379 257 2024.06.12 16:27:48.097 2024.06.12 16:27:48.476 2024.06.12 15:30:11.218 2024.06.12 15:30:11.475
184 6.0.0.357 2024.05.18 bf6c4 P P 417 283 2024.06.12 21:04:06.125 2024.06.12 21:04:06.542 2024.06.12 20:06:35.349 2024.06.12 20:06:35.632
185 6.0.0.356 2024.05.17 eab06 P P 408 203 2024.06.13 05:10:42.889 2024.06.13 05:10:43.297 2024.06.13 04:12:46.984 2024.06.13 04:12:47.187
186 6.0.0.355 2024.05.16 8dd6e P P 417 306 2024.06.13 07:17:59.450 2024.06.13 07:17:59.867 2024.06.13 06:20:03.036 2024.06.13 06:20:03.342
187 6.0.0.354 2024.05.15 d3adc P P 437 330 2024.06.13 10:20:02.467 2024.06.13 10:20:02.904 2024.06.13 09:16:39.046 2024.06.13 09:16:39.376
188 6.0.0.351 2024.05.14 2e3e0 P P 537 299 2024.06.13 15:33:36.532 2024.06.13 15:33:37.069 2024.06.13 14:29:18.399 2024.06.13 14:29:18.698

Elapsed time, ms. Chart for last 150 runs:

Last commits information (all timestamps in UTC):