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
firebird.driver.types.DatabaseError: unsuccessful metadata update
-GRANT failed
-Table "PUBLIC"."PLG$PROF_SESSIONS" does not exist

LOG DETAILS:

2025-06-18 02:56:48.367
2025-06-18 02:56:48.371 act = <firebird.qa.plugin.Action object at [hex]>
2025-06-18 02:56:48.376 tmp_worker_usr = <firebird.qa.plugin.User object at [hex]>
2025-06-18 02:56:48.380 tmp_profiler_usr = <firebird.qa.plugin.User object at [hex]>
2025-06-18 02:56:48.385 tmp_profiler_role = <firebird.qa.plugin.Role object at [hex]>
2025-06-18 02:56:48.389 capsys = <_pytest.capture.CaptureFixture object at [hex]>
2025-06-18 02:56:48.394
2025-06-18 02:56:48.398 @pytest.mark.disabled_in_forks
2025-06-18 02:56:48.402 @pytest.mark.version('>=5.0.1')
2025-06-18 02:56:48.407 def test_1(act: Action, tmp_worker_usr: User, tmp_profiler_usr: User, tmp_profiler_role: Role, capsys):
2025-06-18 02:56:48.411
2025-06-18 02:56:48.415 addi_script = f"""
2025-06-18 02:56:48.419 set wng off;
2025-06-18 02:56:48.424 set bail on;
2025-06-18 02:56:48.428 alter user {tmp_profiler_usr.name} revoke admin role;
2025-06-18 02:56:48.432 revoke all on all from {tmp_profiler_usr.name};
2025-06-18 02:56:48.437 commit;
2025-06-18 02:56:48.441 -- doc/sql.extensions/README.profiler.md:
2025-06-18 02:56:48.445 -- If the remote attachment is from a different user, the calling user must have the system privilege `PROFILE_ANY_ATTACHMENT`.
2025-06-18 02:56:48.450 alter role {tmp_profiler_role.name}
2025-06-18 02:56:48.454 set system privileges to PROFILE_ANY_ATTACHMENT;
2025-06-18 02:56:48.458 commit;
2025-06-18 02:56:48.463 grant default {tmp_profiler_role.name} to user {tmp_profiler_usr.name};
2025-06-18 02:56:48.467 commit;
2025-06-18 02:56:48.471 """
2025-06-18 02:56:48.476 act.isql(switches=['-q'], input=addi_script)
2025-06-18 02:56:48.480
2025-06-18 02:56:48.485 custom_tpb = tpb(isolation = Isolation.READ_COMMITTED_READ_CONSISTENCY, lock_timeout = 0)
2025-06-18 02:56:48.489
2025-06-18 02:56:48.493 with act.db.connect() as con_admin, \
2025-06-18 02:56:48.497 act.db.connect(user = tmp_worker_usr.name, password = tmp_worker_usr.password) as con_worker, \
2025-06-18 02:56:48.502 act.db.connect(user = tmp_profiler_usr.name, password = tmp_profiler_usr.password, role = tmp_profiler_role.name) as con_profiler:
2025-06-18 02:56:48.506
2025-06-18 02:56:48.511 cur_worker = con_worker.cursor()
2025-06-18 02:56:48.515 cur_worker.execute('select current_connection from rdb$database')
2025-06-18 02:56:48.520 worker_attach_id = cur_worker.fetchone()[0]
2025-06-18 02:56:48.524
2025-06-18 02:56:48.529 tx_profiler = con_profiler.transaction_manager(custom_tpb)
2025-06-18 02:56:48.533 cur_profiler = tx_profiler.cursor()
2025-06-18 02:56:48.537
2025-06-18 02:56:48.541 #..............................................................................
2025-06-18 02:56:48.546
2025-06-18 02:56:48.550 tx_profiler.begin()
2025-06-18 02:56:48.556 cur_profiler.execute(f"select rdb$profiler.start_session('remote_profiling_of_inserts', null, {worker_attach_id}) from rdb$database;")
2025-06-18 02:56:48.561 cur_profiler.fetchall()
2025-06-18 02:56:48.566
2025-06-18 02:56:48.570 cur_worker.callproc('sp_ins')
2025-06-18 02:56:48.574
2025-06-18 02:56:48.579 cur_profiler.callproc(f'rdb$profiler.finish_session(true, {worker_attach_id})')
2025-06-18 02:56:48.583 tx_profiler.commit()
2025-06-18 02:56:48.587
2025-06-18 02:56:48.592 #..............................................................................
2025-06-18 02:56:48.596
2025-06-18 02:56:48.600 tx_profiler.begin()
2025-06-18 02:56:48.605 cur_profiler.execute(f"select rdb$profiler.start_session('remote_profiling_of_deletions', null, {worker_attach_id}) from rdb$database;")
2025-06-18 02:56:48.609 cur_profiler.fetchall()
2025-06-18 02:56:48.613
2025-06-18 02:56:48.617 cur_worker.callproc('sp_del')
2025-06-18 02:56:48.622
2025-06-18 02:56:48.626 cur_profiler.callproc(f'rdb$profiler.finish_session(true, {worker_attach_id})')
2025-06-18 02:56:48.630 tx_profiler.commit()
2025-06-18 02:56:48.634
2025-06-18 02:56:48.639 #------------------------------------------------------------------------------
2025-06-18 02:56:48.643 # firebird.driver.types.DatabaseError: no permission for SELECT access to TABLE PLG$PROF_SESSIONS
2025-06-18 02:56:48.648 # -Effective user is TMP_USER_PROFILER_ANY_ATT
2025-06-18 02:56:48.653 #################################
2025-06-18 02:56:48.657 # ::: NB ::: Why this is needed ?
2025-06-18 02:56:48.662 #################################
2025-06-18 02:56:48.666 >           con_admin.execute_immediate(f'grant select on plg$prof_sessions to role {tmp_profiler_role.name}')
2025-06-18 02:56:48.671
2025-06-18 02:56:48.675 tests/bugs/gh_8176_test.py:171:
2025-06-18 02:56:48.680 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
2025-06-18 02:56:48.684
2025-06-18 02:56:48.689 self = Connection[6204]
2025-06-18 02:56:48.693 sql = 'grant select on plg$prof_sessions to role TMP_PROFILER_ROLE'
2025-06-18 02:56:48.697
2025-06-18 02:56:48.702 def execute_immediate(self, sql: str) -> None:
2025-06-18 02:56:48.706 """Executes SQL statement.
2025-06-18 02:56:48.711
2025-06-18 02:56:48.715 Important:
2025-06-18 02:56:48.719
2025-06-18 02:56:48.724 The statement MUST NOT return any result. The statement is executed in the
2025-06-18 02:56:48.728 context of `.main_transaction`.
2025-06-18 02:56:48.735
2025-06-18 02:56:48.739 Arguments:
2025-06-18 02:56:48.743 sql: SQL statement to be executed.
2025-06-18 02:56:48.748 """
2025-06-18 02:56:48.752 assert self._att is not None
2025-06-18 02:56:48.757 >       self.main_transaction.execute_immediate(sql)
2025-06-18 02:56:48.761
2025-06-18 02:56:48.766 ../lib/python3.11/site-packages/firebird/driver/core.py:1824:
2025-06-18 02:56:48.770 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
2025-06-18 02:56:48.774
2025-06-18 02:56:48.779 self = <firebird.driver.core.TransactionManager object at [hex]>
2025-06-18 02:56:48.783 sql = 'grant select on plg$prof_sessions to role TMP_PROFILER_ROLE'
2025-06-18 02:56:48.796
2025-06-18 02:56:48.806 def execute_immediate(self, sql: str) -> None:
2025-06-18 02:56:48.814 """Executes SQL statement. The statement MUST NOT return any result.
2025-06-18 02:56:48.818
2025-06-18 02:56:48.825 Arguments:
2025-06-18 02:56:48.829 sql: SQL statement to be executed.
2025-06-18 02:56:48.834 """
2025-06-18 02:56:48.838 assert not self.__closed
2025-06-18 02:56:48.842 if not self.is_active():
2025-06-18 02:56:48.847 self.begin()
2025-06-18 02:56:48.853 >       self._connection()._att.execute(self._tra, sql, self._connection().sql_dialect)
2025-06-18 02:56:48.857
2025-06-18 02:56:48.861 ../lib/python3.11/site-packages/firebird/driver/core.py:2456:
2025-06-18 02:56:48.866 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
2025-06-18 02:56:48.870
2025-06-18 02:56:48.875 self = <firebird.driver.interfaces.iAttachment object at [hex]>
2025-06-18 02:56:48.879 transaction = <firebird.driver.interfaces.iTransaction object at [hex]>
2025-06-18 02:56:48.883 stmt = 'grant select on plg$prof_sessions to role TMP_PROFILER_ROLE'
2025-06-18 02:56:48.888 dialect = 3, in_metadata = None, in_buffer = None, out_metadata = None
2025-06-18 02:56:48.892 out_buffer = None
2025-06-18 02:56:48.896
2025-06-18 02:56:48.901 def execute(self, transaction: iTransaction, stmt: str, dialect: int,
2025-06-18 02:56:48.905 in_metadata: iMessageMetadata = None, in_buffer: bytes = None,
2025-06-18 02:56:48.910 out_metadata: iMessageMetadata = None, out_buffer: bytes = None) -> None:
2025-06-18 02:56:48.914 """Executes any SQL statement except returning multiple rows of data.
2025-06-18 02:56:48.922 Partial analogue of `isc_dsql_execute2()` - in and out XSLQDAs replaced with
2025-06-18 02:56:48.928 input and output messages with appropriate buffers."""
2025-06-18 02:56:48.933 b_stmt: bytes = stmt.encode(self.encoding)
2025-06-18 02:56:48.941 result = self.vtable.execute(self, self.status, transaction, len(b_stmt), b_stmt,
2025-06-18 02:56:48.946 dialect, in_metadata, in_buffer, out_metadata, out_buffer)
2025-06-18 02:56:48.950 >           self._check()
2025-06-18 02:56:48.954
2025-06-18 02:56:48.958 ../lib/python3.11/site-packages/firebird/driver/interfaces.py:1150:
2025-06-18 02:56:48.963 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
2025-06-18 02:56:48.967
2025-06-18 02:56:48.972 self = <firebird.driver.interfaces.iAttachment object at [hex]>
2025-06-18 02:56:48.976
2025-06-18 02:56:48.980 def _check(self) -> None:
2025-06-18 02:56:48.984 state = self.status.get_state()
2025-06-18 02:56:48.989 if StateFlag.ERRORS in state:
2025-06-18 02:56:48.993 >           raise self.__report(DatabaseError, self.status.get_errors())
2025-06-18 02:56:48.997 E           firebird.driver.types.DatabaseError: unsuccessful metadata update
2025-06-18 02:56:49.002 E           -GRANT failed
2025-06-18 02:56:49.006 E           -Table "PUBLIC"."PLG$PROF_SESSIONS" does not exist
2025-06-18 02:56:49.010
2025-06-18 02:56:49.015 ../lib/python3.11/site-packages/firebird/driver/interfaces.py:113: DatabaseError
2025-06-18 02:56:49.019 ---------------------------- Captured stdout setup -----------------------------
2025-06-18 02:56:49.024 Creating db: localhost:/var/tmp/qa_2024/test_11690/test.fdb [page_size=None, sql_dialect=None, charset='NONE', user=SYSDBA, password=masterkey]
2025-06-18 02:56:49.028 CREATE user: TMP_WORKER_8176 PLUGIN: Srp
2025-06-18 02:56:49.033 CREATE user: TMP_PROFILER_8176 PLUGIN: Srp
2025-06-18 02:56:49.037 CREATE role: TMP_PROFILER_ROLE
2025-06-18 02:56:49.042 --------------------------- Captured stdout teardown ---------------------------
2025-06-18 02:56:49.046 DROP role: TMP_PROFILER_ROLE
2025-06-18 02:56:49.050 DROP user: TMP_PROFILER_8176 PLUGIN: Srp
2025-06-18 02:56:49.054 DROP user: TMP_WORKER_8176 PLUGIN: Srp
3 #text
act = <firebird.qa.plugin.Action pytest object at [hex]>
tmp_worker_usr = <firebird.qa.plugin.User pytest object at [hex]>
tmp_profiler_usr = <firebird.qa.plugin.User pytest object at [hex]>
tmp_profiler_role = <firebird.qa.plugin.Role pytest object at [hex]>
capsys = <_pytest.capture.CaptureFixture pytest object at [hex]>

    @pytest.mark.disabled_in_forks
    @pytest.mark.version('>=5.0.1')
    def test_1(act: Action, tmp_worker_usr: User, tmp_profiler_usr: User, tmp_profiler_role: Role, capsys):
    
        addi_script = f"""
            set wng off;
            set bail on;
            alter user {tmp_profiler_usr.name} revoke admin role;
            revoke all on all from {tmp_profiler_usr.name};
            commit;
            -- doc/sql.extensions/README.profiler.md:
            -- If the remote attachment is from a different user, the calling user must have the system privilege `PROFILE_ANY_ATTACHMENT`.
            alter role {tmp_profiler_role.name}
                set system privileges to PROFILE_ANY_ATTACHMENT;
            commit;
            grant default {tmp_profiler_role.name} to user {tmp_profiler_usr.name};
            commit;
        """
        act.isql(switches=['-q'], input=addi_script)
    
        custom_tpb = tpb(isolation = Isolation.READ_COMMITTED_READ_CONSISTENCY, lock_timeout = 0)
    
        with act.db.connect() as con_admin, \
             act.db.connect(user = tmp_worker_usr.name, password = tmp_worker_usr.password) as con_worker, \
             act.db.connect(user = tmp_profiler_usr.name, password = tmp_profiler_usr.password, role = tmp_profiler_role.name) as con_profiler:
    
            cur_worker = con_worker.cursor()
            cur_worker.execute('select current_connection from rdb$database')
            worker_attach_id = cur_worker.fetchone()[0]
    
            tx_profiler = con_profiler.transaction_manager(custom_tpb)
            cur_profiler = tx_profiler.cursor()
    
            #..............................................................................
    
            tx_profiler.begin()
            cur_profiler.execute(f"select rdb$profiler.start_session('remote_profiling_of_inserts', null, {worker_attach_id}) from rdb$database;")
            cur_profiler.fetchall()
    
            cur_worker.callproc('sp_ins')
    
            cur_profiler.callproc(f'rdb$profiler.finish_session(true, {worker_attach_id})')
            tx_profiler.commit()
    
            #..............................................................................
    
            tx_profiler.begin()
            cur_profiler.execute(f"select rdb$profiler.start_session('remote_profiling_of_deletions', null, {worker_attach_id}) from rdb$database;")
            cur_profiler.fetchall()
    
            cur_worker.callproc('sp_del')
    
            cur_profiler.callproc(f'rdb$profiler.finish_session(true, {worker_attach_id})')
            tx_profiler.commit()
    
            #------------------------------------------------------------------------------
            # firebird.driver.types.DatabaseError: no permission for SELECT access to TABLE PLG$PROF_SESSIONS
            # -Effective user is TMP_USER_PROFILER_ANY_ATT
            #################################
            # ::: NB ::: Why this is needed ?
            #################################
>           con_admin.execute_immediate(f'grant select on plg$prof_sessions to role {tmp_profiler_role.name}')

tests/bugs/gh_8176_test.py:171: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = Connection[6204]
sql = 'grant select on plg$prof_sessions to role TMP_PROFILER_ROLE'

    def execute_immediate(self, sql: str) -> None:
        """Executes SQL statement.
    
        Important:
    
            The statement MUST NOT return any result. The statement is executed in the
            context of `.main_transaction`.
    
        Arguments:
           sql: SQL statement to be executed.
        """
        assert self._att is not None
>       self.main_transaction.execute_immediate(sql)

../lib/python3.11/site-packages/firebird/driver/core.py:1824: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <firebird.driver.core.TransactionManager pytest object at [hex]>
sql = 'grant select on plg$prof_sessions to role TMP_PROFILER_ROLE'

    def execute_immediate(self, sql: str) -> None:
        """Executes SQL statement. The statement MUST NOT return any result.
    
        Arguments:
           sql: SQL statement to be executed.
        """
        assert not self.__closed
        if not self.is_active():
            self.begin()
>       self._connection()._att.execute(self._tra, sql, self._connection().sql_dialect)

../lib/python3.11/site-packages/firebird/driver/core.py:2456: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <firebird.driver.interfaces.iAttachment pytest object at [hex]>
transaction = <firebird.driver.interfaces.iTransaction pytest object at [hex]>
stmt = 'grant select on plg$prof_sessions to role TMP_PROFILER_ROLE'
dialect = 3, in_metadata = None, in_buffer = None, out_metadata = None
out_buffer = None

        def execute(self, transaction: iTransaction, stmt: str, dialect: int,
                    in_metadata: iMessageMetadata = None, in_buffer: bytes = None,
                    out_metadata: iMessageMetadata = None, out_buffer: bytes = None) -> None:
            """Executes any SQL statement except returning multiple rows of data.
    Partial analogue of `isc_dsql_execute2()` - in and out XSLQDAs replaced with
    input and output messages with appropriate buffers."""
            b_stmt: bytes = stmt.encode(self.encoding)
            result = self.vtable.execute(self, self.status, transaction, len(b_stmt), b_stmt,
                                         dialect, in_metadata, in_buffer, out_metadata, out_buffer)
>           self._check()

../lib/python3.11/site-packages/firebird/driver/interfaces.py:1150: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <firebird.driver.interfaces.iAttachment pytest object at [hex]>

    def _check(self) -> None:
        state = self.status.get_state()
        if StateFlag.ERRORS in state:
>           raise self.__report(DatabaseError, self.status.get_errors())
E           firebird.driver.types.DatabaseError: unsuccessful metadata update
E           -GRANT failed
E           -Table "PUBLIC"."PLG$PROF_SESSIONS" does not exist

../lib/python3.11/site-packages/firebird/driver/interfaces.py:113: DatabaseError
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.884 2025.06.30 f7e5f F F 3394 2505 2025.07.01 02:14:10.780 2025.07.01 02:14:14.174 2025.06.30 23:32:44.950 2025.06.30 23:32:47.455
2 6.0.0.881 2025.06.27 7035d F F 3915 3185 2025.06.30 02:04:27.134 2025.06.30 02:04:31.049 2025.06.29 23:19:50.992 2025.06.29 23:19:54.177
3 6.0.0.877 2025.06.26 8e38f F F 3429 3117 2025.06.27 01:43:26.840 2025.06.27 01:43:30.269 2025.06.26 23:10:50.142 2025.06.26 23:10:53.259
4 6.0.0.876 2025.06.25 b1bec F F 3397 2917 2025.06.26 01:47:17.386 2025.06.26 01:47:20.783 2025.06.25 23:12:45.767 2025.06.25 23:12:48.684
5 6.0.0.863 2025.06.24 c3c20 F F 3374 2653 2025.06.25 01:47:35.064 2025.06.25 01:47:38.438 2025.06.24 23:12:30.968 2025.06.24 23:12:33.621
6 6.0.0.858 2025.06.23 8d6f7 F F 3354 3006 2025.06.24 01:47:56.784 2025.06.24 01:48:00.138 2025.06.23 23:12:37.786 2025.06.23 23:12:40.792
7 6.0.0.849 2025.06.20 7b79c F F 3522 1612 2025.06.21 01:59:29.482 2025.06.21 01:59:33.004 2025.06.20 23:21:50.573 2025.06.20 23:21:52.185
8 6.0.0.848 2025.06.19 c483c F F 3614 3166 2025.06.20 01:55:50.111 2025.06.20 01:55:53.725 2025.06.19 23:18:39.086 2025.06.19 23:18:42.252
9 6.0.0.845 2025.06.18 22b12 F F 3338 3223 2025.06.19 02:04:29.837 2025.06.19 02:04:33.175 2025.06.18 23:21:46.618 2025.06.18 23:21:49.841
10 6.0.0.843 2025.06.16 995f4 F F 3360 1963 2025.06.18 02:02:44.683 2025.06.18 02:02:48.043 2025.06.17 23:23:54.928 2025.06.17 23:23:56.891
11 6.0.0.840 2025.06.14 29bca F F 3943 3242 2025.06.16 01:54:32.899 2025.06.16 01:54:36.842 2025.06.15 23:16:03.696 2025.06.15 23:16:06.938
12 6.0.0.838 2025.06.13 0e28a F F 3468 1531 2025.06.14 02:07:37.031 2025.06.14 02:07:40.499 2025.06.13 23:23:42.270 2025.06.13 23:23:43.801
13 6.0.0.835 2025.06.12 2cf29 F F 3355 2748 2025.06.13 02:07:32.886 2025.06.13 02:07:36.241 2025.06.12 23:27:46.591 2025.06.12 23:27:49.339
14 6.0.0.834 2025.06.11 e889f F F 3699 3024 2025.06.12 02:02:45.947 2025.06.12 02:02:49.646 2025.06.11 23:23:56.466 2025.06.11 23:23:59.490
15 6.0.0.800 2025.06.10 1f226 P P 3547 2213 2025.06.11 00:29:56.859 2025.06.11 00:30:00.406 2025.06.10 22:22:06.423 2025.06.10 22:22:08.636
16 6.0.0.799 2025.06.07 be644 P P 3594 2665 2025.06.10 00:31:15.028 2025.06.10 00:31:18.622 2025.06.09 22:21:40.685 2025.06.09 22:21:43.350
17 6.0.0.797 2025.06.06 303e8 P P 2986 2656 2025.06.07 00:34:59.732 2025.06.07 00:35:02.718 2025.06.06 22:21:13.847 2025.06.06 22:21:16.503
18 6.0.0.795 2025.05.29 7a71a P P 2668 1452 2025.06.06 00:29:47.787 2025.06.06 00:29:50.455 2025.06.05 22:20:22.194 2025.06.05 22:20:23.646
19 6.0.0.792 2025.05.28 b4327 P P 3076 2602 2025.05.29 00:44:00.717 2025.05.29 00:44:03.793 2025.05.28 22:23:20.815 2025.05.28 22:23:23.417
20 6.0.0.791 2025.05.27 02db8 P P 2925 2501 2025.05.28 00:41:01.886 2025.05.28 00:41:04.811 2025.05.27 22:22:23.423 2025.05.27 22:22:25.924
21 6.0.0.789 2025.05.21 64051 P P 2759 2369 2025.05.25 00:33:39.812 2025.05.25 00:33:42.571 2025.05.24 22:21:34.330 2025.05.24 22:21:36.699
22 6.0.0.787 2025.05.20 230ad P P 5052 2667 2025.05.21 00:30:57.630 2025.05.21 00:31:02.682 2025.05.20 22:20:01.628 2025.05.20 22:20:04.295
23 6.0.0.783 2025.05.12 37320 P P 3424 1785 2025.05.19 12:04:15.745 2025.05.19 12:04:19.169 2025.05.19 10:08:41.751 2025.05.19 10:08:43.536
24 6.0.0.779 2025.05.11 136fa P P 4865 2631 2025.05.12 00:26:19.734 2025.05.12 00:26:24.599 2025.05.11 22:19:29.102 2025.05.11 22:19:31.733
25 6.0.0.778 2025.05.07 d735e P P 5352 2407 2025.05.08 00:28:32.051 2025.05.08 00:28:37.403 2025.05.07 22:18:18.524 2025.05.07 22:18:20.931
26 6.0.0.776 2025.05.06 007cd P P 3017 1494 2025.05.07 00:22:51.885 2025.05.07 00:22:54.902 2025.05.06 22:18:11.456 2025.05.06 22:18:12.950
27 6.0.0.770 2025.05.05 82c4a P P 5568 1455 2025.05.06 00:22:05.518 2025.05.06 00:22:11.086 2025.05.05 22:17:25.759 2025.05.05 22:17:27.214
28 6.0.0.767 2025.05.01 cdd29 P P 2997 1418 2025.05.02 00:19:01.239 2025.05.02 00:19:04.236 2025.05.01 22:16:58.923 2025.05.01 22:17:00.341
29 6.0.0.762 2025.04.30 5cb15 P P 2794 2184 2025.05.01 00:15:08.517 2025.05.01 00:15:11.311 2025.04.30 22:15:49.674 2025.04.30 22:15:51.858
30 6.0.0.755 2025.04.29 739c6 P P 2800 1418 2025.04.30 00:17:51.319 2025.04.30 00:17:54.119 2025.04.29 22:17:02.280 2025.04.29 22:17:03.698
31 6.0.0.753 2025.04.27 29ab3 P P 2865 1638 2025.04.28 00:20:09.923 2025.04.28 00:20:12.788 2025.04.27 22:16:29.584 2025.04.27 22:16:31.222
32 6.0.0.745 2025.04.21 78ad8 P P 4677 2365 2025.04.26 00:16:04.614 2025.04.26 00:16:09.291 2025.04.25 22:17:48.776 2025.04.25 22:17:51.141
33 6.0.0.744 2025.04.19 e883a P P 2735 1549 2025.04.20 00:18:01.710 2025.04.20 00:18:04.445 2025.04.19 22:17:12.446 2025.04.19 22:17:13.995
34 6.0.0.742 2025.04.17 abc3b P P 5292 1420 2025.04.19 00:19:49.074 2025.04.19 00:19:54.366 2025.04.18 22:17:28.981 2025.04.18 22:17:30.401
35 6.0.0.737 2025.04.16 fe52b P P 2754 1420 2025.04.17 00:16:40.199 2025.04.17 00:16:42.953 2025.04.16 22:17:30.762 2025.04.16 22:17:32.182
36 6.0.0.736 2025.04.14 3e6be P P 4616 2018 2025.04.14 23:57:57.362 2025.04.14 23:58:01.978 2025.04.14 22:09:10.937 2025.04.14 22:09:12.955
37 6.0.0.735 2025.04.13 6635c P P 5242 2219 2025.04.14 00:01:20.298 2025.04.14 00:01:25.540 2025.04.13 22:10:24.570 2025.04.13 22:10:26.789
38 6.0.0.734 2025.04.12 12f3f P P 2657 2191 2025.04.12 23:58:43.319 2025.04.12 23:58:45.976 2025.04.12 22:09:38.887 2025.04.12 22:09:41.078
39 6.0.0.730 2025.04.11 240b8 P P 4624 2047 2025.04.12 00:00:51.446 2025.04.12 00:00:56.070 2025.04.11 22:09:12.279 2025.04.11 22:09:14.326
40 6.0.0.726 2025.04.10 d79c6 P P 4875 2248 2025.04.11 00:00:27.263 2025.04.11 00:00:32.138 2025.04.10 22:09:15.634 2025.04.10 22:09:17.882
41 6.0.0.725 2025.04.09 a2b05 P P 3005 2268 2025.04.10 00:01:37.526 2025.04.10 00:01:40.531 2025.04.09 22:10:55.510 2025.04.09 22:10:57.778
42 6.0.0.722 2025.04.08 a8b86 P P 3642 1225 2025.04.09 00:17:17.925 2025.04.09 00:17:21.567 2025.04.08 22:16:56.158 2025.04.08 22:16:57.383
43 6.0.0.719 2025.04.06 90fd9 P P 5217 1301 2025.04.07 00:14:46.285 2025.04.07 00:14:51.502 2025.04.06 22:15:42.134 2025.04.06 22:15:43.435
44 6.0.0.717 2025.04.04 53d70 P P 5063 1601 2025.04.05 00:09:54.499 2025.04.05 00:09:59.562 2025.04.04 22:15:02.931 2025.04.04 22:15:04.532
45 6.0.0.716 2025.04.03 fc636 P P 2786 1271 2025.04.04 00:14:36.080 2025.04.04 00:14:38.866 2025.04.03 22:16:28.031 2025.04.03 22:16:29.302
46 6.0.0.715 2025.04.02 907ed P P 4801 1288 2025.04.03 00:14:18.770 2025.04.03 00:14:23.571 2025.04.02 22:16:32.881 2025.04.02 22:16:34.169
47 6.0.0.710 2025.04.01 40651 P P 2809 2216 2025.04.02 00:13:04.380 2025.04.02 00:13:07.189 2025.04.01 22:15:44.500 2025.04.01 22:15:46.716
48 6.0.0.708 2025.03.31 cb069 P P 4644 2243 2025.04.01 00:03:28.754 2025.04.01 00:03:33.398 2025.03.31 22:10:27.388 2025.03.31 22:10:29.631
49 6.0.0.707 2025.03.28 4bd4f P P 4729 2129 2025.03.31 00:04:03.077 2025.03.31 00:04:07.806 2025.03.30 22:11:04.494 2025.03.30 22:11:06.623
50 6.0.0.698 2025.03.26 d72a7 P P 2853 1214 2025.03.28 00:26:27.705 2025.03.28 00:26:30.558 2025.03.27 22:17:05.722 2025.03.27 22:17:06.936
51 6.0.0.693 2025.03.24 0b559 P P 4480 1376 2025.03.25 00:12:50.575 2025.03.25 00:12:55.055 2025.03.24 22:13:55.466 2025.03.24 22:13:56.842
52 6.0.0.687 2025.03.22 730aa P P 2972 2041 2025.03.24 00:23:05.983 2025.03.24 00:23:08.955 2025.03.23 22:20:14.590 2025.03.23 22:20:16.631
53 6.0.0.686 2025.03.20 71bf6 P P 5200 2766 2025.03.21 00:29:40.422 2025.03.21 00:29:45.622 2025.03.20 22:22:31.027 2025.03.20 22:22:33.793
54 6.0.0.685 2025.03.19 a8577 P P 5100 2403 2025.03.20 00:32:48.942 2025.03.20 00:32:54.042 2025.03.19 22:20:28.814 2025.03.19 22:20:31.217
55 6.0.0.680 2025.03.18 90d29 P P 2577 2358 2025.03.19 10:52:01.406 2025.03.19 10:52:03.983 2025.03.19 09:06:22.415 2025.03.19 09:06:24.773
56 6.0.0.677 2025.03.16 c0a60 P P 2091 2987 2025.03.17 00:21:35.971 2025.03.17 00:21:38.062 2025.03.16 22:20:06.387 2025.03.16 22:20:09.374
57 6.0.0.676 2025.03.15 3034f P P 2676 1886 2025.03.16 15:54:00.837 2025.03.16 15:54:03.513 2025.03.16 14:10:57.383 2025.03.16 14:10:59.269
58 6.0.0.673 2025.03.13 40f5b P P 2415 3191 2025.03.14 00:20:06.428 2025.03.14 00:20:08.843 2025.03.13 22:18:55.259 2025.03.13 22:18:58.450
59 6.0.0.671 2025.03.12 a4fff P P 3329 3020 2025.03.13 00:23:41.042 2025.03.13 00:23:44.371 2025.03.12 22:21:53.455 2025.03.12 22:21:56.475
60 6.0.0.663 2025.03.11 daad2 P P 2330 3143 2025.03.12 00:21:54.265 2025.03.12 00:21:56.595 2025.03.11 22:21:14.966 2025.03.11 22:21:18.109
61 6.0.0.661 2025.03.07 b9869 P P 3162 2497 2025.03.11 00:00:58.722 2025.03.11 00:01:01.884 2025.03.10 22:13:06.814 2025.03.10 22:13:09.311
62 6.0.0.660 2025.03.04 a6700 P P 3725 1867 2025.03.07 00:10:14.178 2025.03.07 00:10:17.903 2025.03.06 22:16:34.166 2025.03.06 22:16:36.033
63 6.0.0.658 2025.03.03 f15f8 P P 1899 2593 2025.03.04 00:04:34.166 2025.03.04 00:04:36.065 2025.03.03 22:13:16.614 2025.03.03 22:13:19.207
64 6.0.0.656 2025.02.27 25fb4 P P 2467 3411 2025.03.03 00:33:01.540 2025.03.03 00:33:04.007 2025.03.02 22:23:20.564 2025.03.02 22:23:23.975
65 6.0.0.655 2025.02.25 6e3e0 P P 3345 2730 2025.02.27 00:08:51.374 2025.02.27 00:08:54.719 2025.02.26 22:15:11.357 2025.02.26 22:15:14.087
66 6.0.0.654 2025.02.24 b7141 P P 2187 2216 2025.02.25 00:11:53.731 2025.02.25 00:11:55.918 2025.02.24 22:16:19.687 2025.02.24 22:16:21.903
67 6.0.0.652 2025.02.22 22662 P P 2487 1541 2025.02.24 07:29:18.903 2025.02.24 07:29:21.390 2025.02.24 00:29:35.073 2025.02.24 00:29:36.614
68 6.0.0.647 2025.02.21 9fccb P P 3245 2541 2025.02.22 00:13:09.889 2025.02.22 00:13:13.134 2025.02.21 22:20:23.787 2025.02.21 22:20:26.328
69 6.0.0.640 2025.02.19 9b8ac P P 2302 2764 2025.02.20 00:11:10.200 2025.02.20 00:11:12.502 2025.02.19 22:15:09.662 2025.02.19 22:15:12.426
70 6.0.0.639 2025.02.18 201a4 P P 3492 2683 2025.02.19 00:03:14.166 2025.02.19 00:03:17.658 2025.02.18 22:14:14.343 2025.02.18 22:14:17.026
71 6.0.0.637 2025.02.12 6d0f5 P P 2194 4096 2025.02.14 00:20:58.552 2025.02.14 00:21:00.746 2025.02.13 22:20:08.423 2025.02.13 22:20:12.519
72 6.0.0.636 2025.02.11 0424f P P 2304 3225 2025.02.12 00:18:36.418 2025.02.12 00:18:38.722 2025.02.11 22:19:35.294 2025.02.11 22:19:38.519
73 6.0.0.635 2025.02.10 f640f P P 3390 3559 2025.02.11 00:16:13.306 2025.02.11 00:16:16.696 2025.02.10 22:20:12.051 2025.02.10 22:20:15.610
74 6.0.0.629 2025.02.07 194f9 P P 2389 2794 2025.02.08 00:16:25.482 2025.02.08 00:16:27.871 2025.02.07 22:18:39.766 2025.02.07 22:18:42.560
75 6.0.0.628 2025.02.06 859d5 P P 5097 4255 2025.02.07 00:32:39.937 2025.02.07 00:32:45.034 2025.02.06 22:26:46.880 2025.02.06 22:26:51.135
76 6.0.0.621 2025.02.05 34fe7 P P 2721 3804 2025.02.06 00:28:58.363 2025.02.06 00:29:01.084 2025.02.05 22:27:14.651 2025.02.05 22:27:18.455
77 6.0.0.609 2025.02.04 76d57 P P 4689 3973 2025.02.05 00:21:50.070 2025.02.05 00:21:54.759 2025.02.04 22:24:16.218 2025.02.04 22:24:20.191
78 6.0.0.607 2025.02.03 1985b P P 4312 4012 2025.02.04 00:20:35.162 2025.02.04 00:20:39.474 2025.02.03 22:24:41.162 2025.02.03 22:24:45.174
79 6.0.0.601 2025.02.01 6af07 P P 3133 2958 2025.02.02 00:13:47.480 2025.02.02 00:13:50.613 2025.02.01 22:18:00.577 2025.02.01 22:18:03.535
80 6.0.0.600 2025.01.27 188de P P 2018 2986 2025.01.28 00:20:55.112 2025.01.28 00:20:57.130 2025.01.27 22:19:46.191 2025.01.27 22:19:49.177
81 6.0.0.599 2025.01.25 ba588 P P 2085 2524 2025.01.26 00:21:04.771 2025.01.26 00:21:06.856 2025.01.25 22:20:17.451 2025.01.25 22:20:19.975
82 6.0.0.598 2025.01.23 ddbc3 P P 1850 2844 2025.01.25 00:21:41.647 2025.01.25 00:21:43.497 2025.01.24 22:18:56.030 2025.01.24 22:18:58.874
83 6.0.0.595 2025.01.22 e62f3 P P 1869 1542 2025.01.23 00:13:01.389 2025.01.23 00:13:03.258 2025.01.22 22:16:23.019 2025.01.22 22:16:24.561
84 6.0.0.594 2025.01.21 47fb6 P P 2861 2362 2025.01.22 00:08:30.710 2025.01.22 00:08:33.571 2025.01.21 22:16:01.865 2025.01.21 22:16:04.227
85 6.0.0.590 2025.01.20 9dc1e P P 1818 2778 2025.01.21 00:15:30.645 2025.01.21 00:15:32.463 2025.01.20 22:19:22.997 2025.01.20 22:19:25.775
86 6.0.0.588 2025.01.19 b1c4e P P 3299 1747 2025.01.20 00:13:06.315 2025.01.20 00:13:09.614 2025.01.19 22:17:41.132 2025.01.19 22:17:42.879
87 6.0.0.587 2025.01.18 63e6e P P 2830 1940 2025.01.19 00:17:21.622 2025.01.19 00:17:24.452 2025.01.18 22:19:21.757 2025.01.18 22:19:23.697
88 6.0.0.585 2025.01.16 2d6bb P P 3073 1703 2025.01.18 00:10:06.978 2025.01.18 00:10:10.051 2025.01.17 22:16:56.312 2025.01.17 22:16:58.015
89 6.0.0.584 2025.01.15 a0aa2 P P 3124 2473 2025.01.16 00:15:37.294 2025.01.16 00:15:40.418 2025.01.15 22:19:16.798 2025.01.15 22:19:19.271
90 6.0.0.581 2025.01.14 21e9e P P 1744 2600 2025.01.15 00:16:54.619 2025.01.15 00:16:56.363 2025.01.14 22:18:08.078 2025.01.14 22:18:10.678
91 6.0.0.577 2025.01.13 7e293 P P 1952 2641 2025.01.14 00:16:56.253 2025.01.14 00:16:58.205 2025.01.13 22:18:22.005 2025.01.13 22:18:24.646
92 6.0.0.576 2025.01.12 05898 P P 1786 1729 2025.01.13 00:12:33.028 2025.01.13 00:12:34.814 2025.01.12 22:16:52.736 2025.01.12 22:16:54.465
93 6.0.0.573 2025.01.10 c20f3 P P 1757 2703 2025.01.11 00:14:58.293 2025.01.11 00:15:00.050 2025.01.10 22:17:53.482 2025.01.10 22:17:56.185
94 6.0.0.571 2024.12.31 81bba P P 1681 1341 2024.12.31 23:51:24.763 2024.12.31 23:51:26.444 2024.12.31 22:01:24.433 2024.12.31 22:01:25.774
95 6.0.0.570 2024.12.30 c3c8d P P 2572 1312 2024.12.30 23:50:09.611 2024.12.30 23:50:12.183 2024.12.30 22:01:20.509 2024.12.30 22:01:21.821
96 6.0.0.565 2024.12.28 5fc59 P P 1655 1395 2024.12.30 12:26:10.930 2024.12.30 12:26:12.585 2024.12.30 11:10:12.507 2024.12.30 11:10:13.902
97 6.0.0.564 2024.12.26 12514 P P 1517 1331 2024.12.26 23:51:46.011 2024.12.26 23:51:47.528 2024.12.26 22:01:26.532 2024.12.26 22:01:27.863
98 6.0.0.560 2024.12.25 fa83e P P 2400 1477 2024.12.25 23:43:24.734 2024.12.25 23:43:27.134 2024.12.25 22:01:22.614 2024.12.25 22:01:24.091
99 6.0.0.559 2024.12.23 cc800 P P 1643 1320 2024.12.24 23:45:09.088 2024.12.24 23:45:10.731 2024.12.24 22:01:50.268 2024.12.24 22:01:51.588
100 6.0.0.556 2024.12.22 a0404 P P 2333 1264 2024.12.22 23:51:42.010 2024.12.22 23:51:44.343 2024.12.22 22:01:13.738 2024.12.22 22:01:15.002
101 6.0.0.555 2024.12.19 6990a P P 1625 1298 2024.12.21 13:01:37.380 2024.12.21 13:01:39.005 2024.12.21 11:45:56.644 2024.12.21 11:45:57.942
102 6.0.0.553 2024.12.17 d1f8a P P 2591 1517 2024.12.17 23:45:32.900 2024.12.17 23:45:35.491 2024.12.17 22:01:52.978 2024.12.17 22:01:54.495
103 6.0.0.552 2024.12.11 85e25 P P 1570 1344 2024.12.15 23:50:31.218 2024.12.15 23:50:32.788 2024.12.15 22:01:35.184 2024.12.15 22:01:36.528
104 6.0.0.550 2024.12.10 b37ac P P 2532 1384 2024.12.10 23:46:04.739 2024.12.10 23:46:07.271 2024.12.10 22:02:44.478 2024.12.10 22:02:45.862
105 6.0.0.548 2024.12.08 2cc77 P P 1534 1268 2024.12.08 23:41:26.632 2024.12.08 23:41:28.166 2024.12.08 22:00:33.480 2024.12.08 22:00:34.748
106 6.0.0.544 2024.12.05 96943 P P 1482 1430 2024.12.05 23:45:10.644 2024.12.05 23:45:12.126 2024.12.05 22:03:54.155 2024.12.05 22:03:55.585
107 6.0.0.543 2024.12.03 30b77 P P 1606 1384 2024.12.03 23:46:29.471 2024.12.03 23:46:31.077 2024.12.03 22:02:29.391 2024.12.03 22:02:30.775
108 6.0.0.540 2024.12.02 4a1f4 P P 1586 1388 2024.12.02 23:42:17.991 2024.12.02 23:42:19.577 2024.12.02 22:01:50.294 2024.12.02 22:01:51.682
109 6.0.0.539 2024.11.28 1f283 P P 1470 1409 2024.11.29 23:54:17.451 2024.11.29 23:54:18.921 2024.11.29 22:02:14.743 2024.11.29 22:02:16.152
110 6.0.0.535 2024.11.26 77b95 P P 1612 1251 2024.11.26 23:37:24.859 2024.11.26 23:37:26.471 2024.11.26 21:59:52.284 2024.11.26 21:59:53.535
111 6.0.0.534 2024.11.25 e9584 P P 1534 1323 2024.11.25 23:38:45.204 2024.11.25 23:38:46.738 2024.11.25 22:00:39.078 2024.11.25 22:00:40.401
112 6.0.0.533 2024.11.17 933ac P P 1528 1357 2024.11.22 09:43:26.704 2024.11.22 09:43:28.232 2024.11.22 08:30:08.160 2024.11.22 08:30:09.517
113 6.0.0.532 2024.11.16 9e263 P P 2052 1335 2024.11.16 23:26:24.155 2024.11.16 23:26:26.207 2024.11.16 22:00:37.469 2024.11.16 22:00:38.804
114 6.0.0.530 2024.11.15 49804 P P 1557 1320 2024.11.16 01:36:58.466 2024.11.16 01:37:00.023 2024.11.15 23:59:57.081 2024.11.15 23:59:58.401
115 6.0.0.528 2024.11.14 9625b P P 1526 1298 2024.11.15 01:40:04.358 2024.11.15 01:40:05.884 2024.11.15 00:01:22.195 2024.11.15 00:01:23.493
116 6.0.0.526 2024.11.12 65b80 P P 2578 1318 2024.11.14 01:39:41.497 2024.11.14 01:39:44.075 2024.11.14 00:00:51.030 2024.11.14 00:00:52.348
117 6.0.0.523 2024.11.08 8ca23 P P 2376 1250 2024.11.11 01:36:13.570 2024.11.11 01:36:15.946 2024.11.10 23:59:44.825 2024.11.10 23:59:46.075
118 6.0.0.520 2024.11.07 4eefa P P 2165 1267 2024.11.08 01:33:36.398 2024.11.08 01:33:38.563 2024.11.07 23:59:21.788 2024.11.07 23:59:23.055
119 6.0.0.516 2024.11.04 b0c36 P P 2248 1261 2024.11.05 01:32:33.746 2024.11.05 01:32:35.994 2024.11.04 23:59:02.029 2024.11.04 23:59:03.290
120 6.0.0.515 2024.10.30 d53f3 P P 1871 1303 2024.11.04 01:34:57.278 2024.11.04 01:34:59.149 2024.11.03 23:59:33.975 2024.11.03 23:59:35.278
121 6.0.0.512 2024.10.29 833ef P P 1503 1272 2024.10.30 01:37:31.371 2024.10.30 01:37:32.874 2024.10.30 00:00:58.562 2024.10.30 00:00:59.834
122 6.0.0.511 2024.10.26 c4bc9 P P 1472 1382 2024.10.29 01:37:36.716 2024.10.29 01:37:38.188 2024.10.29 00:00:35.515 2024.10.29 00:00:36.897
123 6.0.0.509 2024.10.25 3aedb P P 1609 1510 2024.10.26 01:47:23.181 2024.10.26 01:47:24.790 2024.10.26 00:03:24.321 2024.10.26 00:03:25.831
124 6.0.0.508 2024.10.24 a8f5b P P 2786 1309 2024.10.25 01:41:44.595 2024.10.25 01:41:47.381 2024.10.25 00:01:46.201 2024.10.25 00:01:47.510
125 6.0.0.502 2024.10.22 6bfd7 P P 2185 1322 2024.10.23 01:41:19.582 2024.10.23 01:41:21.767 2024.10.23 00:01:25.580 2024.10.23 00:01:26.902
126 6.0.0.500 2024.10.21 be565 P P 1565 1326 2024.10.22 17:46:26.458 2024.10.22 17:46:28.023 2024.10.22 16:31:03.460 2024.10.22 16:31:04.786
127 6.0.0.499 2024.10.19 6214b P P 1590 1365 2024.10.20 01:42:27.690 2024.10.20 01:42:29.280 2024.10.20 00:02:24.568 2024.10.20 00:02:25.933
128 6.0.0.498 2024.10.18 591a7 P P 1536 1280 2024.10.19 01:39:39.153 2024.10.19 01:39:40.689 2024.10.19 00:00:49.005 2024.10.19 00:00:50.285
129 6.0.0.494 2024.10.17 cf5a4 P P 1616 1282 2024.10.18 01:40:26.197 2024.10.18 01:40:27.813 2024.10.18 00:02:11.645 2024.10.18 00:02:12.927
130 6.0.0.491 2024.10.14 dc5fb P P 2343 1591 2024.10.15 01:36:56.168 2024.10.15 01:36:58.511 2024.10.15 00:00:01.289 2024.10.15 00:00:02.880
131 6.0.0.489 2024.10.11 2ba59 P P 1677 1349 2024.10.12 01:43:41.637 2024.10.12 01:43:43.314 2024.10.12 00:02:03.399 2024.10.12 00:02:04.748
132 6.0.0.488 2024.10.09 1c93e P P 2074 1385 2024.10.10 01:52:00.740 2024.10.10 01:52:02.814 2024.10.10 00:04:40.836 2024.10.10 00:04:42.221
133 6.0.0.487 2024.10.06 065a3 P P 1766 1309 2024.10.07 01:50:54.389 2024.10.07 01:50:56.155 2024.10.07 00:04:32.847 2024.10.07 00:04:34.156
134 6.0.0.485 2024.10.04 e95c1 P P 1729 1377 2024.10.05 01:53:09.039 2024.10.05 01:53:10.768 2024.10.05 00:04:29.970 2024.10.05 00:04:31.347
135 6.0.0.483 2024.10.02 5e5ae P P 1593 1330 2024.10.03 01:48:07.749 2024.10.03 01:48:09.342 2024.10.03 00:03:56.029 2024.10.03 00:03:57.359
136 6.0.0.478 2024.09.30 b5010 P P 1543 1517 2024.10.01 01:42:46.145 2024.10.01 01:42:47.688 2024.10.01 00:03:22.996 2024.10.01 00:03:24.513
137 6.0.0.474 2024.09.26 e4efb P P 1647 1317 2024.09.30 01:43:38.042 2024.09.30 01:43:39.689 2024.09.30 00:02:17.720 2024.09.30 00:02:19.037
138 6.0.0.471 2024.09.24 01b51 P P 2602 1271 2024.09.25 23:47:18.531 2024.09.25 23:47:21.133 2024.09.25 22:02:55.056 2024.09.25 22:02:56.327
139 6.0.0.470 2024.09.23 77cc0 P P 1575 1489 2024.09.23 23:45:53.077 2024.09.23 23:45:54.652 2024.09.23 22:03:04.892 2024.09.23 22:03:06.381
140 6.0.0.467 2024.09.21 ea0b8 P P 2408 1759 2024.09.22 23:44:16.845 2024.09.22 23:44:19.253 2024.09.22 22:02:19.642 2024.09.22 22:02:21.401
141 6.0.0.466 2024.09.20 32dc6 P P 2493 1276 2024.09.20 23:42:47.660 2024.09.20 23:42:50.153 2024.09.20 22:02:01.740 2024.09.20 22:02:03.016
142 6.0.0.461 2024.09.17 2c895 P P 2252 2848 2024.09.18 00:15:38.331 2024.09.18 00:15:40.583 2024.09.17 22:22:42.237 2024.09.17 22:22:45.085
143 6.0.0.460 2024.09.11 3c253 P P 2784 2078 2024.09.17 00:16:55.081 2024.09.17 00:16:57.865 2024.09.16 22:23:58.490 2024.09.16 22:24:00.568
144 6.0.0.457 2024.09.09 fdc6f P P 2766 2242 2024.09.10 00:39:39.838 2024.09.10 00:39:42.604 2024.09.09 22:33:00.518 2024.09.09 22:33:02.760
145 6.0.0.455 2024.09.07 500d8 P P 2627 2626 2024.09.08 00:36:06.306 2024.09.08 00:36:08.933 2024.09.07 22:31:07.493 2024.09.07 22:31:10.119
146 6.0.0.454 2024.09.05 4d70f P P 2966 1863 2024.09.06 00:19:30.800 2024.09.06 00:19:33.766 2024.09.05 22:26:11.843 2024.09.05 22:26:13.706
147 6.0.0.452 2024.09.04 9ff9c P P 2517 2127 2024.09.05 00:16:48.752 2024.09.05 00:16:51.269 2024.09.04 22:24:26.552 2024.09.04 22:24:28.679
148 6.0.0.450 2024.09.02 27124 P P 5730 3349 2024.09.04 01:26:54.607 2024.09.04 01:27:00.337 2024.09.03 22:52:43.545 2024.09.03 22:52:46.894
149 6.0.0.447 2024.09.01 056ec P P 2980 1904 2024.09.02 00:41:24.343 2024.09.02 00:41:27.323 2024.09.01 22:30:18.210 2024.09.01 22:30:20.114
150 6.0.0.446 2024.08.30 fe1b2 P P 2287 2454 2024.09.01 00:46:38.332 2024.09.01 00:46:40.619 2024.08.31 22:42:20.692 2024.08.31 22:42:23.146
151 6.0.0.444 2024.08.28 785d4 P P 2370 3520 2024.08.30 00:58:33.260 2024.08.30 00:58:35.630 2024.08.29 22:51:39.422 2024.08.29 22:51:42.942
152 6.0.0.442 2024.08.21 4a68f P P 3519 3743 2024.08.28 02:39:28.438 2024.08.28 02:39:31.957 2024.08.27 23:43:37.248 2024.08.27 23:43:40.991
153 6.0.0.441 2024.08.20 75042 P P 3008 2137 2024.08.21 00:31:38.828 2024.08.21 00:31:41.836 2024.08.20 22:31:29.264 2024.08.20 22:31:31.401
154 6.0.0.438 2024.08.16 088b5 P P 1579 2171 2024.08.18 23:46:18.169 2024.08.18 23:46:19.748 2024.08.18 22:09:13.629 2024.08.18 22:09:15.800
155 6.0.0.437 2024.08.14 3c88b P P 1646 2204 2024.08.15 23:43:40.999 2024.08.15 23:43:42.645 2024.08.15 22:08:03.633 2024.08.15 22:08:05.837
156 6.0.0.432 2024.08.11 e82ac P P 2398 1785 2024.08.12 23:42:19.499 2024.08.12 23:42:21.897 2024.08.12 22:06:34.820 2024.08.12 22:06:36.605
157 6.0.0.431 2024.08.09 de5a7 P P 1808 2079 2024.08.09 23:43:48.219 2024.08.09 23:43:50.027 2024.08.09 22:07:29.813 2024.08.09 22:07:31.892
158 6.0.0.428 2024.08.08 9191b P P 1676 1969 2024.08.08 23:43:03.547 2024.08.08 23:43:05.223 2024.08.08 22:07:00.813 2024.08.08 22:07:02.782
159 6.0.0.423 2024.08.07 33b41 P P 1719 1414 2024.08.08 09:32:08.196 2024.08.08 09:32:09.915 2024.08.08 08:14:39.508 2024.08.08 08:14:40.922
160 6.0.0.421 2024.08.06 ed60d P P 2522 1267 2024.08.06 23:26:14.410 2024.08.06 23:26:16.932 2024.08.06 22:02:42.302 2024.08.06 22:02:43.569
161 6.0.0.419 2024.08.05 3505a P P 2305 1223 2024.08.05 23:28:22.937 2024.08.05 23:28:25.242 2024.08.05 22:02:40.886 2024.08.05 22:02:42.109
162 6.0.0.409 2024.08.02 ec18f P P 2065 1259 2024.08.04 23:32:50.457 2024.08.04 23:32:52.522 2024.08.04 22:03:32.437 2024.08.04 22:03:33.696
163 6.0.0.406 2024.08.01 b20be P P 2268 1360 2024.08.01 23:31:38.129 2024.08.01 23:31:40.397 2024.08.01 22:02:58.080 2024.08.01 22:02:59.440
164 6.0.0.405 2024.07.31 a62ac P P 2133 1233 2024.07.31 23:30:03.437 2024.07.31 23:30:05.570 2024.07.31 22:02:42.571 2024.07.31 22:02:43.804
165 6.0.0.403 2024.07.29 30f03 P P 2113 1280 2024.07.29 23:29:38.508 2024.07.29 23:29:40.621 2024.07.29 22:02:27.861 2024.07.29 22:02:29.141
166 6.0.0.401 2024.07.26 24e41 P P 2196 1303 2024.07.26 23:26:06.825 2024.07.26 23:26:09.021 2024.07.26 22:02:22.608 2024.07.26 22:02:23.911
167 6.0.0.400 2024.07.24 5bb78 P P 2410 1254 2024.07.24 23:25:49.979 2024.07.24 23:25:52.389 2024.07.24 22:02:38.978 2024.07.24 22:02:40.232
168 6.0.0.398 2024.07.23 85b18 S P 2461 2038 2024.07.23 23:33:55.313 2024.07.23 23:33:57.774 2024.07.23 22:07:47.444 2024.07.23 22:07:49.482
169 6.0.0.397 2024.07.22 c734c S P 2302 1252 2024.07.22 23:25:50.486 2024.07.22 23:25:52.788 2024.07.22 22:02:34.560 2024.07.22 22:02:35.812
170 6.0.0.396 2024.07.13 cf952 S P 2240 1294 2024.07.21 23:26:46.525 2024.07.21 23:26:48.765 2024.07.21 22:02:20.090 2024.07.21 22:02:21.384
171 6.0.0.395 2024.07.10 845f4 S P 2418 1577 2024.07.12 23:27:11.374 2024.07.12 23:27:13.792 2024.07.12 22:01:30.427 2024.07.12 22:01:32.004

Elapsed time, ms. Chart for last 150 runs:

Last commits information (all timestamps in UTC):