microsoft / pylance-release

Documentation and issues for Pylance
Creative Commons Attribution 4.0 International
1.7k stars 768 forks source link

Easier way to get rid of random nonsensical errors? #4138

Closed thesadru closed 1 year ago

thesadru commented 1 year ago

For months pylance had a tendency to just randomly show nonsensical errors that do not show up when running pyright in the cli. This has been partially fixed several times and these days a simple file change can make the errors go away in sometimes even several files.

Is there however a way to make pylance do a quick reload of all the files targeted by pyright to make sure the errors don't have to be updated manually?

Attributes that definitely do exist: image

there are always several errors across multiple files (becomes 0 after any edit): image

rchiodo commented 1 year ago

I think what you're saying is that errors show that are out of date?

The surest way to get pylance to reload is to run Developer: Reload Window but that might be too big of a hammer.

Some other ways are to:

However, pylance shouldn't be showing out of date diagnostics.

Can you share your settings.json? Or perhaps some more steps that cause a repro?

erictraut commented 1 year ago

This could be indicative of an error that is reported only when certain evaluation ordering occurs. Pyright uses just-in-time (lazy) evaluation, so the evaluation order of expressions can vary depending on the order in which you open files, edit files, hover over identifiers, etc. This makes the evaluation order somewhat non-deterministic (or at least, difficult to predict). We have occasionally had bugs in the type evaluator that causes an error to be reported for some orderings and not for others. Obviously, that should never happen if things are working correctly. These tend to be very difficult bugs to repro because they're intermittent. Does that sound like what you're seeing? If so, we'll need to put our heads together to come up with a way to repro the problem.

erictraut commented 1 year ago

Is it always the same error message? Or perhaps the error is on a particular type of expression (a list or tuple, for example)? Any clues or patterns that you can discern may be helpful.

thesadru commented 1 year ago

Can you share your settings.json? Or perhaps some more steps that cause a repro?

There are no settings.json in that example. As far as I know, this should be a general recurring issue as I have been experiencing it on various machines. It's always sudden and not really predictable for me.

I think what you're saying is that errors show that are out of date?

The diagnostics cannot be out of date considering this also happens to code in files that have not been touched during that session.

We have occasionally had bugs in the type evaluator that causes an error to be reported for some orderings and not for others. [...] Does that sound like what you're seeing?

I have unfortunately never tried to check for different orderings considering the errors go away if the file is attempted to be edited.

Is it always the same error message? Or perhaps the error is on a particular type of expression (a list or tuple, for example)? Any clues or patterns that you can discern may be helpful.

In previous versions this issue was very commonly related to imports, these days it's however for seemingly random tokens - unknown variables, attributes, and members, unused variables, etc.

erictraut commented 1 year ago

Do you set python.analysis.diagnosticMode to "workspace", by any chance? Or do you have it configured to report diagnostics for "openFilesOnly"? If it's the latter (which is the default setting), then I presume that the "files that have not been touched" are open in your editor at the time the errors appear?

thesadru commented 1 year ago

I have it set on workspace for my global user settings, yes. It can happen in any file that can be analyzed by pyright based on pyproject.toml

erictraut commented 1 year ago

OK, that's a good hint. Very few pylance users use "workspace" diagnostic mode, which would explain why we haven't received other reports of this problem. I'll see if I can find a repro.

Do you happen to remember when this started to occur? Was there a point in time when you remember it not occurring? I'm just trying to pin down whether it was a regression or something that has always existed.

thesadru commented 1 year ago

I have a feeling that the problems with imports go back more than a year but I have no idea how long it's happening for other diagnostics. A few months at least that's for sure. At some point, I kinda became accustomed to it, unfortunately.

erictraut commented 1 year ago

OK, thanks for the hints. I just tried loading a big project (250K LOC) and spent some time opening editing and closing files to force reanalysis of portions of the project. I didn't encounter anything like what you're seeing. Like I said, these can be really elusive, so it may take a while to gather enough clues.

One thought is that this might be occurring after we hit our internal memory limit and flush the in-memory caches to make more space. When we do this, we log it in the Output. If/when you see this happen again, please switch tot he Output window for pylance ("Python Language Server") and see if there's any indication of this.

And if you encounter any other clues or detect any other patterns, please let us know.

thesadru commented 1 year ago

Correct me if I'm wrong, but if this is really an actual issue it should probably stay open no?

debonte commented 1 year ago

Sorry, I guess we misinterpreted Eric's last message. I'll reopen. Let us know if you find any other clues.

maflAT commented 1 year ago

I might have another clue.

I noticed the same sporadic non-sensical errors. Also using workspace diagnostic mode. The project that showed those errors also has some import cycles. (Not present at runtime, only when type checking.) I figured maybe that might have something to do with it. Because as @thesadru mentioned, it started with unknown import symbols.

Sadly i can't publish the code here and i was not able to reproduce it with a minimal example.

rchiodo commented 1 year ago

I'm going to close this until we can get a repro. Without that there's not a way for us to act on it.

thesadru commented 1 year ago

It happened again at some point. image

triggered while my CI was running, might be caused by that

way too many logs ``` 2023-05-16 21:51:26.014 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:51:26.015 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:51:27.576 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:51:27.580 [info] (5772) [FG] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\routes.py (5ms) 2023-05-16 21:51:27.580 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:51:28.143 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:51:29.388 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:51:32.802 [info] (5772) Background analysis message: setFileOpened 2023-05-16 21:51:32.803 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:51:32.842 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:51:32.844 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:51:32.845 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:51:33.483 [info] (5772) Background analysis message: analyze 2023-05-16 21:51:33.640 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:51:33.715 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:51:33.781 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:51:33.866 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:51:33.933 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:51:33.933 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:51:34.601 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:51:34.646 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:51:35.844 [info] (5772) Background analysis message: setFileClosed 2023-05-16 21:51:35.884 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:51:35.885 [info] (5772) [FG] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\gacha.py (5ms) 2023-05-16 21:51:35.885 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:51:36.172 [info] (5772) Background analysis message: analyze 2023-05-16 21:51:36.218 [info] (5772) Background analysis message: setFileClosed 2023-05-16 21:51:36.220 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:51:36.220 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:51:36.569 [info] (5772) Background analysis message: analyze 2023-05-16 21:51:38.131 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:51:38.146 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:51:38.387 [info] (5772) Background analysis message: setFileClosed 2023-05-16 21:51:38.387 [info] (5772) Background analysis message: analyze 2023-05-16 21:51:39.785 [info] (5772) Background analysis message: setFileOpened 2023-05-16 21:51:39.786 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:51:39.790 [info] (5772) [FG] parsing: c:\Users\D\code\thesadru\genshin.py\genshin\utility\geetest.py (8ms) 2023-05-16 21:51:39.791 [info] [Info - 9:51:39 PM] (5772) Could not import 'rsa' in file 'c:\Users\D\code\thesadru\genshin.py\genshin\utility\geetest.py' 2023-05-16 21:51:39.791 [info] [Info - 9:51:39 PM] (5772) Looking in stubPath 'c:\Users\D\code\thesadru\genshin.py\typings' 2023-05-16 21:51:39.791 [info] [Info - 9:51:39 PM] (5772) Attempting to resolve stub package using root path 'c:\Users\D\code\thesadru\genshin.py\typings' 2023-05-16 21:51:39.791 [info] [Info - 9:51:39 PM] (5772) Attempting to resolve using root path 'c:\Users\D\code\thesadru\genshin.py\typings' 2023-05-16 21:51:39.791 [info] [Info - 9:51:39 PM] (5772) Looking in root directory of execution environment 'c:\Users\D\code\thesadru\genshin.py' 2023-05-16 21:51:39.791 [info] [Info - 9:51:39 PM] (5772) Attempting to resolve stub package using root path 'c:\Users\D\code\thesadru\genshin.py' 2023-05-16 21:51:39.791 [info] [Info - 9:51:39 PM] (5772) Attempting to resolve using root path 'c:\Users\D\code\thesadru\genshin.py' 2023-05-16 21:51:39.792 [info] [Info - 9:51:39 PM] (5772) Finding python search paths 2023-05-16 21:51:39.792 [info] [Info - 9:51:39 PM] (5772) Executing interpreter: 'C:\Program Files\Python311\python.exe' 2023-05-16 21:51:39.792 [info] [Info - 9:51:39 PM] (5772) Skipping 'C:\Program Files\Python311\python311.zip' because it is not a valid directory 2023-05-16 21:51:39.792 [info] [Info - 9:51:39 PM] (5772) Received 5 paths from interpreter 2023-05-16 21:51:39.792 [info] [Info - 9:51:39 PM] (5772) C:\Program Files\Python311\Lib 2023-05-16 21:51:39.792 [info] [Info - 9:51:39 PM] (5772) C:\Program Files\Python311\DLLs 2023-05-16 21:51:39.792 [info] [Info - 9:51:39 PM] (5772) C:\Users\D\AppData\Roaming\Python\Python311\site-packages 2023-05-16 21:51:39.792 [info] [Info - 9:51:39 PM] (5772) C:\Program Files\Python311 2023-05-16 21:51:39.792 [info] [Info - 9:51:39 PM] (5772) C:\Program Files\Python311\Lib\site-packages 2023-05-16 21:51:39.793 [info] [Info - 9:51:39 PM] (5772) Looking in python search path 'c:\Program Files\Python311\Lib' 2023-05-16 21:51:39.795 [info] [Info - 9:51:39 PM] (5772) Attempting to resolve stub package using root path 'c:\Program Files\Python311\Lib' 2023-05-16 21:51:39.795 [info] [Info - 9:51:39 PM] (5772) Attempting to resolve using root path 'c:\Program Files\Python311\Lib' 2023-05-16 21:51:39.796 [info] [Info - 9:51:39 PM] (5772) Looking in python search path 'c:\Program Files\Python311\DLLs' 2023-05-16 21:51:39.796 [info] [Info - 9:51:39 PM] (5772) Attempting to resolve stub package using root path 'c:\Program Files\Python311\DLLs' 2023-05-16 21:51:39.796 [info] [Info - 9:51:39 PM] (5772) Attempting to resolve using root path 'c:\Program Files\Python311\DLLs' 2023-05-16 21:51:39.796 [info] [Info - 9:51:39 PM] (5772) Looking in python search path 'c:\Users\D\AppData\Roaming\Python\Python311\site-packages' 2023-05-16 21:51:39.796 [info] [Info - 9:51:39 PM] (5772) Attempting to resolve stub package using root path 'c:\Users\D\AppData\Roaming\Python\Python311\site-packages' 2023-05-16 21:51:39.797 [info] [Info - 9:51:39 PM] (5772) Attempting to resolve using root path 'c:\Users\D\AppData\Roaming\Python\Python311\site-packages' 2023-05-16 21:51:39.797 [info] [Info - 9:51:39 PM] (5772) Looking in python search path 'c:\Program Files\Python311' 2023-05-16 21:51:39.798 [info] [Info - 9:51:39 PM] (5772) Attempting to resolve stub package using root path 'c:\Program Files\Python311' 2023-05-16 21:51:39.798 [info] [Info - 9:51:39 PM] (5772) Attempting to resolve using root path 'c:\Program Files\Python311' 2023-05-16 21:51:39.798 [info] [Info - 9:51:39 PM] (5772) Looking in python search path 'c:\Program Files\Python311\Lib\site-packages' 2023-05-16 21:51:39.798 [info] [Info - 9:51:39 PM] (5772) Attempting to resolve stub package using root path 'c:\Program Files\Python311\Lib\site-packages' 2023-05-16 21:51:39.799 [info] [Info - 9:51:39 PM] (5772) Attempting to resolve using root path 'c:\Program Files\Python311\Lib\site-packages' 2023-05-16 21:51:39.799 [info] [Info - 9:51:39 PM] (5772) Looking in bundled stubs path 'c:\Users\D\.vscode\extensions\ms-python.vscode-pylance-2023.5.20\dist\bundled\stubs' 2023-05-16 21:51:39.799 [info] [Info - 9:51:39 PM] (5772) Attempting to resolve stub package using root path 'c:\Users\D\.vscode\extensions\ms-python.vscode-pylance-2023.5.20\dist\bundled\stubs' 2023-05-16 21:51:39.799 [info] [Info - 9:51:39 PM] (5772) Attempting to resolve using root path 'c:\Users\D\.vscode\extensions\ms-python.vscode-pylance-2023.5.20\dist\bundled\stubs' 2023-05-16 21:51:39.799 [info] [Info - 9:51:39 PM] (5772) Looking for typeshed stdlib path 2023-05-16 21:51:39.799 [info] [Info - 9:51:39 PM] (5772) Looking for typeshed stdlib path 2023-05-16 21:51:39.799 [info] [Info - 9:51:39 PM] (5772) Attempting to resolve using root path 'c:\Users\D\.vscode\extensions\ms-python.vscode-pylance-2023.5.20\dist\typeshed-fallback\stdlib' 2023-05-16 21:51:39.799 [info] [Info - 9:51:39 PM] (5772) Typeshed path not found 2023-05-16 21:51:39.800 [info] [Info - 9:51:39 PM] (5772) Looking for typeshed third-party path 2023-05-16 21:51:39.800 [info] [Info - 9:51:39 PM] (5772) Looking for typeshed stubs path 2023-05-16 21:51:39.800 [info] [Info - 9:51:39 PM] (5772) Typeshed path not found 2023-05-16 21:51:39.800 [info] (5772) [FG] binding: c:\Users\D\code\thesadru\genshin.py\genshin\utility\geetest.py (1ms) 2023-05-16 21:51:39.800 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:51:39.800 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:51:39.801 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:51:40.277 [info] (5772) Background analysis message: analyze 2023-05-16 21:51:40.301 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:51:40.303 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:51:40.668 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:51:40.674 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:51:41.289 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:51:41.291 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:51:41.441 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:51:41.441 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:51:42.676 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:51:42.676 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:52:03.243 [info] (5772) Background analysis message: setFileClosed 2023-05-16 21:52:03.372 [info] (5772) Background analysis message: analyze 2023-05-16 21:52:03.477 [info] (5772) Background analysis message: setFileOpened 2023-05-16 21:52:03.477 [info] (5772) Background analysis message: analyze 2023-05-16 21:52:03.591 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:52:03.591 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:52:07.885 [info] (5772) Background analysis message: setFileClosed 2023-05-16 21:52:07.913 [info] (5772) Background analysis message: analyze 2023-05-16 21:52:50.577 [info] [Info - 9:52:50 PM] (5772) SourceFile: Received fs event 'change' for path 'c:\Users\D\code\thesadru\genshin.py\genshin\client\components\base.py' 2023-05-16 21:52:50.600 [info] [Info - 9:52:50 PM] (5772) SourceFile: Received fs event 'change' for path 'c:\Users\D\code\thesadru\genshin.py\genshin\client\components\base.py' 2023-05-16 21:52:50.603 [info] (5772) Background analysis message: markFilesDirty 2023-05-16 21:52:50.623 [info] (5772) Background analysis message: markFilesDirty 2023-05-16 21:52:50.625 [info] (5772) Background analysis message: analyze 2023-05-16 21:52:50.638 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\gacha.py ... 2023-05-16 21:52:50.638 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\gacha.py (11ms) 2023-05-16 21:52:50.665 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\gacha.py ... 2023-05-16 21:52:50.666 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\__init__.py ... 2023-05-16 21:52:50.666 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\__init__.py ... 2023-05-16 21:52:50.666 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\clients.py (1ms) 2023-05-16 21:52:50.697 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\compatibility.py (7ms) 2023-05-16 21:52:50.698 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\__init__.py ... 2023-05-16 21:52:50.698 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\cookie.py (4ms) 2023-05-16 21:52:50.698 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\managers.py (18ms) 2023-05-16 21:52:50.698 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\__init__.py (22ms) 2023-05-16 21:52:50.698 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\__init__.py (38ms) 2023-05-16 21:52:50.698 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\constants.py (0ms) 2023-05-16 21:52:50.698 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\types.py (1ms) 2023-05-16 21:52:50.698 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\__init__.py (40ms) 2023-05-16 21:52:50.704 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\paginators\__init__.py ... 2023-05-16 21:52:50.704 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\paginators\api.py (6ms) 2023-05-16 21:52:50.705 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\paginators\__init__.py (6ms) 2023-05-16 21:52:50.707 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\utility\__init__.py ... 2023-05-16 21:52:50.707 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\utility\ds.py (1ms) 2023-05-16 21:52:50.773 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\utility\extdb.py (49ms) 2023-05-16 21:52:50.774 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\utility\logfile.py (3ms) 2023-05-16 21:52:50.774 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\utility\uid.py (3ms) 2023-05-16 21:52:50.774 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\utility\__init__.py (59ms) 2023-05-16 21:52:50.774 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\routes.py (6ms) 2023-05-16 21:52:50.855 [info] (5772) [BG(1)] parsing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\base.py [fs read 1ms] (68ms) 2023-05-16 21:52:50.856 [info] [Info - 9:52:50 PM] (5772) Could not import 'aioredis' in file 'c:\Users\D\code\thesadru\genshin.py\genshin\client\components\base.py' 2023-05-16 21:52:50.857 [info] [Info - 9:52:50 PM] (5772) Looking in stubPath 'c:\Users\D\code\thesadru\genshin.py\typings' 2023-05-16 21:52:50.857 [info] [Info - 9:52:50 PM] (5772) Attempting to resolve stub package using root path 'c:\Users\D\code\thesadru\genshin.py\typings' 2023-05-16 21:52:50.857 [info] [Info - 9:52:50 PM] (5772) Attempting to resolve using root path 'c:\Users\D\code\thesadru\genshin.py\typings' 2023-05-16 21:52:50.857 [info] [Info - 9:52:50 PM] (5772) Looking in root directory of execution environment 'c:\Users\D\code\thesadru\genshin.py' 2023-05-16 21:52:50.857 [info] [Info - 9:52:50 PM] (5772) Attempting to resolve stub package using root path 'c:\Users\D\code\thesadru\genshin.py' 2023-05-16 21:52:50.857 [info] [Info - 9:52:50 PM] (5772) Attempting to resolve using root path 'c:\Users\D\code\thesadru\genshin.py' 2023-05-16 21:52:50.857 [info] [Info - 9:52:50 PM] (5772) Finding python search paths 2023-05-16 21:52:50.858 [info] [Info - 9:52:50 PM] (5772) Executing interpreter: 'C:\Program Files\Python311\python.exe' 2023-05-16 21:52:50.858 [info] [Info - 9:52:50 PM] (5772) Skipping 'C:\Program Files\Python311\python311.zip' because it is not a valid directory 2023-05-16 21:52:50.858 [info] [Info - 9:52:50 PM] (5772) Received 5 paths from interpreter 2023-05-16 21:52:50.858 [info] [Info - 9:52:50 PM] (5772) C:\Program Files\Python311\Lib 2023-05-16 21:52:50.858 [info] [Info - 9:52:50 PM] (5772) C:\Program Files\Python311\DLLs 2023-05-16 21:52:50.858 [info] [Info - 9:52:50 PM] (5772) C:\Users\D\AppData\Roaming\Python\Python311\site-packages 2023-05-16 21:52:50.858 [info] [Info - 9:52:50 PM] (5772) C:\Program Files\Python311 2023-05-16 21:52:50.858 [info] [Info - 9:52:50 PM] (5772) C:\Program Files\Python311\Lib\site-packages 2023-05-16 21:52:50.858 [info] [Info - 9:52:50 PM] (5772) Looking in python search path 'c:\Program Files\Python311\Lib' 2023-05-16 21:52:50.859 [info] [Info - 9:52:50 PM] (5772) Attempting to resolve stub package using root path 'c:\Program Files\Python311\Lib' 2023-05-16 21:52:50.859 [info] [Info - 9:52:50 PM] (5772) Attempting to resolve using root path 'c:\Program Files\Python311\Lib' 2023-05-16 21:52:50.859 [info] [Info - 9:52:50 PM] (5772) Looking in python search path 'c:\Program Files\Python311\DLLs' 2023-05-16 21:52:50.859 [info] [Info - 9:52:50 PM] (5772) Attempting to resolve stub package using root path 'c:\Program Files\Python311\DLLs' 2023-05-16 21:52:50.859 [info] [Info - 9:52:50 PM] (5772) Attempting to resolve using root path 'c:\Program Files\Python311\DLLs' 2023-05-16 21:52:50.859 [info] [Info - 9:52:50 PM] (5772) Looking in python search path 'c:\Users\D\AppData\Roaming\Python\Python311\site-packages' 2023-05-16 21:52:50.859 [info] [Info - 9:52:50 PM] (5772) Attempting to resolve stub package using root path 'c:\Users\D\AppData\Roaming\Python\Python311\site-packages' 2023-05-16 21:52:50.859 [info] [Info - 9:52:50 PM] (5772) Attempting to resolve using root path 'c:\Users\D\AppData\Roaming\Python\Python311\site-packages' 2023-05-16 21:52:50.859 [info] [Info - 9:52:50 PM] (5772) Looking in python search path 'c:\Program Files\Python311' 2023-05-16 21:52:50.859 [info] [Info - 9:52:50 PM] (5772) Attempting to resolve stub package using root path 'c:\Program Files\Python311' 2023-05-16 21:52:50.860 [info] [Info - 9:52:50 PM] (5772) Attempting to resolve using root path 'c:\Program Files\Python311' 2023-05-16 21:52:50.860 [info] [Info - 9:52:50 PM] (5772) Looking in python search path 'c:\Program Files\Python311\Lib\site-packages' 2023-05-16 21:52:50.860 [info] [Info - 9:52:50 PM] (5772) Attempting to resolve stub package using root path 'c:\Program Files\Python311\Lib\site-packages' 2023-05-16 21:52:50.860 [info] [Info - 9:52:50 PM] (5772) Attempting to resolve using root path 'c:\Program Files\Python311\Lib\site-packages' 2023-05-16 21:52:50.860 [info] [Info - 9:52:50 PM] (5772) Looking in bundled stubs path 'c:\Users\D\.vscode\extensions\ms-python.vscode-pylance-2023.5.20\dist\bundled\stubs' 2023-05-16 21:52:50.860 [info] [Info - 9:52:50 PM] (5772) Attempting to resolve stub package using root path 'c:\Users\D\.vscode\extensions\ms-python.vscode-pylance-2023.5.20\dist\bundled\stubs' 2023-05-16 21:52:50.860 [info] [Info - 9:52:50 PM] (5772) Attempting to resolve using root path 'c:\Users\D\.vscode\extensions\ms-python.vscode-pylance-2023.5.20\dist\bundled\stubs' 2023-05-16 21:52:50.860 [info] [Info - 9:52:50 PM] (5772) Looking for typeshed stdlib path 2023-05-16 21:52:50.860 [info] [Info - 9:52:50 PM] (5772) Looking for typeshed stdlib path 2023-05-16 21:52:50.860 [info] [Info - 9:52:50 PM] (5772) Attempting to resolve using root path 'c:\Users\D\.vscode\extensions\ms-python.vscode-pylance-2023.5.20\dist\typeshed-fallback\stdlib' 2023-05-16 21:52:50.861 [info] [Info - 9:52:50 PM] (5772) Typeshed path not found 2023-05-16 21:52:50.861 [info] [Info - 9:52:50 PM] (5772) Looking for typeshed third-party path 2023-05-16 21:52:50.861 [info] [Info - 9:52:50 PM] (5772) Looking for typeshed stubs path 2023-05-16 21:52:50.861 [info] [Info - 9:52:50 PM] (5772) Typeshed path not found 2023-05-16 21:52:50.892 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\base.py (26ms) 2023-05-16 21:52:50.892 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\__init__.py ... 2023-05-16 21:52:50.892 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\calculator.py (7ms) 2023-05-16 21:52:50.892 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\character.py (4ms) 2023-05-16 21:52:50.892 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\__init__.py ... 2023-05-16 21:52:50.893 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\abyss.py (12ms) 2023-05-16 21:52:50.925 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\activities.py (8ms) 2023-05-16 21:52:50.925 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\characters.py (2ms) 2023-05-16 21:52:50.965 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\notes.py (47ms) 2023-05-16 21:52:50.966 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\stats.py (4ms) 2023-05-16 21:52:50.966 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\tcg.py (5ms) 2023-05-16 21:52:50.966 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\__init__.py (78ms) 2023-05-16 21:52:50.966 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\daily.py (1ms) 2023-05-16 21:52:50.966 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\diary.py (2ms) 2023-05-16 21:52:50.966 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\lineup.py (6ms) 2023-05-16 21:52:50.966 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\teapot.py (2ms) 2023-05-16 21:52:50.980 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\transaction.py (2ms) 2023-05-16 21:52:50.981 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\wiki.py (13ms) 2023-05-16 21:52:50.981 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\__init__.py (116ms) 2023-05-16 21:52:51.012 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\gacha.py (16ms) 2023-05-16 21:52:51.379 [info] [Info - 9:52:51 PM] (5772) SourceFile: Received fs event 'change' for path 'c:\Users\D\code\thesadru\genshin.py\genshin\utility\logfile.py' 2023-05-16 21:52:51.397 [info] [Info - 9:52:51 PM] (5772) SourceFile: Received fs event 'change' for path 'c:\Users\D\code\thesadru\genshin.py\genshin\utility\logfile.py' 2023-05-16 21:52:51.550 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\model.py (229ms) 2023-05-16 21:52:51.550 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\gacha.py (893ms) 2023-05-16 21:52:51.550 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\gacha.py (904ms) 2023-05-16 21:52:51.550 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\constants.py (0ms) 2023-05-16 21:52:51.550 [info] (5772) Background analysis message: markFilesDirty 2023-05-16 21:52:51.550 [info] (5772) Background analysis message: markFilesDirty 2023-05-16 21:52:51.550 [info] (5772) Background analysis message: analyze 2023-05-16 21:52:51.552 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\gacha.py ... 2023-05-16 21:52:51.552 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\gacha.py (15ms) 2023-05-16 21:52:51.576 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\gacha.py ... 2023-05-16 21:52:51.576 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\__init__.py ... 2023-05-16 21:52:51.577 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\__init__.py ... 2023-05-16 21:52:51.577 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\clients.py (0ms) 2023-05-16 21:52:51.577 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\compatibility.py (12ms) 2023-05-16 21:52:51.584 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\__init__.py ... 2023-05-16 21:52:51.584 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\cookie.py (3ms) 2023-05-16 21:52:51.626 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\managers.py (16ms) 2023-05-16 21:52:51.626 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\__init__.py (19ms) 2023-05-16 21:52:51.626 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\__init__.py (31ms) 2023-05-16 21:52:51.627 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\constants.py (1ms) 2023-05-16 21:52:51.627 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\types.py (0ms) 2023-05-16 21:52:51.627 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\__init__.py (33ms) 2023-05-16 21:52:51.627 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\paginators\__init__.py ... 2023-05-16 21:52:51.627 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\paginators\api.py (4ms) 2023-05-16 21:52:51.627 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\paginators\__init__.py (4ms) 2023-05-16 21:52:51.627 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\utility\__init__.py ... 2023-05-16 21:52:51.627 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\utility\ds.py (4ms) 2023-05-16 21:52:51.627 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\utility\extdb.py (6ms) 2023-05-16 21:52:51.627 [info] (5772) [BG(1)] parsing: c:\Users\D\code\thesadru\genshin.py\genshin\utility\logfile.py [fs read 1ms] (12ms) 2023-05-16 21:52:51.630 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\utility\logfile.py (5ms) 2023-05-16 21:52:51.640 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\utility\uid.py (5ms) 2023-05-16 21:52:51.640 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\utility\__init__.py (34ms) 2023-05-16 21:52:51.641 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\routes.py (4ms) 2023-05-16 21:52:51.660 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\base.py (13ms) 2023-05-16 21:52:51.661 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\__init__.py ... 2023-05-16 21:52:51.661 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\calculator.py (6ms) 2023-05-16 21:52:51.673 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\character.py (5ms) 2023-05-16 21:52:51.674 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\__init__.py ... 2023-05-16 21:52:51.674 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\abyss.py (3ms) 2023-05-16 21:52:51.682 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\activities.py (15ms) 2023-05-16 21:52:51.684 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\characters.py (2ms) 2023-05-16 21:52:51.691 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\notes.py (3ms) 2023-05-16 21:52:51.695 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\stats.py (6ms) 2023-05-16 21:52:51.696 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\tcg.py (2ms) 2023-05-16 21:52:51.696 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\__init__.py (32ms) 2023-05-16 21:52:51.700 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\daily.py (1ms) 2023-05-16 21:52:51.700 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\diary.py (2ms) 2023-05-16 21:52:51.709 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\lineup.py (10ms) 2023-05-16 21:52:51.711 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\teapot.py (1ms) 2023-05-16 21:52:51.712 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\transaction.py (1ms) 2023-05-16 21:52:51.717 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\wiki.py (5ms) 2023-05-16 21:52:51.717 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\__init__.py (64ms) 2023-05-16 21:52:51.724 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\gacha.py (7ms) 2023-05-16 21:52:51.846 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\model.py (6ms) 2023-05-16 21:52:51.929 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\__init__.py ... 2023-05-16 21:52:51.929 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\__init__.py ... 2023-05-16 21:52:51.929 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\battlesuit.py (2ms) 2023-05-16 21:52:51.929 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\__init__.py ... 2023-05-16 21:52:51.929 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\modes.py (8ms) 2023-05-16 21:52:51.933 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\stats.py (11ms) 2023-05-16 21:52:51.934 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\__init__.py (19ms) 2023-05-16 21:52:51.934 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\__init__.py (22ms) 2023-05-16 21:52:51.934 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\__init__.py ... 2023-05-16 21:52:51.934 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\announcements.py (1ms) 2023-05-16 21:52:51.934 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\private.py (0ms) 2023-05-16 21:52:51.947 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\record.py (12ms) 2023-05-16 21:52:51.948 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\__init__.py (13ms) 2023-05-16 21:52:51.948 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\__init__.py (35ms) 2023-05-16 21:52:52.209 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\gacha.py (660ms) 2023-05-16 21:52:52.209 [info] [Info - 9:52:52 PM] (5772) Heap stats: total_heap_size=125MB, used_heap_size=112MB, total_physical_size=125MB, total_available_size=1955MB, heap_size_limit=2072MB 2023-05-16 21:52:52.209 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\gacha.py (676ms) 2023-05-16 21:52:52.246 [info] (5772) Background analysis message: resumeAnalysis 2023-05-16 21:52:52.301 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\__main__.py ... 2023-05-16 21:52:52.303 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\__main__.py ... 2023-05-16 21:52:52.306 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\__init__.py ... 2023-05-16 21:52:52.306 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\client.py (0ms) 2023-05-16 21:52:52.306 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\__init__.py (0ms) 2023-05-16 21:52:52.314 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\genshin.py (30ms) 2023-05-16 21:52:52.317 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\base.py (4ms) 2023-05-16 21:52:52.326 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\honkai.py (5ms) 2023-05-16 21:52:52.328 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\hoyolab.py (3ms) 2023-05-16 21:52:52.332 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\daily.py (4ms) 2023-05-16 21:52:52.346 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\calculator\__init__.py ... 2023-05-16 21:52:52.346 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\calculator\client.py (11ms) 2023-05-16 21:52:52.346 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\calculator\__init__.py (12ms) 2023-05-16 21:52:52.366 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\diary.py (4ms) 2023-05-16 21:52:52.366 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\lineup.py (4ms) 2023-05-16 21:52:52.367 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\teapot.py (2ms) 2023-05-16 21:52:52.367 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\wiki.py (2ms) 2023-05-16 21:52:52.372 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\transaction.py (2ms) 2023-05-16 21:52:52.382 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\__init__.py ... 2023-05-16 21:52:52.382 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\client.py (2ms) 2023-05-16 21:52:52.383 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\__init__.py (2ms) 2023-05-16 21:52:52.751 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\__main__.py (532ms) 2023-05-16 21:52:52.762 [info] [Info - 9:52:52 PM] (5772) Heap stats: total_heap_size=127MB, used_heap_size=117MB, total_physical_size=127MB, total_available_size=1950MB, heap_size_limit=2072MB 2023-05-16 21:52:52.763 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\__main__.py (532ms) 2023-05-16 21:52:52.784 [info] (5772) Background analysis message: resumeAnalysis 2023-05-16 21:52:52.785 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\constants.py ... 2023-05-16 21:52:52.786 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\constants.py (2ms) 2023-05-16 21:52:52.817 [info] [Info - 9:52:52 PM] (5772) Heap stats: total_heap_size=127MB, used_heap_size=114MB, total_physical_size=127MB, total_available_size=1953MB, heap_size_limit=2072MB 2023-05-16 21:52:52.820 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\constants.py (2ms) 2023-05-16 21:52:52.820 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\types.py ... 2023-05-16 21:52:52.820 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\types.py (12ms) 2023-05-16 21:52:52.821 [info] [Info - 9:52:52 PM] (5772) Heap stats: total_heap_size=127MB, used_heap_size=115MB, total_physical_size=127MB, total_available_size=1953MB, heap_size_limit=2072MB 2023-05-16 21:52:52.821 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\types.py (12ms) 2023-05-16 21:52:52.824 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\clients.py ... 2023-05-16 21:52:52.824 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\clients.py (4ms) 2023-05-16 21:52:52.825 [info] [Info - 9:52:52 PM] (5772) Heap stats: total_heap_size=127MB, used_heap_size=115MB, total_physical_size=127MB, total_available_size=1952MB, heap_size_limit=2072MB 2023-05-16 21:52:52.825 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\clients.py (4ms) 2023-05-16 21:52:53.017 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\compatibility.py ... 2023-05-16 21:52:53.018 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\compatibility.py (210ms) 2023-05-16 21:52:53.018 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\compatibility.py (210ms) 2023-05-16 21:52:53.018 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\constants.py (0ms) 2023-05-16 21:52:53.018 [info] (5772) Background analysis message: setFileOpened 2023-05-16 21:52:53.018 [info] (5772) Background analysis message: markFilesDirty 2023-05-16 21:52:53.356 [info] (5772) Background analysis message: analyze 2023-05-16 21:52:53.357 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\gacha.py ... 2023-05-16 21:52:53.357 [info] (5772) [BG(1)] parsing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\gacha.py (35ms) 2023-05-16 21:52:53.357 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\gacha.py (3ms) 2023-05-16 21:52:53.450 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\gacha.py ... 2023-05-16 21:52:53.451 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\__init__.py ... 2023-05-16 21:52:53.451 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\__init__.py ... 2023-05-16 21:52:53.451 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\clients.py (1ms) 2023-05-16 21:52:53.452 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\compatibility.py (3ms) 2023-05-16 21:52:53.452 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\__init__.py ... 2023-05-16 21:52:53.452 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\cookie.py (3ms) 2023-05-16 21:52:53.453 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\managers.py (18ms) 2023-05-16 21:52:53.453 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\__init__.py (22ms) 2023-05-16 21:52:53.454 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\__init__.py (27ms) 2023-05-16 21:52:53.454 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\constants.py (1ms) 2023-05-16 21:52:53.454 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\types.py (0ms) 2023-05-16 21:52:53.454 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\__init__.py (30ms) 2023-05-16 21:52:53.454 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\paginators\__init__.py ... 2023-05-16 21:52:53.454 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\paginators\api.py (5ms) 2023-05-16 21:52:53.454 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\paginators\__init__.py (5ms) 2023-05-16 21:52:53.497 [info] [Info - 9:52:53 PM] (5772) SourceFile: Received fs event 'change' for path 'c:\Users\D\code\thesadru\genshin.py\genshin\client\components\gacha.py' 2023-05-16 21:52:53.499 [info] [Info - 9:52:53 PM] (5772) SourceFile: Received fs event 'change' for path 'c:\Users\D\code\thesadru\genshin.py\genshin\client\components\calculator\calculator.py.isorted' 2023-05-16 21:52:53.499 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\utility\__init__.py ... 2023-05-16 21:52:53.499 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\utility\ds.py (66ms) 2023-05-16 21:52:53.502 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\utility\extdb.py (6ms) 2023-05-16 21:52:53.508 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\utility\logfile.py (5ms) 2023-05-16 21:52:53.510 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\utility\uid.py (3ms) 2023-05-16 21:52:53.511 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\utility\__init__.py (81ms) 2023-05-16 21:52:53.514 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\routes.py (3ms) 2023-05-16 21:52:53.569 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\base.py (55ms) 2023-05-16 21:52:53.583 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\__init__.py ... 2023-05-16 21:52:53.583 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\calculator.py (13ms) 2023-05-16 21:52:53.589 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\character.py (6ms) 2023-05-16 21:52:53.592 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\__init__.py ... 2023-05-16 21:52:53.593 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\abyss.py (3ms) 2023-05-16 21:52:53.613 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\activities.py (20ms) 2023-05-16 21:52:53.615 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\characters.py (2ms) 2023-05-16 21:52:53.626 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\notes.py (10ms) 2023-05-16 21:52:53.631 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\stats.py (4ms) 2023-05-16 21:52:53.633 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\tcg.py (3ms) 2023-05-16 21:52:53.634 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\__init__.py (44ms) 2023-05-16 21:52:53.643 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\daily.py (10ms) 2023-05-16 21:52:53.645 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\diary.py (1ms) 2023-05-16 21:52:53.659 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\lineup.py (13ms) 2023-05-16 21:52:53.660 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\teapot.py (2ms) 2023-05-16 21:52:53.662 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\transaction.py (2ms) 2023-05-16 21:52:53.667 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\wiki.py (4ms) 2023-05-16 21:52:53.667 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\__init__.py (97ms) 2023-05-16 21:52:53.675 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\gacha.py (7ms) 2023-05-16 21:52:53.676 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\gacha.py (342ms) 2023-05-16 21:52:53.677 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\gacha.py (380ms) 2023-05-16 21:52:53.677 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\constants.py (0ms) 2023-05-16 21:52:53.678 [info] (5772) Background analysis message: markFilesDirty 2023-05-16 21:52:53.678 [info] (5772) Background analysis message: analyze 2023-05-16 21:52:53.830 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\gacha.py ... 2023-05-16 21:52:53.831 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\gacha.py ... 2023-05-16 21:52:53.831 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\model.py (6ms) 2023-05-16 21:52:53.841 [info] [Info - 9:52:53 PM] (5772) SourceFile: Received fs event 'change' for path 'c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\base.py.isorted' 2023-05-16 21:52:53.895 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\__init__.py ... 2023-05-16 21:52:53.895 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\__init__.py ... 2023-05-16 21:52:53.895 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\battlesuit.py (2ms) 2023-05-16 21:52:53.900 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\__init__.py ... 2023-05-16 21:52:53.900 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\modes.py (8ms) 2023-05-16 21:52:53.907 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\stats.py (7ms) 2023-05-16 21:52:53.908 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\__init__.py (16ms) 2023-05-16 21:52:53.908 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\__init__.py (18ms) 2023-05-16 21:52:53.908 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\__init__.py ... 2023-05-16 21:52:53.908 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\announcements.py (0ms) 2023-05-16 21:52:53.908 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\private.py (1ms) 2023-05-16 21:52:53.912 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\record.py (4ms) 2023-05-16 21:52:53.912 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\__init__.py (6ms) 2023-05-16 21:52:53.913 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\__init__.py (24ms) 2023-05-16 21:52:54.096 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\gacha.py (415ms) 2023-05-16 21:52:54.096 [info] [Info - 9:52:54 PM] (5772) Heap stats: total_heap_size=135MB, used_heap_size=102MB, total_physical_size=135MB, total_available_size=1952MB, heap_size_limit=2072MB 2023-05-16 21:52:54.096 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\gacha.py (415ms) 2023-05-16 21:52:54.122 [info] (5772) Background analysis message: resumeAnalysis 2023-05-16 21:52:54.158 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\__main__.py ... 2023-05-16 21:52:54.159 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\__main__.py ... 2023-05-16 21:52:54.159 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\__init__.py ... 2023-05-16 21:52:54.159 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\client.py (0ms) 2023-05-16 21:52:54.159 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\__init__.py (0ms) 2023-05-16 21:52:54.163 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\genshin.py (9ms) 2023-05-16 21:52:54.167 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\base.py (3ms) 2023-05-16 21:52:54.176 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\honkai.py (7ms) 2023-05-16 21:52:54.180 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\hoyolab.py (4ms) 2023-05-16 21:52:54.189 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\daily.py (8ms) 2023-05-16 21:52:54.199 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\calculator\__init__.py ... 2023-05-16 21:52:54.199 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\calculator\client.py (6ms) 2023-05-16 21:52:54.199 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\calculator\__init__.py (7ms) 2023-05-16 21:52:54.203 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\diary.py (3ms) 2023-05-16 21:52:54.212 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\lineup.py (7ms) 2023-05-16 21:52:54.215 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\teapot.py (2ms) 2023-05-16 21:52:54.217 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\wiki.py (3ms) 2023-05-16 21:52:54.223 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\transaction.py (2ms) 2023-05-16 21:52:54.226 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\__init__.py ... 2023-05-16 21:52:54.226 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\client.py (2ms) 2023-05-16 21:52:54.227 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\__init__.py (2ms) 2023-05-16 21:52:54.711 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\__main__.py (593ms) 2023-05-16 21:52:54.711 [info] [Info - 9:52:54 PM] (5772) Heap stats: total_heap_size=136MB, used_heap_size=111MB, total_physical_size=136MB, total_available_size=1945MB, heap_size_limit=2072MB 2023-05-16 21:52:54.712 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\__main__.py (594ms) 2023-05-16 21:52:54.750 [info] (5772) Background analysis message: resumeAnalysis 2023-05-16 21:52:54.751 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\constants.py ... 2023-05-16 21:52:54.752 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\constants.py (32ms) 2023-05-16 21:52:54.752 [info] [Info - 9:52:54 PM] (5772) Heap stats: total_heap_size=136MB, used_heap_size=105MB, total_physical_size=136MB, total_available_size=1951MB, heap_size_limit=2072MB 2023-05-16 21:52:54.752 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\constants.py (38ms) 2023-05-16 21:52:54.830 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\types.py ... 2023-05-16 21:52:54.831 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\types.py (36ms) 2023-05-16 21:52:54.831 [info] [Info - 9:52:54 PM] (5772) Heap stats: total_heap_size=136MB, used_heap_size=105MB, total_physical_size=136MB, total_available_size=1951MB, heap_size_limit=2072MB 2023-05-16 21:52:54.832 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\types.py (37ms) 2023-05-16 21:52:54.832 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\clients.py ... 2023-05-16 21:52:54.832 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\clients.py (5ms) 2023-05-16 21:52:54.832 [info] [Info - 9:52:54 PM] (5772) Heap stats: total_heap_size=136MB, used_heap_size=106MB, total_physical_size=136MB, total_available_size=1951MB, heap_size_limit=2072MB 2023-05-16 21:52:54.833 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\clients.py (5ms) 2023-05-16 21:52:54.972 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\compatibility.py ... 2023-05-16 21:52:54.982 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\compatibility.py (176ms) 2023-05-16 21:52:54.983 [info] [Info - 9:52:54 PM] (5772) Heap stats: total_heap_size=136MB, used_heap_size=112MB, total_physical_size=136MB, total_available_size=1945MB, heap_size_limit=2072MB 2023-05-16 21:52:54.983 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\compatibility.py (176ms) 2023-05-16 21:52:54.991 [info] (5772) Background analysis message: resumeAnalysis 2023-05-16 21:52:55.003 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\ratelimit.py ... 2023-05-16 21:52:55.003 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\ratelimit.py (11ms) 2023-05-16 21:52:55.003 [info] [Info - 9:52:55 PM] (5772) Heap stats: total_heap_size=136MB, used_heap_size=106MB, total_physical_size=136MB, total_available_size=1951MB, heap_size_limit=2072MB 2023-05-16 21:52:55.003 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\ratelimit.py (11ms) 2023-05-16 21:52:55.065 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\routes.py ... 2023-05-16 21:52:55.066 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\routes.py (52ms) 2023-05-16 21:52:55.066 [info] [Info - 9:52:55 PM] (5772) Heap stats: total_heap_size=136MB, used_heap_size=109MB, total_physical_size=136MB, total_available_size=1948MB, heap_size_limit=2072MB 2023-05-16 21:52:55.066 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\routes.py (53ms) 2023-05-16 21:52:55.335 [info] [Info - 9:52:55 PM] (5772) SourceFile: Received fs event 'add' for path 'c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\activities.py.isorted' 2023-05-16 21:52:55.335 [info] [Info - 9:52:55 PM] (5772) SourceFile: Received fs event 'change' for path 'c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\activities.py.isorted' 2023-05-16 21:52:55.537 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\base.py ... 2023-05-16 21:52:55.538 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\base.py (482ms) 2023-05-16 21:52:55.538 [info] [Info - 9:52:55 PM] (5772) Heap stats: total_heap_size=136MB, used_heap_size=109MB, total_physical_size=136MB, total_available_size=1958MB, heap_size_limit=2072MB 2023-05-16 21:52:55.539 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\base.py (483ms) 2023-05-16 21:52:55.555 [info] (5772) Background analysis message: resumeAnalysis 2023-05-16 21:52:55.764 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\daily.py ... 2023-05-16 21:52:55.764 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\daily.py (207ms) 2023-05-16 21:52:55.765 [info] [Info - 9:52:55 PM] (5772) Heap stats: total_heap_size=136MB, used_heap_size=110MB, total_physical_size=136MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:52:55.765 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\daily.py (207ms) 2023-05-16 21:52:55.767 [info] (5772) Background analysis message: resumeAnalysis 2023-05-16 21:52:55.869 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\diary.py ... 2023-05-16 21:52:55.869 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\diary.py (94ms) 2023-05-16 21:52:55.870 [info] [Info - 9:52:55 PM] (5772) Heap stats: total_heap_size=137MB, used_heap_size=109MB, total_physical_size=137MB, total_available_size=1959MB, heap_size_limit=2072MB 2023-05-16 21:52:55.870 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\diary.py (94ms) 2023-05-16 21:52:55.971 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\hoyolab.py ... 2023-05-16 21:52:55.971 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\hoyolab.py (109ms) 2023-05-16 21:52:55.971 [info] [Info - 9:52:55 PM] (5772) Heap stats: total_heap_size=137MB, used_heap_size=108MB, total_physical_size=137MB, total_available_size=1960MB, heap_size_limit=2072MB 2023-05-16 21:52:55.971 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\hoyolab.py (110ms) 2023-05-16 21:52:55.978 [info] (5772) Background analysis message: resumeAnalysis 2023-05-16 21:52:56.085 [info] [Info - 9:52:56 PM] (5772) SourceFile: Received fs event 'add' for path 'c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\battlesuit.py.isorted' 2023-05-16 21:52:56.085 [info] [Info - 9:52:56 PM] (5772) SourceFile: Received fs event 'change' for path 'c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\battlesuit.py.isorted' 2023-05-16 21:52:56.085 [info] [Info - 9:52:56 PM] (5772) SourceFile: Received fs event 'change' for path 'c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\battlesuits.py.isorted' 2023-05-16 21:52:56.115 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\lineup.py ... 2023-05-16 21:52:56.115 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\lineup.py (142ms) 2023-05-16 21:52:56.115 [info] [Info - 9:52:56 PM] (5772) Heap stats: total_heap_size=137MB, used_heap_size=109MB, total_physical_size=137MB, total_available_size=1958MB, heap_size_limit=2072MB 2023-05-16 21:52:56.115 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\lineup.py (142ms) 2023-05-16 21:52:56.187 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\teapot.py ... 2023-05-16 21:52:56.187 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\teapot.py (72ms) 2023-05-16 21:52:56.187 [info] [Info - 9:52:56 PM] (5772) Heap stats: total_heap_size=137MB, used_heap_size=114MB, total_physical_size=137MB, total_available_size=1954MB, heap_size_limit=2072MB 2023-05-16 21:52:56.188 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\teapot.py (72ms) 2023-05-16 21:52:56.197 [info] (5772) Background analysis message: resumeAnalysis 2023-05-16 21:52:56.327 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\transaction.py ... 2023-05-16 21:52:56.329 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\transaction.py (130ms) 2023-05-16 21:52:56.329 [info] [Info - 9:52:56 PM] (5772) Heap stats: total_heap_size=137MB, used_heap_size=112MB, total_physical_size=137MB, total_available_size=1955MB, heap_size_limit=2072MB 2023-05-16 21:52:56.329 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\transaction.py (130ms) 2023-05-16 21:52:56.485 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\wiki.py ... 2023-05-16 21:52:56.485 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\wiki.py (158ms) 2023-05-16 21:52:56.485 [info] [Info - 9:52:56 PM] (5772) Heap stats: total_heap_size=137MB, used_heap_size=110MB, total_physical_size=137MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:52:56.486 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\wiki.py (158ms) 2023-05-16 21:52:56.488 [info] (5772) Background analysis message: resumeAnalysis 2023-05-16 21:52:56.503 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\calculator\calculator.py ... 2023-05-16 21:52:56.503 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\calculator\calculator.py (16ms) 2023-05-16 21:52:56.684 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\calculator\calculator.py (181ms) 2023-05-16 21:52:56.685 [info] [Info - 9:52:56 PM] (5772) Heap stats: total_heap_size=137MB, used_heap_size=116MB, total_physical_size=137MB, total_available_size=1952MB, heap_size_limit=2072MB 2023-05-16 21:52:56.685 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\calculator\calculator.py (198ms) 2023-05-16 21:52:56.732 [info] [Info - 9:52:56 PM] (5772) SourceFile: Received fs event 'change' for path 'c:\Users\D\code\thesadru\genshin.py\genshin\utility\deprecation.py.isorted' 2023-05-16 21:52:56.985 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\calculator\client.py ... 2023-05-16 21:52:56.985 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\calculator\client.py (298ms) 2023-05-16 21:52:56.986 [info] [Info - 9:52:56 PM] (5772) Heap stats: total_heap_size=137MB, used_heap_size=111MB, total_physical_size=137MB, total_available_size=1956MB, heap_size_limit=2072MB 2023-05-16 21:52:56.986 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\calculator\client.py (298ms) 2023-05-16 21:52:56.987 [info] (5772) Background analysis message: resumeAnalysis 2023-05-16 21:52:57.138 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\base.py ... 2023-05-16 21:52:57.139 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\base.py (122ms) 2023-05-16 21:52:57.139 [info] [Info - 9:52:57 PM] (5772) Heap stats: total_heap_size=137MB, used_heap_size=116MB, total_physical_size=137MB, total_available_size=1952MB, heap_size_limit=2072MB 2023-05-16 21:52:57.139 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\base.py (122ms) 2023-05-16 21:52:57.139 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\client.py ... 2023-05-16 21:52:57.140 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\client.py (2ms) 2023-05-16 21:52:57.140 [info] [Info - 9:52:57 PM] (5772) Heap stats: total_heap_size=137MB, used_heap_size=116MB, total_physical_size=137MB, total_available_size=1952MB, heap_size_limit=2072MB 2023-05-16 21:52:57.140 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\client.py (3ms) 2023-05-16 21:52:57.361 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\genshin.py ... 2023-05-16 21:52:57.363 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\genshin.py (250ms) 2023-05-16 21:52:57.364 [info] [Info - 9:52:57 PM] (5772) Heap stats: total_heap_size=137MB, used_heap_size=112MB, total_physical_size=137MB, total_available_size=1955MB, heap_size_limit=2072MB 2023-05-16 21:52:57.364 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\genshin.py (250ms) 2023-05-16 21:52:57.369 [info] (5772) Background analysis message: resumeAnalysis 2023-05-16 21:52:57.498 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\honkai.py ... 2023-05-16 21:52:57.499 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\honkai.py (124ms) 2023-05-16 21:52:57.499 [info] [Info - 9:52:57 PM] (5772) Heap stats: total_heap_size=137MB, used_heap_size=112MB, total_physical_size=137MB, total_available_size=1955MB, heap_size_limit=2072MB 2023-05-16 21:52:57.499 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\honkai.py (124ms) 2023-05-16 21:52:57.500 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\client.py ... 2023-05-16 21:52:57.500 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\client.py ... 2023-05-16 21:52:57.500 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\server.py (4ms) 2023-05-16 21:52:57.564 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\client.py (70ms) 2023-05-16 21:52:57.565 [info] [Info - 9:52:57 PM] (5772) Heap stats: total_heap_size=137MB, used_heap_size=116MB, total_physical_size=137MB, total_available_size=1951MB, heap_size_limit=2072MB 2023-05-16 21:52:57.565 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\client.py (70ms) 2023-05-16 21:52:57.628 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\server.py ... 2023-05-16 21:52:57.628 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\server.py (60ms) 2023-05-16 21:52:57.629 [info] [Info - 9:52:57 PM] (5772) Heap stats: total_heap_size=137MB, used_heap_size=112MB, total_physical_size=137MB, total_available_size=1955MB, heap_size_limit=2072MB 2023-05-16 21:52:57.629 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\server.py (61ms) 2023-05-16 21:52:57.630 [info] (5772) Background analysis message: resumeAnalysis 2023-05-16 21:52:57.684 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\cookie.py ... 2023-05-16 21:52:57.684 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\cookie.py (54ms) 2023-05-16 21:52:57.685 [info] [Info - 9:52:57 PM] (5772) Heap stats: total_heap_size=137MB, used_heap_size=116MB, total_physical_size=137MB, total_available_size=1952MB, heap_size_limit=2072MB 2023-05-16 21:52:57.685 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\cookie.py (54ms) 2023-05-16 21:52:58.073 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\managers.py ... 2023-05-16 21:52:58.074 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\managers.py (338ms) 2023-05-16 21:52:58.074 [info] [Info - 9:52:58 PM] (5772) Heap stats: total_heap_size=137MB, used_heap_size=115MB, total_physical_size=137MB, total_available_size=1952MB, heap_size_limit=2072MB 2023-05-16 21:52:58.074 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\managers.py (338ms) 2023-05-16 21:52:58.149 [info] (5772) Background analysis message: resumeAnalysis 2023-05-16 21:52:58.347 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\model.py ... 2023-05-16 21:52:58.348 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\model.py (205ms) 2023-05-16 21:52:58.348 [info] [Info - 9:52:58 PM] (5772) Heap stats: total_heap_size=137MB, used_heap_size=119MB, total_physical_size=137MB, total_available_size=1948MB, heap_size_limit=2072MB 2023-05-16 21:52:58.348 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\model.py (205ms) 2023-05-16 21:52:58.351 [info] (5772) Background analysis message: resumeAnalysis 2023-05-16 21:52:58.478 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\calculator.py ... 2023-05-16 21:52:58.479 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\calculator.py (126ms) 2023-05-16 21:52:58.479 [info] [Info - 9:52:58 PM] (5772) Heap stats: total_heap_size=138MB, used_heap_size=114MB, total_physical_size=138MB, total_available_size=1953MB, heap_size_limit=2072MB 2023-05-16 21:52:58.479 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\calculator.py (126ms) 2023-05-16 21:52:58.550 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\character.py ... 2023-05-16 21:52:58.550 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\character.py (74ms) 2023-05-16 21:52:58.550 [info] [Info - 9:52:58 PM] (5772) Heap stats: total_heap_size=138MB, used_heap_size=119MB, total_physical_size=138MB, total_available_size=1948MB, heap_size_limit=2072MB 2023-05-16 21:52:58.550 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\character.py (74ms) 2023-05-16 21:52:58.559 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\daily.py ... 2023-05-16 21:52:58.559 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\daily.py (9ms) 2023-05-16 21:52:58.560 [info] [Info - 9:52:58 PM] (5772) Heap stats: total_heap_size=138MB, used_heap_size=120MB, total_physical_size=138MB, total_available_size=1947MB, heap_size_limit=2072MB 2023-05-16 21:52:58.560 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\daily.py (9ms) 2023-05-16 21:52:58.565 [info] (5772) Background analysis message: resumeAnalysis 2023-05-16 21:52:58.590 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\diary.py ... 2023-05-16 21:52:58.590 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\diary.py (20ms) 2023-05-16 21:52:58.590 [info] [Info - 9:52:58 PM] (5772) Heap stats: total_heap_size=138MB, used_heap_size=115MB, total_physical_size=138MB, total_available_size=1952MB, heap_size_limit=2072MB 2023-05-16 21:52:58.590 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\diary.py (20ms) 2023-05-16 21:52:58.687 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\lineup.py ... 2023-05-16 21:52:58.687 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\lineup.py (85ms) 2023-05-16 21:52:58.687 [info] [Info - 9:52:58 PM] (5772) Heap stats: total_heap_size=138MB, used_heap_size=121MB, total_physical_size=138MB, total_available_size=1947MB, heap_size_limit=2072MB 2023-05-16 21:52:58.688 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\lineup.py (85ms) 2023-05-16 21:52:58.688 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\teapot.py ... 2023-05-16 21:52:58.688 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\teapot.py (15ms) 2023-05-16 21:52:58.688 [info] [Info - 9:52:58 PM] (5772) Heap stats: total_heap_size=138MB, used_heap_size=114MB, total_physical_size=138MB, total_available_size=1953MB, heap_size_limit=2072MB 2023-05-16 21:52:58.688 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\teapot.py (15ms) 2023-05-16 21:52:58.716 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\transaction.py ... 2023-05-16 21:52:58.717 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\transaction.py (13ms) 2023-05-16 21:52:58.717 [info] [Info - 9:52:58 PM] (5772) Heap stats: total_heap_size=138MB, used_heap_size=115MB, total_physical_size=138MB, total_available_size=1952MB, heap_size_limit=2072MB 2023-05-16 21:52:58.717 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\transaction.py (13ms) 2023-05-16 21:52:58.839 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\wiki.py ... 2023-05-16 21:52:58.839 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\wiki.py (141ms) 2023-05-16 21:52:58.839 [info] [Info - 9:52:58 PM] (5772) Heap stats: total_heap_size=138MB, used_heap_size=115MB, total_physical_size=138MB, total_available_size=1952MB, heap_size_limit=2072MB 2023-05-16 21:52:58.840 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\wiki.py (141ms) 2023-05-16 21:52:58.852 [info] (5772) Background analysis message: resumeAnalysis 2023-05-16 21:52:58.872 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\abyss.py ... 2023-05-16 21:52:58.872 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\abyss.py (26ms) 2023-05-16 21:52:58.872 [info] [Info - 9:52:58 PM] (5772) Heap stats: total_heap_size=138MB, used_heap_size=117MB, total_physical_size=138MB, total_available_size=1950MB, heap_size_limit=2072MB 2023-05-16 21:52:58.872 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\abyss.py (26ms) 2023-05-16 21:52:58.970 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\activities.py ... 2023-05-16 21:52:58.970 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\activities.py (98ms) 2023-05-16 21:52:58.971 [info] [Info - 9:52:58 PM] (5772) Heap stats: total_heap_size=138MB, used_heap_size=114MB, total_physical_size=138MB, total_available_size=1953MB, heap_size_limit=2072MB 2023-05-16 21:52:58.971 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\activities.py (98ms) 2023-05-16 21:52:58.991 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\characters.py ... 2023-05-16 21:52:58.991 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\characters.py (20ms) 2023-05-16 21:52:58.992 [info] [Info - 9:52:58 PM] (5772) Heap stats: total_heap_size=138MB, used_heap_size=116MB, total_physical_size=138MB, total_available_size=1951MB, heap_size_limit=2072MB 2023-05-16 21:52:58.993 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\characters.py (21ms) 2023-05-16 21:52:59.041 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\notes.py ... 2023-05-16 21:52:59.042 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\notes.py (50ms) 2023-05-16 21:52:59.042 [info] [Info - 9:52:59 PM] (5772) Heap stats: total_heap_size=138MB, used_heap_size=120MB, total_physical_size=138MB, total_available_size=1948MB, heap_size_limit=2072MB 2023-05-16 21:52:59.042 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\notes.py (51ms) 2023-05-16 21:52:59.104 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\stats.py ... 2023-05-16 21:52:59.105 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\stats.py (57ms) 2023-05-16 21:52:59.105 [info] [Info - 9:52:59 PM] (5772) Heap stats: total_heap_size=138MB, used_heap_size=115MB, total_physical_size=138MB, total_available_size=1952MB, heap_size_limit=2072MB 2023-05-16 21:52:59.105 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\stats.py (57ms) 2023-05-16 21:52:59.115 [info] (5772) Background analysis message: resumeAnalysis 2023-05-16 21:52:59.124 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\tcg.py ... 2023-05-16 21:52:59.124 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\tcg.py (17ms) 2023-05-16 21:52:59.124 [info] [Info - 9:52:59 PM] (5772) Heap stats: total_heap_size=138MB, used_heap_size=116MB, total_physical_size=138MB, total_available_size=1951MB, heap_size_limit=2072MB 2023-05-16 21:52:59.124 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\tcg.py (17ms) 2023-05-16 21:52:59.167 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\battlesuit.py ... 2023-05-16 21:52:59.168 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\battlesuit.py (43ms) 2023-05-16 21:52:59.168 [info] [Info - 9:52:59 PM] (5772) Heap stats: total_heap_size=138MB, used_heap_size=119MB, total_physical_size=138MB, total_available_size=1949MB, heap_size_limit=2072MB 2023-05-16 21:52:59.168 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\battlesuit.py (43ms) 2023-05-16 21:52:59.190 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\battlesuits.py ... 2023-05-16 21:52:59.190 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\battlesuits.py (23ms) 2023-05-16 21:52:59.190 [info] [Info - 9:52:59 PM] (5772) Heap stats: total_heap_size=138MB, used_heap_size=121MB, total_physical_size=138MB, total_available_size=1947MB, heap_size_limit=2072MB 2023-05-16 21:52:59.190 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\battlesuits.py (23ms) 2023-05-16 21:52:59.282 [info] [Info - 9:52:59 PM] (5772) SourceFile: Received fs event 'change' for path 'c:\Users\D\code\thesadru\genshin.py\genshin\errors.py' 2023-05-16 21:52:59.333 [info] [Info - 9:52:59 PM] (5772) SourceFile: Received fs event 'change' for path 'c:\Users\D\code\thesadru\genshin.py\genshin\client\routes.py' 2023-05-16 21:52:59.340 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\modes.py ... 2023-05-16 21:52:59.340 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\modes.py (97ms) 2023-05-16 21:52:59.341 [info] [Info - 9:52:59 PM] (5772) Heap stats: total_heap_size=138MB, used_heap_size=120MB, total_physical_size=138MB, total_available_size=1947MB, heap_size_limit=2072MB 2023-05-16 21:52:59.341 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\modes.py (97ms) 2023-05-16 21:52:59.341 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\stats.py ... 2023-05-16 21:52:59.341 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\stats.py (32ms) 2023-05-16 21:52:59.341 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\stats.py (32ms) 2023-05-16 21:52:59.341 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\types.py (1ms) 2023-05-16 21:52:59.341 [info] (5772) Background analysis message: markFilesDirty 2023-05-16 21:52:59.341 [info] (5772) Background analysis message: markFilesDirty 2023-05-16 21:52:59.387 [info] (5772) Background analysis message: analyze 2023-05-16 21:52:59.387 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\gacha.py ... 2023-05-16 21:52:59.387 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\gacha.py (11ms) 2023-05-16 21:52:59.407 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\gacha.py ... 2023-05-16 21:52:59.408 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\__init__.py ... 2023-05-16 21:52:59.408 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\__init__.py ... 2023-05-16 21:52:59.408 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\clients.py (1ms) 2023-05-16 21:52:59.409 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\compatibility.py (4ms) 2023-05-16 21:52:59.421 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\__init__.py ... 2023-05-16 21:52:59.422 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\cookie.py (9ms) 2023-05-16 21:52:59.435 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\managers.py (19ms) 2023-05-16 21:52:59.435 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\__init__.py (28ms) 2023-05-16 21:52:59.435 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\__init__.py (34ms) 2023-05-16 21:52:59.435 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\constants.py (1ms) 2023-05-16 21:52:59.466 [info] (5772) [BG(1)] parsing: c:\Users\D\code\thesadru\genshin.py\genshin\errors.py [fs read 1ms] (16ms) 2023-05-16 21:52:59.466 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\errors.py (14ms) 2023-05-16 21:52:59.471 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\types.py (0ms) 2023-05-16 21:52:59.471 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\__init__.py (66ms) 2023-05-16 21:52:59.471 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\paginators\__init__.py ... 2023-05-16 21:52:59.472 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\paginators\api.py (3ms) 2023-05-16 21:52:59.472 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\paginators\__init__.py (4ms) 2023-05-16 21:52:59.475 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\utility\__init__.py ... 2023-05-16 21:52:59.475 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\utility\ds.py (2ms) 2023-05-16 21:52:59.487 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\utility\extdb.py (10ms) 2023-05-16 21:52:59.488 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\utility\logfile.py (5ms) 2023-05-16 21:52:59.491 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\utility\uid.py (3ms) 2023-05-16 21:52:59.492 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\utility\__init__.py (20ms) 2023-05-16 21:52:59.503 [info] (5772) [BG(1)] parsing: c:\Users\D\code\thesadru\genshin.py\genshin\client\routes.py [fs read 1ms] (12ms) 2023-05-16 21:52:59.505 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\routes.py (1ms) 2023-05-16 21:52:59.520 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\base.py (15ms) 2023-05-16 21:52:59.526 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\__init__.py ... 2023-05-16 21:52:59.526 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\calculator.py (6ms) 2023-05-16 21:52:59.539 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\character.py (9ms) 2023-05-16 21:52:59.539 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\__init__.py ... 2023-05-16 21:52:59.539 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\abyss.py (3ms) 2023-05-16 21:52:59.547 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\activities.py (10ms) 2023-05-16 21:52:59.550 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\characters.py (3ms) 2023-05-16 21:52:59.556 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\notes.py (4ms) 2023-05-16 21:52:59.564 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\stats.py (4ms) 2023-05-16 21:52:59.570 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\tcg.py (5ms) 2023-05-16 21:52:59.570 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\__init__.py (30ms) 2023-05-16 21:52:59.571 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\daily.py (1ms) 2023-05-16 21:52:59.571 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\diary.py (2ms) 2023-05-16 21:52:59.585 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\lineup.py (11ms) 2023-05-16 21:52:59.586 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\teapot.py (2ms) 2023-05-16 21:52:59.586 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\transaction.py (1ms) 2023-05-16 21:52:59.587 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\wiki.py (5ms) 2023-05-16 21:52:59.588 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\__init__.py (68ms) 2023-05-16 21:52:59.600 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\gacha.py (12ms) 2023-05-16 21:52:59.737 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\model.py (16ms) 2023-05-16 21:52:59.804 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\__init__.py ... 2023-05-16 21:52:59.804 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\__init__.py ... 2023-05-16 21:52:59.805 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\battlesuit.py (2ms) 2023-05-16 21:52:59.858 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\__init__.py ... 2023-05-16 21:52:59.858 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\modes.py (20ms) 2023-05-16 21:52:59.859 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\stats.py (21ms) 2023-05-16 21:52:59.859 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\__init__.py (42ms) 2023-05-16 21:52:59.859 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\__init__.py (45ms) 2023-05-16 21:52:59.860 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\__init__.py ... 2023-05-16 21:52:59.860 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\announcements.py (1ms) 2023-05-16 21:52:59.860 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\private.py (1ms) 2023-05-16 21:52:59.860 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\record.py (10ms) 2023-05-16 21:52:59.860 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\__init__.py (12ms) 2023-05-16 21:52:59.860 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\__init__.py (57ms) 2023-05-16 21:53:00.157 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\gacha.py (743ms) 2023-05-16 21:53:00.158 [info] [Info - 9:53:00 PM] (5772) Heap stats: total_heap_size=140MB, used_heap_size=121MB, total_physical_size=140MB, total_available_size=1946MB, heap_size_limit=2072MB 2023-05-16 21:53:00.158 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\gacha.py (755ms) 2023-05-16 21:53:00.204 [info] (5772) Background analysis message: resumeAnalysis 2023-05-16 21:53:00.238 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\__main__.py ... 2023-05-16 21:53:00.239 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\__main__.py ... 2023-05-16 21:53:00.239 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\__init__.py ... 2023-05-16 21:53:00.239 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\client.py (1ms) 2023-05-16 21:53:00.239 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\__init__.py (1ms) 2023-05-16 21:53:00.249 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\genshin.py (6ms) 2023-05-16 21:53:00.253 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\base.py (7ms) 2023-05-16 21:53:00.258 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\honkai.py (4ms) 2023-05-16 21:53:00.266 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\hoyolab.py (6ms) 2023-05-16 21:53:00.271 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\daily.py (4ms) 2023-05-16 21:53:00.285 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\calculator\__init__.py ... 2023-05-16 21:53:00.285 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\calculator\client.py (11ms) 2023-05-16 21:53:00.285 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\calculator\__init__.py (11ms) 2023-05-16 21:53:00.290 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\diary.py (4ms) 2023-05-16 21:53:00.307 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\lineup.py (14ms) 2023-05-16 21:53:00.311 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\teapot.py (2ms) 2023-05-16 21:53:00.334 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\wiki.py (4ms) 2023-05-16 21:53:00.335 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\transaction.py (3ms) 2023-05-16 21:53:00.335 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\__init__.py ... 2023-05-16 21:53:00.335 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\client.py (13ms) 2023-05-16 21:53:00.335 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\__init__.py (13ms) 2023-05-16 21:53:00.773 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\__main__.py (590ms) 2023-05-16 21:53:00.774 [info] [Info - 9:53:00 PM] (5772) Heap stats: total_heap_size=142MB, used_heap_size=122MB, total_physical_size=142MB, total_available_size=1945MB, heap_size_limit=2072MB 2023-05-16 21:53:00.775 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\__main__.py (590ms) 2023-05-16 21:53:00.799 [info] (5772) Background analysis message: resumeAnalysis 2023-05-16 21:53:00.800 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\constants.py ... 2023-05-16 21:53:00.800 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\constants.py (3ms) 2023-05-16 21:53:00.801 [info] [Info - 9:53:00 PM] (5772) Heap stats: total_heap_size=142MB, used_heap_size=122MB, total_physical_size=142MB, total_available_size=1945MB, heap_size_limit=2072MB 2023-05-16 21:53:00.801 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\constants.py (3ms) 2023-05-16 21:53:00.871 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\errors.py ... 2023-05-16 21:53:00.872 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\errors.py (72ms) 2023-05-16 21:53:00.872 [info] [Info - 9:53:00 PM] (5772) Heap stats: total_heap_size=142MB, used_heap_size=126MB, total_physical_size=142MB, total_available_size=1941MB, heap_size_limit=2072MB 2023-05-16 21:53:00.872 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\errors.py (72ms) 2023-05-16 21:53:00.886 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\types.py ... 2023-05-16 21:53:00.887 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\types.py (12ms) 2023-05-16 21:53:00.887 [info] [Info - 9:53:00 PM] (5772) Heap stats: total_heap_size=142MB, used_heap_size=126MB, total_physical_size=142MB, total_available_size=1941MB, heap_size_limit=2072MB 2023-05-16 21:53:00.888 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\types.py (13ms) 2023-05-16 21:53:00.890 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\clients.py ... 2023-05-16 21:53:00.890 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\clients.py (5ms) 2023-05-16 21:53:00.890 [info] [Info - 9:53:00 PM] (5772) Heap stats: total_heap_size=142MB, used_heap_size=127MB, total_physical_size=142MB, total_available_size=1940MB, heap_size_limit=2072MB 2023-05-16 21:53:00.890 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\clients.py (5ms) 2023-05-16 21:53:01.107 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\compatibility.py ... 2023-05-16 21:53:01.107 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\compatibility.py (216ms) 2023-05-16 21:53:01.107 [info] [Info - 9:53:01 PM] (5772) Heap stats: total_heap_size=142MB, used_heap_size=126MB, total_physical_size=142MB, total_available_size=1941MB, heap_size_limit=2072MB 2023-05-16 21:53:01.107 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\compatibility.py (216ms) 2023-05-16 21:53:01.119 [info] (5772) Background analysis message: resumeAnalysis 2023-05-16 21:53:01.140 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\ratelimit.py ... 2023-05-16 21:53:01.140 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\ratelimit.py (18ms) 2023-05-16 21:53:01.140 [info] [Info - 9:53:01 PM] (5772) Heap stats: total_heap_size=142MB, used_heap_size=126MB, total_physical_size=142MB, total_available_size=1941MB, heap_size_limit=2072MB 2023-05-16 21:53:01.140 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\ratelimit.py (18ms) 2023-05-16 21:53:01.184 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\routes.py ... 2023-05-16 21:53:01.185 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\routes.py (46ms) 2023-05-16 21:53:01.185 [info] [Info - 9:53:01 PM] (5772) Heap stats: total_heap_size=143MB, used_heap_size=122MB, total_physical_size=143MB, total_available_size=1945MB, heap_size_limit=2072MB 2023-05-16 21:53:01.186 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\routes.py (46ms) 2023-05-16 21:53:01.277 [info] [Info - 9:53:01 PM] (5772) SourceFile: Received fs event 'change' for path 'c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\cookie.py' 2023-05-16 21:53:01.316 [info] [Info - 9:53:01 PM] (5772) SourceFile: Received fs event 'change' for path 'c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\managers.py' 2023-05-16 21:53:01.321 [info] [Info - 9:53:01 PM] (5772) SourceFile: Received fs event 'change' for path 'c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\calculator.py' 2023-05-16 21:53:01.351 [info] [Info - 9:53:01 PM] (5772) SourceFile: Received fs event 'change' for path 'c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\gacha.py' 2023-05-16 21:53:01.355 [info] [Info - 9:53:01 PM] (5772) SourceFile: Received fs event 'change' for path 'c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\lineup.py' 2023-05-16 21:53:01.373 [info] [Info - 9:53:01 PM] (5772) SourceFile: Received fs event 'change' for path 'c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\teapot.py' 2023-05-16 21:53:01.392 [info] [Info - 9:53:01 PM] (5772) SourceFile: Received fs event 'change' for path 'c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\abyss.py' 2023-05-16 21:53:01.409 [info] [Info - 9:53:01 PM] (5772) SourceFile: Received fs event 'change' for path 'c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\stats.py' 2023-05-16 21:53:01.443 [info] [Info - 9:53:01 PM] (5772) SourceFile: Received fs event 'change' for path 'c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\tcg.py' 2023-05-16 21:53:01.464 [info] [Info - 9:53:01 PM] (5772) SourceFile: Received fs event 'change' for path 'c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\modes.py' 2023-05-16 21:53:01.484 [info] [Info - 9:53:01 PM] (5772) SourceFile: Received fs event 'change' for path 'c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\stats.py' 2023-05-16 21:53:01.511 [info] [Info - 9:53:01 PM] (5772) SourceFile: Received fs event 'change' for path 'c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\record.py' 2023-05-16 21:53:01.535 [info] [Info - 9:53:01 PM] (5772) SourceFile: Received fs event 'change' for path 'c:\Users\D\code\thesadru\genshin.py\genshin\utility\extdb.py' 2023-05-16 21:53:01.555 [info] [Info - 9:53:01 PM] (5772) SourceFile: Received fs event 'change' for path 'c:\Users\D\code\thesadru\genshin.py\genshin\utility\uid.py' 2023-05-16 21:53:01.575 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\base.py ... 2023-05-16 21:53:01.575 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\base.py (121ms) 2023-05-16 21:53:01.577 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\base.py (121ms) 2023-05-16 21:53:01.577 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\constants.py (0ms) 2023-05-16 21:53:01.577 [info] (5772) Background analysis message: markFilesDirty 2023-05-16 21:53:01.577 [info] (5772) Background analysis message: markFilesDirty 2023-05-16 21:53:01.577 [info] (5772) Background analysis message: markFilesDirty 2023-05-16 21:53:01.577 [info] (5772) Background analysis message: markFilesDirty 2023-05-16 21:53:01.577 [info] (5772) Background analysis message: markFilesDirty 2023-05-16 21:53:01.577 [info] (5772) Background analysis message: markFilesDirty 2023-05-16 21:53:01.578 [info] (5772) Background analysis message: markFilesDirty 2023-05-16 21:53:01.578 [info] (5772) Background analysis message: markFilesDirty 2023-05-16 21:53:01.578 [info] (5772) Background analysis message: markFilesDirty 2023-05-16 21:53:01.578 [info] (5772) Background analysis message: markFilesDirty 2023-05-16 21:53:01.578 [info] (5772) Background analysis message: markFilesDirty 2023-05-16 21:53:01.578 [info] (5772) Background analysis message: markFilesDirty 2023-05-16 21:53:01.579 [info] (5772) Background analysis message: markFilesDirty 2023-05-16 21:53:01.579 [info] (5772) Background analysis message: markFilesDirty 2023-05-16 21:53:01.601 [info] (5772) Background analysis message: analyze 2023-05-16 21:53:01.609 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\gacha.py ... 2023-05-16 21:53:01.609 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\gacha.py (6ms) 2023-05-16 21:53:01.620 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\gacha.py ... 2023-05-16 21:53:01.621 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\__init__.py ... 2023-05-16 21:53:01.621 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\__init__.py ... 2023-05-16 21:53:01.621 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\clients.py (1ms) 2023-05-16 21:53:01.623 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\compatibility.py (4ms) 2023-05-16 21:53:01.634 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\__init__.py ... 2023-05-16 21:53:01.634 [info] (5772) [BG(1)] parsing: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\cookie.py [fs read 0ms] (10ms) 2023-05-16 21:53:01.636 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\cookie.py (1ms) 2023-05-16 21:53:01.692 [info] (5772) [BG(1)] parsing: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\managers.py [fs read 1ms] (48ms) 2023-05-16 21:53:01.708 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\managers.py (21ms) 2023-05-16 21:53:01.708 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\__init__.py (81ms) 2023-05-16 21:53:01.708 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\__init__.py (86ms) 2023-05-16 21:53:01.709 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\constants.py (1ms) 2023-05-16 21:53:01.709 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\types.py (2ms) 2023-05-16 21:53:01.709 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\__init__.py (89ms) 2023-05-16 21:53:01.737 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\paginators\__init__.py ... 2023-05-16 21:53:01.737 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\paginators\api.py (8ms) 2023-05-16 21:53:01.737 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\paginators\__init__.py (8ms) 2023-05-16 21:53:01.737 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\utility\__init__.py ... 2023-05-16 21:53:01.738 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\utility\ds.py (1ms) 2023-05-16 21:53:01.738 [info] (5772) [BG(1)] parsing: c:\Users\D\code\thesadru\genshin.py\genshin\utility\extdb.py [fs read 0ms] (9ms) 2023-05-16 21:53:01.749 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\utility\extdb.py (16ms) 2023-05-16 21:53:01.763 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\utility\logfile.py (5ms) 2023-05-16 21:53:01.773 [info] (5772) [BG(1)] parsing: c:\Users\D\code\thesadru\genshin.py\genshin\utility\uid.py [fs read 0ms] (19ms) 2023-05-16 21:53:01.773 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\utility\uid.py (3ms) 2023-05-16 21:53:01.774 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\utility\__init__.py (56ms) 2023-05-16 21:53:01.777 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\routes.py (4ms) 2023-05-16 21:53:01.803 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\base.py (17ms) 2023-05-16 21:53:01.817 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\__init__.py ... 2023-05-16 21:53:01.817 [info] (5772) [BG(1)] parsing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\calculator.py [fs read 1ms] (14ms) 2023-05-16 21:53:01.817 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\calculator.py (2ms) 2023-05-16 21:53:01.818 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\character.py (7ms) 2023-05-16 21:53:01.823 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\__init__.py ... 2023-05-16 21:53:01.823 [info] (5772) [BG(1)] parsing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\abyss.py [fs read 1ms] (4ms) 2023-05-16 21:53:01.824 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\abyss.py (1ms) 2023-05-16 21:53:01.833 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\activities.py (10ms) 2023-05-16 21:53:01.836 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\characters.py (2ms) 2023-05-16 21:53:01.839 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\notes.py (4ms) 2023-05-16 21:53:01.850 [info] (5772) [BG(1)] parsing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\stats.py [fs read 0ms] (8ms) 2023-05-16 21:53:01.851 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\stats.py (2ms) 2023-05-16 21:53:01.857 [info] (5772) [BG(1)] parsing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\tcg.py [fs read 1ms] (7ms) 2023-05-16 21:53:01.858 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\tcg.py (1ms) 2023-05-16 21:53:01.858 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\__init__.py (40ms) 2023-05-16 21:53:01.859 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\daily.py (1ms) 2023-05-16 21:53:01.861 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\diary.py (1ms) 2023-05-16 21:53:01.871 [info] (5772) [BG(1)] parsing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\lineup.py [fs read 1ms] (10ms) 2023-05-16 21:53:01.874 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\lineup.py (2ms) 2023-05-16 21:53:01.886 [info] (5772) [BG(1)] parsing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\teapot.py [fs read 1ms] (4ms) 2023-05-16 21:53:01.888 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\teapot.py (2ms) 2023-05-16 21:53:01.888 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\transaction.py (1ms) 2023-05-16 21:53:01.893 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\wiki.py (4ms) 2023-05-16 21:53:01.893 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\__init__.py (98ms) 2023-05-16 21:53:01.906 [info] (5772) [BG(1)] parsing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\gacha.py [fs read 0ms] (11ms) 2023-05-16 21:53:01.907 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\gacha.py (2ms) 2023-05-16 21:53:02.001 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\model.py (7ms) 2023-05-16 21:53:02.049 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\__init__.py ... 2023-05-16 21:53:02.050 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\__init__.py ... 2023-05-16 21:53:02.050 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\battlesuit.py (3ms) 2023-05-16 21:53:02.058 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\__init__.py ... 2023-05-16 21:53:02.059 [info] (5772) [BG(1)] parsing: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\modes.py [fs read 1ms] (11ms) 2023-05-16 21:53:02.072 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\modes.py (3ms) 2023-05-16 21:53:02.073 [info] (5772) [BG(1)] parsing: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\stats.py [fs read 0ms] (9ms) 2023-05-16 21:53:02.089 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\stats.py (3ms) 2023-05-16 21:53:02.090 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\__init__.py (27ms) 2023-05-16 21:53:02.090 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\__init__.py (31ms) 2023-05-16 21:53:02.090 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\__init__.py ... 2023-05-16 21:53:02.091 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\announcements.py (1ms) 2023-05-16 21:53:02.091 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\private.py (0ms) 2023-05-16 21:53:02.091 [info] (5772) [BG(1)] parsing: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\record.py [fs read 1ms] (7ms) 2023-05-16 21:53:02.091 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\record.py (2ms) 2023-05-16 21:53:02.111 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\__init__.py (18ms) 2023-05-16 21:53:02.111 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\__init__.py (51ms) 2023-05-16 21:53:02.233 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\gacha.py (624ms) 2023-05-16 21:53:02.233 [info] [Info - 9:53:02 PM] (5772) Heap stats: total_heap_size=148MB, used_heap_size=128MB, total_physical_size=148MB, total_available_size=1939MB, heap_size_limit=2072MB 2023-05-16 21:53:02.234 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\gacha.py (631ms) 2023-05-16 21:53:02.317 [info] (5772) Background analysis message: resumeAnalysis 2023-05-16 21:53:02.353 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\__main__.py ... 2023-05-16 21:53:02.360 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\__main__.py ... 2023-05-16 21:53:02.360 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\__init__.py ... 2023-05-16 21:53:02.360 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\client.py (0ms) 2023-05-16 21:53:02.360 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\__init__.py (1ms) 2023-05-16 21:53:02.360 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\genshin.py (7ms) 2023-05-16 21:53:02.360 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\base.py (6ms) 2023-05-16 21:53:02.361 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\honkai.py (5ms) 2023-05-16 21:53:02.386 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\hoyolab.py (6ms) 2023-05-16 21:53:02.386 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\daily.py (5ms) 2023-05-16 21:53:02.395 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\calculator\__init__.py ... 2023-05-16 21:53:02.395 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\calculator\client.py (12ms) 2023-05-16 21:53:02.396 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\calculator\__init__.py (13ms) 2023-05-16 21:53:02.403 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\diary.py (9ms) 2023-05-16 21:53:02.419 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\lineup.py (6ms) 2023-05-16 21:53:02.422 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\teapot.py (10ms) 2023-05-16 21:53:02.428 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\wiki.py (3ms) 2023-05-16 21:53:02.435 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\transaction.py (5ms) 2023-05-16 21:53:02.440 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\__init__.py ... 2023-05-16 21:53:02.441 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\client.py (2ms) 2023-05-16 21:53:02.441 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\__init__.py (3ms) 2023-05-16 21:53:02.770 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\__main__.py (488ms) 2023-05-16 21:53:02.771 [info] [Info - 9:53:02 PM] (5772) Heap stats: total_heap_size=148MB, used_heap_size=109MB, total_physical_size=148MB, total_available_size=1932MB, heap_size_limit=2072MB 2023-05-16 21:53:02.771 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\__main__.py (488ms) 2023-05-16 21:53:02.787 [info] (5772) Background analysis message: resumeAnalysis 2023-05-16 21:53:02.788 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\constants.py ... 2023-05-16 21:53:02.788 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\constants.py (2ms) 2023-05-16 21:53:02.788 [info] [Info - 9:53:02 PM] (5772) Heap stats: total_heap_size=148MB, used_heap_size=102MB, total_physical_size=148MB, total_available_size=1939MB, heap_size_limit=2072MB 2023-05-16 21:53:02.788 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\constants.py (2ms) 2023-05-16 21:53:02.796 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\types.py ... 2023-05-16 21:53:02.797 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\types.py (14ms) 2023-05-16 21:53:02.797 [info] [Info - 9:53:02 PM] (5772) Heap stats: total_heap_size=148MB, used_heap_size=103MB, total_physical_size=148MB, total_available_size=1939MB, heap_size_limit=2072MB 2023-05-16 21:53:02.797 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\types.py (14ms) 2023-05-16 21:53:02.802 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\clients.py ... 2023-05-16 21:53:02.803 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\clients.py (7ms) 2023-05-16 21:53:02.803 [info] [Info - 9:53:02 PM] (5772) Heap stats: total_heap_size=148MB, used_heap_size=103MB, total_physical_size=148MB, total_available_size=1938MB, heap_size_limit=2072MB 2023-05-16 21:53:02.803 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\clients.py (7ms) 2023-05-16 21:53:02.858 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\compatibility.py ... 2023-05-16 21:53:02.859 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\compatibility.py (56ms) 2023-05-16 21:53:02.859 [info] [Info - 9:53:02 PM] (5772) Heap stats: total_heap_size=148MB, used_heap_size=109MB, total_physical_size=148MB, total_available_size=1932MB, heap_size_limit=2072MB 2023-05-16 21:53:02.859 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\compatibility.py (56ms) 2023-05-16 21:53:02.869 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\ratelimit.py ... 2023-05-16 21:53:02.869 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\ratelimit.py (10ms) 2023-05-16 21:53:02.869 [info] [Info - 9:53:02 PM] (5772) Heap stats: total_heap_size=148MB, used_heap_size=103MB, total_physical_size=148MB, total_available_size=1939MB, heap_size_limit=2072MB 2023-05-16 21:53:02.869 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\ratelimit.py (10ms) 2023-05-16 21:53:02.894 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\routes.py ... 2023-05-16 21:53:02.894 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\routes.py (25ms) 2023-05-16 21:53:02.894 [info] [Info - 9:53:02 PM] (5772) Heap stats: total_heap_size=148MB, used_heap_size=106MB, total_physical_size=148MB, total_available_size=1936MB, heap_size_limit=2072MB 2023-05-16 21:53:02.894 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\routes.py (25ms) 2023-05-16 21:53:03.154 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\base.py ... 2023-05-16 21:53:03.155 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\base.py (261ms) 2023-05-16 21:53:03.155 [info] [Info - 9:53:03 PM] (5772) Heap stats: total_heap_size=148MB, used_heap_size=105MB, total_physical_size=148MB, total_available_size=1939MB, heap_size_limit=2072MB 2023-05-16 21:53:03.155 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\base.py (261ms) 2023-05-16 21:53:03.161 [info] (5772) Background analysis message: resumeAnalysis 2023-05-16 21:53:03.244 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\daily.py ... 2023-05-16 21:53:03.245 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\daily.py (84ms) 2023-05-16 21:53:03.245 [info] [Info - 9:53:03 PM] (5772) Heap stats: total_heap_size=148MB, used_heap_size=106MB, total_physical_size=148MB, total_available_size=1938MB, heap_size_limit=2072MB 2023-05-16 21:53:03.245 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\daily.py (84ms) 2023-05-16 21:53:03.285 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\diary.py ... 2023-05-16 21:53:03.285 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\diary.py (40ms) 2023-05-16 21:53:03.285 [info] [Info - 9:53:03 PM] (5772) Heap stats: total_heap_size=149MB, used_heap_size=111MB, total_physical_size=149MB, total_available_size=1933MB, heap_size_limit=2072MB 2023-05-16 21:53:03.285 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\diary.py (40ms) 2023-05-16 21:53:03.372 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\hoyolab.py ... 2023-05-16 21:53:03.372 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\hoyolab.py (83ms) 2023-05-16 21:53:03.372 [info] [Info - 9:53:03 PM] (5772) Heap stats: total_heap_size=149MB, used_heap_size=110MB, total_physical_size=149MB, total_available_size=1934MB, heap_size_limit=2072MB 2023-05-16 21:53:03.373 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\hoyolab.py (83ms) 2023-05-16 21:53:03.374 [info] (5772) Background analysis message: resumeAnalysis 2023-05-16 21:53:03.428 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\lineup.py ... 2023-05-16 21:53:03.428 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\lineup.py (58ms) 2023-05-16 21:53:03.428 [info] [Info - 9:53:03 PM] (5772) Heap stats: total_heap_size=149MB, used_heap_size=111MB, total_physical_size=149MB, total_available_size=1933MB, heap_size_limit=2072MB 2023-05-16 21:53:03.428 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\lineup.py (58ms) 2023-05-16 21:53:03.456 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\teapot.py ... 2023-05-16 21:53:03.456 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\teapot.py (28ms) 2023-05-16 21:53:03.456 [info] [Info - 9:53:03 PM] (5772) Heap stats: total_heap_size=149MB, used_heap_size=108MB, total_physical_size=149MB, total_available_size=1936MB, heap_size_limit=2072MB 2023-05-16 21:53:03.456 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\teapot.py (28ms) 2023-05-16 21:53:03.492 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\transaction.py ... 2023-05-16 21:53:03.492 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\transaction.py (36ms) 2023-05-16 21:53:03.492 [info] [Info - 9:53:03 PM] (5772) Heap stats: total_heap_size=149MB, used_heap_size=106MB, total_physical_size=149MB, total_available_size=1939MB, heap_size_limit=2072MB 2023-05-16 21:53:03.492 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\transaction.py (36ms) 2023-05-16 21:53:03.527 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\wiki.py ... 2023-05-16 21:53:03.527 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\wiki.py (35ms) 2023-05-16 21:53:03.527 [info] [Info - 9:53:03 PM] (5772) Heap stats: total_heap_size=149MB, used_heap_size=112MB, total_physical_size=149MB, total_available_size=1933MB, heap_size_limit=2072MB 2023-05-16 21:53:03.527 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\wiki.py (35ms) 2023-05-16 21:53:03.537 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\calculator\calculator.py ... 2023-05-16 21:53:03.537 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\calculator\calculator.py (10ms) 2023-05-16 21:53:03.640 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\calculator\calculator.py (103ms) 2023-05-16 21:53:03.640 [info] [Info - 9:53:03 PM] (5772) Heap stats: total_heap_size=149MB, used_heap_size=110MB, total_physical_size=149MB, total_available_size=1936MB, heap_size_limit=2072MB 2023-05-16 21:53:03.640 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\calculator\calculator.py (114ms) 2023-05-16 21:53:03.644 [info] (5772) Background analysis message: resumeAnalysis 2023-05-16 21:53:03.775 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\calculator\client.py ... 2023-05-16 21:53:03.775 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\calculator\client.py (133ms) 2023-05-16 21:53:03.776 [info] [Info - 9:53:03 PM] (5772) Heap stats: total_heap_size=149MB, used_heap_size=113MB, total_physical_size=149MB, total_available_size=1934MB, heap_size_limit=2072MB 2023-05-16 21:53:03.776 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\calculator\client.py (133ms) 2023-05-16 21:53:03.820 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\base.py ... 2023-05-16 21:53:03.820 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\base.py (45ms) 2023-05-16 21:53:03.821 [info] [Info - 9:53:03 PM] (5772) Heap stats: total_heap_size=149MB, used_heap_size=109MB, total_physical_size=149MB, total_available_size=1938MB, heap_size_limit=2072MB 2023-05-16 21:53:03.821 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\base.py (46ms) 2023-05-16 21:53:03.821 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\client.py ... 2023-05-16 21:53:03.822 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\client.py (1ms) 2023-05-16 21:53:03.822 [info] [Info - 9:53:03 PM] (5772) Heap stats: total_heap_size=149MB, used_heap_size=109MB, total_physical_size=149MB, total_available_size=1938MB, heap_size_limit=2072MB 2023-05-16 21:53:03.822 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\client.py (1ms) 2023-05-16 21:53:03.907 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\genshin.py ... 2023-05-16 21:53:03.907 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\genshin.py (84ms) 2023-05-16 21:53:03.907 [info] [Info - 9:53:03 PM] (5772) Heap stats: total_heap_size=149MB, used_heap_size=113MB, total_physical_size=149MB, total_available_size=1935MB, heap_size_limit=2072MB 2023-05-16 21:53:03.908 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\genshin.py (84ms) 2023-05-16 21:53:03.923 [info] (5772) Background analysis message: resumeAnalysis 2023-05-16 21:53:03.991 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\honkai.py ... 2023-05-16 21:53:03.991 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\honkai.py (76ms) 2023-05-16 21:53:03.992 [info] [Info - 9:53:03 PM] (5772) Heap stats: total_heap_size=149MB, used_heap_size=114MB, total_physical_size=149MB, total_available_size=1934MB, heap_size_limit=2072MB 2023-05-16 21:53:03.992 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\honkai.py (76ms) 2023-05-16 21:53:03.993 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\client.py ... 2023-05-16 21:53:03.994 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\client.py ... 2023-05-16 21:53:03.994 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\server.py (1ms) 2023-05-16 21:53:04.029 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\client.py (37ms) 2023-05-16 21:53:04.029 [info] [Info - 9:53:04 PM] (5772) Heap stats: total_heap_size=149MB, used_heap_size=110MB, total_physical_size=149MB, total_available_size=1938MB, heap_size_limit=2072MB 2023-05-16 21:53:04.029 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\client.py (38ms) 2023-05-16 21:53:04.208 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\server.py ... 2023-05-16 21:53:04.209 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\server.py (167ms) 2023-05-16 21:53:04.209 [info] [Info - 9:53:04 PM] (5772) Heap stats: total_heap_size=149MB, used_heap_size=114MB, total_physical_size=149MB, total_available_size=1934MB, heap_size_limit=2072MB 2023-05-16 21:53:04.209 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\server.py (167ms) 2023-05-16 21:53:04.230 [info] (5772) Background analysis message: resumeAnalysis 2023-05-16 21:53:04.360 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\cookie.py ... 2023-05-16 21:53:04.360 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\cookie.py (146ms) 2023-05-16 21:53:04.360 [info] [Info - 9:53:04 PM] (5772) Heap stats: total_heap_size=149MB, used_heap_size=111MB, total_physical_size=149MB, total_available_size=1936MB, heap_size_limit=2072MB 2023-05-16 21:53:04.360 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\cookie.py (146ms) 2023-05-16 21:53:04.594 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\managers.py ... 2023-05-16 21:53:04.595 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\managers.py (234ms) 2023-05-16 21:53:04.596 [info] [Info - 9:53:04 PM] (5772) Heap stats: total_heap_size=149MB, used_heap_size=111MB, total_physical_size=149MB, total_available_size=1937MB, heap_size_limit=2072MB 2023-05-16 21:53:04.596 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\managers.py (234ms) 2023-05-16 21:53:04.608 [info] (5772) Background analysis message: resumeAnalysis 2023-05-16 21:53:04.806 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\model.py ... 2023-05-16 21:53:04.807 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\model.py (201ms) 2023-05-16 21:53:04.807 [info] [Info - 9:53:04 PM] (5772) Heap stats: total_heap_size=149MB, used_heap_size=114MB, total_physical_size=149MB, total_available_size=1934MB, heap_size_limit=2072MB 2023-05-16 21:53:04.807 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\model.py (201ms) 2023-05-16 21:53:04.811 [info] (5772) Background analysis message: resumeAnalysis 2023-05-16 21:53:04.918 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\calculator.py ... 2023-05-16 21:53:04.919 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\calculator.py (108ms) 2023-05-16 21:53:04.919 [info] [Info - 9:53:04 PM] (5772) Heap stats: total_heap_size=150MB, used_heap_size=116MB, total_physical_size=150MB, total_available_size=1932MB, heap_size_limit=2072MB 2023-05-16 21:53:04.919 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\calculator.py (108ms) 2023-05-16 21:53:04.960 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\character.py ... 2023-05-16 21:53:04.960 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\character.py (43ms) 2023-05-16 21:53:04.961 [info] [Info - 9:53:04 PM] (5772) Heap stats: total_heap_size=150MB, used_heap_size=113MB, total_physical_size=150MB, total_available_size=1935MB, heap_size_limit=2072MB 2023-05-16 21:53:04.961 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\character.py (43ms) 2023-05-16 21:53:04.968 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\daily.py ... 2023-05-16 21:53:04.968 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\daily.py (6ms) 2023-05-16 21:53:04.968 [info] [Info - 9:53:04 PM] (5772) Heap stats: total_heap_size=150MB, used_heap_size=114MB, total_physical_size=150MB, total_available_size=1934MB, heap_size_limit=2072MB 2023-05-16 21:53:04.968 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\daily.py (6ms) 2023-05-16 21:53:04.975 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\diary.py ... 2023-05-16 21:53:04.975 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\diary.py (8ms) 2023-05-16 21:53:04.975 [info] [Info - 9:53:04 PM] (5772) Heap stats: total_heap_size=150MB, used_heap_size=115MB, total_physical_size=150MB, total_available_size=1933MB, heap_size_limit=2072MB 2023-05-16 21:53:04.975 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\diary.py (8ms) 2023-05-16 21:53:05.027 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\lineup.py ... 2023-05-16 21:53:05.028 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\lineup.py (52ms) 2023-05-16 21:53:05.028 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=150MB, used_heap_size=113MB, total_physical_size=150MB, total_available_size=1935MB, heap_size_limit=2072MB 2023-05-16 21:53:05.028 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\lineup.py (53ms) 2023-05-16 21:53:05.031 [info] (5772) Background analysis message: resumeAnalysis 2023-05-16 21:53:05.042 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\teapot.py ... 2023-05-16 21:53:05.043 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\teapot.py (12ms) 2023-05-16 21:53:05.043 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=150MB, used_heap_size=114MB, total_physical_size=150MB, total_available_size=1934MB, heap_size_limit=2072MB 2023-05-16 21:53:05.043 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\teapot.py (12ms) 2023-05-16 21:53:05.049 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\transaction.py ... 2023-05-16 21:53:05.049 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\transaction.py (7ms) 2023-05-16 21:53:05.054 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=150MB, used_heap_size=115MB, total_physical_size=150MB, total_available_size=1933MB, heap_size_limit=2072MB 2023-05-16 21:53:05.057 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\transaction.py (7ms) 2023-05-16 21:53:05.206 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\wiki.py ... 2023-05-16 21:53:05.206 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\wiki.py (153ms) 2023-05-16 21:53:05.207 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=150MB, used_heap_size=116MB, total_physical_size=150MB, total_available_size=1933MB, heap_size_limit=2072MB 2023-05-16 21:53:05.207 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\wiki.py (153ms) 2023-05-16 21:53:05.224 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\abyss.py ... 2023-05-16 21:53:05.225 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\abyss.py (22ms) 2023-05-16 21:53:05.225 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=150MB, used_heap_size=117MB, total_physical_size=150MB, total_available_size=1931MB, heap_size_limit=2072MB 2023-05-16 21:53:05.225 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\abyss.py (22ms) 2023-05-16 21:53:05.270 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\activities.py ... 2023-05-16 21:53:05.270 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\activities.py (46ms) 2023-05-16 21:53:05.270 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=150MB, used_heap_size=115MB, total_physical_size=150MB, total_available_size=1934MB, heap_size_limit=2072MB 2023-05-16 21:53:05.270 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\activities.py (46ms) 2023-05-16 21:53:05.275 [info] (5772) Background analysis message: resumeAnalysis 2023-05-16 21:53:05.309 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\characters.py ... 2023-05-16 21:53:05.309 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\characters.py (35ms) 2023-05-16 21:53:05.309 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=150MB, used_heap_size=117MB, total_physical_size=150MB, total_available_size=1932MB, heap_size_limit=2072MB 2023-05-16 21:53:05.309 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\characters.py (35ms) 2023-05-16 21:53:05.340 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\notes.py ... 2023-05-16 21:53:05.340 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\notes.py (31ms) 2023-05-16 21:53:05.340 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=150MB, used_heap_size=112MB, total_physical_size=150MB, total_available_size=1936MB, heap_size_limit=2072MB 2023-05-16 21:53:05.340 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\notes.py (31ms) 2023-05-16 21:53:05.360 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\stats.py ... 2023-05-16 21:53:05.361 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\stats.py (21ms) 2023-05-16 21:53:05.361 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=150MB, used_heap_size=115MB, total_physical_size=150MB, total_available_size=1933MB, heap_size_limit=2072MB 2023-05-16 21:53:05.361 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\stats.py (21ms) 2023-05-16 21:53:05.370 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\tcg.py ... 2023-05-16 21:53:05.370 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\tcg.py (10ms) 2023-05-16 21:53:05.370 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=150MB, used_heap_size=116MB, total_physical_size=150MB, total_available_size=1932MB, heap_size_limit=2072MB 2023-05-16 21:53:05.370 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\tcg.py (10ms) 2023-05-16 21:53:05.388 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\battlesuit.py ... 2023-05-16 21:53:05.388 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\battlesuit.py (18ms) 2023-05-16 21:53:05.388 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=151MB, used_heap_size=111MB, total_physical_size=151MB, total_available_size=1937MB, heap_size_limit=2072MB 2023-05-16 21:53:05.389 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\battlesuit.py (18ms) 2023-05-16 21:53:05.398 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\battlesuits.py ... 2023-05-16 21:53:05.398 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\battlesuits.py (9ms) 2023-05-16 21:53:05.398 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=151MB, used_heap_size=113MB, total_physical_size=151MB, total_available_size=1935MB, heap_size_limit=2072MB 2023-05-16 21:53:05.398 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\battlesuits.py (9ms) 2023-05-16 21:53:05.445 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\modes.py ... 2023-05-16 21:53:05.445 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\modes.py (47ms) 2023-05-16 21:53:05.445 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=151MB, used_heap_size=113MB, total_physical_size=151MB, total_available_size=1936MB, heap_size_limit=2072MB 2023-05-16 21:53:05.445 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\modes.py (47ms) 2023-05-16 21:53:05.507 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\stats.py ... 2023-05-16 21:53:05.508 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\stats.py (63ms) 2023-05-16 21:53:05.508 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=151MB, used_heap_size=118MB, total_physical_size=151MB, total_available_size=1930MB, heap_size_limit=2072MB 2023-05-16 21:53:05.508 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\stats.py (63ms) 2023-05-16 21:53:05.514 [info] (5772) Background analysis message: resumeAnalysis 2023-05-16 21:53:05.514 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\announcements.py ... 2023-05-16 21:53:05.514 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\announcements.py (3ms) 2023-05-16 21:53:05.515 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=151MB, used_heap_size=112MB, total_physical_size=151MB, total_available_size=1936MB, heap_size_limit=2072MB 2023-05-16 21:53:05.515 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\announcements.py (3ms) 2023-05-16 21:53:05.518 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\private.py ... 2023-05-16 21:53:05.519 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\private.py (3ms) 2023-05-16 21:53:05.519 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=151MB, used_heap_size=112MB, total_physical_size=151MB, total_available_size=1936MB, heap_size_limit=2072MB 2023-05-16 21:53:05.519 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\private.py (3ms) 2023-05-16 21:53:05.560 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\record.py ... 2023-05-16 21:53:05.560 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\record.py (42ms) 2023-05-16 21:53:05.560 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=151MB, used_heap_size=117MB, total_physical_size=151MB, total_available_size=1932MB, heap_size_limit=2072MB 2023-05-16 21:53:05.560 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\record.py (42ms) 2023-05-16 21:53:05.578 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\paginators\api.py ... 2023-05-16 21:53:05.578 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\paginators\api.py (18ms) 2023-05-16 21:53:05.579 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=151MB, used_heap_size=119MB, total_physical_size=151MB, total_available_size=1930MB, heap_size_limit=2072MB 2023-05-16 21:53:05.579 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\paginators\api.py (18ms) 2023-05-16 21:53:05.608 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\utility\ds.py ... 2023-05-16 21:53:05.608 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\utility\ds.py (30ms) 2023-05-16 21:53:05.608 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=151MB, used_heap_size=117MB, total_physical_size=151MB, total_available_size=1932MB, heap_size_limit=2072MB 2023-05-16 21:53:05.608 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\utility\ds.py (31ms) 2023-05-16 21:53:05.688 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\utility\extdb.py ... 2023-05-16 21:53:05.689 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\utility\extdb.py (80ms) 2023-05-16 21:53:05.689 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=151MB, used_heap_size=118MB, total_physical_size=151MB, total_available_size=1930MB, heap_size_limit=2072MB 2023-05-16 21:53:05.689 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\utility\extdb.py (80ms) 2023-05-16 21:53:05.728 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\utility\logfile.py ... 2023-05-16 21:53:05.728 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\utility\logfile.py (39ms) 2023-05-16 21:53:05.728 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=151MB, used_heap_size=114MB, total_physical_size=151MB, total_available_size=1934MB, heap_size_limit=2072MB 2023-05-16 21:53:05.729 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\utility\logfile.py (39ms) 2023-05-16 21:53:05.749 [info] (5772) Background analysis message: resumeAnalysis 2023-05-16 21:53:05.779 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\utility\uid.py ... 2023-05-16 21:53:05.779 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\utility\uid.py (31ms) 2023-05-16 21:53:05.779 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=151MB, used_heap_size=118MB, total_physical_size=151MB, total_available_size=1931MB, heap_size_limit=2072MB 2023-05-16 21:53:05.779 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\utility\uid.py (31ms) 2023-05-16 21:53:05.814 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\gacha.py ... 2023-05-16 21:53:05.815 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\gacha.py (36ms) 2023-05-16 21:53:05.815 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=114MB, total_physical_size=152MB, total_available_size=1934MB, heap_size_limit=2072MB 2023-05-16 21:53:05.815 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\gacha.py (36ms) 2023-05-16 21:53:05.818 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\constants.py [found 3] (0ms) 2023-05-16 21:53:05.820 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\constants.py 2023-05-16 21:53:05.820 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=114MB, total_physical_size=152MB, total_available_size=1934MB, heap_size_limit=2072MB 2023-05-16 21:53:05.821 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\errors.py [found 21] (0ms) 2023-05-16 21:53:05.821 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\errors.py 2023-05-16 21:53:05.823 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=114MB, total_physical_size=152MB, total_available_size=1934MB, heap_size_limit=2072MB 2023-05-16 21:53:05.824 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\types.py [found 5] (0ms) 2023-05-16 21:53:05.825 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\types.py 2023-05-16 21:53:05.825 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=114MB, total_physical_size=152MB, total_available_size=1934MB, heap_size_limit=2072MB 2023-05-16 21:53:05.826 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\client\clients.py [found 2] (0ms) 2023-05-16 21:53:05.826 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\client\clients.py 2023-05-16 21:53:05.826 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=114MB, total_physical_size=152MB, total_available_size=1934MB, heap_size_limit=2072MB 2023-05-16 21:53:05.827 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\client\compatibility.py [found 5] (0ms) 2023-05-16 21:53:05.828 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\client\compatibility.py 2023-05-16 21:53:05.828 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=114MB, total_physical_size=152MB, total_available_size=1934MB, heap_size_limit=2072MB 2023-05-16 21:53:05.828 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\client\routes.py [found 26] (12ms) 2023-05-16 21:53:05.829 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\client\routes.py 2023-05-16 21:53:05.860 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=115MB, total_physical_size=152MB, total_available_size=1934MB, heap_size_limit=2072MB 2023-05-16 21:53:05.860 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\base.py [found 2] (1ms) 2023-05-16 21:53:05.861 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\base.py 2023-05-16 21:53:05.861 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=115MB, total_physical_size=152MB, total_available_size=1934MB, heap_size_limit=2072MB 2023-05-16 21:53:05.861 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\daily.py [found 3] (0ms) 2023-05-16 21:53:05.861 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\daily.py 2023-05-16 21:53:05.861 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=115MB, total_physical_size=152MB, total_available_size=1934MB, heap_size_limit=2072MB 2023-05-16 21:53:05.861 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\diary.py [found 5] (0ms) 2023-05-16 21:53:05.861 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\diary.py 2023-05-16 21:53:05.861 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=115MB, total_physical_size=152MB, total_available_size=1934MB, heap_size_limit=2072MB 2023-05-16 21:53:05.861 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\hoyolab.py [found 2] (0ms) 2023-05-16 21:53:05.861 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\hoyolab.py 2023-05-16 21:53:05.862 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=115MB, total_physical_size=152MB, total_available_size=1934MB, heap_size_limit=2072MB 2023-05-16 21:53:05.862 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\lineup.py [found 2] (1ms) 2023-05-16 21:53:05.862 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\lineup.py 2023-05-16 21:53:05.862 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=115MB, total_physical_size=152MB, total_available_size=1934MB, heap_size_limit=2072MB 2023-05-16 21:53:05.862 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\teapot.py [found 2] (0ms) 2023-05-16 21:53:05.862 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\teapot.py 2023-05-16 21:53:05.862 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=115MB, total_physical_size=152MB, total_available_size=1934MB, heap_size_limit=2072MB 2023-05-16 21:53:05.862 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\transaction.py [found 2] (1ms) 2023-05-16 21:53:05.863 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\transaction.py 2023-05-16 21:53:05.863 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=115MB, total_physical_size=152MB, total_available_size=1934MB, heap_size_limit=2072MB 2023-05-16 21:53:05.863 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\wiki.py [found 2] (0ms) 2023-05-16 21:53:05.863 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\wiki.py 2023-05-16 21:53:05.863 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=115MB, total_physical_size=152MB, total_available_size=1934MB, heap_size_limit=2072MB 2023-05-16 21:53:05.863 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\calculator\calculator.py [found 16] (0ms) 2023-05-16 21:53:05.863 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\calculator\calculator.py 2023-05-16 21:53:05.863 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=115MB, total_physical_size=152MB, total_available_size=1934MB, heap_size_limit=2072MB 2023-05-16 21:53:05.863 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\calculator\client.py [found 3] (0ms) 2023-05-16 21:53:05.863 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\calculator\client.py 2023-05-16 21:53:05.864 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=115MB, total_physical_size=152MB, total_available_size=1934MB, heap_size_limit=2072MB 2023-05-16 21:53:05.864 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\base.py [found 4] (0ms) 2023-05-16 21:53:05.864 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\base.py 2023-05-16 21:53:05.864 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=115MB, total_physical_size=152MB, total_available_size=1934MB, heap_size_limit=2072MB 2023-05-16 21:53:05.864 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\client.py [found 2] (0ms) 2023-05-16 21:53:05.864 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\client.py 2023-05-16 21:53:05.864 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=115MB, total_physical_size=152MB, total_available_size=1934MB, heap_size_limit=2072MB 2023-05-16 21:53:05.864 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\genshin.py [found 2] (0ms) 2023-05-16 21:53:05.864 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\genshin.py 2023-05-16 21:53:05.865 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=115MB, total_physical_size=152MB, total_available_size=1934MB, heap_size_limit=2072MB 2023-05-16 21:53:05.865 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\honkai.py [found 2] (0ms) 2023-05-16 21:53:05.865 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\honkai.py 2023-05-16 21:53:05.865 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=115MB, total_physical_size=152MB, total_available_size=1934MB, heap_size_limit=2072MB 2023-05-16 21:53:05.865 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\client.py [found 3] (0ms) 2023-05-16 21:53:05.865 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\client.py 2023-05-16 21:53:05.865 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=115MB, total_physical_size=152MB, total_available_size=1934MB, heap_size_limit=2072MB 2023-05-16 21:53:05.865 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\server.py [found 4] (0ms) 2023-05-16 21:53:05.865 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\server.py 2023-05-16 21:53:05.866 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=115MB, total_physical_size=152MB, total_available_size=1934MB, heap_size_limit=2072MB 2023-05-16 21:53:05.866 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\cookie.py [found 6] (0ms) 2023-05-16 21:53:05.866 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\cookie.py 2023-05-16 21:53:05.866 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=115MB, total_physical_size=152MB, total_available_size=1934MB, heap_size_limit=2072MB 2023-05-16 21:53:05.866 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\managers.py [found 17] (0ms) 2023-05-16 21:53:05.866 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\managers.py 2023-05-16 21:53:05.867 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=115MB, total_physical_size=152MB, total_available_size=1934MB, heap_size_limit=2072MB 2023-05-16 21:53:05.867 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\models\model.py [found 6] (0ms) 2023-05-16 21:53:05.867 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\models\model.py 2023-05-16 21:53:05.867 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=115MB, total_physical_size=152MB, total_available_size=1934MB, heap_size_limit=2072MB 2023-05-16 21:53:05.867 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\calculator.py [found 14] (0ms) 2023-05-16 21:53:05.867 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\calculator.py 2023-05-16 21:53:05.869 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=115MB, total_physical_size=152MB, total_available_size=1934MB, heap_size_limit=2072MB 2023-05-16 21:53:05.869 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\character.py [found 7] (1ms) 2023-05-16 21:53:05.869 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\character.py 2023-05-16 21:53:05.869 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=115MB, total_physical_size=152MB, total_available_size=1934MB, heap_size_limit=2072MB 2023-05-16 21:53:05.869 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\daily.py [found 4] (1ms) 2023-05-16 21:53:05.869 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\daily.py 2023-05-16 21:53:05.869 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=115MB, total_physical_size=152MB, total_available_size=1934MB, heap_size_limit=2072MB 2023-05-16 21:53:05.870 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\diary.py [found 9] (0ms) 2023-05-16 21:53:05.870 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\diary.py 2023-05-16 21:53:05.870 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=115MB, total_physical_size=152MB, total_available_size=1934MB, heap_size_limit=2072MB 2023-05-16 21:53:05.870 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\lineup.py [found 16] (1ms) 2023-05-16 21:53:05.870 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\lineup.py 2023-05-16 21:53:05.870 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=115MB, total_physical_size=152MB, total_available_size=1934MB, heap_size_limit=2072MB 2023-05-16 21:53:05.871 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\teapot.py [found 5] (0ms) 2023-05-16 21:53:05.871 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\teapot.py 2023-05-16 21:53:05.871 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=115MB, total_physical_size=152MB, total_available_size=1934MB, heap_size_limit=2072MB 2023-05-16 21:53:05.871 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\transaction.py [found 5] (0ms) 2023-05-16 21:53:05.872 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\transaction.py 2023-05-16 21:53:05.872 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=115MB, total_physical_size=152MB, total_available_size=1934MB, heap_size_limit=2072MB 2023-05-16 21:53:05.872 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\wiki.py [found 9] (0ms) 2023-05-16 21:53:05.872 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\wiki.py 2023-05-16 21:53:05.872 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=115MB, total_physical_size=152MB, total_available_size=1934MB, heap_size_limit=2072MB 2023-05-16 21:53:05.872 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\abyss.py [found 9] (0ms) 2023-05-16 21:53:05.872 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\abyss.py 2023-05-16 21:53:05.872 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=115MB, total_physical_size=152MB, total_available_size=1933MB, heap_size_limit=2072MB 2023-05-16 21:53:05.872 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\activities.py [found 24] (1ms) 2023-05-16 21:53:05.872 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\activities.py 2023-05-16 21:53:05.872 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=115MB, total_physical_size=152MB, total_available_size=1933MB, heap_size_limit=2072MB 2023-05-16 21:53:05.872 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\characters.py [found 9] (0ms) 2023-05-16 21:53:05.873 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\characters.py 2023-05-16 21:53:05.873 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=115MB, total_physical_size=152MB, total_available_size=1933MB, heap_size_limit=2072MB 2023-05-16 21:53:05.873 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\notes.py [found 6] (0ms) 2023-05-16 21:53:05.873 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\notes.py 2023-05-16 21:53:05.873 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=115MB, total_physical_size=152MB, total_available_size=1933MB, heap_size_limit=2072MB 2023-05-16 21:53:05.873 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\stats.py [found 9] (0ms) 2023-05-16 21:53:05.873 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\stats.py 2023-05-16 21:53:05.873 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=115MB, total_physical_size=152MB, total_available_size=1933MB, heap_size_limit=2072MB 2023-05-16 21:53:05.873 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\tcg.py [found 9] (13ms) 2023-05-16 21:53:05.874 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\tcg.py 2023-05-16 21:53:05.874 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=115MB, total_physical_size=152MB, total_available_size=1933MB, heap_size_limit=2072MB 2023-05-16 21:53:05.874 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\battlesuit.py [found 5] (0ms) 2023-05-16 21:53:05.874 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\battlesuit.py 2023-05-16 21:53:05.874 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=115MB, total_physical_size=152MB, total_available_size=1933MB, heap_size_limit=2072MB 2023-05-16 21:53:05.874 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\modes.py [found 16] (1ms) 2023-05-16 21:53:05.874 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\modes.py 2023-05-16 21:53:05.878 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=115MB, total_physical_size=152MB, total_available_size=1933MB, heap_size_limit=2072MB 2023-05-16 21:53:05.878 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\stats.py [found 9] (0ms) 2023-05-16 21:53:05.879 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\stats.py 2023-05-16 21:53:05.879 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=115MB, total_physical_size=152MB, total_available_size=1933MB, heap_size_limit=2072MB 2023-05-16 21:53:05.879 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\announcements.py [found 2] (0ms) 2023-05-16 21:53:05.879 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\announcements.py 2023-05-16 21:53:05.879 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=115MB, total_physical_size=152MB, total_available_size=1933MB, heap_size_limit=2072MB 2023-05-16 21:53:05.879 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\private.py [found 2] (0ms) 2023-05-16 21:53:05.879 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\private.py 2023-05-16 21:53:05.879 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=115MB, total_physical_size=152MB, total_available_size=1933MB, heap_size_limit=2072MB 2023-05-16 21:53:05.879 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\record.py [found 14] (1ms) 2023-05-16 21:53:05.879 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\record.py 2023-05-16 21:53:05.880 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=115MB, total_physical_size=152MB, total_available_size=1933MB, heap_size_limit=2072MB 2023-05-16 21:53:05.880 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\paginators\api.py [found 10] (0ms) 2023-05-16 21:53:05.880 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\paginators\api.py 2023-05-16 21:53:05.880 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=115MB, total_physical_size=152MB, total_available_size=1933MB, heap_size_limit=2072MB 2023-05-16 21:53:05.880 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\utility\ds.py [found 4] (0ms) 2023-05-16 21:53:05.880 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\utility\ds.py 2023-05-16 21:53:05.880 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=115MB, total_physical_size=152MB, total_available_size=1933MB, heap_size_limit=2072MB 2023-05-16 21:53:05.880 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\utility\extdb.py [found 21] (0ms) 2023-05-16 21:53:05.880 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\utility\extdb.py 2023-05-16 21:53:05.880 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=115MB, total_physical_size=152MB, total_available_size=1933MB, heap_size_limit=2072MB 2023-05-16 21:53:05.880 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\utility\logfile.py [found 11] (0ms) 2023-05-16 21:53:05.880 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\utility\logfile.py 2023-05-16 21:53:05.881 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=115MB, total_physical_size=152MB, total_available_size=1933MB, heap_size_limit=2072MB 2023-05-16 21:53:05.881 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\utility\uid.py [found 10] (0ms) 2023-05-16 21:53:05.881 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\utility\uid.py 2023-05-16 21:53:05.881 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=115MB, total_physical_size=152MB, total_available_size=1933MB, heap_size_limit=2072MB 2023-05-16 21:53:05.881 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\gacha.py [found 9] (0ms) 2023-05-16 21:53:05.881 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\gacha.py 2023-05-16 21:53:05.881 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=116MB, total_physical_size=152MB, total_available_size=1933MB, heap_size_limit=2072MB 2023-05-16 21:53:05.881 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\gacha.py [found 2] (1ms) 2023-05-16 21:53:05.881 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\gacha.py 2023-05-16 21:53:05.881 [info] [Info - 9:53:05 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=116MB, total_physical_size=152MB, total_available_size=1933MB, heap_size_limit=2072MB 2023-05-16 21:53:08.392 [info] (5772) Background analysis message: setFileOpened 2023-05-16 21:53:08.414 [info] (5772) Background analysis message: analyze 2023-05-16 21:53:08.424 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\gacha.py ... 2023-05-16 21:53:08.425 [info] (5772) [BG(1)] parsing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\gacha.py (8ms) 2023-05-16 21:53:08.429 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\gacha.py (3ms) 2023-05-16 21:53:08.496 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\gacha.py (66ms) 2023-05-16 21:53:08.496 [info] [Info - 9:53:08 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=113MB, total_physical_size=152MB, total_available_size=1935MB, heap_size_limit=2072MB 2023-05-16 21:53:08.497 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\gacha.py (81ms) 2023-05-16 21:53:08.498 [info] (5772) Background analysis message: resumeAnalysis 2023-05-16 21:53:08.505 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\gacha.py [found 9] (0ms) 2023-05-16 21:53:08.505 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\gacha.py 2023-05-16 21:53:08.505 [info] [Info - 9:53:08 PM] (5772) Heap stats: total_heap_size=152MB, used_heap_size=114MB, total_physical_size=152MB, total_available_size=1935MB, heap_size_limit=2072MB 2023-05-16 21:56:08.491 [info] (5772) Background analysis message: setFileClosed 2023-05-16 21:56:08.541 [info] (5772) Background analysis message: analyze 2023-05-16 21:56:08.611 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\gacha.py ... 2023-05-16 21:56:08.612 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\gacha.py (28ms) 2023-05-16 21:56:08.612 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\gacha.py ... 2023-05-16 21:56:08.612 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\__init__.py ... 2023-05-16 21:56:08.612 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\__init__.py ... 2023-05-16 21:56:08.612 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\clients.py (1ms) 2023-05-16 21:56:08.612 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\compatibility.py (4ms) 2023-05-16 21:56:08.612 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\__init__.py ... 2023-05-16 21:56:08.612 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\cookie.py (10ms) 2023-05-16 21:56:08.642 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\managers.py (52ms) 2023-05-16 21:56:08.644 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\__init__.py (62ms) 2023-05-16 21:56:08.644 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\__init__.py (67ms) 2023-05-16 21:56:08.645 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\constants.py (0ms) 2023-05-16 21:56:08.657 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\types.py (1ms) 2023-05-16 21:56:08.657 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\__init__.py (69ms) 2023-05-16 21:56:08.663 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\paginators\__init__.py ... 2023-05-16 21:56:08.663 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\paginators\api.py (14ms) 2023-05-16 21:56:08.663 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\paginators\__init__.py (15ms) 2023-05-16 21:56:08.664 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\utility\__init__.py ... 2023-05-16 21:56:08.664 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\utility\ds.py (4ms) 2023-05-16 21:56:08.706 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\utility\extdb.py (19ms) 2023-05-16 21:56:08.706 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\utility\logfile.py (7ms) 2023-05-16 21:56:08.706 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\utility\uid.py (4ms) 2023-05-16 21:56:08.706 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\utility\__init__.py (35ms) 2023-05-16 21:56:08.707 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\routes.py (5ms) 2023-05-16 21:56:08.779 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\base.py (67ms) 2023-05-16 21:56:08.780 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\__init__.py ... 2023-05-16 21:56:08.780 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\calculator.py (11ms) 2023-05-16 21:56:08.793 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\character.py (12ms) 2023-05-16 21:56:08.840 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\__init__.py ... 2023-05-16 21:56:08.840 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\abyss.py (13ms) 2023-05-16 21:56:08.841 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\activities.py (9ms) 2023-05-16 21:56:08.841 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\characters.py (5ms) 2023-05-16 21:56:08.841 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\notes.py (5ms) 2023-05-16 21:56:08.841 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\stats.py (5ms) 2023-05-16 21:56:08.859 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\tcg.py (18ms) 2023-05-16 21:56:08.860 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\__init__.py (57ms) 2023-05-16 21:56:08.860 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\daily.py (2ms) 2023-05-16 21:56:08.860 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\diary.py (3ms) 2023-05-16 21:56:08.869 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\lineup.py (12ms) 2023-05-16 21:56:08.871 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\teapot.py (5ms) 2023-05-16 21:56:08.873 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\transaction.py (2ms) 2023-05-16 21:56:08.879 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\wiki.py (5ms) 2023-05-16 21:56:08.879 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\__init__.py (112ms) 2023-05-16 21:56:08.913 [info] (5772) [BG(1)] parsing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\gacha.py [fs read 1ms] (34ms) 2023-05-16 21:56:08.915 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\gacha.py (3ms) 2023-05-16 21:56:08.994 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\gacha.py (410ms) 2023-05-16 21:56:08.995 [info] [Info - 9:56:08 PM] (5772) Heap stats: total_heap_size=115MB, used_heap_size=108MB, total_physical_size=115MB, total_available_size=1958MB, heap_size_limit=2072MB 2023-05-16 21:56:08.995 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\gacha.py (438ms) 2023-05-16 21:56:09.096 [info] (5772) Background analysis message: resumeAnalysis 2023-05-16 21:56:09.116 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\__main__.py ... 2023-05-16 21:56:09.125 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\__main__.py (68ms) 2023-05-16 21:56:09.126 [info] [Info - 9:56:09 PM] (5772) Heap stats: total_heap_size=115MB, used_heap_size=108MB, total_physical_size=115MB, total_available_size=1958MB, heap_size_limit=2072MB 2023-05-16 21:56:09.126 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\__main__.py (68ms) 2023-05-16 21:56:09.127 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\constants.py ... 2023-05-16 21:56:09.127 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\constants.py (0ms) 2023-05-16 21:56:09.127 [info] [Info - 9:56:09 PM] (5772) Heap stats: total_heap_size=115MB, used_heap_size=108MB, total_physical_size=115MB, total_available_size=1958MB, heap_size_limit=2072MB 2023-05-16 21:56:09.128 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\constants.py (0ms) 2023-05-16 21:56:09.129 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\types.py ... 2023-05-16 21:56:09.129 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\types.py (12ms) 2023-05-16 21:56:09.129 [info] [Info - 9:56:09 PM] (5772) Heap stats: total_heap_size=115MB, used_heap_size=107MB, total_physical_size=115MB, total_available_size=1959MB, heap_size_limit=2072MB 2023-05-16 21:56:09.129 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\types.py (12ms) 2023-05-16 21:56:09.177 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\clients.py ... 2023-05-16 21:56:09.178 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\clients.py ... 2023-05-16 21:56:09.178 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\calculator\__init__.py ... 2023-05-16 21:56:09.178 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\calculator\client.py (52ms) 2023-05-16 21:56:09.178 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\calculator\__init__.py (53ms) 2023-05-16 21:56:09.178 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\__init__.py ... 2023-05-16 21:56:09.178 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\client.py (0ms) 2023-05-16 21:56:09.179 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\__init__.py (0ms) 2023-05-16 21:56:09.179 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\daily.py (6ms) 2023-05-16 21:56:09.179 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\diary.py (15ms) 2023-05-16 21:56:09.179 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\__init__.py ... 2023-05-16 21:56:09.179 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\client.py (6ms) 2023-05-16 21:56:09.179 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\__init__.py (8ms) 2023-05-16 21:56:09.179 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\hoyolab.py (5ms) 2023-05-16 21:56:09.194 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\lineup.py (14ms) 2023-05-16 21:56:09.196 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\teapot.py (3ms) 2023-05-16 21:56:09.203 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\transaction.py (6ms) 2023-05-16 21:56:09.206 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\wiki.py (4ms) 2023-05-16 21:56:09.222 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\clients.py (129ms) 2023-05-16 21:56:09.223 [info] [Info - 9:56:09 PM] (5772) Heap stats: total_heap_size=115MB, used_heap_size=108MB, total_physical_size=115MB, total_available_size=1959MB, heap_size_limit=2072MB 2023-05-16 21:56:09.223 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\clients.py (129ms) 2023-05-16 21:56:09.232 [info] (5772) Background analysis message: resumeAnalysis 2023-05-16 21:56:09.247 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\compatibility.py ... 2023-05-16 21:56:09.248 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\compatibility.py ... 2023-05-16 21:56:09.248 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\__init__.py ... 2023-05-16 21:56:09.248 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\__init__.py ... 2023-05-16 21:56:09.248 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\battlesuit.py (21ms) 2023-05-16 21:56:09.280 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\__init__.py ... 2023-05-16 21:56:09.280 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\modes.py (29ms) 2023-05-16 21:56:09.289 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\stats.py (11ms) 2023-05-16 21:56:09.289 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\__init__.py (40ms) 2023-05-16 21:56:09.289 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\__init__.py (63ms) 2023-05-16 21:56:09.290 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\__init__.py ... 2023-05-16 21:56:09.290 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\announcements.py (1ms) 2023-05-16 21:56:09.290 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\private.py (0ms) 2023-05-16 21:56:09.296 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\record.py (5ms) 2023-05-16 21:56:09.296 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\__init__.py (6ms) 2023-05-16 21:56:09.480 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\model.py (183ms) 2023-05-16 21:56:09.480 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\models\__init__.py (253ms) 2023-05-16 21:56:09.508 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\compatibility.py (280ms) 2023-05-16 21:56:09.509 [info] [Info - 9:56:09 PM] (5772) Heap stats: total_heap_size=116MB, used_heap_size=109MB, total_physical_size=116MB, total_available_size=1959MB, heap_size_limit=2072MB 2023-05-16 21:56:09.509 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\compatibility.py (280ms) 2023-05-16 21:56:09.543 [info] (5772) Background analysis message: resumeAnalysis 2023-05-16 21:56:09.547 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\ratelimit.py ... 2023-05-16 21:56:09.547 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\ratelimit.py (15ms) 2023-05-16 21:56:09.548 [info] [Info - 9:56:09 PM] (5772) Heap stats: total_heap_size=118MB, used_heap_size=108MB, total_physical_size=118MB, total_available_size=1960MB, heap_size_limit=2072MB 2023-05-16 21:56:09.548 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\ratelimit.py (15ms) 2023-05-16 21:56:09.572 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\routes.py ... 2023-05-16 21:56:09.574 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\routes.py (16ms) 2023-05-16 21:56:09.574 [info] [Info - 9:56:09 PM] (5772) Heap stats: total_heap_size=118MB, used_heap_size=108MB, total_physical_size=118MB, total_available_size=1960MB, heap_size_limit=2072MB 2023-05-16 21:56:09.575 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\routes.py (16ms) 2023-05-16 21:56:09.648 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\base.py ... 2023-05-16 21:56:09.649 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\base.py (68ms) 2023-05-16 21:56:09.649 [info] [Info - 9:56:09 PM] (5772) Heap stats: total_heap_size=118MB, used_heap_size=109MB, total_physical_size=118MB, total_available_size=1959MB, heap_size_limit=2072MB 2023-05-16 21:56:09.649 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\base.py (68ms) 2023-05-16 21:56:09.673 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\daily.py ... 2023-05-16 21:56:09.673 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\daily.py (40ms) 2023-05-16 21:56:09.673 [info] [Info - 9:56:09 PM] (5772) Heap stats: total_heap_size=119MB, used_heap_size=110MB, total_physical_size=119MB, total_available_size=1958MB, heap_size_limit=2072MB 2023-05-16 21:56:09.674 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\daily.py (40ms) 2023-05-16 21:56:09.692 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\diary.py ... 2023-05-16 21:56:09.692 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\diary.py (13ms) 2023-05-16 21:56:09.692 [info] [Info - 9:56:09 PM] (5772) Heap stats: total_heap_size=119MB, used_heap_size=109MB, total_physical_size=119MB, total_available_size=1959MB, heap_size_limit=2072MB 2023-05-16 21:56:09.692 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\diary.py (13ms) 2023-05-16 21:56:09.706 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\hoyolab.py ... 2023-05-16 21:56:09.707 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\hoyolab.py (15ms) 2023-05-16 21:56:09.707 [info] [Info - 9:56:09 PM] (5772) Heap stats: total_heap_size=119MB, used_heap_size=109MB, total_physical_size=119MB, total_available_size=1959MB, heap_size_limit=2072MB 2023-05-16 21:56:09.707 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\hoyolab.py (15ms) 2023-05-16 21:56:09.726 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\lineup.py ... 2023-05-16 21:56:09.726 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\lineup.py (26ms) 2023-05-16 21:56:09.726 [info] [Info - 9:56:09 PM] (5772) Heap stats: total_heap_size=119MB, used_heap_size=110MB, total_physical_size=119MB, total_available_size=1958MB, heap_size_limit=2072MB 2023-05-16 21:56:09.727 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\lineup.py (27ms) 2023-05-16 21:56:09.748 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\teapot.py ... 2023-05-16 21:56:09.748 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\teapot.py (8ms) 2023-05-16 21:56:09.749 [info] [Info - 9:56:09 PM] (5772) Heap stats: total_heap_size=119MB, used_heap_size=109MB, total_physical_size=119MB, total_available_size=1959MB, heap_size_limit=2072MB 2023-05-16 21:56:09.749 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\teapot.py (12ms) 2023-05-16 21:56:09.908 [info] (5772) Background analysis message: resumeAnalysis 2023-05-16 21:56:09.908 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\transaction.py ... 2023-05-16 21:56:09.909 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\transaction.py (30ms) 2023-05-16 21:56:09.909 [info] [Info - 9:56:09 PM] (5772) Heap stats: total_heap_size=119MB, used_heap_size=109MB, total_physical_size=119MB, total_available_size=1959MB, heap_size_limit=2072MB 2023-05-16 21:56:09.909 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\transaction.py (30ms) 2023-05-16 21:56:09.909 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\wiki.py ... 2023-05-16 21:56:09.910 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\wiki.py (59ms) 2023-05-16 21:56:09.910 [info] [Info - 9:56:09 PM] (5772) Heap stats: total_heap_size=119MB, used_heap_size=110MB, total_physical_size=119MB, total_available_size=1958MB, heap_size_limit=2072MB 2023-05-16 21:56:09.910 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\wiki.py (59ms) 2023-05-16 21:56:09.977 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\calculator\calculator.py ... 2023-05-16 21:56:09.978 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\calculator\calculator.py (44ms) 2023-05-16 21:56:10.017 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\calculator\calculator.py (81ms) 2023-05-16 21:56:10.020 [info] [Info - 9:56:10 PM] (5772) Heap stats: total_heap_size=119MB, used_heap_size=109MB, total_physical_size=119MB, total_available_size=1959MB, heap_size_limit=2072MB 2023-05-16 21:56:10.023 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\calculator\calculator.py (126ms) 2023-05-16 21:56:10.061 [info] (5772) Background analysis message: resumeAnalysis 2023-05-16 21:56:10.081 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\calculator\client.py ... 2023-05-16 21:56:10.081 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\calculator\client.py (33ms) 2023-05-16 21:56:10.081 [info] [Info - 9:56:10 PM] (5772) Heap stats: total_heap_size=119MB, used_heap_size=109MB, total_physical_size=119MB, total_available_size=1959MB, heap_size_limit=2072MB 2023-05-16 21:56:10.082 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\calculator\client.py (33ms) 2023-05-16 21:56:10.082 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\base.py ... 2023-05-16 21:56:10.082 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\base.py (8ms) 2023-05-16 21:56:10.097 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\base.py (21ms) 2023-05-16 21:56:10.098 [info] [Info - 9:56:10 PM] (5772) Heap stats: total_heap_size=119MB, used_heap_size=110MB, total_physical_size=119MB, total_available_size=1958MB, heap_size_limit=2072MB 2023-05-16 21:56:10.098 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\base.py (32ms) 2023-05-16 21:56:10.107 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\client.py ... 2023-05-16 21:56:10.107 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\client.py ... 2023-05-16 21:56:10.107 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\genshin.py (9ms) 2023-05-16 21:56:10.111 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\honkai.py (5ms) 2023-05-16 21:56:10.113 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\client.py (16ms) 2023-05-16 21:56:10.113 [info] [Info - 9:56:10 PM] (5772) Heap stats: total_heap_size=119MB, used_heap_size=110MB, total_physical_size=119MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:10.113 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\client.py (16ms) 2023-05-16 21:56:10.133 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\genshin.py ... 2023-05-16 21:56:10.134 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\genshin.py (20ms) 2023-05-16 21:56:10.136 [info] [Info - 9:56:10 PM] (5772) Heap stats: total_heap_size=119MB, used_heap_size=109MB, total_physical_size=119MB, total_available_size=1958MB, heap_size_limit=2072MB 2023-05-16 21:56:10.136 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\genshin.py (20ms) 2023-05-16 21:56:10.149 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\honkai.py ... 2023-05-16 21:56:10.149 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\honkai.py (16ms) 2023-05-16 21:56:10.149 [info] [Info - 9:56:10 PM] (5772) Heap stats: total_heap_size=119MB, used_heap_size=110MB, total_physical_size=119MB, total_available_size=1958MB, heap_size_limit=2072MB 2023-05-16 21:56:10.150 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\honkai.py (16ms) 2023-05-16 21:56:10.158 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\client.py ... 2023-05-16 21:56:10.159 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\client.py ... 2023-05-16 21:56:10.159 [info] (5772) [BG(1)] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\server.py (9ms) 2023-05-16 21:56:10.161 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\client.py (13ms) 2023-05-16 21:56:10.162 [info] [Info - 9:56:10 PM] (5772) Heap stats: total_heap_size=119MB, used_heap_size=110MB, total_physical_size=119MB, total_available_size=1958MB, heap_size_limit=2072MB 2023-05-16 21:56:10.162 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\client.py (13ms) 2023-05-16 21:56:10.166 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\server.py ... 2023-05-16 21:56:10.166 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\server.py (3ms) 2023-05-16 21:56:10.166 [info] [Info - 9:56:10 PM] (5772) Heap stats: total_heap_size=119MB, used_heap_size=111MB, total_physical_size=119MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:10.166 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\server.py (3ms) 2023-05-16 21:56:10.178 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\cookie.py ... 2023-05-16 21:56:10.178 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\cookie.py (13ms) 2023-05-16 21:56:10.178 [info] [Info - 9:56:10 PM] (5772) Heap stats: total_heap_size=119MB, used_heap_size=111MB, total_physical_size=119MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:10.178 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\cookie.py (13ms) 2023-05-16 21:56:10.278 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\managers.py ... 2023-05-16 21:56:10.278 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\managers.py (83ms) 2023-05-16 21:56:10.278 [info] [Info - 9:56:10 PM] (5772) Heap stats: total_heap_size=119MB, used_heap_size=109MB, total_physical_size=119MB, total_available_size=1958MB, heap_size_limit=2072MB 2023-05-16 21:56:10.278 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\managers.py (83ms) 2023-05-16 21:56:10.428 [info] (5772) Background analysis message: resumeAnalysis 2023-05-16 21:56:10.596 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\model.py ... 2023-05-16 21:56:10.596 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\model.py (155ms) 2023-05-16 21:56:10.597 [info] [Info - 9:56:10 PM] (5772) Heap stats: total_heap_size=119MB, used_heap_size=110MB, total_physical_size=119MB, total_available_size=1958MB, heap_size_limit=2072MB 2023-05-16 21:56:10.597 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\model.py (155ms) 2023-05-16 21:56:10.615 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\calculator.py ... 2023-05-16 21:56:10.615 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\calculator.py (74ms) 2023-05-16 21:56:10.615 [info] [Info - 9:56:10 PM] (5772) Heap stats: total_heap_size=119MB, used_heap_size=111MB, total_physical_size=119MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:10.616 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\calculator.py (74ms) 2023-05-16 21:56:10.665 [info] (5772) Background analysis message: resumeAnalysis 2023-05-16 21:56:10.726 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\character.py ... 2023-05-16 21:56:10.726 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\character.py (21ms) 2023-05-16 21:56:10.726 [info] [Info - 9:56:10 PM] (5772) Heap stats: total_heap_size=119MB, used_heap_size=111MB, total_physical_size=119MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:10.727 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\character.py (21ms) 2023-05-16 21:56:10.727 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\daily.py ... 2023-05-16 21:56:10.727 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\daily.py (17ms) 2023-05-16 21:56:10.727 [info] [Info - 9:56:10 PM] (5772) Heap stats: total_heap_size=119MB, used_heap_size=111MB, total_physical_size=119MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:10.727 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\daily.py (17ms) 2023-05-16 21:56:10.753 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\diary.py ... 2023-05-16 21:56:10.754 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\diary.py (31ms) 2023-05-16 21:56:10.754 [info] [Info - 9:56:10 PM] (5772) Heap stats: total_heap_size=119MB, used_heap_size=110MB, total_physical_size=119MB, total_available_size=1958MB, heap_size_limit=2072MB 2023-05-16 21:56:10.754 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\diary.py (31ms) 2023-05-16 21:56:10.845 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\lineup.py ... 2023-05-16 21:56:10.845 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\lineup.py (67ms) 2023-05-16 21:56:10.846 [info] [Info - 9:56:10 PM] (5772) Heap stats: total_heap_size=119MB, used_heap_size=110MB, total_physical_size=119MB, total_available_size=1958MB, heap_size_limit=2072MB 2023-05-16 21:56:10.846 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\lineup.py (67ms) 2023-05-16 21:56:10.846 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\teapot.py ... 2023-05-16 21:56:10.846 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\teapot.py (9ms) 2023-05-16 21:56:10.846 [info] [Info - 9:56:10 PM] (5772) Heap stats: total_heap_size=119MB, used_heap_size=111MB, total_physical_size=119MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:10.846 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\teapot.py (9ms) 2023-05-16 21:56:10.846 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\transaction.py ... 2023-05-16 21:56:10.846 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\transaction.py (11ms) 2023-05-16 21:56:10.847 [info] [Info - 9:56:10 PM] (5772) Heap stats: total_heap_size=119MB, used_heap_size=111MB, total_physical_size=119MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:10.847 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\transaction.py (11ms) 2023-05-16 21:56:10.977 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\wiki.py ... 2023-05-16 21:56:10.977 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\wiki.py (146ms) 2023-05-16 21:56:10.977 [info] [Info - 9:56:10 PM] (5772) Heap stats: total_heap_size=119MB, used_heap_size=110MB, total_physical_size=119MB, total_available_size=1958MB, heap_size_limit=2072MB 2023-05-16 21:56:10.977 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\wiki.py (146ms) 2023-05-16 21:56:11.057 [info] (5772) Background analysis message: resumeAnalysis 2023-05-16 21:56:11.058 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\abyss.py ... 2023-05-16 21:56:11.058 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\abyss.py (30ms) 2023-05-16 21:56:11.058 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=119MB, used_heap_size=111MB, total_physical_size=119MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:11.058 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\abyss.py (30ms) 2023-05-16 21:56:11.114 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\activities.py ... 2023-05-16 21:56:11.115 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\activities.py (43ms) 2023-05-16 21:56:11.115 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=119MB, used_heap_size=112MB, total_physical_size=119MB, total_available_size=1956MB, heap_size_limit=2072MB 2023-05-16 21:56:11.115 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\activities.py (43ms) 2023-05-16 21:56:11.115 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\characters.py ... 2023-05-16 21:56:11.115 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\characters.py (14ms) 2023-05-16 21:56:11.116 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=119MB, used_heap_size=111MB, total_physical_size=119MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:11.116 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\characters.py (14ms) 2023-05-16 21:56:11.134 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\notes.py ... 2023-05-16 21:56:11.140 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\notes.py (26ms) 2023-05-16 21:56:11.140 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=119MB, used_heap_size=112MB, total_physical_size=119MB, total_available_size=1956MB, heap_size_limit=2072MB 2023-05-16 21:56:11.141 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\notes.py (26ms) 2023-05-16 21:56:11.174 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\stats.py ... 2023-05-16 21:56:11.176 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\stats.py (20ms) 2023-05-16 21:56:11.176 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=119MB, used_heap_size=111MB, total_physical_size=119MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:11.176 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\stats.py (20ms) 2023-05-16 21:56:11.194 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\tcg.py ... 2023-05-16 21:56:11.194 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\tcg.py (27ms) 2023-05-16 21:56:11.194 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=119MB, used_heap_size=112MB, total_physical_size=119MB, total_available_size=1956MB, heap_size_limit=2072MB 2023-05-16 21:56:11.194 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\tcg.py (27ms) 2023-05-16 21:56:11.194 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\battlesuit.py ... 2023-05-16 21:56:11.195 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\battlesuit.py (15ms) 2023-05-16 21:56:11.195 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=119MB, used_heap_size=110MB, total_physical_size=119MB, total_available_size=1958MB, heap_size_limit=2072MB 2023-05-16 21:56:11.195 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\battlesuit.py (16ms) 2023-05-16 21:56:11.209 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\battlesuits.py ... 2023-05-16 21:56:11.209 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\battlesuits.py (7ms) 2023-05-16 21:56:11.210 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=119MB, used_heap_size=111MB, total_physical_size=119MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:11.210 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\battlesuits.py (7ms) 2023-05-16 21:56:11.258 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\modes.py ... 2023-05-16 21:56:11.258 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\modes.py (57ms) 2023-05-16 21:56:11.258 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=119MB, used_heap_size=111MB, total_physical_size=119MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:11.258 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\modes.py (57ms) 2023-05-16 21:56:11.343 [info] (5772) Background analysis message: resumeAnalysis 2023-05-16 21:56:11.413 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\stats.py ... 2023-05-16 21:56:11.414 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\stats.py (45ms) 2023-05-16 21:56:11.414 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=119MB, used_heap_size=111MB, total_physical_size=119MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:11.415 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\stats.py (46ms) 2023-05-16 21:56:11.415 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\announcements.py ... 2023-05-16 21:56:11.415 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\announcements.py (4ms) 2023-05-16 21:56:11.415 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=119MB, used_heap_size=111MB, total_physical_size=119MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:11.415 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\announcements.py (4ms) 2023-05-16 21:56:11.464 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\private.py ... 2023-05-16 21:56:11.465 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\private.py (61ms) 2023-05-16 21:56:11.465 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=119MB, used_heap_size=111MB, total_physical_size=119MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:11.465 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\private.py (61ms) 2023-05-16 21:56:11.465 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\record.py ... 2023-05-16 21:56:11.465 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\record.py (25ms) 2023-05-16 21:56:11.465 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=119MB, used_heap_size=111MB, total_physical_size=119MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:11.466 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\record.py (25ms) 2023-05-16 21:56:11.493 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\paginators\api.py ... 2023-05-16 21:56:11.494 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\paginators\api.py (43ms) 2023-05-16 21:56:11.494 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=112MB, total_physical_size=120MB, total_available_size=1956MB, heap_size_limit=2072MB 2023-05-16 21:56:11.494 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\paginators\api.py (43ms) 2023-05-16 21:56:11.530 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\utility\ds.py ... 2023-05-16 21:56:11.530 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\utility\ds.py (37ms) 2023-05-16 21:56:11.530 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=112MB, total_physical_size=120MB, total_available_size=1956MB, heap_size_limit=2072MB 2023-05-16 21:56:11.530 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\utility\ds.py (38ms) 2023-05-16 21:56:11.583 [info] (5772) Background analysis message: resumeAnalysis 2023-05-16 21:56:11.631 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\utility\extdb.py ... 2023-05-16 21:56:11.631 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\utility\extdb.py (51ms) 2023-05-16 21:56:11.631 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=112MB, total_physical_size=120MB, total_available_size=1956MB, heap_size_limit=2072MB 2023-05-16 21:56:11.631 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\utility\extdb.py (51ms) 2023-05-16 21:56:11.645 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\utility\logfile.py ... 2023-05-16 21:56:11.645 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\utility\logfile.py (13ms) 2023-05-16 21:56:11.645 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=112MB, total_physical_size=120MB, total_available_size=1956MB, heap_size_limit=2072MB 2023-05-16 21:56:11.646 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\utility\logfile.py (14ms) 2023-05-16 21:56:11.649 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\utility\uid.py ... 2023-05-16 21:56:11.649 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\utility\uid.py (3ms) 2023-05-16 21:56:11.649 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=111MB, total_physical_size=120MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:11.649 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\utility\uid.py (3ms) 2023-05-16 21:56:11.827 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\gacha.py ... 2023-05-16 21:56:11.828 [info] (5772) [BG(1)] checking: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\gacha.py (174ms) 2023-05-16 21:56:11.828 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=112MB, total_physical_size=120MB, total_available_size=1956MB, heap_size_limit=2072MB 2023-05-16 21:56:11.828 [info] (5772) [BG(1)] analyzing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\gacha.py (175ms) 2023-05-16 21:56:11.860 [info] (5772) Background analysis message: resumeAnalysis 2023-05-16 21:56:11.886 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\constants.py [found 3] (0ms) 2023-05-16 21:56:11.890 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\constants.py 2023-05-16 21:56:11.890 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=111MB, total_physical_size=120MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:11.890 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\types.py [found 5] (0ms) 2023-05-16 21:56:11.891 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\types.py 2023-05-16 21:56:11.891 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=111MB, total_physical_size=120MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:11.892 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\client\clients.py [found 2] (0ms) 2023-05-16 21:56:11.892 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\client\clients.py 2023-05-16 21:56:11.892 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=111MB, total_physical_size=120MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:11.892 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\client\compatibility.py [found 5] (1ms) 2023-05-16 21:56:11.892 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\client\compatibility.py 2023-05-16 21:56:11.892 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=111MB, total_physical_size=120MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:11.892 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\client\routes.py [found 26] (1ms) 2023-05-16 21:56:11.892 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\client\routes.py 2023-05-16 21:56:11.893 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=111MB, total_physical_size=120MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:11.893 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\base.py [found 2] (0ms) 2023-05-16 21:56:11.893 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\base.py 2023-05-16 21:56:11.893 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=111MB, total_physical_size=120MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:11.893 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\daily.py [found 3] (1ms) 2023-05-16 21:56:11.893 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\daily.py 2023-05-16 21:56:11.893 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=111MB, total_physical_size=120MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:11.893 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\diary.py [found 5] (0ms) 2023-05-16 21:56:11.893 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\diary.py 2023-05-16 21:56:11.894 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=111MB, total_physical_size=120MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:11.894 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\hoyolab.py [found 2] (0ms) 2023-05-16 21:56:11.894 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\hoyolab.py 2023-05-16 21:56:11.894 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=111MB, total_physical_size=120MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:11.894 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\lineup.py [found 2] (0ms) 2023-05-16 21:56:11.894 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\lineup.py 2023-05-16 21:56:11.895 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=111MB, total_physical_size=120MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:11.895 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\teapot.py [found 2] (1ms) 2023-05-16 21:56:11.895 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\teapot.py 2023-05-16 21:56:11.896 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=111MB, total_physical_size=120MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:11.896 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\transaction.py [found 2] (0ms) 2023-05-16 21:56:11.896 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\transaction.py 2023-05-16 21:56:11.896 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=111MB, total_physical_size=120MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:11.897 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\wiki.py [found 2] (0ms) 2023-05-16 21:56:11.897 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\wiki.py 2023-05-16 21:56:11.897 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=111MB, total_physical_size=120MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:11.898 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\calculator\calculator.py [found 16] (1ms) 2023-05-16 21:56:11.899 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\calculator\calculator.py 2023-05-16 21:56:11.921 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=111MB, total_physical_size=120MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:11.924 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\calculator\client.py [found 3] (0ms) 2023-05-16 21:56:11.945 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\calculator\client.py 2023-05-16 21:56:11.945 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=111MB, total_physical_size=120MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:11.945 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\base.py [found 4] (0ms) 2023-05-16 21:56:11.945 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\base.py 2023-05-16 21:56:11.945 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=111MB, total_physical_size=120MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:11.946 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\client.py [found 2] (0ms) 2023-05-16 21:56:11.946 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\client.py 2023-05-16 21:56:11.946 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=111MB, total_physical_size=120MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:11.946 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\genshin.py [found 2] (0ms) 2023-05-16 21:56:11.946 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\genshin.py 2023-05-16 21:56:11.946 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=111MB, total_physical_size=120MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:11.946 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\honkai.py [found 2] (1ms) 2023-05-16 21:56:11.946 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\chronicle\honkai.py 2023-05-16 21:56:11.946 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=111MB, total_physical_size=120MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:11.947 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\client.py [found 3] (0ms) 2023-05-16 21:56:11.947 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\client.py 2023-05-16 21:56:11.947 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=111MB, total_physical_size=120MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:11.947 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\server.py [found 4] (0ms) 2023-05-16 21:56:11.947 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\geetest\server.py 2023-05-16 21:56:11.947 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=111MB, total_physical_size=120MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:11.947 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\cookie.py [found 6] (0ms) 2023-05-16 21:56:11.947 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\cookie.py 2023-05-16 21:56:11.947 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=111MB, total_physical_size=120MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:11.947 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\managers.py [found 17] (0ms) 2023-05-16 21:56:11.948 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\client\manager\managers.py 2023-05-16 21:56:11.948 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=111MB, total_physical_size=120MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:11.948 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\models\model.py [found 6] (0ms) 2023-05-16 21:56:11.948 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\models\model.py 2023-05-16 21:56:11.948 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=111MB, total_physical_size=120MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:11.948 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\calculator.py [found 14] (0ms) 2023-05-16 21:56:11.948 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\calculator.py 2023-05-16 21:56:11.948 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=111MB, total_physical_size=120MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:11.948 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\character.py [found 7] (0ms) 2023-05-16 21:56:11.948 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\character.py 2023-05-16 21:56:11.949 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=111MB, total_physical_size=120MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:11.949 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\daily.py [found 4] (0ms) 2023-05-16 21:56:11.949 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\daily.py 2023-05-16 21:56:11.949 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=111MB, total_physical_size=120MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:11.949 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\diary.py [found 9] (0ms) 2023-05-16 21:56:11.949 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\diary.py 2023-05-16 21:56:11.949 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=111MB, total_physical_size=120MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:11.949 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\lineup.py [found 16] (7ms) 2023-05-16 21:56:11.949 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\lineup.py 2023-05-16 21:56:11.949 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=111MB, total_physical_size=120MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:11.949 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\teapot.py [found 5] (0ms) 2023-05-16 21:56:11.950 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\teapot.py 2023-05-16 21:56:11.950 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=111MB, total_physical_size=120MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:11.950 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\transaction.py [found 5] (1ms) 2023-05-16 21:56:11.950 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\transaction.py 2023-05-16 21:56:11.950 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=111MB, total_physical_size=120MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:11.950 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\wiki.py [found 9] (1ms) 2023-05-16 21:56:11.950 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\wiki.py 2023-05-16 21:56:11.950 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=111MB, total_physical_size=120MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:11.963 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\abyss.py [found 9] (0ms) 2023-05-16 21:56:11.963 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\abyss.py 2023-05-16 21:56:11.964 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=111MB, total_physical_size=120MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:11.964 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\activities.py [found 24] (1ms) 2023-05-16 21:56:11.965 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\activities.py 2023-05-16 21:56:11.966 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=111MB, total_physical_size=120MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:11.966 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\characters.py [found 9] (0ms) 2023-05-16 21:56:11.966 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\characters.py 2023-05-16 21:56:11.967 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=111MB, total_physical_size=120MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:11.967 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\notes.py [found 6] (1ms) 2023-05-16 21:56:11.967 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\notes.py 2023-05-16 21:56:11.967 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=111MB, total_physical_size=120MB, total_available_size=1957MB, heap_size_limit=2072MB 2023-05-16 21:56:11.967 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\stats.py [found 9] (1ms) 2023-05-16 21:56:11.967 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\stats.py 2023-05-16 21:56:11.967 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=111MB, total_physical_size=120MB, total_available_size=1956MB, heap_size_limit=2072MB 2023-05-16 21:56:11.967 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\tcg.py [found 9] (0ms) 2023-05-16 21:56:11.967 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\chronicle\tcg.py 2023-05-16 21:56:11.968 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=111MB, total_physical_size=120MB, total_available_size=1956MB, heap_size_limit=2072MB 2023-05-16 21:56:11.968 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\battlesuit.py [found 5] (0ms) 2023-05-16 21:56:11.968 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\battlesuit.py 2023-05-16 21:56:11.968 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=111MB, total_physical_size=120MB, total_available_size=1956MB, heap_size_limit=2072MB 2023-05-16 21:56:11.968 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\modes.py [found 16] (0ms) 2023-05-16 21:56:11.968 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\modes.py 2023-05-16 21:56:11.968 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=111MB, total_physical_size=120MB, total_available_size=1956MB, heap_size_limit=2072MB 2023-05-16 21:56:11.969 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\stats.py [found 9] (0ms) 2023-05-16 21:56:11.969 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\models\honkai\chronicle\stats.py 2023-05-16 21:56:11.969 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=111MB, total_physical_size=120MB, total_available_size=1956MB, heap_size_limit=2072MB 2023-05-16 21:56:11.969 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\announcements.py [found 2] (0ms) 2023-05-16 21:56:11.969 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\announcements.py 2023-05-16 21:56:11.969 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=111MB, total_physical_size=120MB, total_available_size=1956MB, heap_size_limit=2072MB 2023-05-16 21:56:11.970 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\private.py [found 2] (0ms) 2023-05-16 21:56:11.970 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\private.py 2023-05-16 21:56:11.970 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=111MB, total_physical_size=120MB, total_available_size=1956MB, heap_size_limit=2072MB 2023-05-16 21:56:11.971 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\record.py [found 14] (0ms) 2023-05-16 21:56:11.971 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\models\hoyolab\record.py 2023-05-16 21:56:11.971 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=112MB, total_physical_size=120MB, total_available_size=1956MB, heap_size_limit=2072MB 2023-05-16 21:56:11.971 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\paginators\api.py [found 10] (2ms) 2023-05-16 21:56:11.971 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\paginators\api.py 2023-05-16 21:56:11.971 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=112MB, total_physical_size=120MB, total_available_size=1956MB, heap_size_limit=2072MB 2023-05-16 21:56:11.971 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\utility\ds.py [found 4] (0ms) 2023-05-16 21:56:11.971 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\utility\ds.py 2023-05-16 21:56:11.971 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=112MB, total_physical_size=120MB, total_available_size=1956MB, heap_size_limit=2072MB 2023-05-16 21:56:11.971 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\utility\extdb.py [found 21] (0ms) 2023-05-16 21:56:11.971 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\utility\extdb.py 2023-05-16 21:56:11.972 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=112MB, total_physical_size=120MB, total_available_size=1956MB, heap_size_limit=2072MB 2023-05-16 21:56:11.972 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\utility\logfile.py [found 11] (0ms) 2023-05-16 21:56:11.972 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\utility\logfile.py 2023-05-16 21:56:11.972 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=112MB, total_physical_size=120MB, total_available_size=1956MB, heap_size_limit=2072MB 2023-05-16 21:56:11.972 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\utility\uid.py [found 10] (1ms) 2023-05-16 21:56:11.972 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\utility\uid.py 2023-05-16 21:56:11.972 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=112MB, total_physical_size=120MB, total_available_size=1956MB, heap_size_limit=2072MB 2023-05-16 21:56:11.972 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\gacha.py [found 9] (0ms) 2023-05-16 21:56:11.972 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\models\genshin\gacha.py 2023-05-16 21:56:11.972 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=112MB, total_physical_size=120MB, total_available_size=1956MB, heap_size_limit=2072MB 2023-05-16 21:56:11.973 [info] (5772) [BG(1)] indexing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\gacha.py [found 2] (0ms) 2023-05-16 21:56:11.973 [info] (5772) Indexing Done: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\gacha.py 2023-05-16 21:56:11.973 [info] [Info - 9:56:11 PM] (5772) Heap stats: total_heap_size=120MB, used_heap_size=112MB, total_physical_size=120MB, total_available_size=1956MB, heap_size_limit=2072MB 2023-05-16 21:56:45.780 [info] [Info - 9:56:45 PM] (5772) SourceFile: Received fs event 'change' for path 'c:\Users\D\code\thesadru\genshin.py\genshin.egg-info\PKG-INFO' 2023-05-16 21:56:45.844 [info] [Info - 9:56:45 PM] (5772) SourceFile: Received fs event 'change' for path 'c:\Users\D\code\thesadru\genshin.py\genshin.egg-info\dependency_links.txt' 2023-05-16 21:56:45.845 [info] [Info - 9:56:45 PM] (5772) SourceFile: Received fs event 'change' for path 'c:\Users\D\code\thesadru\genshin.py\genshin.egg-info\requires.txt' 2023-05-16 21:56:45.845 [info] [Info - 9:56:45 PM] (5772) SourceFile: Received fs event 'change' for path 'c:\Users\D\code\thesadru\genshin.py\genshin.egg-info\top_level.txt' 2023-05-16 21:56:45.846 [info] [Info - 9:56:45 PM] (5772) SourceFile: Received fs event 'change' for path 'c:\Users\D\code\thesadru\genshin.py\genshin.egg-info\SOURCES.txt' 2023-05-16 21:56:52.094 [info] [Info - 9:56:52 PM] (5772) SourceFile: Received fs event 'change' for path 'c:\Users\D\code\thesadru\genshin.py\genshin.egg-info\PKG-INFO' 2023-05-16 21:56:52.095 [info] [Info - 9:56:52 PM] (5772) SourceFile: Received fs event 'change' for path 'c:\Users\D\code\thesadru\genshin.py\genshin.egg-info\SOURCES.txt' 2023-05-16 21:56:52.095 [info] [Info - 9:56:52 PM] (5772) SourceFile: Received fs event 'change' for path 'c:\Users\D\code\thesadru\genshin.py\genshin.egg-info\dependency_links.txt' 2023-05-16 21:56:52.096 [info] [Info - 9:56:52 PM] (5772) SourceFile: Received fs event 'change' for path 'c:\Users\D\code\thesadru\genshin.py\genshin.egg-info\requires.txt' 2023-05-16 21:56:52.097 [info] [Info - 9:56:52 PM] (5772) SourceFile: Received fs event 'change' for path 'c:\Users\D\code\thesadru\genshin.py\genshin.egg-info\top_level.txt' 2023-05-16 21:56:52.341 [info] [Info - 9:56:52 PM] (5772) SourceFile: Received fs event 'change' for path 'c:\Users\D\code\thesadru\genshin.py\genshin.egg-info\SOURCES.txt' 2023-05-16 21:57:01.233 [info] (5772) Background analysis message: setFileOpened 2023-05-16 21:57:01.239 [info] (5772) Background analysis message: analyze 2023-05-16 21:57:01.291 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:57:01.291 [info] (5772) [FG] parsing: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\base.py (94ms) 2023-05-16 21:57:01.293 [info] [Info - 9:57:01 PM] (5772) Could not import 'aioredis' in file 'c:\Users\D\code\thesadru\genshin.py\genshin\client\components\base.py' 2023-05-16 21:57:01.293 [info] [Info - 9:57:01 PM] (5772) Looking in stubPath 'c:\Users\D\code\thesadru\genshin.py\typings' 2023-05-16 21:57:01.293 [info] [Info - 9:57:01 PM] (5772) Attempting to resolve stub package using root path 'c:\Users\D\code\thesadru\genshin.py\typings' 2023-05-16 21:57:01.293 [info] [Info - 9:57:01 PM] (5772) Attempting to resolve using root path 'c:\Users\D\code\thesadru\genshin.py\typings' 2023-05-16 21:57:01.294 [info] [Info - 9:57:01 PM] (5772) Looking in root directory of execution environment 'c:\Users\D\code\thesadru\genshin.py' 2023-05-16 21:57:01.294 [info] [Info - 9:57:01 PM] (5772) Attempting to resolve stub package using root path 'c:\Users\D\code\thesadru\genshin.py' 2023-05-16 21:57:01.294 [info] [Info - 9:57:01 PM] (5772) Attempting to resolve using root path 'c:\Users\D\code\thesadru\genshin.py' 2023-05-16 21:57:01.294 [info] [Info - 9:57:01 PM] (5772) Finding python search paths 2023-05-16 21:57:01.294 [info] [Info - 9:57:01 PM] (5772) Executing interpreter: 'C:\Program Files\Python311\python.exe' 2023-05-16 21:57:01.294 [info] [Info - 9:57:01 PM] (5772) Skipping 'C:\Program Files\Python311\python311.zip' because it is not a valid directory 2023-05-16 21:57:01.294 [info] [Info - 9:57:01 PM] (5772) Received 5 paths from interpreter 2023-05-16 21:57:01.294 [info] [Info - 9:57:01 PM] (5772) C:\Program Files\Python311\Lib 2023-05-16 21:57:01.294 [info] [Info - 9:57:01 PM] (5772) C:\Program Files\Python311\DLLs 2023-05-16 21:57:01.295 [info] [Info - 9:57:01 PM] (5772) C:\Users\D\AppData\Roaming\Python\Python311\site-packages 2023-05-16 21:57:01.295 [info] [Info - 9:57:01 PM] (5772) C:\Program Files\Python311 2023-05-16 21:57:01.295 [info] [Info - 9:57:01 PM] (5772) C:\Program Files\Python311\Lib\site-packages 2023-05-16 21:57:01.295 [info] [Info - 9:57:01 PM] (5772) Looking in python search path 'c:\Program Files\Python311\Lib' 2023-05-16 21:57:01.295 [info] [Info - 9:57:01 PM] (5772) Attempting to resolve stub package using root path 'c:\Program Files\Python311\Lib' 2023-05-16 21:57:01.295 [info] [Info - 9:57:01 PM] (5772) Attempting to resolve using root path 'c:\Program Files\Python311\Lib' 2023-05-16 21:57:01.295 [info] [Info - 9:57:01 PM] (5772) Looking in python search path 'c:\Program Files\Python311\DLLs' 2023-05-16 21:57:01.295 [info] [Info - 9:57:01 PM] (5772) Attempting to resolve stub package using root path 'c:\Program Files\Python311\DLLs' 2023-05-16 21:57:01.295 [info] [Info - 9:57:01 PM] (5772) Attempting to resolve using root path 'c:\Program Files\Python311\DLLs' 2023-05-16 21:57:01.295 [info] [Info - 9:57:01 PM] (5772) Looking in python search path 'c:\Users\D\AppData\Roaming\Python\Python311\site-packages' 2023-05-16 21:57:01.295 [info] [Info - 9:57:01 PM] (5772) Attempting to resolve stub package using root path 'c:\Users\D\AppData\Roaming\Python\Python311\site-packages' 2023-05-16 21:57:01.296 [info] [Info - 9:57:01 PM] (5772) Attempting to resolve using root path 'c:\Users\D\AppData\Roaming\Python\Python311\site-packages' 2023-05-16 21:57:01.296 [info] [Info - 9:57:01 PM] (5772) Looking in python search path 'c:\Program Files\Python311' 2023-05-16 21:57:01.296 [info] [Info - 9:57:01 PM] (5772) Attempting to resolve stub package using root path 'c:\Program Files\Python311' 2023-05-16 21:57:01.296 [info] [Info - 9:57:01 PM] (5772) Attempting to resolve using root path 'c:\Program Files\Python311' 2023-05-16 21:57:01.296 [info] [Info - 9:57:01 PM] (5772) Looking in python search path 'c:\Program Files\Python311\Lib\site-packages' 2023-05-16 21:57:01.296 [info] [Info - 9:57:01 PM] (5772) Attempting to resolve stub package using root path 'c:\Program Files\Python311\Lib\site-packages' 2023-05-16 21:57:01.296 [info] [Info - 9:57:01 PM] (5772) Attempting to resolve using root path 'c:\Program Files\Python311\Lib\site-packages' 2023-05-16 21:57:01.296 [info] [Info - 9:57:01 PM] (5772) Looking in bundled stubs path 'c:\Users\D\.vscode\extensions\ms-python.vscode-pylance-2023.5.20\dist\bundled\stubs' 2023-05-16 21:57:01.296 [info] [Info - 9:57:01 PM] (5772) Attempting to resolve stub package using root path 'c:\Users\D\.vscode\extensions\ms-python.vscode-pylance-2023.5.20\dist\bundled\stubs' 2023-05-16 21:57:01.296 [info] [Info - 9:57:01 PM] (5772) Attempting to resolve using root path 'c:\Users\D\.vscode\extensions\ms-python.vscode-pylance-2023.5.20\dist\bundled\stubs' 2023-05-16 21:57:01.296 [info] [Info - 9:57:01 PM] (5772) Looking for typeshed stdlib path 2023-05-16 21:57:01.297 [info] [Info - 9:57:01 PM] (5772) Looking for typeshed stdlib path 2023-05-16 21:57:01.297 [info] [Info - 9:57:01 PM] (5772) Attempting to resolve using root path 'c:\Users\D\.vscode\extensions\ms-python.vscode-pylance-2023.5.20\dist\typeshed-fallback\stdlib' 2023-05-16 21:57:01.297 [info] [Info - 9:57:01 PM] (5772) Typeshed path not found 2023-05-16 21:57:01.297 [info] [Info - 9:57:01 PM] (5772) Looking for typeshed third-party path 2023-05-16 21:57:01.297 [info] [Info - 9:57:01 PM] (5772) Looking for typeshed stubs path 2023-05-16 21:57:01.297 [info] [Info - 9:57:01 PM] (5772) Typeshed path not found 2023-05-16 21:57:01.297 [info] (5772) [FG] binding: c:\Users\D\code\thesadru\genshin.py\genshin\client\components\base.py (37ms) 2023-05-16 21:57:01.326 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:57:01.910 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:57:01.941 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:57:04.468 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:57:04.559 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:57:06.254 [info] (5772) Background analysis message: getDiagnosticsForRange 2023-05-16 21:57:06.255 [info] (5772) Background analysis message: getDiagnosticsForRange ```
rchiodo commented 1 year ago

@thesadru What are the errors like? If there's a bunch of import errors, might be we're losing the import paths somehow.

thesadru commented 1 year ago

Not import errors, just random ones like variables not being used or attributes not existing and such.

rchiodo commented 1 year ago

Is the CI updating files in the background? It looks like we're receiving random file change events (changes not issued by the editor). That might be messing stuff up if the file change events are making our internal view of a file be incorrect.

thesadru commented 1 year ago

Yes it is, I think it's most likely black/isort doing that.