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
AssertionError: Regex pattern did not match.
 Regex: '.*violation of FOREIGN KEY constraint "FK_DETAIL_TABLE" on table "DETAIL_TABLE".*'
 Input: 'violation of FOREIGN KEY constraint "FK_DETAIL_TABLE" on table "PUBLIC"."DETAIL_TABLE"\n-Foreign key reference target does not exist\n-Problematic key value is ("FKEY" = 1)'

LOG DETAILS:

2025-07-02 05:57:59.685
2025-07-02 05:57:59.692 act = <firebird.qa.plugin.Action object at [hex]>
2025-07-02 05:57:59.698
2025-07-02 05:57:59.710 @pytest.mark.version('>3')
2025-07-02 05:57:59.718 def test_1(act: Action):
2025-07-02 05:57:59.724 cust_tpb = tpb(isolation=Isolation.READ_COMMITTED_RECORD_VERSION, lock_timeout=0)
2025-07-02 05:57:59.732 with act.db.connect() as con:
2025-07-02 05:57:59.739 con.begin(cust_tpb)
2025-07-02 05:57:59.747 with con.cursor() as c:
2025-07-02 05:57:59.754 c.execute("UPDATE MASTER_TABLE SET ID = 2 WHERE ID=1")
2025-07-02 05:57:59.762 #Create second connection for change detail table
2025-07-02 05:57:59.773 with act.db.connect() as con_detail:
2025-07-02 05:57:59.784 con_detail.begin(cust_tpb)
2025-07-02 05:57:59.792 with con_detail.cursor() as cd:
2025-07-02 05:57:59.798 with pytest.raises(DatabaseError,
2025-07-02 05:57:59.805 match='.*violation of FOREIGN KEY constraint "FK_DETAIL_TABLE" on table "DETAIL_TABLE".*'):
2025-07-02 05:57:59.811 >                           cd.execute("INSERT INTO DETAIL_TABLE (ID, FKEY) VALUES (1,1)")
2025-07-02 05:57:59.817
2025-07-02 05:57:59.824 tests/functional/fkey/primary/test_insert_pk_02.py:50:
2025-07-02 05:57:59.832 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
2025-07-02 05:57:59.839
2025-07-02 05:57:59.846 self = <firebird.driver.core.Cursor object at [hex]>
2025-07-02 05:57:59.857 operation = 'INSERT INTO DETAIL_TABLE (ID, FKEY) VALUES (1,1)'
2025-07-02 05:57:59.867 parameters = None
2025-07-02 05:57:59.874
2025-07-02 05:57:59.883 def execute(self, operation: Union[str, Statement], parameters: Sequence[Any]=None) -> Cursor:
2025-07-02 05:57:59.894 """Executes SQL command or prepared `Statement`.
2025-07-02 05:57:59.902
2025-07-02 05:57:59.909 Starts new transaction if transaction manager associated with cursor is not active.
2025-07-02 05:57:59.916
2025-07-02 05:57:59.928 Arguments:
2025-07-02 05:57:59.940 operation: SQL command or prepared `Statement`.
2025-07-02 05:57:59.949 parameters: Sequence of parameters. Must contain one entry for each argument
2025-07-02 05:57:59.958 that the operation expects.
2025-07-02 05:57:59.965
2025-07-02 05:57:59.973 Returns:
2025-07-02 05:57:59.980 `self` so call to execute could be used as iterator over returned rows.
2025-07-02 05:57:59.989
2025-07-02 05:58:00.002 Note:
2025-07-02 05:58:00.013 If `operation` is a string with SQL command that is exactly the same as the
2025-07-02 05:58:00.026 last executed command, the internally prepared `Statement` from last execution
2025-07-02 05:58:00.038 is reused.
2025-07-02 05:58:00.051
2025-07-02 05:58:00.061 If cursor is open, it's closed before new statement is executed.
2025-07-02 05:58:00.069 """
2025-07-02 05:58:00.078 >       self._execute(operation, parameters)
2025-07-02 05:58:00.087
2025-07-02 05:58:00.095 ../lib/python3.11/site-packages/firebird/driver/core.py:3861:
2025-07-02 05:58:00.101 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
2025-07-02 05:58:00.113
2025-07-02 05:58:00.123 self = <firebird.driver.core.Cursor object at [hex]>
2025-07-02 05:58:00.132 operation = 'INSERT INTO DETAIL_TABLE (ID, FKEY) VALUES (1,1)'
2025-07-02 05:58:00.142 parameters = None, flags = <CursorFlag.NONE: 0>
2025-07-02 05:58:00.150
2025-07-02 05:58:00.158 def _execute(self, operation: Union[str, Statement],
2025-07-02 05:58:00.170 parameters: Sequence=None, flags: CursorFlag=CursorFlag.NONE) -> None:
2025-07-02 05:58:00.183 if not self._transaction.is_active():
2025-07-02 05:58:00.192 self._transaction.begin()
2025-07-02 05:58:00.199 if isinstance(operation, Statement):
2025-07-02 05:58:00.206 if operation._connection() is not self._connection:
2025-07-02 05:58:00.217 raise InterfaceError('Cannot execute Statement that was created by different Connection.')
2025-07-02 05:58:00.228 self.close()
2025-07-02 05:58:00.236 self._stmt = operation
2025-07-02 05:58:00.243 self.__internal = False
2025-07-02 05:58:00.248 elif self._stmt is not None and self._stmt.sql == operation:
2025-07-02 05:58:00.254 # We should execute the same SQL string again
2025-07-02 05:58:00.260 self._clear()
2025-07-02 05:58:00.266 else:
2025-07-02 05:58:00.273 self.close()
2025-07-02 05:58:00.279 self._stmt = self._connection._prepare(operation, self._transaction)
2025-07-02 05:58:00.286 self.__internal = True
2025-07-02 05:58:00.295 self._cursor_flags = flags
2025-07-02 05:58:00.306 in_meta = None
2025-07-02 05:58:00.315 # Execute the statement
2025-07-02 05:58:00.326 try:
2025-07-02 05:58:00.334 if self._stmt._in_cnt > 0:
2025-07-02 05:58:00.343 in_meta, self._stmt._in_buffer = self._pack_input(self._stmt._in_meta,
2025-07-02 05:58:00.355 self._stmt._in_buffer,
2025-07-02 05:58:00.362 parameters)
2025-07-02 05:58:00.373 if self._stmt.has_cursor():
2025-07-02 05:58:00.386 # Statement returns multiple rows
2025-07-02 05:58:00.397 self._result = self._stmt._istmt.open_cursor(self._transaction._tra,
2025-07-02 05:58:00.407 in_meta, self._stmt._in_buffer,
2025-07-02 05:58:00.417 self._stmt._out_meta,
2025-07-02 05:58:00.423 flags)
2025-07-02 05:58:00.429 else:
2025-07-02 05:58:00.435 # Statement may return single row
2025-07-02 05:58:00.441 >               self._stmt._istmt.execute(self._transaction._tra, in_meta,
2025-07-02 05:58:00.446 self._stmt._in_buffer,
2025-07-02 05:58:00.453 self._stmt._out_meta, self._stmt._out_buffer)
2025-07-02 05:58:00.459
2025-07-02 05:58:00.465 ../lib/python3.11/site-packages/firebird/driver/core.py:3749:
2025-07-02 05:58:00.472 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
2025-07-02 05:58:00.479
2025-07-02 05:58:00.486 self = <firebird.driver.interfaces.iStatement object at [hex]>
2025-07-02 05:58:00.494 transaction = <firebird.driver.interfaces.iTransaction object at [hex]>
2025-07-02 05:58:00.506 in_meta = None, in_buffer = None, out_meta = None, out_buffer = None
2025-07-02 05:58:00.515
2025-07-02 05:58:00.522 def execute(self, transaction: iTransaction, in_meta: iMessageMetadata, in_buffer: bytes,
2025-07-02 05:58:00.528 out_meta: iMessageMetadata, out_buffer: bytes) -> None:
2025-07-02 05:58:00.539 """Executes any SQL statement except returning multiple rows of data.
2025-07-02 05:58:00.550 Partial analogue of `isc_dsql_execute2()` - in and out XSLQDAs replaced with input
2025-07-02 05:58:00.565 and output messages with appropriate buffers."""
2025-07-02 05:58:00.575 result = self.vtable.execute(self, self.status, transaction, in_meta, in_buffer, out_meta, out_buffer)
2025-07-02 05:58:00.584 >           self._check()
2025-07-02 05:58:00.589
2025-07-02 05:58:00.595 ../lib/python3.11/site-packages/firebird/driver/interfaces.py:783:
2025-07-02 05:58:00.600 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
2025-07-02 05:58:00.605
2025-07-02 05:58:00.612 self = <firebird.driver.interfaces.iStatement object at [hex]>
2025-07-02 05:58:00.620
2025-07-02 05:58:00.626 def _check(self) -> None:
2025-07-02 05:58:00.635 state = self.status.get_state()
2025-07-02 05:58:00.649 if StateFlag.ERRORS in state:
2025-07-02 05:58:00.658 >           raise self.__report(DatabaseError, self.status.get_errors())
2025-07-02 05:58:00.669 E           firebird.driver.types.DatabaseError: violation of FOREIGN KEY constraint "FK_DETAIL_TABLE" on table "PUBLIC"."DETAIL_TABLE"
2025-07-02 05:58:00.676 E           -Foreign key reference target does not exist
2025-07-02 05:58:00.684 E           -Problematic key value is ("FKEY" = 1)
2025-07-02 05:58:00.694
2025-07-02 05:58:00.706 ../lib/python3.11/site-packages/firebird/driver/interfaces.py:113: DatabaseError
2025-07-02 05:58:00.720
2025-07-02 05:58:00.731 During handling of the above exception, another exception occurred:
2025-07-02 05:58:00.743
2025-07-02 05:58:00.751 act = <firebird.qa.plugin.Action object at [hex]>
2025-07-02 05:58:00.756
2025-07-02 05:58:00.760 @pytest.mark.version('>3')
2025-07-02 05:58:00.766 def test_1(act: Action):
2025-07-02 05:58:00.772 cust_tpb = tpb(isolation=Isolation.READ_COMMITTED_RECORD_VERSION, lock_timeout=0)
2025-07-02 05:58:00.778 with act.db.connect() as con:
2025-07-02 05:58:00.784 con.begin(cust_tpb)
2025-07-02 05:58:00.790 with con.cursor() as c:
2025-07-02 05:58:00.801 c.execute("UPDATE MASTER_TABLE SET ID = 2 WHERE ID=1")
2025-07-02 05:58:00.811 #Create second connection for change detail table
2025-07-02 05:58:00.820 with act.db.connect() as con_detail:
2025-07-02 05:58:00.827 con_detail.begin(cust_tpb)
2025-07-02 05:58:00.841 with con_detail.cursor() as cd:
2025-07-02 05:58:00.854 >                       with pytest.raises(DatabaseError,
2025-07-02 05:58:00.868 match='.*violation of FOREIGN KEY constraint "FK_DETAIL_TABLE" on table "DETAIL_TABLE".*'):
2025-07-02 05:58:00.879 E                                          AssertionError: Regex pattern did not match.
2025-07-02 05:58:00.887 E                                           Regex: '.*violation of FOREIGN KEY constraint "FK_DETAIL_TABLE" on table "DETAIL_TABLE".*'
2025-07-02 05:58:00.895 E                                           Input: 'violation of FOREIGN KEY constraint "FK_DETAIL_TABLE" on table "PUBLIC"."DETAIL_TABLE"\n-Foreign key reference target does not exist\n-Problematic key value is ("FKEY" = 1)'
2025-07-02 05:58:00.903
2025-07-02 05:58:00.914 tests/functional/fkey/primary/test_insert_pk_02.py:48: AssertionError
2025-07-02 05:58:00.923 ---------------------------- Captured stdout setup -----------------------------
2025-07-02 05:58:00.931 Creating db: localhost:/var/tmp/qa_2024/test_12031/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]>

    @pytest.mark.version('>3')
    def test_1(act: Action):
        cust_tpb = tpb(isolation=Isolation.READ_COMMITTED_RECORD_VERSION, lock_timeout=0)
        with act.db.connect() as con:
            con.begin(cust_tpb)
            with con.cursor() as c:
                c.execute("UPDATE MASTER_TABLE SET ID = 2 WHERE ID=1")
                #Create second connection for change detail table
                with act.db.connect() as con_detail:
                    con_detail.begin(cust_tpb)
                    with con_detail.cursor() as cd:
                        with pytest.raises(DatabaseError,
                                           match='.*violation of FOREIGN KEY constraint "FK_DETAIL_TABLE" on table "DETAIL_TABLE".*'):
>                           cd.execute("INSERT INTO DETAIL_TABLE (ID, FKEY) VALUES (1,1)")

tests/functional/fkey/primary/test_insert_pk_02.py:50: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <firebird.driver.core.Cursor pytest object at [hex]>
operation = 'INSERT INTO DETAIL_TABLE (ID, FKEY) VALUES (1,1)'
parameters = None

    def execute(self, operation: Union[str, Statement], parameters: Sequence[Any]=None) -> Cursor:
        """Executes SQL command or prepared `Statement`.
    
        Starts new transaction if transaction manager associated with cursor is not active.
    
        Arguments:
            operation: SQL command or prepared `Statement`.
            parameters: Sequence of parameters. Must contain one entry for each argument
                        that the operation expects.
    
        Returns:
            `self` so call to execute could be used as iterator over returned rows.
    
        Note:
            If `operation` is a string with SQL command that is exactly the same as the
            last executed command, the internally prepared `Statement` from last execution
            is reused.
    
            If cursor is open, it's closed before new statement is executed.
        """
>       self._execute(operation, parameters)

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

self = <firebird.driver.core.Cursor pytest object at [hex]>
operation = 'INSERT INTO DETAIL_TABLE (ID, FKEY) VALUES (1,1)'
parameters = None, flags = <CursorFlag.NONE: 0>

    def _execute(self, operation: Union[str, Statement],
                 parameters: Sequence=None, flags: CursorFlag=CursorFlag.NONE) -> None:
        if not self._transaction.is_active():
            self._transaction.begin()
        if isinstance(operation, Statement):
            if operation._connection() is not self._connection:
                raise InterfaceError('Cannot execute Statement that was created by different Connection.')
            self.close()
            self._stmt = operation
            self.__internal = False
        elif self._stmt is not None and self._stmt.sql == operation:
            # We should execute the same SQL string again
            self._clear()
        else:
            self.close()
            self._stmt = self._connection._prepare(operation, self._transaction)
            self.__internal = True
        self._cursor_flags = flags
        in_meta = None
        # Execute the statement
        try:
            if self._stmt._in_cnt > 0:
                in_meta, self._stmt._in_buffer = self._pack_input(self._stmt._in_meta,
                                                                  self._stmt._in_buffer,
                                                                  parameters)
            if self._stmt.has_cursor():
                # Statement returns multiple rows
                self._result = self._stmt._istmt.open_cursor(self._transaction._tra,
                                                            in_meta, self._stmt._in_buffer,
                                                            self._stmt._out_meta,
                                                            flags)
            else:
                # Statement may return single row
>               self._stmt._istmt.execute(self._transaction._tra, in_meta,
                                         self._stmt._in_buffer,
                                         self._stmt._out_meta, self._stmt._out_buffer)

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

self = <firebird.driver.interfaces.iStatement pytest object at [hex]>
transaction = <firebird.driver.interfaces.iTransaction pytest object at [hex]>
in_meta = None, in_buffer = None, out_meta = None, out_buffer = None

        def execute(self, transaction: iTransaction, in_meta: iMessageMetadata, in_buffer: bytes,
                    out_meta: iMessageMetadata, out_buffer: bytes) -> 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."""
            result = self.vtable.execute(self, self.status, transaction, in_meta, in_buffer, out_meta, out_buffer)
>           self._check()

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

self = <firebird.driver.interfaces.iStatement 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: violation of FOREIGN KEY constraint "FK_DETAIL_TABLE" on table "PUBLIC"."DETAIL_TABLE"
E           -Foreign key reference target does not exist
E           -Problematic key value is ("FKEY" = 1)

../lib/python3.11/site-packages/firebird/driver/interfaces.py:113: DatabaseError

During handling of the above exception, another exception occurred:

act = <firebird.qa.plugin.Action pytest object at [hex]>

    @pytest.mark.version('>3')
    def test_1(act: Action):
        cust_tpb = tpb(isolation=Isolation.READ_COMMITTED_RECORD_VERSION, lock_timeout=0)
        with act.db.connect() as con:
            con.begin(cust_tpb)
            with con.cursor() as c:
                c.execute("UPDATE MASTER_TABLE SET ID = 2 WHERE ID=1")
                #Create second connection for change detail table
                with act.db.connect() as con_detail:
                    con_detail.begin(cust_tpb)
                    with con_detail.cursor() as cd:
>                       with pytest.raises(DatabaseError,
                                           match='.*violation of FOREIGN KEY constraint "FK_DETAIL_TABLE" on table "DETAIL_TABLE".*'):
E                                          AssertionError: Regex pattern did not match.
E                                           Regex: '.*violation of FOREIGN KEY constraint "FK_DETAIL_TABLE" on table "DETAIL_TABLE".*'
E                                           Input: 'violation of FOREIGN KEY constraint "FK_DETAIL_TABLE" on table "PUBLIC"."DETAIL_TABLE"\n-Foreign key reference target does not exist\n-Problematic key value is ("FKEY" = 1)'

tests/functional/fkey/primary/test_insert_pk_02.py:48: 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.889 2025.07.01 969ac F F 1480 1475 2025.07.02 02:24:46.044 2025.07.02 02:24:47.524 2025.07.01 23:35:16.543 2025.07.01 23:35:18.018
2 6.0.0.884 2025.06.30 f7e5f F F 1195 1017 2025.07.01 02:24:25.817 2025.07.01 02:24:27.012 2025.06.30 23:44:56.474 2025.06.30 23:44:57.491
3 6.0.0.881 2025.06.27 7035d F F 1160 1276 2025.06.30 02:15:34.321 2025.06.30 02:15:35.481 2025.06.29 23:30:45.321 2025.06.29 23:30:46.597
4 6.0.0.877 2025.06.26 8e38f F F 1136 1039 2025.06.27 01:53:37.322 2025.06.27 01:53:38.458 2025.06.26 23:21:05.050 2025.06.26 23:21:06.089
5 6.0.0.876 2025.06.25 b1bec F F 1387 1579 2025.06.26 01:57:28.729 2025.06.26 01:57:30.116 2025.06.25 23:22:53.748 2025.06.25 23:22:55.327
6 6.0.0.863 2025.06.24 c3c20 F F 1324 1204 2025.06.25 01:57:44.955 2025.06.25 01:57:46.279 2025.06.24 23:22:40.390 2025.06.24 23:22:41.594
7 6.0.0.858 2025.06.23 8d6f7 F F 1103 1232 2025.06.24 01:58:04.537 2025.06.24 01:58:05.640 2025.06.23 23:22:38.039 2025.06.23 23:22:39.271
8 6.0.0.849 2025.06.20 7b79c F F 1374 1472 2025.06.21 02:09:38.698 2025.06.21 02:09:40.072 2025.06.20 23:32:33.442 2025.06.20 23:32:34.914
9 6.0.0.848 2025.06.19 c483c F F 1494 1305 2025.06.20 02:05:55.478 2025.06.20 02:05:56.972 2025.06.19 23:28:55.494 2025.06.19 23:28:56.799
10 6.0.0.845 2025.06.18 22b12 F F 1366 1298 2025.06.19 02:14:39.197 2025.06.19 02:14:40.563 2025.06.18 23:32:31.319 2025.06.18 23:32:32.617
11 6.0.0.843 2025.06.16 995f4 F F 1401 1339 2025.06.18 02:12:56.103 2025.06.18 02:12:57.504 2025.06.17 23:35:19.413 2025.06.17 23:35:20.752
12 6.0.0.840 2025.06.14 29bca F F 1309 1391 2025.06.16 02:04:42.805 2025.06.16 02:04:44.114 2025.06.15 23:26:12.518 2025.06.15 23:26:13.909
13 6.0.0.838 2025.06.13 0e28a F F 1454 1800 2025.06.14 02:18:13.547 2025.06.14 02:18:15.001 2025.06.13 23:34:34.806 2025.06.13 23:34:36.606
14 6.0.0.835 2025.06.12 2cf29 F F 1363 1417 2025.06.13 02:17:32.778 2025.06.13 02:17:34.141 2025.06.12 23:39:29.477 2025.06.12 23:39:30.894
15 6.0.0.834 2025.06.11 e889f F F 1430 1117 2025.06.12 02:12:58.319 2025.06.12 02:12:59.749 2025.06.11 23:34:31.742 2025.06.11 23:34:32.859
16 6.0.0.800 2025.06.10 1f226 P P 1397 742 2025.06.11 00:42:40.701 2025.06.11 00:42:42.098 2025.06.10 22:34:24.241 2025.06.10 22:34:24.983
17 6.0.0.799 2025.06.07 be644 P P 950 522 2025.06.10 00:46:09.185 2025.06.10 00:46:10.135 2025.06.09 22:34:03.872 2025.06.09 22:34:04.394
18 6.0.0.797 2025.06.06 303e8 P P 789 769 2025.06.07 00:49:27.748 2025.06.07 00:49:28.537 2025.06.06 22:33:54.328 2025.06.06 22:33:55.097
19 6.0.0.795 2025.05.29 7a71a P P 1480 873 2025.06.06 00:43:09.007 2025.06.06 00:43:10.487 2025.06.05 22:32:57.478 2025.06.05 22:32:58.351
20 6.0.0.792 2025.05.28 b4327 P P 1514 556 2025.05.29 00:58:33.246 2025.05.29 00:58:34.760 2025.05.28 22:36:41.314 2025.05.28 22:36:41.870
21 6.0.0.791 2025.05.27 02db8 P P 1586 730 2025.05.28 00:55:56.469 2025.05.28 00:55:58.055 2025.05.27 22:35:47.747 2025.05.27 22:35:48.477
22 6.0.0.789 2025.05.21 64051 P P 781 681 2025.05.25 00:48:29.670 2025.05.25 00:48:30.451 2025.05.24 22:34:34.966 2025.05.24 22:34:35.647
23 6.0.0.787 2025.05.20 230ad P P 798 746 2025.05.21 00:45:24.751 2025.05.21 00:45:25.549 2025.05.20 22:33:04.314 2025.05.20 22:33:05.060
24 6.0.0.783 2025.05.12 37320 P P 939 531 2025.05.19 12:17:20.304 2025.05.19 12:17:21.243 2025.05.19 10:19:24.079 2025.05.19 10:19:24.610
25 6.0.0.779 2025.05.11 136fa P P 1402 737 2025.05.12 00:40:47.507 2025.05.12 00:40:48.909 2025.05.11 22:31:59.105 2025.05.11 22:31:59.842
26 6.0.0.778 2025.05.07 d735e P P 786 675 2025.05.08 00:41:48.977 2025.05.08 00:41:49.763 2025.05.07 22:30:49.947 2025.05.07 22:30:50.622
27 6.0.0.776 2025.05.06 007cd P P 1530 331 2025.05.07 00:37:38.728 2025.05.07 00:37:40.258 2025.05.06 22:31:08.938 2025.05.06 22:31:09.269
28 6.0.0.770 2025.05.05 82c4a P P 1589 486 2025.05.06 00:37:15.822 2025.05.06 00:37:17.411 2025.05.05 22:30:13.334 2025.05.05 22:30:13.820
29 6.0.0.767 2025.05.01 cdd29 P P 766 637 2025.05.02 00:32:14.555 2025.05.02 00:32:15.321 2025.05.01 22:29:36.125 2025.05.01 22:29:36.762
30 6.0.0.762 2025.04.30 5cb15 P P 790 547 2025.05.01 00:28:40.077 2025.05.01 00:28:40.867 2025.04.30 22:28:12.232 2025.04.30 22:28:12.779
31 6.0.0.755 2025.04.29 739c6 P P 743 591 2025.04.30 00:32:48.335 2025.04.30 00:32:49.078 2025.04.29 22:29:36.466 2025.04.29 22:29:37.057
32 6.0.0.753 2025.04.27 29ab3 P P 1455 437 2025.04.28 00:34:27.966 2025.04.28 00:34:29.421 2025.04.27 22:28:41.642 2025.04.27 22:28:42.079
33 6.0.0.745 2025.04.21 78ad8 P P 1379 505 2025.04.26 00:29:32.507 2025.04.26 00:29:33.886 2025.04.25 22:29:43.107 2025.04.25 22:29:43.612
34 6.0.0.744 2025.04.19 e883a P P 833 408 2025.04.20 00:32:42.481 2025.04.20 00:32:43.314 2025.04.19 22:30:03.748 2025.04.19 22:30:04.156
35 6.0.0.742 2025.04.17 abc3b P P 707 381 2025.04.19 00:35:08.043 2025.04.19 00:35:08.750 2025.04.18 22:30:24.340 2025.04.18 22:30:24.721
36 6.0.0.737 2025.04.16 fe52b P P 1686 385 2025.04.17 00:30:45.421 2025.04.17 00:30:47.107 2025.04.16 22:30:27.457 2025.04.16 22:30:27.842
37 6.0.0.736 2025.04.14 3e6be P P 743 636 2025.04.15 00:10:17.191 2025.04.15 00:10:17.934 2025.04.14 22:20:37.510 2025.04.14 22:20:38.146
38 6.0.0.735 2025.04.13 6635c P P 741 663 2025.04.14 00:14:18.742 2025.04.14 00:14:19.483 2025.04.13 22:22:10.825 2025.04.13 22:22:11.488
39 6.0.0.734 2025.04.12 12f3f P P 1336 616 2025.04.13 00:11:17.090 2025.04.13 00:11:18.426 2025.04.12 22:21:11.011 2025.04.12 22:21:11.627
40 6.0.0.730 2025.04.11 240b8 P P 813 530 2025.04.12 00:14:10.959 2025.04.12 00:14:11.772 2025.04.11 22:21:03.899 2025.04.11 22:21:04.429
41 6.0.0.726 2025.04.10 d79c6 P P 691 682 2025.04.11 00:13:57.487 2025.04.11 00:13:58.178 2025.04.10 22:21:03.277 2025.04.10 22:21:03.959
42 6.0.0.725 2025.04.09 a2b05 P P 801 561 2025.04.10 00:14:36.404 2025.04.10 00:14:37.205 2025.04.09 22:22:41.702 2025.04.09 22:22:42.263
43 6.0.0.722 2025.04.08 a8b86 P P 784 422 2025.04.09 00:30:55.843 2025.04.09 00:30:56.627 2025.04.08 22:29:42.759 2025.04.08 22:29:43.181
44 6.0.0.719 2025.04.06 90fd9 P P 763 473 2025.04.07 00:28:51.791 2025.04.07 00:28:52.554 2025.04.06 22:27:49.536 2025.04.06 22:27:50.009
45 6.0.0.717 2025.04.04 53d70 P P 782 338 2025.04.05 00:23:42.941 2025.04.05 00:23:43.723 2025.04.04 22:27:07.713 2025.04.04 22:27:08.051
46 6.0.0.716 2025.04.03 fc636 P P 832 536 2025.04.04 00:27:32.695 2025.04.04 00:27:33.527 2025.04.03 22:28:46.787 2025.04.03 22:28:47.323
47 6.0.0.715 2025.04.02 907ed P P 976 542 2025.04.03 00:27:34.178 2025.04.03 00:27:35.154 2025.04.02 22:28:50.259 2025.04.02 22:28:50.801
48 6.0.0.710 2025.04.01 40651 P P 1360 420 2025.04.02 00:25:26.723 2025.04.02 00:25:28.083 2025.04.01 22:27:45.809 2025.04.01 22:27:46.229
49 6.0.0.708 2025.03.31 cb069 P P 1413 614 2025.04.01 00:16:52.341 2025.04.01 00:16:53.754 2025.03.31 22:22:34.208 2025.03.31 22:22:34.822
50 6.0.0.707 2025.03.28 4bd4f P P 1388 615 2025.03.31 00:17:25.254 2025.03.31 00:17:26.642 2025.03.30 22:23:07.995 2025.03.30 22:23:08.610
51 6.0.0.698 2025.03.26 d72a7 P P 883 699 2025.03.28 00:38:48.594 2025.03.28 00:38:49.477 2025.03.27 22:30:09.327 2025.03.27 22:30:10.026
52 6.0.0.693 2025.03.24 0b559 P P 885 652 2025.03.25 00:26:58.730 2025.03.25 00:26:59.615 2025.03.24 22:26:12.523 2025.03.24 22:26:13.175
53 6.0.0.687 2025.03.22 730aa P P 1365 686 2025.03.24 00:36:51.674 2025.03.24 00:36:53.039 2025.03.23 22:32:27.490 2025.03.23 22:32:28.176
54 6.0.0.686 2025.03.20 71bf6 P P 1456 796 2025.03.21 00:42:23.710 2025.03.21 00:42:25.166 2025.03.20 22:35:08.786 2025.03.20 22:35:09.582
55 6.0.0.685 2025.03.19 a8577 P P 1389 721 2025.03.20 00:50:02.458 2025.03.20 00:50:03.847 2025.03.19 22:33:20.866 2025.03.19 22:33:21.587
56 6.0.0.680 2025.03.18 90d29 P P 945 547 2025.03.19 11:04:21.612 2025.03.19 11:04:22.557 2025.03.19 09:16:35.561 2025.03.19 09:16:36.108
57 6.0.0.677 2025.03.16 c0a60 P P 844 381 2025.03.17 00:31:19.502 2025.03.17 00:31:20.346 2025.03.16 22:27:52.801 2025.03.16 22:27:53.182
58 6.0.0.676 2025.03.15 3034f P P 1050 588 2025.03.16 16:02:18.897 2025.03.16 16:02:19.947 2025.03.16 14:17:02.990 2025.03.16 14:17:03.578
59 6.0.0.673 2025.03.13 40f5b P P 766 699 2025.03.14 00:29:17.416 2025.03.14 00:29:18.182 2025.03.13 22:26:56.023 2025.03.13 22:26:56.722
60 6.0.0.671 2025.03.12 a4fff P P 776 570 2025.03.13 00:33:27.863 2025.03.13 00:33:28.639 2025.03.12 22:29:58.489 2025.03.12 22:29:59.059
61 6.0.0.663 2025.03.11 daad2 P P 949 535 2025.03.12 00:32:01.782 2025.03.12 00:32:02.731 2025.03.11 22:29:03.071 2025.03.11 22:29:03.606
62 6.0.0.661 2025.03.07 b9869 P P 720 502 2025.03.11 00:09:24.170 2025.03.11 00:09:24.890 2025.03.10 22:19:38.713 2025.03.10 22:19:39.215
63 6.0.0.660 2025.03.04 a6700 P P 1446 525 2025.03.07 00:19:29.193 2025.03.07 00:19:30.639 2025.03.06 22:23:57.943 2025.03.06 22:23:58.468
64 6.0.0.658 2025.03.03 f15f8 P P 1289 642 2025.03.04 00:13:42.417 2025.03.04 00:13:43.706 2025.03.03 22:19:56.537 2025.03.03 22:19:57.179
65 6.0.0.656 2025.02.27 25fb4 P P 962 590 2025.03.03 00:44:18.795 2025.03.03 00:44:19.757 2025.03.02 22:31:09.296 2025.03.02 22:31:09.886
66 6.0.0.655 2025.02.25 6e3e0 P P 1311 586 2025.02.27 00:16:05.503 2025.02.27 00:16:06.814 2025.02.26 22:20:54.728 2025.02.26 22:20:55.314
67 6.0.0.654 2025.02.24 b7141 P P 795 585 2025.02.25 00:20:35.858 2025.02.25 00:20:36.653 2025.02.24 22:22:37.971 2025.02.24 22:22:38.556
68 6.0.0.652 2025.02.22 22662 P P 971 532 2025.02.24 07:36:10.557 2025.02.24 07:36:11.528 2025.02.24 00:34:14.300 2025.02.24 00:34:14.832
69 6.0.0.647 2025.02.21 9fccb P P 1412 692 2025.02.22 00:20:16.990 2025.02.22 00:20:18.402 2025.02.21 22:26:13.314 2025.02.21 22:26:14.006
70 6.0.0.640 2025.02.19 9b8ac P P 759 758 2025.02.20 00:17:51.306 2025.02.20 00:17:52.065 2025.02.19 22:20:21.750 2025.02.19 22:20:22.508
71 6.0.0.639 2025.02.18 201a4 P P 844 575 2025.02.19 00:10:41.985 2025.02.19 00:10:42.829 2025.02.18 22:19:12.196 2025.02.18 22:19:12.771
72 6.0.0.637 2025.02.12 6d0f5 P P 1493 708 2025.02.14 00:28:40.074 2025.02.14 00:28:41.567 2025.02.13 22:26:23.227 2025.02.13 22:26:23.935
73 6.0.0.636 2025.02.11 0424f P P 737 620 2025.02.12 00:25:32.844 2025.02.12 00:25:33.581 2025.02.11 22:25:54.822 2025.02.11 22:25:55.442
74 6.0.0.635 2025.02.10 f640f P P 1047 372 2025.02.11 00:23:28.163 2025.02.11 00:23:29.210 2025.02.10 22:26:17.859 2025.02.10 22:26:18.231
75 6.0.0.629 2025.02.07 194f9 P P 1499 603 2025.02.08 00:23:30.614 2025.02.08 00:23:32.113 2025.02.07 22:24:50.312 2025.02.07 22:24:50.915
76 6.0.0.628 2025.02.06 859d5 P P 1514 461 2025.02.07 00:40:35.917 2025.02.07 00:40:37.431 2025.02.06 22:31:53.519 2025.02.06 22:31:53.980
77 6.0.0.621 2025.02.05 34fe7 P P 1397 498 2025.02.06 00:35:22.109 2025.02.06 00:35:23.506 2025.02.05 22:32:19.209 2025.02.05 22:32:19.707
78 6.0.0.609 2025.02.04 76d57 P P 769 358 2025.02.05 00:28:59.346 2025.02.05 00:29:00.115 2025.02.04 22:28:59.215 2025.02.04 22:28:59.573
79 6.0.0.607 2025.02.03 1985b P P 1308 676 2025.02.04 00:27:29.406 2025.02.04 00:27:30.714 2025.02.03 22:29:32.334 2025.02.03 22:29:33.010
80 6.0.0.601 2025.02.01 6af07 P P 789 760 2025.02.02 00:21:01.918 2025.02.02 00:21:02.707 2025.02.01 22:24:03.379 2025.02.01 22:24:04.139
81 6.0.0.600 2025.01.27 188de P P 1527 736 2025.01.28 00:28:24.187 2025.01.28 00:28:25.714 2025.01.27 22:26:06.107 2025.01.27 22:26:06.843
82 6.0.0.599 2025.01.25 ba588 P P 1055 488 2025.01.26 00:27:44.294 2025.01.26 00:27:45.349 2025.01.25 22:26:47.519 2025.01.25 22:26:48.007
83 6.0.0.598 2025.01.23 ddbc3 P P 783 733 2025.01.25 00:29:12.548 2025.01.25 00:29:13.331 2025.01.24 22:25:19.373 2025.01.24 22:25:20.106
84 6.0.0.595 2025.01.22 e62f3 P P 1414 536 2025.01.23 00:20:37.320 2025.01.23 00:20:38.734 2025.01.22 22:21:18.740 2025.01.22 22:21:19.276
85 6.0.0.594 2025.01.21 47fb6 P P 694 532 2025.01.22 00:15:41.956 2025.01.22 00:15:42.650 2025.01.21 22:20:43.719 2025.01.21 22:20:44.251
86 6.0.0.590 2025.01.20 9dc1e P P 1324 702 2025.01.21 00:22:03.926 2025.01.21 00:22:05.250 2025.01.20 22:25:14.896 2025.01.20 22:25:15.598
87 6.0.0.588 2025.01.19 b1c4e P P 795 575 2025.01.20 00:20:11.877 2025.01.20 00:20:12.672 2025.01.19 22:23:01.908 2025.01.19 22:23:02.483
88 6.0.0.587 2025.01.18 63e6e P P 1413 750 2025.01.19 00:24:46.465 2025.01.19 00:24:47.878 2025.01.18 22:24:47.194 2025.01.18 22:24:47.944
89 6.0.0.585 2025.01.16 2d6bb P P 843 509 2025.01.18 00:17:06.276 2025.01.18 00:17:07.119 2025.01.17 22:21:55.870 2025.01.17 22:21:56.379
90 6.0.0.584 2025.01.15 a0aa2 P P 777 594 2025.01.16 00:22:13.245 2025.01.16 00:22:14.022 2025.01.15 22:24:41.057 2025.01.15 22:24:41.651
91 6.0.0.581 2025.01.14 21e9e P P 1302 759 2025.01.15 00:23:38.480 2025.01.15 00:23:39.782 2025.01.14 22:23:27.942 2025.01.14 22:23:28.701
92 6.0.0.577 2025.01.13 7e293 P P 909 725 2025.01.14 00:23:00.590 2025.01.14 00:23:01.499 2025.01.13 22:23:44.430 2025.01.13 22:23:45.155
93 6.0.0.576 2025.01.12 05898 P P 892 684 2025.01.13 00:19:37.398 2025.01.13 00:19:38.290 2025.01.12 22:21:56.843 2025.01.12 22:21:57.527
94 6.0.0.573 2025.01.10 c20f3 P P 820 554 2025.01.11 00:21:01.169 2025.01.11 00:21:01.989 2025.01.10 22:23:07.805 2025.01.10 22:23:08.359
95 6.0.0.571 2024.12.31 81bba P P 650 361 2024.12.31 23:56:01.093 2024.12.31 23:56:01.743 2024.12.31 22:04:30.188 2024.12.31 22:04:30.549
96 6.0.0.570 2024.12.30 c3c8d P P 698 378 2024.12.30 23:56:07.324 2024.12.30 23:56:08.022 2024.12.30 22:04:26.023 2024.12.30 22:04:26.401
97 6.0.0.565 2024.12.28 5fc59 P P 750 350 2024.12.30 12:30:52.458 2024.12.30 12:30:53.208 2024.12.30 11:13:20.385 2024.12.30 11:13:20.735
98 6.0.0.564 2024.12.26 12514 P P 1256 359 2024.12.26 23:57:37.943 2024.12.26 23:57:39.199 2024.12.26 22:04:35.294 2024.12.26 22:04:35.653
99 6.0.0.560 2024.12.25 fa83e P P 740 367 2024.12.25 23:50:01.598 2024.12.25 23:50:02.338 2024.12.25 22:04:31.088 2024.12.25 22:04:31.455
100 6.0.0.559 2024.12.23 cc800 P P 987 364 2024.12.24 23:51:04.939 2024.12.24 23:51:05.926 2024.12.24 22:04:58.782 2024.12.24 22:04:59.146
101 6.0.0.556 2024.12.22 a0404 P P 700 360 2024.12.22 23:56:58.826 2024.12.22 23:56:59.526 2024.12.22 22:04:21.513 2024.12.22 22:04:21.873
102 6.0.0.555 2024.12.19 6990a P P 677 350 2024.12.21 13:06:16.462 2024.12.21 13:06:17.139 2024.12.21 11:49:02.364 2024.12.21 11:49:02.714
103 6.0.0.553 2024.12.17 d1f8a P P 724 364 2024.12.17 23:51:48.530 2024.12.17 23:51:49.254 2024.12.17 22:05:00.534 2024.12.17 22:05:00.898
104 6.0.0.552 2024.12.11 85e25 P P 806 370 2024.12.15 23:55:47.172 2024.12.15 23:55:47.978 2024.12.15 22:04:44.727 2024.12.15 22:04:45.097
105 6.0.0.550 2024.12.10 b37ac P P 644 329 2024.12.10 23:51:25.872 2024.12.10 23:51:26.516 2024.12.10 22:06:09.858 2024.12.10 22:06:10.187
106 6.0.0.548 2024.12.08 2cc77 P P 644 344 2024.12.08 23:46:37.599 2024.12.08 23:46:38.243 2024.12.08 22:03:42.238 2024.12.08 22:03:42.582
107 6.0.0.544 2024.12.05 96943 P P 699 524 2024.12.05 23:50:55.964 2024.12.05 23:50:56.663 2024.12.05 22:07:27.323 2024.12.05 22:07:27.847
108 6.0.0.543 2024.12.03 30b77 P P 699 363 2024.12.03 23:51:36.164 2024.12.03 23:51:36.863 2024.12.03 22:05:53.307 2024.12.03 22:05:53.670
109 6.0.0.540 2024.12.02 4a1f4 P P 1282 355 2024.12.02 23:47:41.448 2024.12.02 23:47:42.730 2024.12.02 22:04:58.268 2024.12.02 22:04:58.623
110 6.0.0.539 2024.11.28 1f283 P P 1246 510 2024.11.29 23:59:34.143 2024.11.29 23:59:35.389 2024.11.29 22:05:33.697 2024.11.29 22:05:34.207
111 6.0.0.535 2024.11.26 77b95 P P 1208 363 2024.11.26 23:42:47.166 2024.11.26 23:42:48.374 2024.11.26 22:02:58.334 2024.11.26 22:02:58.697
112 6.0.0.534 2024.11.25 e9584 P P 1242 319 2024.11.25 23:44:01.105 2024.11.25 23:44:02.347 2024.11.25 22:03:48.187 2024.11.25 22:03:48.506
113 6.0.0.533 2024.11.17 933ac P P 718 337 2024.11.22 09:48:13.619 2024.11.22 09:48:14.337 2024.11.22 08:33:17.913 2024.11.22 08:33:18.250
114 6.0.0.532 2024.11.16 9e263 P P 1318 371 2024.11.16 23:33:40.675 2024.11.16 23:33:41.993 2024.11.16 22:03:46.171 2024.11.16 22:03:46.542
115 6.0.0.530 2024.11.15 49804 P P 628 390 2024.11.16 01:41:35.276 2024.11.16 01:41:35.904 2024.11.16 00:03:14.634 2024.11.16 00:03:15.024
116 6.0.0.528 2024.11.14 9625b P P 1246 402 2024.11.15 01:45:26.306 2024.11.15 01:45:27.552 2024.11.15 00:04:34.104 2024.11.15 00:04:34.506
117 6.0.0.526 2024.11.12 65b80 P P 656 403 2024.11.14 01:44:54.727 2024.11.14 01:44:55.383 2024.11.14 00:04:03.386 2024.11.14 00:04:03.789
118 6.0.0.523 2024.11.08 8ca23 P P 639 381 2024.11.11 01:40:51.150 2024.11.11 01:40:51.789 2024.11.11 00:02:54.649 2024.11.11 00:02:55.030
119 6.0.0.520 2024.11.07 4eefa P P 669 382 2024.11.08 01:38:47.160 2024.11.08 01:38:47.829 2024.11.08 00:02:29.454 2024.11.08 00:02:29.836
120 6.0.0.516 2024.11.04 b0c36 P P 640 373 2024.11.05 01:37:34.268 2024.11.05 01:37:34.908 2024.11.05 00:02:08.824 2024.11.05 00:02:09.197
121 6.0.0.515 2024.10.30 d53f3 P P 658 338 2024.11.04 01:39:28.533 2024.11.04 01:39:29.191 2024.11.04 00:02:42.484 2024.11.04 00:02:42.822
122 6.0.0.512 2024.10.29 833ef P P 633 400 2024.10.30 01:42:10.427 2024.10.30 01:42:11.060 2024.10.30 00:04:11.437 2024.10.30 00:04:11.837
123 6.0.0.511 2024.10.26 c4bc9 P P 1294 381 2024.10.29 01:42:21.162 2024.10.29 01:42:22.456 2024.10.29 00:03:47.907 2024.10.29 00:03:48.288
124 6.0.0.509 2024.10.25 3aedb P P 1372 536 2024.10.26 01:52:48.810 2024.10.26 01:52:50.182 2024.10.26 00:07:00.182 2024.10.26 00:07:00.718
125 6.0.0.508 2024.10.24 a8f5b P P 650 387 2024.10.25 01:46:33.151 2024.10.25 01:46:33.801 2024.10.25 00:04:57.428 2024.10.25 00:04:57.815
126 6.0.0.502 2024.10.22 6bfd7 P P 720 384 2024.10.23 01:46:04.813 2024.10.23 01:46:05.533 2024.10.23 00:04:35.435 2024.10.23 00:04:35.819
127 6.0.0.500 2024.10.21 be565 P P 713 422 2024.10.22 17:51:13.241 2024.10.22 17:51:13.954 2024.10.22 16:34:16.018 2024.10.22 16:34:16.440
128 6.0.0.499 2024.10.19 6214b P P 692 572 2024.10.20 01:47:15.017 2024.10.20 01:47:15.709 2024.10.20 00:05:44.365 2024.10.20 00:05:44.937
129 6.0.0.498 2024.10.18 591a7 P P 1328 403 2024.10.19 01:44:27.813 2024.10.19 01:44:29.141 2024.10.19 00:03:57.868 2024.10.19 00:03:58.271
130 6.0.0.494 2024.10.17 cf5a4 P P 1409 544 2024.10.18 01:45:21.669 2024.10.18 01:45:23.078 2024.10.18 00:05:25.601 2024.10.18 00:05:26.145
131 6.0.0.491 2024.10.14 dc5fb P P 665 357 2024.10.15 01:42:05.125 2024.10.15 01:42:05.790 2024.10.15 00:03:07.107 2024.10.15 00:03:07.464
132 6.0.0.489 2024.10.11 2ba59 P P 666 435 2024.10.12 01:48:51.989 2024.10.12 01:48:52.655 2024.10.12 00:05:15.328 2024.10.12 00:05:15.763
133 6.0.0.488 2024.10.09 1c93e P P 1350 752 2024.10.10 01:57:01.445 2024.10.10 01:57:02.795 2024.10.10 00:08:42.763 2024.10.10 00:08:43.515
134 6.0.0.487 2024.10.06 065a3 P P 1339 636 2024.10.07 01:56:32.726 2024.10.07 01:56:34.065 2024.10.07 00:08:32.289 2024.10.07 00:08:32.925
135 6.0.0.485 2024.10.04 e95c1 P P 718 669 2024.10.05 01:58:32.563 2024.10.05 01:58:33.281 2024.10.05 00:08:37.488 2024.10.05 00:08:38.157
136 6.0.0.483 2024.10.02 5e5ae P P 1316 687 2024.10.03 01:53:31.501 2024.10.03 01:53:32.817 2024.10.03 00:07:46.106 2024.10.03 00:07:46.793
137 6.0.0.478 2024.09.30 b5010 P P 664 755 2024.10.01 01:48:15.877 2024.10.01 01:48:16.541 2024.10.01 00:06:51.890 2024.10.01 00:06:52.645
138 6.0.0.474 2024.09.26 e4efb P P 809 546 2024.09.30 01:48:33.729 2024.09.30 01:48:34.538 2024.09.30 00:05:34.567 2024.09.30 00:05:35.113
139 6.0.0.471 2024.09.24 01b51 P P 800 353 2024.09.25 23:52:31.233 2024.09.25 23:52:32.033 2024.09.25 22:06:17.233 2024.09.25 22:06:17.586
140 6.0.0.470 2024.09.23 77cc0 P P 776 541 2024.09.23 23:50:57.093 2024.09.23 23:50:57.869 2024.09.23 22:06:22.300 2024.09.23 22:06:22.841
141 6.0.0.467 2024.09.21 ea0b8 P P 642 568 2024.09.22 23:49:23.643 2024.09.22 23:49:24.285 2024.09.22 22:05:36.805 2024.09.22 22:05:37.373
142 6.0.0.466 2024.09.20 32dc6 P P 705 565 2024.09.20 23:48:09.388 2024.09.20 23:48:10.093 2024.09.20 22:05:12.293 2024.09.20 22:05:12.858
143 6.0.0.461 2024.09.17 2c895 P P 1344 479 2024.09.18 00:23:26.015 2024.09.18 00:23:27.359 2024.09.17 22:27:37.301 2024.09.17 22:27:37.780
144 6.0.0.460 2024.09.11 3c253 P P 1503 648 2024.09.17 00:23:58.901 2024.09.17 00:24:00.404 2024.09.16 22:28:36.992 2024.09.16 22:28:37.640
145 6.0.0.457 2024.09.09 fdc6f P P 1634 788 2024.09.10 00:47:46.199 2024.09.10 00:47:47.833 2024.09.09 22:37:57.029 2024.09.09 22:37:57.817
146 6.0.0.455 2024.09.07 500d8 P P 1563 646 2024.09.08 00:43:33.853 2024.09.08 00:43:35.416 2024.09.07 22:36:03.143 2024.09.07 22:36:03.789
147 6.0.0.454 2024.09.05 4d70f P P 858 449 2024.09.06 00:27:30.884 2024.09.06 00:27:31.742 2024.09.05 22:30:38.408 2024.09.05 22:30:38.857
148 6.0.0.452 2024.09.04 9ff9c P P 1453 523 2024.09.05 00:24:26.853 2024.09.05 00:24:28.306 2024.09.04 22:28:51.246 2024.09.04 22:28:51.769
149 6.0.0.450 2024.09.02 27124 P P 1097 554 2024.09.04 01:36:39.753 2024.09.04 01:36:40.850 2024.09.03 22:58:51.805 2024.09.03 22:58:52.359
150 6.0.0.447 2024.09.01 056ec P P 1498 729 2024.09.02 00:50:52.174 2024.09.02 00:50:53.672 2024.09.01 22:34:51.527 2024.09.01 22:34:52.256
151 6.0.0.446 2024.08.30 fe1b2 P P 810 528 2024.09.01 00:54:52.894 2024.09.01 00:54:53.704 2024.08.31 22:46:54.554 2024.08.31 22:46:55.082
152 6.0.0.444 2024.08.28 785d4 P P 1050 666 2024.08.30 01:07:43.251 2024.08.30 01:07:44.301 2024.08.29 22:58:03.446 2024.08.29 22:58:04.112
153 6.0.0.442 2024.08.21 4a68f P P 1524 1266 2024.08.28 02:48:49.290 2024.08.28 02:48:50.814 2024.08.27 23:50:22.064 2024.08.27 23:50:23.330
154 6.0.0.441 2024.08.20 75042 P P 1344 667 2024.08.21 00:39:19.100 2024.08.21 00:39:20.444 2024.08.20 22:35:45.718 2024.08.20 22:35:46.385
155 6.0.0.438 2024.08.16 088b5 P P 775 399 2024.08.18 23:52:02.928 2024.08.18 23:52:03.703 2024.08.18 22:13:39.461 2024.08.18 22:13:39.860
156 6.0.0.437 2024.08.14 3c88b P P 853 365 2024.08.15 23:49:42.738 2024.08.15 23:49:43.591 2024.08.15 22:12:40.184 2024.08.15 22:12:40.549
157 6.0.0.432 2024.08.11 e82ac P P 1470 660 2024.08.12 23:47:37.383 2024.08.12 23:47:38.853 2024.08.12 22:11:02.361 2024.08.12 22:11:03.021
158 6.0.0.431 2024.08.09 de5a7 P P 795 727 2024.08.09 23:48:52.197 2024.08.09 23:48:52.992 2024.08.09 22:11:20.942 2024.08.09 22:11:21.669
159 6.0.0.428 2024.08.08 9191b P P 1372 517 2024.08.08 23:47:54.793 2024.08.08 23:47:56.165 2024.08.08 22:10:46.825 2024.08.08 22:10:47.342
160 6.0.0.423 2024.08.07 33b41 P P 957 548 2024.08.08 09:36:41.356 2024.08.08 09:36:42.313 2024.08.08 08:17:43.941 2024.08.08 08:17:44.489
161 6.0.0.421 2024.08.06 ed60d P P 1024 266 2024.08.06 23:31:11.589 2024.08.06 23:31:12.613 2024.08.06 22:05:05.960 2024.08.06 22:05:06.226
162 6.0.0.419 2024.08.05 3505a P P 1120 344 2024.08.05 23:33:20.425 2024.08.05 23:33:21.545 2024.08.05 22:05:02.559 2024.08.05 22:05:02.903
163 6.0.0.409 2024.08.02 ec18f P P 1024 282 2024.08.04 23:37:34.841 2024.08.04 23:37:35.865 2024.08.04 22:05:52.144 2024.08.04 22:05:52.426
164 6.0.0.406 2024.08.01 b20be P P 1092 371 2024.08.01 23:36:21.631 2024.08.01 23:36:22.723 2024.08.01 22:05:11.145 2024.08.01 22:05:11.516
165 6.0.0.405 2024.07.31 a62ac P P 689 404 2024.07.31 23:34:47.172 2024.07.31 23:34:47.861 2024.07.31 22:04:55.289 2024.07.31 22:04:55.693
166 6.0.0.403 2024.07.29 30f03 P P 1072 393 2024.07.29 23:34:23.425 2024.07.29 23:34:24.497 2024.07.29 22:04:41.362 2024.07.29 22:04:41.755
167 6.0.0.401 2024.07.26 24e41 P P 1116 418 2024.07.26 23:31:00.905 2024.07.26 23:31:02.021 2024.07.26 22:04:34.906 2024.07.26 22:04:35.324
168 6.0.0.400 2024.07.24 5bb78 P P 1088 357 2024.07.24 23:30:45.561 2024.07.24 23:30:46.649 2024.07.24 22:04:52.085 2024.07.24 22:04:52.442
169 6.0.0.398 2024.07.23 85b18 P P 566 456 2024.07.23 23:37:55.882 2024.07.23 23:37:56.448 2024.07.23 22:10:22.210 2024.07.23 22:10:22.666
170 6.0.0.397 2024.07.22 c734c P P 1113 441 2024.07.22 23:30:43.073 2024.07.22 23:30:44.186 2024.07.22 22:04:48.274 2024.07.22 22:04:48.715
171 6.0.0.396 2024.07.13 cf952 P P 1087 396 2024.07.21 23:31:45.400 2024.07.21 23:31:46.487 2024.07.21 22:04:34.058 2024.07.21 22:04:34.454
172 6.0.0.395 2024.07.10 845f4 P P 1104 294 2024.07.12 23:32:07.405 2024.07.12 23:32:08.509 2024.07.12 22:03:41.092 2024.07.12 22:03:41.386
173 6.0.0.392 2024.07.09 ea301 P P 1007 350 2024.07.09 23:27:56.318 2024.07.09 23:27:57.325 2024.07.09 22:03:10.156 2024.07.09 22:03:10.506
174 6.0.0.391 2024.07.08 7d50c P P 1040 412 2024.07.08 23:29:13.877 2024.07.08 23:29:14.917 2024.07.08 22:04:07.036 2024.07.08 22:04:07.448
175 6.0.0.389 2024.07.05 cc71c P P 1163 360 2024.07.05 23:33:06.139 2024.07.05 23:33:07.302 2024.07.05 22:03:54.049 2024.07.05 22:03:54.409
176 6.0.0.388 2024.06.30 e5700 P P 1068 371 2024.06.30 23:29:32.225 2024.06.30 23:29:33.293 2024.06.30 22:04:30.541 2024.06.30 22:04:30.912
177 6.0.0.387 2024.06.27 7c28a P P 1033 284 2024.06.27 23:28:28.500 2024.06.27 23:28:29.533 2024.06.27 22:04:08.953 2024.06.27 22:04:09.237
178 6.0.0.386 2024.06.23 7c57f P P 1033 388 2024.06.23 23:25:51.121 2024.06.23 23:25:52.154 2024.06.23 22:02:56.574 2024.06.23 22:02:56.962
179 6.0.0.384 2024.06.21 24d99 P P 1081 425 2024.06.21 23:30:17.877 2024.06.21 23:30:18.958 2024.06.21 22:04:05.353 2024.06.21 22:04:05.778
180 6.0.0.374 2024.06.13 0097d P P 1087 364 2024.06.20 23:28:14.593 2024.06.20 23:28:15.680 2024.06.20 22:03:23.536 2024.06.20 22:03:23.900
181 6.0.0.373 2024.06.09 363f0 P P 739 348 2024.06.13 13:37:51.445 2024.06.13 13:37:52.184 2024.06.13 12:27:06.197 2024.06.13 12:27:06.545
182 6.0.0.371 2024.06.08 f7130 P P 757 376 2024.06.11 22:24:32.394 2024.06.11 22:24:33.151 2024.06.11 21:20:59.584 2024.06.11 21:20:59.960
183 6.0.0.366 2024.05.30 ab2c9 P P 795 260 2024.06.12 09:35:31.053 2024.06.12 09:35:31.848 2024.06.12 07:55:26.139 2024.06.12 07:55:26.399
184 6.0.0.363 2024.05.27 06703 P P 708 281 2024.06.12 14:31:09.874 2024.06.12 14:31:10.582 2024.06.12 13:24:17.018 2024.06.12 13:24:17.299
185 6.0.0.359 2024.05.23 9cb11 P P 724 278 2024.06.12 12:23:19.356 2024.06.12 12:23:20.080 2024.06.12 11:16:52.493 2024.06.12 11:16:52.771
186 6.0.0.358 2024.05.21 995dd P P 686 376 2024.06.12 17:06:05.649 2024.06.12 17:06:06.335 2024.06.12 16:01:21.973 2024.06.12 16:01:22.349
187 6.0.0.357 2024.05.18 bf6c4 P P 713 271 2024.06.12 21:42:33.376 2024.06.12 21:42:34.089 2024.06.12 20:37:33.040 2024.06.12 20:37:33.311
188 6.0.0.356 2024.05.17 eab06 P P 685 299 2024.06.13 05:48:55.518 2024.06.13 05:48:56.203 2024.06.13 04:44:03.747 2024.06.13 04:44:04.046
189 6.0.0.355 2024.05.16 8dd6e P P 587 250 2024.06.13 07:56:36.761 2024.06.13 07:56:37.348 2024.06.13 06:51:48.914 2024.06.13 06:51:49.164
190 6.0.0.354 2024.05.15 d3adc P P 769 325 2024.06.13 11:02:30.733 2024.06.13 11:02:31.502 2024.06.13 09:52:29.406 2024.06.13 09:52:29.731
191 6.0.0.351 2024.05.14 2e3e0 P P 631 377 2024.06.13 16:16:18.370 2024.06.13 16:16:19.001 2024.06.13 15:05:38.019 2024.06.13 15:05:38.396

Elapsed time, ms. Chart for last 150 runs:

Last commits information (all timestamps in UTC):