cf848a

http://www.elijahqi.win/archives/626
A. From Y to Y
time limit per test
1 second

memory limit per test
256 megabytes

input
standard input

output
standard output

From beginning till end, this message has been waiting to be conveyed.

For a given unordered multiset of n lowercase English letters (“multi” means that a letter may appear more than once), we treat all letters as strings of length 1, and repeat the following operation n - 1 times:

Remove any two elements s and t from the set, and add their concatenation s + t to the set.
The cost of such operation is defined to be , where f(s, c) denotes the number of times character c appears in string s.

Given a non-negative integer k, construct any valid non-empty set of no more than 100 000 letters, such that the minimum accumulative cost of the whole process is exactly k. It can be shown that a solution always exists.

Input
The first and only line of input contains a non-negative integer k (0 ≤ k ≤ 100 000) — the required minimum cost.

Output
Output a non-empty string of no more than 100 000 lowercase English letters — any multiset satisfying the requirements, concatenated to be a string.

Note that the printed string doesn’t need to be the final concatenated string. It only needs to represent an unordered multiset of letters.

Examples
Input
12
Output
abababab
Input
3
Output
codeforces
Note
For the multiset {‘a’, ‘b’, ‘a’, ‘b’, ‘a’, ‘b’, ‘a’, ‘b’}, one of the ways to complete the process is as follows:

{“ab”, “a”, “b”, “a”, “b”, “a”, “b”}, with a cost of 0;
{“aba”, “b”, “a”, “b”, “a”, “b”}, with a cost of 1;
{“abab”, “a”, “b”, “a”, “b”}, with a cost of 1;
{“abab”, “ab”, “a”, “b”}, with a cost of 0;
{“abab”, “aba”, “b”}, with a cost of 1;
{“abab”, “abab”}, with a cost of 1;
{“abababab”}, with a cost of 8.
The total cost is 12, and it can be proved to be the minimum cost of the process.

由于这道题其实和怎么连接没有关系,判定应该也是spj 所以我们可以随意凑就好了

关于每个字母对于题目要求k值的贡献就是他在集合中出现的次数的一个递减的加法,出现次数*(出现次数-1)/2

With several experiments, you may have found that the “minimum cost” doesn’t make sense — the cost is always the same no matter how the characters are concatenated. Precisely, the cost of the process for a multiset of c1 a’s, c2 b’s, … and c26 z’s, is . It’s in this form because every pair of same characters will contribute 1 to the total cost.

Therefore we need to find such c1, c2, …, c26 so that . This can be done greedily and iteratively. Every time we subtract the maximum possible from k, and add c same new letters to the set, until k becomes 0. This c can be solved by any reasonable way, say quadratic formula, binary search or brute force. Time complexity veries from to or any acceptable complexity, depending on the choice of the method for finding c.

Of course, if a knapsack algorithm is used, it will use the minimum possible number of different letters, and works in .

#include<cstdio>
int k;
int main(){
    freopen("cf.in","r",stdin);
    scanf("%d",&k);
    for (int i=0;i<26;++i){
        int tmp=1;
        while (((tmp*(tmp+1))>>1)<=k) tmp++;
        k-=(tmp*(tmp-1))>>1;
        for (int j=0;j<tmp;++j) printf("%c",'a'+i);
    }
    return 0;
}
2025-05-30 13:31:53.971 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:31:53.973 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:31:53.975 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:31:53.986 [NOTICE] Opening Socks listener on 127.0.0.1:9150 2025-05-30 13:31:53.986 [NOTICE] Opened Socks listener connection (ready) on 127.0.0.1:9150 2025-05-30 13:31:55.180 [NOTICE] Bridge 'Bridge' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:259c:faa6:24a9:cce0:c60f:4642]:443) based on the configured Bridge address. 2025-05-30 13:31:55.181 [NOTICE] Bridge 'bauruine' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:cb62:8f57:5a43:d9d0:a488:27e2]:443) based on the configured Bridge address. 2025-05-30 13:31:55.181 [NOTICE] Bootstrapped 1% (conn_pt): Connecting to pluggable transport 2025-05-30 13:31:55.192 [NOTICE] Bootstrapped 2% (conn_done_pt): Connected to pluggable transport 2025-05-30 13:31:55.448 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:31:55.450 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:31:55.845 [NOTICE] Bootstrapped 10% (conn_done): Connected to a relay 2025-05-30 13:31:55.846 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:31:55.846 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:31:55.846 [ERR] libevent call with win32 failed: Invalid argument [WSAEINVAL ] [10022] 2025-05-30 13:32:18.354 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:32:18.356 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:32:18.358 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:32:27.362 [NOTICE] Opening Socks listener on 127.0.0.1:9150 2025-05-30 13:32:27.362 [NOTICE] Opened Socks listener connection (ready) on 127.0.0.1:9150 2025-05-30 13:32:28.624 [NOTICE] Bridge 'Bridge' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:259c:faa6:24a9:cce0:c60f:4642]:443) based on the configured Bridge address. 2025-05-30 13:32:28.625 [NOTICE] Bridge 'bauruine' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:cb62:8f57:5a43:d9d0:a488:27e2]:443) based on the configured Bridge address. 2025-05-30 13:32:28.625 [NOTICE] Bootstrapped 1% (conn_pt): Connecting to pluggable transport 2025-05-30 13:32:28.626 [NOTICE] Bootstrapped 2% (conn_done_pt): Connected to pluggable transport 2025-05-30 13:32:29.041 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:32:29.045 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:32:29.220 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:32:29.220 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:32:29.363 [NOTICE] Bootstrapped 10% (conn_done): Connected to a relay 2025-05-30 13:32:29.605 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:32:29.605 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:32:29.617 [NOTICE] Bootstrapped 14% (handshake): Handshaking with a relay 2025-05-30 13:32:29.876 [NOTICE] Bootstrapped 15% (handshake_done): Handshake with a relay done 2025-05-30 13:32:29.877 [NOTICE] Bootstrapped 20% (onehop_create): Establishing an encrypted directory connection 2025-05-30 13:32:30.121 [NOTICE] Bootstrapped 25% (requesting_status): Asking for networkstatus consensus 2025-05-30 13:32:30.148 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:32:30.149 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:32:30.445 [NOTICE] Bridge 'Bridge' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:259c:faa6:24a9:cce0:c60f:4642]:443) based on the configured Bridge address. 2025-05-30 13:32:30.445 [NOTICE] new bridge descriptor 'Bridge' (fresh): $23958FC105E58061AFD2DECC61D363F28AB36490~Bridge [ar26PaMvMtnp3TVPVc6VmFRSl/+bMf/59xuRvLdSCQk] at 212.132.102.214 and [2001:db8:259c:faa6:24a9:cce0:c60f:4642] 2025-05-30 13:32:30.618 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:32:30.619 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:32:31.059 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:32:31.060 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:32:32.101 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:32:32.101 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:32:32.707 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:32:32.707 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:32:33.164 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:32:33.164 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:32:34.181 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:32:34.182 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:32:35.212 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:32:35.213 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:32:37.207 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:32:37.208 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:32:37.739 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:32:37.740 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:32:41.253 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:32:41.254 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:32:44.903 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:32:44.981 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:32:50.660 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:32:50.662 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:32:50.664 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:32:50.672 [NOTICE] Opening Socks listener on 127.0.0.1:9150 2025-05-30 13:32:50.672 [NOTICE] Opened Socks listener connection (ready) on 127.0.0.1:9150 2025-05-30 13:32:51.905 [NOTICE] Bridge 'Bridge' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:259c:faa6:24a9:cce0:c60f:4642]:443) based on the configured Bridge address. 2025-05-30 13:32:51.906 [NOTICE] Bridge 'bauruine' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:cb62:8f57:5a43:d9d0:a488:27e2]:443) based on the configured Bridge address. 2025-05-30 13:32:51.906 [NOTICE] Bootstrapped 1% (conn_pt): Connecting to pluggable transport 2025-05-30 13:32:51.912 [NOTICE] Bootstrapped 2% (conn_done_pt): Connected to pluggable transport 2025-05-30 13:32:51.989 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:32:51.991 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:32:52.513 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:32:52.514 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:32:52.778 [NOTICE] Bootstrapped 10% (conn_done): Connected to a relay 2025-05-30 13:32:52.881 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:32:52.882 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:32:53.048 [NOTICE] Bootstrapped 14% (handshake): Handshaking with a relay 2025-05-30 13:32:53.308 [NOTICE] Bootstrapped 15% (handshake_done): Handshake with a relay done 2025-05-30 13:32:53.308 [NOTICE] Bootstrapped 20% (onehop_create): Establishing an encrypted directory connection 2025-05-30 13:32:53.362 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:32:53.362 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:32:53.572 [NOTICE] Bootstrapped 25% (requesting_status): Asking for networkstatus consensus 2025-05-30 13:32:53.835 [NOTICE] Bridge 'Bridge' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:259c:faa6:24a9:cce0:c60f:4642]:443) based on the configured Bridge address. 2025-05-30 13:32:54.293 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:32:54.294 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:32:54.803 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:32:54.804 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:32:55.360 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:32:55.361 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:32:57.333 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:32:57.333 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:32:57.895 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:32:57.896 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:33:00.290 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:33:00.294 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:33:02.388 [NOTICE] Bridge 'bauruine' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:cb62:8f57:5a43:d9d0:a488:27e2]:443) based on the configured Bridge address. 2025-05-30 13:33:02.388 [NOTICE] new bridge descriptor 'bauruine' (fresh): $16D0EF186DA080CE7A4968072920E08CA7729AED~bauruine [I/qM7fRZmL/uq60qzGEoQLNxmhleywJ5H/FY3yCHTDI] at 95.214.53.96 and [2001:db8:cb62:8f57:5a43:d9d0:a488:27e2] 2025-05-30 13:33:03.341 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:33:03.342 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:33:04.827 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:33:04.827 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:33:08.407 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:33:08.408 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:33:12.967 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 93.174.85.219:8081 ID=<none> RSA_ID=FC012059FC8E77C56CE0D049199BBD136109CDE3 ("general SOCKS server failure") 2025-05-30 13:33:12.970 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 34.219.243.226:60002 ID=<none> RSA_ID=89603E5FEB695C433FB8FE47C39594DE555C3429 ("general SOCKS server failure") 2025-05-30 13:33:12.970 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 115.69.44.202:10022 ID=<none> RSA_ID=0AAC6B82A6CCDAF3381A0F3CD4B39BCF1D79985F ("general SOCKS server failure") 2025-05-30 13:33:12.971 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 189.10.119.163:9090 ID=<none> RSA_ID=EE7595ED9D6370212C78F1CC18263361F0A2C815 ("general SOCKS server failure") 2025-05-30 13:33:12.971 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 149.248.76.98:8888 ID=<none> RSA_ID=CCD49779E3F9466BD4DDE3D7B256A2A173954F41 ("general SOCKS server failure") 2025-05-30 13:33:12.971 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 185.45.226.2:33533 ID=<none> RSA_ID=30E95F3BC992773E2F1E81CF420B149F651E4806 ("general SOCKS server failure") 2025-05-30 13:33:12.972 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 45.129.185.197:80 ID=<none> RSA_ID=9FED9B691AA5C25A42690EC5AB0CB6BF9ABB95F0 ("general SOCKS server failure") 2025-05-30 13:33:12.977 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing signaling.privacy-vbox.de:443: dial tcp 141.147.13.151:443: connectex: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. 2025-05-30 13:33:12.979 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:8e11:37cf:5167:5fce:4650:c2f8]:443 ID=<none> RSA_ID=5AE50E81167318FE0A152D4F050C839DB42AB9B8 ("general SOCKS server failure") 2025-05-30 13:33:14.595 [NOTICE] Bootstrapped 75% (enough_dirinfo): Loaded enough directory info to build circuits 2025-05-30 13:33:14.595 [NOTICE] Bootstrapped 90% (ap_handshake_done): Handshake finished with a relay to build circuits 2025-05-30 13:33:14.595 [NOTICE] Bootstrapped 95% (circuit_create): Establishing a Tor circuit 2025-05-30 13:33:15.153 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:33:15.155 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:33:15.495 [NOTICE] Bootstrapped 100% (done): Done 2025-05-30 13:33:16.258 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:33:16.258 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:33:25.182 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:33:25.183 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:33:27.540 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:33:27.540 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:33:31.203 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:33:31.205 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:33:35.633 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 189.10.119.163:9090 ID=<none> RSA_ID=EE7595ED9D6370212C78F1CC18263361F0A2C815 ("general SOCKS server failure") 2025-05-30 13:33:39.199 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 34.219.243.226:60002 ID=<none> RSA_ID=89603E5FEB695C433FB8FE47C39594DE555C3429 ("general SOCKS server failure") 2025-05-30 13:33:39.965 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 115.69.44.202:10022 ID=<none> RSA_ID=0AAC6B82A6CCDAF3381A0F3CD4B39BCF1D79985F ("general SOCKS server failure") 2025-05-30 13:33:41.032 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 93.174.85.219:8081 ID=<none> RSA_ID=FC012059FC8E77C56CE0D049199BBD136109CDE3 ("general SOCKS server failure") 2025-05-30 13:33:42.207 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:33:42.208 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:33:44.126 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing signaling.privacy-vbox.de:443: dial tcp 141.147.13.151:443: connectex: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. 2025-05-30 13:33:44.127 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:8e11:37cf:5167:5fce:4650:c2f8]:443 ID=<none> RSA_ID=5AE50E81167318FE0A152D4F050C839DB42AB9B8 ("general SOCKS server failure") 2025-05-30 13:33:45.180 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 185.45.226.2:33533 ID=<none> RSA_ID=30E95F3BC992773E2F1E81CF420B149F651E4806 ("general SOCKS server failure") 2025-05-30 13:33:47.064 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 45.129.185.197:80 ID=<none> RSA_ID=9FED9B691AA5C25A42690EC5AB0CB6BF9ABB95F0 ("general SOCKS server failure") 2025-05-30 13:33:50.272 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 149.248.76.98:8888 ID=<none> RSA_ID=CCD49779E3F9466BD4DDE3D7B256A2A173954F41 ("general SOCKS server failure") 2025-05-30 13:33:54.208 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:33:54.209 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:34:03.144 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 93.174.85.219:8081 ID=<none> RSA_ID=FC012059FC8E77C56CE0D049199BBD136109CDE3 ("general SOCKS server failure") 2025-05-30 13:34:04.875 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:34:04.875 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:34:10.471 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:34:10.473 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:34:10.475 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:34:10.482 [NOTICE] Opening Socks listener on 127.0.0.1:9150 2025-05-30 13:34:10.483 [NOTICE] Opened Socks listener connection (ready) on 127.0.0.1:9150 2025-05-30 13:34:11.741 [NOTICE] Bridge 'Bridge' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:259c:faa6:24a9:cce0:c60f:4642]:443) based on the configured Bridge address. 2025-05-30 13:34:11.741 [NOTICE] Bridge 'bauruine' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:cb62:8f57:5a43:d9d0:a488:27e2]:443) based on the configured Bridge address. 2025-05-30 13:34:11.741 [NOTICE] Bootstrapped 1% (conn_pt): Connecting to pluggable transport 2025-05-30 13:34:11.742 [NOTICE] Bootstrapped 2% (conn_done_pt): Connected to pluggable transport 2025-05-30 13:34:11.817 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:34:11.819 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:34:12.338 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:34:12.339 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:34:12.588 [NOTICE] Bootstrapped 10% (conn_done): Connected to a relay 2025-05-30 13:34:12.650 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:34:12.651 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:34:12.864 [NOTICE] Bootstrapped 14% (handshake): Handshaking with a relay 2025-05-30 13:34:13.134 [NOTICE] Bootstrapped 15% (handshake_done): Handshake with a relay done 2025-05-30 13:34:13.135 [NOTICE] Bootstrapped 20% (onehop_create): Establishing an encrypted directory connection 2025-05-30 13:34:13.138 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:34:13.139 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:34:13.406 [NOTICE] Bootstrapped 25% (requesting_status): Asking for networkstatus consensus 2025-05-30 13:34:13.674 [NOTICE] Bridge 'Bridge' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:259c:faa6:24a9:cce0:c60f:4642]:443) based on the configured Bridge address. 2025-05-30 13:34:13.689 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:34:13.690 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:34:14.221 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:34:14.221 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:34:15.676 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:34:15.678 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:34:16.161 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:34:16.163 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:34:19.217 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:34:19.219 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:34:19.537 [NOTICE] Bridge 'bauruine' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:cb62:8f57:5a43:d9d0:a488:27e2]:443) based on the configured Bridge address. 2025-05-30 13:34:19.749 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:34:19.749 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:34:25.762 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:34:25.763 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:34:27.319 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:34:27.320 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:34:32.828 [NOTICE] Bootstrapped 75% (enough_dirinfo): Loaded enough directory info to build circuits 2025-05-30 13:34:32.828 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing signaling.privacy-vbox.de:443: dial tcp 141.147.13.151:443: connectex: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. 2025-05-30 13:34:33.423 [NOTICE] Bootstrapped 90% (ap_handshake_done): Handshake finished with a relay to build circuits 2025-05-30 13:34:33.423 [NOTICE] Bootstrapped 95% (circuit_create): Establishing a Tor circuit 2025-05-30 13:34:33.424 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 185.45.226.2:33533 ID=<none> RSA_ID=30E95F3BC992773E2F1E81CF420B149F651E4806 ("general SOCKS server failure") 2025-05-30 13:34:33.424 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 115.69.44.202:10022 ID=<none> RSA_ID=0AAC6B82A6CCDAF3381A0F3CD4B39BCF1D79985F ("general SOCKS server failure") 2025-05-30 13:34:33.424 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:8e11:37cf:5167:5fce:4650:c2f8]:443 ID=<none> RSA_ID=5AE50E81167318FE0A152D4F050C839DB42AB9B8 ("general SOCKS server failure") 2025-05-30 13:34:33.424 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 45.129.185.197:80 ID=<none> RSA_ID=9FED9B691AA5C25A42690EC5AB0CB6BF9ABB95F0 ("general SOCKS server failure") 2025-05-30 13:34:33.424 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 189.10.119.163:9090 ID=<none> RSA_ID=EE7595ED9D6370212C78F1CC18263361F0A2C815 ("general SOCKS server failure") 2025-05-30 13:34:33.424 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 93.174.85.219:8081 ID=<none> RSA_ID=FC012059FC8E77C56CE0D049199BBD136109CDE3 ("general SOCKS server failure") 2025-05-30 13:34:33.424 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 149.248.76.98:8888 ID=<none> RSA_ID=CCD49779E3F9466BD4DDE3D7B256A2A173954F41 ("general SOCKS server failure") 2025-05-30 13:34:33.424 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 34.219.243.226:60002 ID=<none> RSA_ID=89603E5FEB695C433FB8FE47C39594DE555C3429 ("general SOCKS server failure") 2025-05-30 13:34:33.490 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:34:33.492 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:34:34.299 [NOTICE] Bootstrapped 100% (done): Done 2025-05-30 13:34:47.473 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:34:47.474 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:34:48.202 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:34:48.203 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:34:54.993 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 34.219.243.226:60002 ID=<none> RSA_ID=89603E5FEB695C433FB8FE47C39594DE555C3429 ("general SOCKS server failure") 2025-05-30 13:34:55.958 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing signaling.privacy-vbox.de:443: dial tcp 141.147.13.151:443: connectex: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. 2025-05-30 13:34:56.039 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:8e11:37cf:5167:5fce:4650:c2f8]:443 ID=<none> RSA_ID=5AE50E81167318FE0A152D4F050C839DB42AB9B8 ("general SOCKS server failure") 2025-05-30 13:34:56.039 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 185.45.226.2:33533 ID=<none> RSA_ID=30E95F3BC992773E2F1E81CF420B149F651E4806 ("general SOCKS server failure") 2025-05-30 13:34:58.132 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 189.10.119.163:9090 ID=<none> RSA_ID=EE7595ED9D6370212C78F1CC18263361F0A2C815 ("general SOCKS server failure") 2025-05-30 13:34:58.132 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 115.69.44.202:10022 ID=<none> RSA_ID=0AAC6B82A6CCDAF3381A0F3CD4B39BCF1D79985F ("general SOCKS server failure") 2025-05-30 13:34:59.053 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 93.174.85.219:8081 ID=<none> RSA_ID=FC012059FC8E77C56CE0D049199BBD136109CDE3 ("general SOCKS server failure") 2025-05-30 13:34:59.114 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:34:59.114 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:34:59.962 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 149.248.76.98:8888 ID=<none> RSA_ID=CCD49779E3F9466BD4DDE3D7B256A2A173954F41 ("general SOCKS server failure") 2025-05-30 13:35:01.950 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with 45.129.185.197:80 ID=<none> RSA_ID=9FED9B691AA5C25A42690EC5AB0CB6BF9ABB95F0 ("general SOCKS server failure") 2025-05-30 13:35:04.597 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:35:04.597 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:35:05.158 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:35:05.159 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:35:12.248 [WARN] tor_bug_occurred_: Bug: conflux_util.h:31: CIRCUIT_IS_CONFLUX: Non-fatal assertion circ->purpose != CIRCUIT_PURPOSE_CONFLUX_LINKED failed. (on Tor 0.4.8.16 64ccafd8115ecdec) 2025-05-30 13:35:12.248 [WARN] Bug: Tor 0.4.8.16 (git-64ccafd8115ecdec): Non-fatal assertion circ->purpose != CIRCUIT_PURPOSE_CONFLUX_LINKED failed in CIRCUIT_IS_CONFLUX at conflux_util.h:31. (Stack trace not available) (on Tor 0.4.8.16 64ccafd8115ecdec) 2025-05-30 13:35:12.248 [WARN] tor_bug_occurred_: Bug: conflux_util.h:31: CIRCUIT_IS_CONFLUX: Non-fatal assertion circ->purpose != CIRCUIT_PURPOSE_CONFLUX_LINKED failed. (on Tor 0.4.8.16 64ccafd8115ecdec) 2025-05-30 13:35:12.248 [WARN] Bug: Tor 0.4.8.16 (git-64ccafd8115ecdec): Non-fatal assertion circ->purpose != CIRCUIT_PURPOSE_CONFLUX_LINKED failed in CIRCUIT_IS_CONFLUX at conflux_util.h:31. (Stack trace not available) (on Tor 0.4.8.16 64ccafd8115ecdec) 2025-05-30 13:35:13.157 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:35:13.157 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:35:17.089 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:8e11:37cf:5167:5fce:4650:c2f8]:443 ID=<none> RSA_ID=5AE50E81167318FE0A152D4F050C839DB42AB9B8 ("general SOCKS server failure") 2025-05-30 13:35:17.089 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing signaling.privacy-vbox.de:443: dial tcp 141.147.13.151:443: connectex: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. 2025-05-30 13:35:23.087 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:35:23.090 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:35:23.093 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:35:23.100 [NOTICE] Opening Socks listener on 127.0.0.1:9150 2025-05-30 13:35:23.100 [NOTICE] Opened Socks listener connection (ready) on 127.0.0.1:9150 2025-05-30 13:35:23.848 [NOTICE] Application request when we haven't used client functionality lately. Optimistically trying known bridges again. 2025-05-30 13:35:24.267 [NOTICE] Bridge 'Bridge' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:259c:faa6:24a9:cce0:c60f:4642]:443) based on the configured Bridge address. 2025-05-30 13:35:24.267 [NOTICE] Bridge 'bauruine' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:cb62:8f57:5a43:d9d0:a488:27e2]:443) based on the configured Bridge address. 2025-05-30 13:35:24.267 [NOTICE] Bootstrapped 1% (conn_pt): Connecting to pluggable transport 2025-05-30 13:35:24.269 [NOTICE] Bootstrapped 2% (conn_done_pt): Connected to pluggable transport 2025-05-30 13:35:24.340 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:35:24.343 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:35:24.900 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:35:24.900 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:35:24.906 [NOTICE] Bootstrapped 10% (conn_done): Connected to a relay 2025-05-30 13:35:25.187 [NOTICE] Bootstrapped 14% (handshake): Handshaking with a relay 2025-05-30 13:35:25.251 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:35:25.252 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:35:25.449 [NOTICE] Bootstrapped 15% (handshake_done): Handshake with a relay done 2025-05-30 13:35:25.449 [NOTICE] Bootstrapped 20% (onehop_create): Establishing an encrypted directory connection 2025-05-30 13:35:25.714 [NOTICE] Bootstrapped 25% (requesting_status): Asking for networkstatus consensus 2025-05-30 13:35:25.752 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:35:25.752 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:35:25.924 [NOTICE] Bridge 'Bridge' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:259c:faa6:24a9:cce0:c60f:4642]:443) based on the configured Bridge address. 2025-05-30 13:35:26.250 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:35:26.251 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:35:26.797 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:35:26.799 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:35:27.278 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:35:32.632 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:35:32.634 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:35:32.636 [NOTICE] DisableNetwork is set. Tor will not make or accept non-control network connections. Shutting down all existing connections. 2025-05-30 13:35:32.643 [NOTICE] Opening Socks listener on 127.0.0.1:9150 2025-05-30 13:35:32.644 [NOTICE] Opened Socks listener connection (ready) on 127.0.0.1:9150 2025-05-30 13:35:33.889 [NOTICE] Bridge 'Bridge' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:259c:faa6:24a9:cce0:c60f:4642]:443) based on the configured Bridge address. 2025-05-30 13:35:33.889 [NOTICE] Bridge 'bauruine' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:cb62:8f57:5a43:d9d0:a488:27e2]:443) based on the configured Bridge address. 2025-05-30 13:35:33.889 [NOTICE] Bootstrapped 1% (conn_pt): Connecting to pluggable transport 2025-05-30 13:35:33.894 [NOTICE] Bootstrapped 2% (conn_done_pt): Connected to pluggable transport 2025-05-30 13:35:33.964 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:35:33.967 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:35:34.488 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:35:34.493 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:35:34.497 [NOTICE] Bootstrapped 10% (conn_done): Connected to a relay 2025-05-30 13:35:34.735 [NOTICE] Bootstrapped 14% (handshake): Handshaking with a relay 2025-05-30 13:35:34.797 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:35:34.799 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:35:34.925 [NOTICE] Bootstrapped 15% (handshake_done): Handshake with a relay done 2025-05-30 13:35:34.926 [NOTICE] Bootstrapped 20% (onehop_create): Establishing an encrypted directory connection 2025-05-30 13:35:35.117 [NOTICE] Bootstrapped 25% (requesting_status): Asking for networkstatus consensus 2025-05-30 13:35:35.279 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:35:35.280 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:35:35.311 [NOTICE] Bridge 'Bridge' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:259c:faa6:24a9:cce0:c60f:4642]:443) based on the configured Bridge address. 2025-05-30 13:35:36.797 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:35:36.798 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:35:37.295 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:35:37.297 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:35:39.795 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:35:39.795 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:35:42.308 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:35:42.309 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:35:46.133 [NOTICE] Bridge 'bauruine' has both an IPv4 and an IPv6 address. Will prefer using its IPv6 address ([2001:db8:cb62:8f57:5a43:d9d0:a488:27e2]:443) based on the configured Bridge address. 2025-05-30 13:35:46.354 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:35:46.355 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure") 2025-05-30 13:35:47.012 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: error dialing arinalee.amelia.ec:443: dial tcp: lookup arinalee.amelia.ec: no such host 2025-05-30 13:35:47.012 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:2e6a:63f2:456a:1cc0:690e:d78d]:443 ID=<none> RSA_ID=C05C827E5A85ACAE4CD73A8A5C0FA1E8EDFA4FAD ("general SOCKS server failure") 2025-05-30 13:35:49.427 [ERR] Managed proxy "TorBrowser\Tor\PluggableTransports\lyrebird.exe": Error dialing: unrecognized reply 2025-05-30 13:35:49.429 [WARN] Proxy Client: unable to connect OR connection (handshaking (proxy)) with [2001:db8:f55d:9607:2c09:5e8c:32de:9a7f]:443 ID=<none> RSA_ID=F1CF5DE3C36E879573C87295017AE25E60183EEA ("general SOCKS server failure")
05-31
Using cached https://mirrors.aliyun.com/pypi/packages/91/fe/114de1746a8fdbdc9518fbef2710933179882a5cfcf88d42d302fa66d15b/ultralytics-8.3.66-py3-none-any.whl (911 kB) Using cached https://mirrors.aliyun.com/pypi/packages/8d/bd/96d49768f3587c0495cba426903777b321ecf053aaea838dfbb4b1a0736a/ultralytics-8.3.65-py3-none-any.whl (911 kB) Using cached https://mirrors.aliyun.com/pypi/packages/7c/9f/e13ea4f76be530f47670c7e92cecdf4106a51b8c5c1771632cbe258a3e13/ultralytics-8.3.64-py3-none-any.whl (910 kB) Using cached https://mirrors.aliyun.com/pypi/packages/1b/0c/f6ef479f001493ffa935d50817e0dcd848a3c3f3f0813d943b85454e8a3f/ultralytics-8.3.63-py3-none-any.whl (910 kB) Using cached https://mirrors.aliyun.com/pypi/packages/ca/dc/c2a20bc85108b264f1d9b027a6c6b2d61cf64ac4c3125c07276559328deb/ultralytics-8.3.62-py3-none-any.whl (910 kB) Using cached https://mirrors.aliyun.com/pypi/packages/18/8e/87cf91492cd6b5a0d71735b69658f34841d426fc5b148656cd3a5768a470/ultralytics-8.3.61-py3-none-any.whl (906 kB) Using cached https://mirrors.aliyun.com/pypi/packages/b1/fa/c0959e56abe9c1335aceed41a8689253ce61b33e7af2497eb2322a56d6dd/ultralytics-8.3.60-py3-none-any.whl (906 kB) Using cached https://mirrors.aliyun.com/pypi/packages/13/7d/cc6718e94444fd882ce3d7f11137c11ee2198de1e6df87ae69c2c18dd360/ultralytics-8.3.59-py3-none-any.whl (906 kB) Using cached https://mirrors.aliyun.com/pypi/packages/99/d6/931e939060d8ff54c6f1b05f3481547a8f454fb100e517dbe7a1559f7de0/ultralytics-8.3.58-py3-none-any.whl (905 kB) Using cached https://mirrors.aliyun.com/pypi/packages/ea/b7/8657796378d1f89f6fe49008dc0e0c56f37e8b4c8dbb6fa76e6bdc3678aa/ultralytics-8.3.57-py3-none-any.whl (905 kB) Using cached https://mirrors.aliyun.com/pypi/packages/44/45/76300c42161f52ab3c1b0b1ce23e04d7ade4a84f7082d4344fa8f37f0d19/ultralytics-8.3.56-py3-none-any.whl (904 kB) Using cached https://mirrors.aliyun.com/pypi/packages/c4/af/9d2d794f6a72ef75c8be1771b04dd043ded99744e59b9696bb090fbf9ebb/ultralytics-8.3.55-py3-none-a
最新发布
06-01
+ buildah bud --tls-verify=false --format=docker -t 11.11.157.164:31104/a6-uat/5715opss-front:v648_8195af64ad18fa4c4e5c3565358eac5fb13e461e -f Dockerfile . STEP 1: FROM 11.11.174.85:28086/cnpcrd/node:14.19.1-pnpm-nodesass AS builder Getting image source signatures Copying blob sha256:c398d8bd2d496fc1ba9d4658870242ce78aefe3041899476238df6cd427638f3 Copying blob sha256:7d66b83ec869a899bc8364af9c9eb0f1a5ba6907f699ef52f3182e19e2598924 Copying blob sha256:22360a9558f73f04bb5e4dbe6dbe1584cb913040ae66388a8db66fc2ed131002 Copying blob sha256:d88439e7b50a5f3923f67f432b6863c1e11adf4e45bf9740515d2cc01fd8e155 Copying blob sha256:f260dee23bc81622ef145aff36ad9816cca1c98bfa9361ad1bdf03c8975b104e Copying blob sha256:5f327ea23de9da0941be6aa9b1b0106716beba2b2221ccc2cf867db344fdc38b Copying blob sha256:c510cb256549cba034277b7ba3d45f821098be40e2d1ab716ebcbb2c82ad58e8 Copying blob sha256:39a6cf4e71acef62f9dc6133d8e2798afd190aa5d98df68c2c6a0853348c2a0b Copying blob sha256:5b88e0b6e02ac27e25195d6ef326172311c848a055cbe847de5e20547c526e55 Copying blob sha256:50868247d2ce4b9e47ed00d5c40c55746315be92ed203131e2139644a0cf22eb Copying blob sha256:e5e5c5e3f6d1226900e6c2d01182178f233df381354c7b91a233220d5d20d76a Copying blob sha256:db8034a611f27836dfac1f420b062134399233963dce16661cff75b190d7fa03 Copying blob sha256:88bc12f9a5d94abd68dd9f201555592838d5de85ab0b5cc8248199aa3f484a29 Copying blob sha256:80fbe3e8702a17df69ca8074656be9f7bd7fed87fd2d31dc7ec875b7249ec454 Copying blob sha256:8c1f72c02d3e7d7e3db33be2b133937124963fd2ac77215bd703129b4bae4c95 Copying blob sha256:009593723405a46968929d8221545f13495e3ff038367157a3597c2b8614d5ca Copying config sha256:2cb9f3e953292fdbce9015df8721a9f2336b49313ca036d96b52898a5d7af190 Writing manifest to image destination Storing signatures STEP 2: ARG profile STEP 3: ENV profile=${profile:-build} STEP 4: WORKDIR /usr/src/app STEP 5: COPY . ./ STEP 6: FROM 11.11.174.85:28086/cnpcrd/nginx-curl:v1.18.0 Getting image source signatures Copying blob sha256:d4e560a3091589fb95278a386add48626fbbe5bea3220576d6c4a838b4c65b24 Copying blob sha256:81bf9dd9cea603de3f08a37fb6f9156372709d0036479e6950b08b8b08dcf225 Copying blob sha256:47927ca6802f832d4000bfcde5939632a8ff52d6e4149187f198834556ee16e9 Copying blob sha256:4ede7ada96f6d9d2bc1f6ef734c74b5c0bc60a2f64e8c8d368055152d6dfe689 Copying blob sha256:f11c1adaa26e078479ccdd45312ea3b88476441b91be0ec898a7e07bfd05badc Copying blob sha256:9ac6875eca605a2e2f0a434d6a2f461356f32dae78fb3d4b9be23c2d02d46ac3 Copying blob sha256:e63758897ccc963cadd6f56a001bfcf5dc41dacce6a4e42ca1b3870f1cb91d14 Copying blob sha256:434abd9d8a2b02240f4daaeca44eb14e422ff394d4e1628d6d3208faece25d7c Copying blob sha256:bf49aa545a9f82a3131959a5232f51eee2b047fecaf6ff5a90410692be25b6e1 Copying blob sha256:d93ade5d972d5ede15f5d0fbc912f6f358b805c78c6ffd996a00e3e006aadd81 Copying blob sha256:c7bc6a87af944df6f159be206ce20093a771768e10f648de02b5aaae55bef62b Copying config sha256:75919dd59525e8fe57a70a5499ea69eee8c1eddaa61bac53e3c7212e5a232b82 Writing manifest to image destination Storing signatures STEP 7: COPY --from=builder /usr/src/app/dist /usr/share/nginx/html error building at STEP "COPY --from=builder /usr/src/app/dist /usr/share/nginx/html": no files found matching "/var/lib/containers/storage/overlay/bc9580993deabf5cc10eafbd76345ba0501fadfa1f733cf2fe0be5f44b80696d/merged/usr/src/app/dist": no such file or directory
03-19
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值