Check firebird.log [no messages found 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   
    Select Expression
    ....-> Aggregate
    ........-> Filter
  - ............-> Table "TEST" Access By ID
  + ............-> Table "PUBLIC"."TEST" Access By ID
    ................-> Bitmap
  - ....................-> Index "TEST_F01_SMALLINT_PARTIAL" Full Scan
  + ....................-> Index "PUBLIC"."TEST_F01_SMALLINT_PARTIAL" Full Scan
    COUNT : 10
    Select Expression
    ....-> Aggregate
    ........-> Filter
  - ............-> Table "TEST" Access By ID
  + ............-> Table "PUBLIC"."TEST" Access By ID
    ................-> Bitmap
  - ....................-> Index "TEST_F02_SMALLINT_COMMON" Range Scan (full match)
  + ....................-> Index "PUBLIC"."TEST_F02_SMALLINT_COMMON" Range Scan (full match)
    COUNT : 10

LOG DETAILS:

2025-07-03 05:18:38.480
2025-07-03 05:18:38.485 act = <firebird.qa.plugin.Action object at [hex]>
2025-07-03 05:18:38.491 capsys = <_pytest.capture.CaptureFixture object at [hex]>
2025-07-03 05:18:38.498
2025-07-03 05:18:38.504 @pytest.mark.version('>=5.0')
2025-07-03 05:18:38.513 def test_1(act: Action, capsys):
2025-07-03 05:18:38.526
2025-07-03 05:18:38.536 >       run_ddl_dml(act, capsys, 'smallint', -32768, 32767, True)
2025-07-03 05:18:38.543
2025-07-03 05:18:38.552 tests/bugs/gh_7257_misc_datatypes_test.py:141:
2025-07-03 05:18:38.567 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
2025-07-03 05:18:38.576
2025-07-03 05:18:38.584 act = <firebird.qa.plugin.Action object at [hex]>
2025-07-03 05:18:38.597 capsys = <_pytest.capture.CaptureFixture object at [hex]>
2025-07-03 05:18:38.607 dtype = 'smallint', v_chk = -32768, v_max = 32767, use_rand = True
2025-07-03 05:18:38.621
2025-07-03 05:18:38.631 def run_ddl_dml(act, capsys, dtype, v_chk, v_max, use_rand = True):
2025-07-03 05:18:38.643
2025-07-03 05:18:38.652 with act.db.connect() as con:
2025-07-03 05:18:38.658 cur = con.cursor()
2025-07-03 05:18:38.665 idx_partial_name = f'test_f01_{dtype.split()[0]}_partial'.upper()
2025-07-03 05:18:38.671 idx_common_name = f'test_f02_{dtype.split()[0]}_common'.upper()
2025-07-03 05:18:38.678 if dtype =='date':
2025-07-03 05:18:38.683 v_chk = 'current_date'
2025-07-03 05:18:38.690 insert_sttm = f"insert into test(id, f01) select row_number()over(), iif(mod(row_number()over(), 100) = 0, {v_chk}, dateadd(rand()*1000 day to date '01.01.2000')) from rdb$types,rdb$types rows 1000"
2025-07-03 05:18:38.696 elif dtype == 'time with time zone':
2025-07-03 05:18:38.702 v_chk = "time '11:11:11.111 Indian/Cocos'"
2025-07-03 05:18:38.708 insert_sttm = f"insert into test(id, f01) select row_number()over(), iif(mod(row_number()over(), 100) = 0, {v_chk}, time '11:11:11.111 Pacific/Fiji' ) from rdb$types,rdb$types rows 1000"
2025-07-03 05:18:38.715 elif dtype == 'varchar(80) character set utf8':
2025-07-03 05:18:38.722 idx_partial_name = f'test_f01_utf8_partial'.upper()
2025-07-03 05:18:38.727 idx_common_name = f'test_f02_utf8_common'.upper()
2025-07-03 05:18:38.733 v_chk = "'Sporvognsskinneskidtskraberkonduktørbuksebæltespændeemblempoleringsmiddelshylde€'"
2025-07-03 05:18:38.739 v_max = "'Minoritetsladningsbærerdiffusjonskoeffisientmålingsapparatur'"
2025-07-03 05:18:38.746 insert_sttm = f"insert into test(id, f01) select row_number()over(),iif(mod(row_number()over(), 100) = 0, {v_chk}, {v_max}) from rdb$types,rdb$types rows 1000"
2025-07-03 05:18:38.752 elif dtype == 'varbinary(16)':
2025-07-03 05:18:38.766 idx_partial_name = f'test_f01_vbin_partial'.upper()
2025-07-03 05:18:38.777 idx_common_name = f'test_f02_vbin_common'.upper()
2025-07-03 05:18:38.785 v_chk = "x'0A'"
2025-07-03 05:18:38.792 v_max = "gen_uuid()"
2025-07-03 05:18:38.798 insert_sttm = f"insert into test(id, f01) select row_number()over(),iif(mod(row_number()over(), 100) = 0, {v_chk}, {v_max}) from rdb$types,rdb$types rows 1000"
2025-07-03 05:18:38.804 elif dtype == 'boolean':
2025-07-03 05:18:38.810 v_chk = "false"
2025-07-03 05:18:38.815 v_max = "true"
2025-07-03 05:18:38.822 insert_sttm = f"insert into test(id, f01) select row_number()over(),iif(mod(row_number()over(), 100) = 0, {v_chk}, {v_max}) from rdb$types,rdb$types rows 1000"
2025-07-03 05:18:38.827 else:
2025-07-03 05:18:38.833 insert_sttm = f"insert into test(id, f01) select row_number()over(), iif(mod(row_number()over(), 100) = 0, cast({v_chk} as {dtype}), cast(rand()*{v_max} as {dtype})) from rdb$types,rdb$types rows 1000"
2025-07-03 05:18:38.838 ddl = f"""
2025-07-03 05:18:38.844 recreate table test(id int primary key, f01 {dtype}, f02 {dtype}) ^
2025-07-03 05:18:38.849 {insert_sttm} ^
2025-07-03 05:18:38.855 update test set f02 = f01 ^
2025-07-03 05:18:38.859 create index {idx_partial_name} on test computed by (f01) where f01 = {v_chk} ^
2025-07-03 05:18:38.864 create index {idx_common_name} on test(f02) ^
2025-07-03 05:18:38.869 set statistics index {idx_partial_name} ^
2025-07-03 05:18:38.876 set statistics index {idx_common_name} ^
2025-07-03 05:18:38.885 """
2025-07-03 05:18:38.891
2025-07-03 05:18:38.897 dml = f"""
2025-07-03 05:18:38.907 select count(*) from test where f01 = {v_chk} ^
2025-07-03 05:18:38.920 select count(*) from test where f02 = {v_chk} ^
2025-07-03 05:18:38.929 """
2025-07-03 05:18:38.936
2025-07-03 05:18:38.943 for x in [p for p in ddl.split('^') if p.strip()]:
2025-07-03 05:18:38.948 if x.startswith('--'):
2025-07-03 05:18:38.953 pass
2025-07-03 05:18:38.958 else:
2025-07-03 05:18:38.962 con.execute_immediate(x)
2025-07-03 05:18:38.968 con.commit()
2025-07-03 05:18:38.975
2025-07-03 05:18:38.986 for x in [p for p in dml.split('^') if p.strip()]:
2025-07-03 05:18:38.994 ps, rs = None, None
2025-07-03 05:18:39.004 try:
2025-07-03 05:18:39.011 ps = cur.prepare(x)
2025-07-03 05:18:39.019 for s in ps.detailed_plan.split('\n'):
2025-07-03 05:18:39.025 print( replace_leading(s) )
2025-07-03 05:18:39.031
2025-07-03 05:18:39.039 # ::: NB ::: 'ps' returns data, i.e. this is SELECTABLE expression.
2025-07-03 05:18:39.048 # We have to store result of cur.execute(<psInstance>) in order to
2025-07-03 05:18:39.055 # close it explicitly.
2025-07-03 05:18:39.062 # Otherwise AV can occur during Python garbage collection and this
2025-07-03 05:18:39.069 # causes pytest to hang on its final point.
2025-07-03 05:18:39.083 # Explained by hvlad, email 26.10.24 17:42
2025-07-03 05:18:39.093 rs = cur.execute(ps)
2025-07-03 05:18:39.100 cur_cols = cur.description
2025-07-03 05:18:39.107 for r in rs:
2025-07-03 05:18:39.119 for i in range(0,len(cur_cols)):
2025-07-03 05:18:39.129 print( cur_cols[i][0], ':', r[i] )
2025-07-03 05:18:39.136 con.commit()
2025-07-03 05:18:39.142 except DatabaseError as e:
2025-07-03 05:18:39.147 print(e.__str__())
2025-07-03 05:18:39.151 print(e.gds_codes)
2025-07-03 05:18:39.155 finally:
2025-07-03 05:18:39.166 if rs:
2025-07-03 05:18:39.173 rs.close() # <<< EXPLICITLY CLOSING CURSOR RESULTS
2025-07-03 05:18:39.180 if ps:
2025-07-03 05:18:39.187 ps.free()
2025-07-03 05:18:39.191
2025-07-03 05:18:39.195 act.expected_stdout = f"""
2025-07-03 05:18:39.200 Select Expression
2025-07-03 05:18:39.204 ....-> Aggregate
2025-07-03 05:18:39.208 ........-> Filter
2025-07-03 05:18:39.213 ............-> Table "TEST" Access By ID
2025-07-03 05:18:39.217 ................-> Bitmap
2025-07-03 05:18:39.221 ....................-> Index "{idx_partial_name}" Full Scan
2025-07-03 05:18:39.226 COUNT : 10
2025-07-03 05:18:39.230 Select Expression
2025-07-03 05:18:39.234 ....-> Aggregate
2025-07-03 05:18:39.239 ........-> Filter
2025-07-03 05:18:39.243 ............-> Table "TEST" Access By ID
2025-07-03 05:18:39.248 ................-> Bitmap
2025-07-03 05:18:39.252 ....................-> Index "{idx_common_name}" Range Scan (full match)
2025-07-03 05:18:39.256 COUNT : 10
2025-07-03 05:18:39.261 """
2025-07-03 05:18:39.265 act.stdout = capsys.readouterr().out
2025-07-03 05:18:39.270 >           assert act.clean_stdout == act.clean_expected_stdout
2025-07-03 05:18:39.274 E           assert
2025-07-03 05:18:39.278 E               Select Expression
2025-07-03 05:18:39.282 E               ....-> Aggregate
2025-07-03 05:18:39.287 E               ........-> Filter
2025-07-03 05:18:39.294 E             - ............-> Table "TEST" Access By ID
2025-07-03 05:18:39.298 E             + ............-> Table "PUBLIC"."TEST" Access By ID
2025-07-03 05:18:39.311 E               ................-> Bitmap
2025-07-03 05:18:39.319 E             - ....................-> Index "TEST_F01_SMALLINT_PARTIAL" Full Scan
2025-07-03 05:18:39.327 E             + ....................-> Index "PUBLIC"."TEST_F01_SMALLINT_PARTIAL" Full Scan
2025-07-03 05:18:39.338 E               COUNT : 10
2025-07-03 05:18:39.344 E               Select Expression
2025-07-03 05:18:39.350 E               ....-> Aggregate
2025-07-03 05:18:39.356 E               ........-> Filter
2025-07-03 05:18:39.362 E             - ............-> Table "TEST" Access By ID
2025-07-03 05:18:39.372 E             + ............-> Table "PUBLIC"."TEST" Access By ID
2025-07-03 05:18:39.387 E               ................-> Bitmap
2025-07-03 05:18:39.397 E             - ....................-> Index "TEST_F02_SMALLINT_COMMON" Range Scan (full match)
2025-07-03 05:18:39.405 E             + ....................-> Index "PUBLIC"."TEST_F02_SMALLINT_COMMON" Range Scan (full match)
2025-07-03 05:18:39.420 E               COUNT : 10
2025-07-03 05:18:39.426
2025-07-03 05:18:39.437 tests/bugs/gh_7257_misc_datatypes_test.py:133: AssertionError
2025-07-03 05:18:39.449 ---------------------------- Captured stdout setup -----------------------------
2025-07-03 05:18:39.461 Creating db: localhost:/var/tmp/qa_2024/test_11536/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]>
capsys = <_pytest.capture.CaptureFixture pytest object at [hex]>

    @pytest.mark.version('>=5.0')
    def test_1(act: Action, capsys):
    
>       run_ddl_dml(act, capsys, 'smallint', -32768, 32767, True)

tests/bugs/gh_7257_misc_datatypes_test.py:141: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

act = <firebird.qa.plugin.Action pytest object at [hex]>
capsys = <_pytest.capture.CaptureFixture pytest object at [hex]>
dtype = 'smallint', v_chk = -32768, v_max = 32767, use_rand = True

    def run_ddl_dml(act, capsys, dtype, v_chk, v_max, use_rand = True):
    
        with act.db.connect() as con:
            cur = con.cursor()
            idx_partial_name = f'test_f01_{dtype.split()[0]}_partial'.upper()
            idx_common_name = f'test_f02_{dtype.split()[0]}_common'.upper()
            if dtype =='date':
                v_chk = 'current_date'
                insert_sttm = f"insert into test(id, f01) select row_number()over(), iif(mod(row_number()over(), 100) = 0, {v_chk}, dateadd(rand()*1000 day to date '01.01.2000')) from rdb$types,rdb$types rows 1000"
            elif dtype == 'time with time zone':
                v_chk = "time '11:11:11.111 Indian/Cocos'"
                insert_sttm = f"insert into test(id, f01) select row_number()over(), iif(mod(row_number()over(), 100) = 0, {v_chk}, time '11:11:11.111 Pacific/Fiji' ) from rdb$types,rdb$types rows 1000"
            elif dtype == 'varchar(80) character set utf8':
                idx_partial_name = f'test_f01_utf8_partial'.upper()
                idx_common_name = f'test_f02_utf8_common'.upper()
                v_chk = "'Sporvognsskinneskidtskraberkonduktørbuksebæltespændeemblempoleringsmiddelshylde€'"
                v_max = "'Minoritetsladningsbærerdiffusjonskoeffisientmålingsapparatur'"
                insert_sttm = f"insert into test(id, f01) select row_number()over(),iif(mod(row_number()over(), 100) = 0, {v_chk}, {v_max}) from rdb$types,rdb$types rows 1000"
            elif dtype == 'varbinary(16)':
                idx_partial_name = f'test_f01_vbin_partial'.upper()
                idx_common_name = f'test_f02_vbin_common'.upper()
                v_chk = "x'0A'"
                v_max = "gen_uuid()"
                insert_sttm = f"insert into test(id, f01) select row_number()over(),iif(mod(row_number()over(), 100) = 0, {v_chk}, {v_max}) from rdb$types,rdb$types rows 1000"
            elif dtype == 'boolean':
                v_chk = "false"
                v_max = "true"
                insert_sttm = f"insert into test(id, f01) select row_number()over(),iif(mod(row_number()over(), 100) = 0, {v_chk}, {v_max}) from rdb$types,rdb$types rows 1000"
            else:
                insert_sttm = f"insert into test(id, f01) select row_number()over(), iif(mod(row_number()over(), 100) = 0, cast({v_chk} as {dtype}), cast(rand()*{v_max} as {dtype})) from rdb$types,rdb$types rows 1000"
            ddl = f"""
                recreate table test(id int primary key, f01 {dtype}, f02 {dtype}) ^
                {insert_sttm} ^
                update test set f02 = f01 ^
                create index {idx_partial_name} on test computed by (f01) where f01 = {v_chk} ^
                create index {idx_common_name} on test(f02) ^
                set statistics index {idx_partial_name} ^
                set statistics index {idx_common_name} ^
            """
    
            dml = f"""
                select count(*) from test where f01 = {v_chk} ^
                select count(*) from test where f02 = {v_chk} ^
            """
    
            for x in [p for p in ddl.split('^') if p.strip()]:
                if x.startswith('--'):
                    pass
                else:
                    con.execute_immediate(x)
                    con.commit()
    
            for x in [p for p in dml.split('^') if p.strip()]:
                ps, rs = None, None
                try:
                    ps = cur.prepare(x)
                    for s in ps.detailed_plan.split('\n'):
                        print( replace_leading(s) )
    
                    # ::: NB ::: 'ps' returns data, i.e. this is SELECTABLE expression.
                    # We have to store result of cur.execute(<psInstance>) in order to
                    # close it explicitly.
                    # Otherwise AV can occur during Python garbage collection and this
                    # causes pytest to hang on its final point.
                    # Explained by hvlad, email 26.10.24 17:42
                    rs = cur.execute(ps)
                    cur_cols = cur.description
                    for r in rs:
                        for i in range(0,len(cur_cols)):
                            print( cur_cols[i][0], ':', r[i] )
                    con.commit()
                except DatabaseError as e:
                    print(e.__str__())
                    print(e.gds_codes)
                finally:
                    if rs:
                        rs.close() # <<< EXPLICITLY CLOSING CURSOR RESULTS
                    if ps:
                        ps.free()
    
            act.expected_stdout = f"""
                Select Expression
                ....-> Aggregate
                ........-> Filter
                ............-> Table "TEST" Access By ID
                ................-> Bitmap
                ....................-> Index "{idx_partial_name}" Full Scan
                COUNT : 10
                Select Expression
                ....-> Aggregate
                ........-> Filter
                ............-> Table "TEST" Access By ID
                ................-> Bitmap
                ....................-> Index "{idx_common_name}" Range Scan (full match)
                COUNT : 10
            """
            act.stdout = capsys.readouterr().out
>           assert act.clean_stdout == act.clean_expected_stdout
E           assert   
E               Select Expression
E               ....-> Aggregate
E               ........-> Filter
E             - ............-> Table "TEST" Access By ID
E             + ............-> Table "PUBLIC"."TEST" Access By ID
E               ................-> Bitmap
E             - ....................-> Index "TEST_F01_SMALLINT_PARTIAL" Full Scan
E             + ....................-> Index "PUBLIC"."TEST_F01_SMALLINT_PARTIAL" Full Scan
E               COUNT : 10
E               Select Expression
E               ....-> Aggregate
E               ........-> Filter
E             - ............-> Table "TEST" Access By ID
E             + ............-> Table "PUBLIC"."TEST" Access By ID
E               ................-> Bitmap
E             - ....................-> Index "TEST_F02_SMALLINT_COMMON" Range Scan (full match)
E             + ....................-> Index "PUBLIC"."TEST_F02_SMALLINT_COMMON" Range Scan (full match)
E               COUNT : 10

tests/bugs/gh_7257_misc_datatypes_test.py:133: 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.892 2025.07.02 10f7d F F 976 528 2025.07.03 01:40:46.340 2025.07.03 01:40:47.316 2025.07.02 23:05:14.894 2025.07.02 23:05:15.422
2 6.0.0.889 2025.07.01 969ac F F 956 677 2025.07.02 02:08:33.044 2025.07.02 02:08:34.000 2025.07.01 23:18:31.062 2025.07.01 23:18:31.739
3 6.0.0.884 2025.06.30 f7e5f F F 947 664 2025.07.01 02:08:59.386 2025.07.01 02:09:00.333 2025.06.30 23:26:54.858 2025.06.30 23:26:55.522
4 6.0.0.881 2025.06.27 7035d F F 974 452 2025.06.30 01:58:56.005 2025.06.30 01:58:56.979 2025.06.29 23:13:52.690 2025.06.29 23:13:53.142
5 6.0.0.877 2025.06.26 8e38f F F 943 469 2025.06.27 01:38:16.502 2025.06.27 01:38:17.445 2025.06.26 23:05:12.507 2025.06.26 23:05:12.976
6 6.0.0.876 2025.06.25 b1bec F F 955 637 2025.06.26 01:42:08.274 2025.06.26 01:42:09.229 2025.06.25 23:07:03.246 2025.06.25 23:07:03.883
7 6.0.0.863 2025.06.24 c3c20 F F 963 448 2025.06.25 01:42:25.179 2025.06.25 01:42:26.142 2025.06.24 23:06:48.998 2025.06.24 23:06:49.446
8 6.0.0.858 2025.06.23 8d6f7 F F 894 644 2025.06.24 01:42:48.225 2025.06.24 01:42:49.119 2025.06.23 23:06:58.642 2025.06.23 23:06:59.286
9 6.0.0.849 2025.06.20 7b79c F F 865 702 2025.06.21 01:54:18.540 2025.06.21 01:54:19.405 2025.06.20 23:15:51.936 2025.06.20 23:15:52.638
10 6.0.0.848 2025.06.19 c483c F F 915 648 2025.06.20 01:50:41.116 2025.06.20 01:50:42.031 2025.06.19 23:12:45.894 2025.06.19 23:12:46.542
11 6.0.0.845 2025.06.18 22b12 F F 873 733 2025.06.19 01:59:15.726 2025.06.19 01:59:16.599 2025.06.18 23:15:47.005 2025.06.18 23:15:47.738
12 6.0.0.843 2025.06.16 995f4 F F 923 713 2025.06.18 01:57:30.639 2025.06.18 01:57:31.562 2025.06.17 23:18:34.030 2025.06.17 23:18:34.743
13 6.0.0.840 2025.06.14 29bca F F 999 655 2025.06.16 01:49:14.564 2025.06.16 01:49:15.563 2025.06.15 23:10:11.489 2025.06.15 23:10:12.144
14 6.0.0.838 2025.06.13 0e28a F F 1002 649 2025.06.14 02:02:14.754 2025.06.14 02:02:15.756 2025.06.13 23:17:43.166 2025.06.13 23:17:43.815
15 6.0.0.835 2025.06.12 2cf29 F F 884 412 2025.06.13 02:02:23.671 2025.06.13 02:02:24.555 2025.06.12 23:23:08.610 2025.06.12 23:23:09.022
16 6.0.0.834 2025.06.11 e889f F F 974 858 2025.06.12 01:57:28.725 2025.06.12 01:57:29.699 2025.06.11 23:18:07.816 2025.06.11 23:18:08.674
17 6.0.0.800 2025.06.10 1f226 P P 4900 2082 2025.06.11 00:24:08.339 2025.06.11 00:24:13.239 2025.06.10 22:17:17.632 2025.06.10 22:17:19.714
18 6.0.0.799 2025.06.07 be644 P P 5044 1573 2025.06.10 00:25:42.067 2025.06.10 00:25:47.111 2025.06.09 22:16:59.362 2025.06.09 22:17:00.935
19 6.0.0.797 2025.06.06 303e8 P P 8024 1789 2025.06.07 00:29:11.286 2025.06.07 00:29:19.310 2025.06.06 22:16:33.211 2025.06.06 22:16:35.000
20 6.0.0.795 2025.05.29 7a71a P P 4969 1543 2025.06.06 00:24:22.234 2025.06.06 00:24:27.203 2025.06.05 22:15:53.871 2025.06.05 22:15:55.414
21 6.0.0.792 2025.05.28 b4327 P P 8622 2737 2025.05.29 00:37:35.588 2025.05.29 00:37:44.210 2025.05.28 22:18:11.648 2025.05.28 22:18:14.385
22 6.0.0.791 2025.05.27 02db8 P P 8816 2062 2025.05.28 00:34:50.071 2025.05.28 00:34:58.887 2025.05.27 22:17:37.731 2025.05.27 22:17:39.793
23 6.0.0.789 2025.05.21 64051 P P 5224 2857 2025.05.25 00:27:43.891 2025.05.25 00:27:49.115 2025.05.24 22:16:54.586 2025.05.24 22:16:57.443
24 6.0.0.787 2025.05.20 230ad P P 8536 1496 2025.05.21 00:25:13.626 2025.05.21 00:25:22.162 2025.05.20 22:15:34.021 2025.05.20 22:15:35.517
25 6.0.0.783 2025.05.12 37320 P P 5663 2590 2025.05.19 11:58:54.801 2025.05.19 11:59:00.464 2025.05.19 10:04:30.127 2025.05.19 10:04:32.717
26 6.0.0.779 2025.05.11 136fa P P 8072 1940 2025.05.12 00:20:26.854 2025.05.12 00:20:34.926 2025.05.11 22:15:22.565 2025.05.11 22:15:24.505
27 6.0.0.778 2025.05.07 d735e P P 8437 2837 2025.05.08 00:22:46.798 2025.05.08 00:22:55.235 2025.05.07 22:14:03.562 2025.05.07 22:14:06.399
28 6.0.0.776 2025.05.06 007cd P P 7432 2845 2025.05.07 00:17:05.595 2025.05.07 00:17:13.027 2025.05.06 22:13:40.518 2025.05.06 22:13:43.363
29 6.0.0.770 2025.05.05 82c4a P P 5441 2807 2025.05.06 00:16:17.610 2025.05.06 00:16:23.051 2025.05.05 22:12:50.104 2025.05.05 22:12:52.911
30 6.0.0.767 2025.05.01 cdd29 P P 6165 2850 2025.05.02 00:14:14.764 2025.05.02 00:14:20.929 2025.05.01 22:12:23.848 2025.05.01 22:12:26.698
31 6.0.0.762 2025.04.30 5cb15 P P 6533 3047 2025.05.01 00:10:08.774 2025.05.01 00:10:15.307 2025.04.30 22:11:10.183 2025.04.30 22:11:13.230
32 6.0.0.755 2025.04.29 739c6 P P 5066 3275 2025.04.30 00:12:24.149 2025.04.30 00:12:29.215 2025.04.29 22:12:24.183 2025.04.29 22:12:27.458
33 6.0.0.753 2025.04.27 29ab3 P P 7010 2558 2025.04.28 00:14:17.133 2025.04.28 00:14:24.143 2025.04.27 22:11:52.283 2025.04.27 22:11:54.841
34 6.0.0.745 2025.04.21 78ad8 P P 4967 2161 2025.04.26 00:10:35.689 2025.04.26 00:10:40.656 2025.04.25 22:13:54.851 2025.04.25 22:13:57.012
35 6.0.0.744 2025.04.19 e883a P P 5217 3122 2025.04.20 00:12:28.249 2025.04.20 00:12:33.466 2025.04.19 22:12:42.190 2025.04.19 22:12:45.312
36 6.0.0.742 2025.04.17 abc3b P P 5200 2955 2025.04.19 00:14:24.183 2025.04.19 00:14:29.383 2025.04.18 22:13:02.510 2025.04.18 22:13:05.465
37 6.0.0.737 2025.04.16 fe52b P P 5018 3178 2025.04.17 00:11:32.905 2025.04.17 00:11:37.923 2025.04.16 22:13:04.746 2025.04.16 22:13:07.924
38 6.0.0.736 2025.04.14 3e6be P P 6779 1928 2025.04.14 23:53:01.967 2025.04.14 23:53:08.746 2025.04.14 22:05:21.530 2025.04.14 22:05:23.458
39 6.0.0.735 2025.04.13 6635c P P 4878 1391 2025.04.13 23:56:07.989 2025.04.13 23:56:12.867 2025.04.13 22:06:13.459 2025.04.13 22:06:14.850
40 6.0.0.734 2025.04.12 12f3f P P 6565 2599 2025.04.12 23:53:54.313 2025.04.12 23:54:00.878 2025.04.12 22:05:40.995 2025.04.12 22:05:43.594
41 6.0.0.730 2025.04.11 240b8 P P 4477 1416 2025.04.11 23:55:47.031 2025.04.11 23:55:51.508 2025.04.11 22:05:15.654 2025.04.11 22:05:17.070
42 6.0.0.726 2025.04.10 d79c6 P P 4644 1439 2025.04.10 23:55:21.202 2025.04.10 23:55:25.846 2025.04.10 22:05:23.391 2025.04.10 22:05:24.830
43 6.0.0.725 2025.04.09 a2b05 P P 4674 1394 2025.04.09 23:56:19.050 2025.04.09 23:56:23.724 2025.04.09 22:06:44.448 2025.04.09 22:06:45.842
44 6.0.0.722 2025.04.08 a8b86 P P 4928 2417 2025.04.09 00:12:07.778 2025.04.09 00:12:12.706 2025.04.08 22:12:33.479 2025.04.08 22:12:35.896
45 6.0.0.719 2025.04.06 90fd9 P P 4874 2294 2025.04.07 00:09:42.437 2025.04.07 00:09:47.311 2025.04.06 22:11:07.175 2025.04.06 22:11:09.469
46 6.0.0.717 2025.04.04 53d70 P P 4980 2433 2025.04.05 00:04:33.875 2025.04.05 00:04:38.855 2025.04.04 22:10:31.198 2025.04.04 22:10:33.631
47 6.0.0.716 2025.04.03 fc636 P P 7559 3254 2025.04.04 00:09:13.472 2025.04.04 00:09:21.031 2025.04.03 22:12:02.802 2025.04.03 22:12:06.056
48 6.0.0.715 2025.04.02 907ed P P 4879 2935 2025.04.03 00:08:51.607 2025.04.03 00:08:56.486 2025.04.02 22:12:07.825 2025.04.02 22:12:10.760
49 6.0.0.710 2025.04.01 40651 P P 7540 2502 2025.04.02 00:07:39.188 2025.04.02 00:07:46.728 2025.04.01 22:11:16.105 2025.04.01 22:11:18.607
50 6.0.0.708 2025.03.31 cb069 P P 4915 1452 2025.03.31 23:58:40.135 2025.03.31 23:58:45.050 2025.03.31 22:06:14.546 2025.03.31 22:06:15.998
51 6.0.0.707 2025.03.28 4bd4f P P 4779 1380 2025.03.30 23:58:04.952 2025.03.30 23:58:09.731 2025.03.30 22:06:39.363 2025.03.30 22:06:40.743
52 6.0.0.698 2025.03.26 d72a7 P P 8276 3095 2025.03.28 00:20:27.386 2025.03.28 00:20:35.662 2025.03.27 22:12:19.850 2025.03.27 22:12:22.945
53 6.0.0.693 2025.03.24 0b559 P P 5241 2860 2025.03.25 00:07:05.478 2025.03.25 00:07:10.719 2025.03.24 22:09:12.327 2025.03.24 22:09:15.187
54 6.0.0.687 2025.03.22 730aa P P 7903 2852 2025.03.24 00:17:27.715 2025.03.24 00:17:35.618 2025.03.23 22:16:04.983 2025.03.23 22:16:07.835
55 6.0.0.686 2025.03.20 71bf6 P P 8822 1662 2025.03.21 00:23:29.908 2025.03.21 00:23:38.730 2025.03.20 22:17:51.671 2025.03.20 22:17:53.333
56 6.0.0.685 2025.03.19 a8577 P P 8091 2652 2025.03.20 00:25:48.681 2025.03.20 00:25:56.772 2025.03.19 22:16:10.850 2025.03.19 22:16:13.502
57 6.0.0.680 2025.03.18 90d29 P P 1210 557 2025.03.19 10:47:01.118 2025.03.19 10:47:02.328 2025.03.19 09:02:34.718 2025.03.19 09:02:35.275
58 6.0.0.677 2025.03.16 c0a60 P P 1142 500 2025.03.17 00:16:02.298 2025.03.17 00:16:03.440 2025.03.16 22:15:55.227 2025.03.16 22:15:55.727
59 6.0.0.676 2025.03.15 3034f P P 1192 576 2025.03.16 15:48:54.374 2025.03.16 15:48:55.566 2025.03.16 14:07:19.765 2025.03.16 14:07:20.341
60 6.0.0.673 2025.03.13 40f5b P P 1637 419 2025.03.14 00:14:38.155 2025.03.14 00:14:39.792 2025.03.13 22:14:55.551 2025.03.13 22:14:55.970
61 6.0.0.671 2025.03.12 a4fff P P 1056 446 2025.03.13 00:18:45.335 2025.03.13 00:18:46.391 2025.03.12 22:17:24.068 2025.03.12 22:17:24.514
62 6.0.0.663 2025.03.11 daad2 P P 1066 562 2025.03.12 00:16:38.827 2025.03.12 00:16:39.893 2025.03.11 22:16:54.207 2025.03.11 22:16:54.769
63 6.0.0.661 2025.03.07 b9869 P P 893 719 2025.03.10 23:55:37.170 2025.03.10 23:55:38.063 2025.03.10 22:08:38.682 2025.03.10 22:08:39.401
64 6.0.0.660 2025.03.04 a6700 P P 1707 809 2025.03.07 00:04:54.630 2025.03.07 00:04:56.337 2025.03.06 22:12:10.485 2025.03.06 22:12:11.294
65 6.0.0.658 2025.03.03 f15f8 P P 960 483 2025.03.03 23:59:21.327 2025.03.03 23:59:22.287 2025.03.03 22:08:50.843 2025.03.03 22:08:51.326
66 6.0.0.656 2025.02.27 25fb4 P P 1075 418 2025.03.03 00:27:02.924 2025.03.03 00:27:03.999 2025.03.02 22:18:28.349 2025.03.02 22:18:28.767
67 6.0.0.655 2025.02.25 6e3e0 P P 1107 562 2025.02.27 00:03:56.828 2025.02.27 00:03:57.935 2025.02.26 22:10:41.699 2025.02.26 22:10:42.261
68 6.0.0.654 2025.02.24 b7141 P P 921 727 2025.02.25 00:06:37.916 2025.02.25 00:06:38.837 2025.02.24 22:12:04.111 2025.02.24 22:12:04.838
69 6.0.0.652 2025.02.22 22662 P P 1223 440 2025.02.24 07:24:09.887 2025.02.24 07:24:11.110 2025.02.24 00:25:55.813 2025.02.24 00:25:56.253
70 6.0.0.647 2025.02.21 9fccb P P 1796 394 2025.02.22 00:07:43.521 2025.02.22 00:07:45.317 2025.02.21 22:16:09.670 2025.02.21 22:16:10.064
71 6.0.0.640 2025.02.19 9b8ac P P 1773 740 2025.02.20 00:06:16.969 2025.02.20 00:06:18.742 2025.02.19 22:10:28.215 2025.02.19 22:10:28.955
72 6.0.0.639 2025.02.18 201a4 P P 864 647 2025.02.18 23:58:36.974 2025.02.18 23:58:37.838 2025.02.18 22:09:47.166 2025.02.18 22:09:47.813
73 6.0.0.637 2025.02.12 6d0f5 P P 1037 472 2025.02.14 00:15:01.973 2025.02.14 00:15:03.010 2025.02.13 22:15:51.871 2025.02.13 22:15:52.343
74 6.0.0.636 2025.02.11 0424f P P 1678 421 2025.02.12 00:13:36.622 2025.02.12 00:13:38.300 2025.02.11 22:15:32.226 2025.02.11 22:15:32.647
75 6.0.0.635 2025.02.10 f640f P P 1641 424 2025.02.11 00:11:06.937 2025.02.11 00:11:08.578 2025.02.10 22:16:04.406 2025.02.10 22:16:04.830
76 6.0.0.629 2025.02.07 194f9 P P 994 760 2025.02.08 00:11:09.538 2025.02.08 00:11:10.532 2025.02.07 22:14:46.822 2025.02.07 22:14:47.582
77 6.0.0.628 2025.02.06 859d5 P P 1038 929 2025.02.07 00:26:35.191 2025.02.07 00:26:36.229 2025.02.06 22:21:33.105 2025.02.06 22:21:34.034
78 6.0.0.621 2025.02.05 34fe7 P P 996 525 2025.02.06 00:23:33.819 2025.02.06 00:23:34.815 2025.02.05 22:22:08.771 2025.02.05 22:22:09.296
79 6.0.0.609 2025.02.04 76d57 P P 1572 664 2025.02.05 00:16:31.914 2025.02.05 00:16:33.486 2025.02.04 22:19:35.479 2025.02.04 22:19:36.143
80 6.0.0.607 2025.02.03 1985b P P 975 773 2025.02.04 00:15:40.735 2025.02.04 00:15:41.710 2025.02.03 22:20:01.001 2025.02.03 22:20:01.774
81 6.0.0.601 2025.02.01 6af07 P P 1705 716 2025.02.02 00:08:41.097 2025.02.02 00:08:42.802 2025.02.01 22:13:55.578 2025.02.01 22:13:56.294
82 6.0.0.600 2025.01.27 188de P P 1039 416 2025.01.28 00:15:59.451 2025.01.28 00:16:00.490 2025.01.27 22:15:36.493 2025.01.27 22:15:36.909
83 6.0.0.599 2025.01.25 ba588 P P 918 816 2025.01.26 00:16:00.117 2025.01.26 00:16:01.035 2025.01.25 22:16:06.882 2025.01.25 22:16:07.698
84 6.0.0.598 2025.01.23 ddbc3 P P 1087 768 2025.01.25 00:16:41.217 2025.01.25 00:16:42.304 2025.01.24 22:14:50.230 2025.01.24 22:14:50.998
85 6.0.0.595 2025.01.22 e62f3 P P 1642 857 2025.01.23 00:07:58.473 2025.01.23 00:08:00.115 2025.01.22 22:12:01.262 2025.01.22 22:12:02.119
86 6.0.0.594 2025.01.21 47fb6 P P 1788 741 2025.01.22 00:03:26.843 2025.01.22 00:03:28.631 2025.01.21 22:11:24.782 2025.01.21 22:11:25.523
87 6.0.0.590 2025.01.20 9dc1e P P 987 887 2025.01.21 00:10:55.255 2025.01.21 00:10:56.242 2025.01.20 22:15:13.281 2025.01.20 22:15:14.168
88 6.0.0.588 2025.01.19 b1c4e P P 1669 568 2025.01.20 00:07:43.030 2025.01.20 00:07:44.699 2025.01.19 22:13:43.555 2025.01.19 22:13:44.123
89 6.0.0.587 2025.01.18 63e6e P P 1085 404 2025.01.19 00:12:31.893 2025.01.19 00:12:32.978 2025.01.18 22:15:19.141 2025.01.18 22:15:19.545
90 6.0.0.585 2025.01.16 2d6bb P P 1159 573 2025.01.18 00:04:55.936 2025.01.18 00:04:57.095 2025.01.17 22:12:47.538 2025.01.17 22:12:48.111
91 6.0.0.584 2025.01.15 a0aa2 P P 855 786 2025.01.16 00:10:26.699 2025.01.16 00:10:27.554 2025.01.15 22:15:11.153 2025.01.15 22:15:11.939
92 6.0.0.581 2025.01.14 21e9e P P 939 844 2025.01.15 00:11:45.112 2025.01.15 00:11:46.051 2025.01.14 22:14:11.517 2025.01.14 22:14:12.361
93 6.0.0.577 2025.01.13 7e293 P P 1116 764 2025.01.14 00:12:10.304 2025.01.14 00:12:11.420 2025.01.13 22:14:15.634 2025.01.13 22:14:16.398
94 6.0.0.576 2025.01.12 05898 P P 1740 521 2025.01.13 00:07:20.773 2025.01.13 00:07:22.513 2025.01.12 22:12:41.078 2025.01.12 22:12:41.599
95 6.0.0.573 2025.01.10 c20f3 P P 1034 576 2025.01.11 00:09:44.338 2025.01.11 00:09:45.372 2025.01.10 22:13:56.899 2025.01.10 22:13:57.475
96 6.0.0.571 2024.12.31 81bba P P 808 405 2024.12.31 23:46:25.307 2024.12.31 23:46:26.115 2024.12.31 21:58:32.974 2024.12.31 21:58:33.379
97 6.0.0.570 2024.12.30 c3c8d P P 831 400 2024.12.30 23:45:49.919 2024.12.30 23:45:50.750 2024.12.30 21:58:30.092 2024.12.30 21:58:30.492
98 6.0.0.565 2024.12.28 5fc59 P P 841 398 2024.12.30 12:22:22.897 2024.12.30 12:22:23.738 2024.12.30 11:07:17.695 2024.12.30 11:07:18.093
99 6.0.0.564 2024.12.26 12514 P P 804 397 2024.12.26 23:46:53.188 2024.12.26 23:46:53.992 2024.12.26 21:58:32.910 2024.12.26 21:58:33.307
100 6.0.0.560 2024.12.25 fa83e P P 800 388 2024.12.25 23:39:18.291 2024.12.25 23:39:19.091 2024.12.25 21:58:31.609 2024.12.25 21:58:31.997
101 6.0.0.559 2024.12.23 cc800 P P 1240 421 2024.12.24 23:40:29.495 2024.12.24 23:40:30.735 2024.12.24 21:58:56.988 2024.12.24 21:58:57.409
102 6.0.0.556 2024.12.22 a0404 P P 836 374 2024.12.22 23:47:07.426 2024.12.22 23:47:08.262 2024.12.22 21:58:22.925 2024.12.22 21:58:23.299
103 6.0.0.555 2024.12.19 6990a P P 889 407 2024.12.21 12:57:51.487 2024.12.21 12:57:52.376 2024.12.21 11:43:07.888 2024.12.21 11:43:08.295
104 6.0.0.553 2024.12.17 d1f8a P P 812 385 2024.12.17 23:41:13.603 2024.12.17 23:41:14.415 2024.12.17 21:59:02.791 2024.12.17 21:59:03.176
105 6.0.0.552 2024.12.11 85e25 P P 809 410 2024.12.15 23:46:40.699 2024.12.15 23:46:41.508 2024.12.15 21:58:44.244 2024.12.15 21:58:44.654
106 6.0.0.550 2024.12.10 b37ac P P 789 383 2024.12.10 23:42:08.594 2024.12.10 23:42:09.383 2024.12.10 21:59:51.016 2024.12.10 21:59:51.399
107 6.0.0.548 2024.12.08 2cc77 P P 1488 407 2024.12.08 23:37:05.567 2024.12.08 23:37:07.055 2024.12.08 21:57:45.549 2024.12.08 21:57:45.956
108 6.0.0.544 2024.12.05 96943 P P 790 414 2024.12.05 23:40:37.323 2024.12.05 23:40:38.113 2024.12.05 22:01:07.798 2024.12.05 22:01:08.212
109 6.0.0.543 2024.12.03 30b77 P P 1465 412 2024.12.03 23:41:15.670 2024.12.03 23:41:17.135 2024.12.03 21:59:39.665 2024.12.03 21:59:40.077
110 6.0.0.540 2024.12.02 4a1f4 P P 1578 402 2024.12.02 23:38:16.089 2024.12.02 23:38:17.667 2024.12.02 21:58:59.092 2024.12.02 21:58:59.494
111 6.0.0.539 2024.11.28 1f283 P P 1532 409 2024.11.29 23:49:42.267 2024.11.29 23:49:43.799 2024.11.29 21:59:24.281 2024.11.29 21:59:24.690
112 6.0.0.535 2024.11.26 77b95 P P 1436 375 2024.11.26 23:32:23.763 2024.11.26 23:32:25.199 2024.11.26 21:57:04.477 2024.11.26 21:57:04.852
113 6.0.0.534 2024.11.25 e9584 P P 1514 435 2024.11.25 23:33:39.786 2024.11.25 23:33:41.300 2024.11.25 21:57:50.228 2024.11.25 21:57:50.663
114 6.0.0.533 2024.11.17 933ac P P 884 427 2024.11.22 09:39:36.701 2024.11.22 09:39:37.585 2024.11.22 08:27:17.947 2024.11.22 08:27:18.374
115 6.0.0.532 2024.11.16 9e263 P P 1384 427 2024.11.16 23:22:16.131 2024.11.16 23:22:17.515 2024.11.16 21:57:47.391 2024.11.16 21:57:47.818
116 6.0.0.530 2024.11.15 49804 P P 1404 422 2024.11.16 01:31:41.790 2024.11.16 01:31:43.194 2024.11.15 23:57:10.526 2024.11.15 23:57:10.948
117 6.0.0.528 2024.11.14 9625b P P 1384 390 2024.11.15 01:34:52.406 2024.11.15 01:34:53.790 2024.11.14 23:58:27.596 2024.11.14 23:58:27.986
118 6.0.0.526 2024.11.12 65b80 P P 1476 422 2024.11.14 01:33:57.926 2024.11.14 01:33:59.402 2024.11.13 23:58:00.121 2024.11.13 23:58:00.543
119 6.0.0.523 2024.11.08 8ca23 P P 1406 370 2024.11.11 01:30:39.347 2024.11.11 01:30:40.753 2024.11.10 23:56:56.902 2024.11.10 23:56:57.272
120 6.0.0.520 2024.11.07 4eefa P P 1431 408 2024.11.08 01:28:01.044 2024.11.08 01:28:02.475 2024.11.07 23:56:35.773 2024.11.07 23:56:36.181
121 6.0.0.516 2024.11.04 b0c36 P P 1352 419 2024.11.05 01:27:09.254 2024.11.05 01:27:10.606 2024.11.04 23:56:21.876 2024.11.04 23:56:22.295
122 6.0.0.515 2024.10.30 d53f3 P P 1533 401 2024.11.04 01:29:40.482 2024.11.04 01:29:42.015 2024.11.03 23:56:51.961 2024.11.03 23:56:52.362
123 6.0.0.512 2024.10.29 833ef P P 1528 445 2024.10.30 01:32:03.594 2024.10.30 01:32:05.122 2024.10.29 23:58:12.378 2024.10.29 23:58:12.823
124 6.0.0.511 2024.10.26 c4bc9 P P 1420 385 2024.10.29 01:32:18.453 2024.10.29 01:32:19.873 2024.10.28 23:57:51.521 2024.10.28 23:57:51.906
125 6.0.0.509 2024.10.25 3aedb P P 1532 383 2024.10.26 01:41:53.361 2024.10.26 01:41:54.893 2024.10.26 00:00:30.914 2024.10.26 00:00:31.297
126 6.0.0.508 2024.10.24 a8f5b P P 1564 477 2024.10.25 01:36:14.781 2024.10.25 01:36:16.345 2024.10.24 23:58:57.898 2024.10.24 23:58:58.375
127 6.0.0.502 2024.10.22 6bfd7 P P 1427 431 2024.10.23 01:35:44.565 2024.10.23 01:35:45.992 2024.10.22 23:58:37.668 2024.10.22 23:58:38.099
128 6.0.0.500 2024.10.21 be565 P P 895 420 2024.10.22 17:42:37.505 2024.10.22 17:42:38.400 2024.10.22 16:28:14.364 2024.10.22 16:28:14.784
129 6.0.0.499 2024.10.19 6214b P P 1468 419 2024.10.20 01:37:06.081 2024.10.20 01:37:07.549 2024.10.19 23:59:36.097 2024.10.19 23:59:36.516
130 6.0.0.498 2024.10.18 591a7 P P 1430 376 2024.10.19 01:34:17.199 2024.10.19 01:34:18.629 2024.10.18 23:58:04.484 2024.10.18 23:58:04.860
131 6.0.0.494 2024.10.17 cf5a4 P P 1420 431 2024.10.18 01:35:13.997 2024.10.18 01:35:15.417 2024.10.17 23:59:23.890 2024.10.17 23:59:24.321
132 6.0.0.491 2024.10.14 dc5fb P P 1389 410 2024.10.15 01:31:28.365 2024.10.15 01:31:29.754 2024.10.14 23:57:20.122 2024.10.14 23:57:20.532
133 6.0.0.489 2024.10.11 2ba59 P P 1444 387 2024.10.12 01:37:58.789 2024.10.12 01:38:00.233 2024.10.11 23:59:14.368 2024.10.11 23:59:14.755
134 6.0.0.488 2024.10.09 1c93e P P 1539 428 2024.10.10 01:46:22.523 2024.10.10 01:46:24.062 2024.10.10 00:01:47.464 2024.10.10 00:01:47.892
135 6.0.0.487 2024.10.06 065a3 P P 1547 440 2024.10.07 01:45:29.782 2024.10.07 01:45:31.329 2024.10.07 00:01:39.933 2024.10.07 00:01:40.373
136 6.0.0.485 2024.10.04 e95c1 P P 1237 371 2024.10.05 01:47:36.677 2024.10.05 01:47:37.914 2024.10.05 00:01:31.940 2024.10.05 00:01:32.311
137 6.0.0.483 2024.10.02 5e5ae P P 1520 422 2024.10.03 01:42:48.712 2024.10.03 01:42:50.232 2024.10.03 00:01:01.912 2024.10.03 00:01:02.334
138 6.0.0.478 2024.09.30 b5010 P P 1355 394 2024.10.01 01:38:07.182 2024.10.01 01:38:08.537 2024.10.01 00:00:31.569 2024.10.01 00:00:31.963
139 6.0.0.474 2024.09.26 e4efb P P 1364 451 2024.09.30 01:38:11.841 2024.09.30 01:38:13.205 2024.09.29 23:59:29.717 2024.09.29 23:59:30.168
140 6.0.0.471 2024.09.24 01b51 P P 1416 410 2024.09.25 23:41:28.489 2024.09.25 23:41:29.905 2024.09.25 21:59:57.599 2024.09.25 21:59:58.009
141 6.0.0.470 2024.09.23 77cc0 P P 1371 422 2024.09.23 23:40:12.362 2024.09.23 23:40:13.733 2024.09.23 22:00:15.661 2024.09.23 22:00:16.083
142 6.0.0.467 2024.09.21 ea0b8 P P 1534 414 2024.09.22 23:38:28.329 2024.09.22 23:38:29.863 2024.09.22 21:59:30.144 2024.09.22 21:59:30.558
143 6.0.0.466 2024.09.20 32dc6 P P 1330 504 2024.09.20 23:37:04.837 2024.09.20 23:37:06.167 2024.09.20 21:59:15.072 2024.09.20 21:59:15.576
144 6.0.0.461 2024.09.17 2c895 P P 1731 677 2024.09.18 00:09:58.556 2024.09.18 00:10:00.287 2024.09.17 22:18:25.775 2024.09.17 22:18:26.452
145 6.0.0.460 2024.09.11 3c253 P P 1225 409 2024.09.17 00:11:18.512 2024.09.17 00:11:19.737 2024.09.16 22:19:41.540 2024.09.16 22:19:41.949
146 6.0.0.457 2024.09.09 fdc6f P P 1535 832 2024.09.10 00:33:56.991 2024.09.10 00:33:58.526 2024.09.09 22:28:19.897 2024.09.09 22:28:20.729
147 6.0.0.455 2024.09.07 500d8 P P 1291 656 2024.09.08 00:29:26.098 2024.09.08 00:29:27.389 2024.09.07 22:26:29.077 2024.09.07 22:26:29.733
148 6.0.0.454 2024.09.05 4d70f P P 1737 588 2024.09.06 00:13:03.660 2024.09.06 00:13:05.397 2024.09.05 22:21:59.708 2024.09.05 22:22:00.296
149 6.0.0.452 2024.09.04 9ff9c P P 1284 582 2024.09.05 00:10:44.191 2024.09.05 00:10:45.475 2024.09.04 22:20:00.020 2024.09.04 22:20:00.602
150 6.0.0.450 2024.09.02 27124 P P 1828 1022 2024.09.04 01:18:31.354 2024.09.04 01:18:33.182 2024.09.03 22:46:06.560 2024.09.03 22:46:07.582
151 6.0.0.447 2024.09.01 056ec P P 1965 962 2024.09.02 00:34:29.677 2024.09.02 00:34:31.642 2024.09.01 22:26:08.517 2024.09.01 22:26:09.479
152 6.0.0.446 2024.08.30 fe1b2 P P 2523 632 2024.09.01 00:39:40.950 2024.09.01 00:39:43.473 2024.08.31 22:37:43.018 2024.08.31 22:37:43.650
153 6.0.0.444 2024.08.28 785d4 P P 2706 679 2024.08.30 00:52:00.896 2024.08.30 00:52:03.602 2024.08.29 22:46:15.591 2024.08.29 22:46:16.270
154 6.0.0.442 2024.08.21 4a68f P P 2262 753 2024.08.28 02:32:14.054 2024.08.28 02:32:16.316 2024.08.27 23:37:43.552 2024.08.27 23:37:44.305
155 6.0.0.441 2024.08.20 75042 P P 1608 844 2024.08.21 00:25:00.069 2024.08.21 00:25:01.677 2024.08.20 22:26:57.401 2024.08.20 22:26:58.245
156 6.0.0.438 2024.08.16 088b5 P P 876 566 2024.08.18 23:41:38.367 2024.08.18 23:41:39.243 2024.08.18 22:05:33.229 2024.08.18 22:05:33.795
157 6.0.0.437 2024.08.14 3c88b P P 850 564 2024.08.15 23:39:42.431 2024.08.15 23:39:43.281 2024.08.15 22:04:38.875 2024.08.15 22:04:39.439
158 6.0.0.432 2024.08.11 e82ac P P 1683 580 2024.08.12 23:38:44.589 2024.08.12 23:38:46.272 2024.08.12 22:03:54.456 2024.08.12 22:03:55.036
159 6.0.0.431 2024.08.09 de5a7 P P 1697 531 2024.08.09 23:40:09.377 2024.08.09 23:40:11.074 2024.08.09 22:04:44.313 2024.08.09 22:04:44.844
160 6.0.0.428 2024.08.08 9191b P P 1565 569 2024.08.08 23:39:30.264 2024.08.08 23:39:31.829 2024.08.08 22:04:19.867 2024.08.08 22:04:20.436
161 6.0.0.423 2024.08.07 33b41 P P 1046 562 2024.08.08 09:28:30.007 2024.08.08 09:28:31.053 2024.08.08 08:11:56.638 2024.08.08 08:11:57.200
162 6.0.0.421 2024.08.06 ed60d P P 1150 402 2024.08.06 23:21:57.087 2024.08.06 23:21:58.237 2024.08.06 22:00:22.314 2024.08.06 22:00:22.716
163 6.0.0.419 2024.08.05 3505a P P 1224 413 2024.08.05 23:24:11.677 2024.08.05 23:24:12.901 2024.08.05 22:00:23.629 2024.08.05 22:00:24.042
164 6.0.0.409 2024.08.02 ec18f P P 1340 421 2024.08.04 23:28:29.457 2024.08.04 23:28:30.797 2024.08.04 22:01:12.436 2024.08.04 22:01:12.857

Elapsed time, ms. Chart for last 150 runs:

Last commits information (all timestamps in UTC):