bit-team / backintime

Back In Time - An easy-to-use backup tool for GNU/Linux using rsync in the back
https://backintime.readthedocs.io
GNU General Public License v2.0
2.07k stars 204 forks source link

Segmentation fault on Exit (Qt) #1095

Closed hannes101 closed 3 months ago

hannes101 commented 4 years ago

We got a downstream bug report that backintime fails with a segmentation fault, whenever it is closed in the current fedora rawhide. Please see the downstream bug report at https://bugzilla.redhat.com/show_bug.cgi?id=1844781

bentolor commented 2 years ago

Same error here after Upgrade from Ubuntu 20.04 LTS to Ubuntu 22.04 LTS.

buhtz commented 2 years ago

Thanks for reporting. But please add some more context information's

buhtz commented 2 years ago

Same error here after Upgrade from Ubuntu 20.04 LTS to Ubuntu 22.04 LTS.

Can you please report the backintime versions that are used in that two Ubuntu release? Thanks.

bentolor commented 2 years ago

Same error here after Upgrade from Ubuntu 20.04 LTS to Ubuntu 22.04 LTS.

Can you please report the backintime versions that are used in that two Ubuntu release? Thanks.

Hi @Codeberg-AsGithubAlternative-buhtz In both installations I used backintime 1.3.2 from the PPA. Besides the distribution upgrade I also switched from X11 to Wayland in case that could be somewhat related.

buhtz commented 2 years ago

Dear Benjamin, thanks a lot for that very valuable info.

emtiu commented 2 years ago

I've also been seeing segfaults upon exiting backintime-qt on Kubuntu as well as Manjaro (both using Python 3.10). They seem to have no impact on functionality, and I'm not yet sure if they're 100% reproducible.

Any good ideas on debugging?

emtiu commented 2 years ago

There is further debugging information in #1227, and in the downstream bug (mentioned above): https://bugzilla.redhat.com/show_bug.cgi?id=1844781

emtiu commented 2 years ago

Another stacktrace is reported in #1271, which I'm closing as a duplicate.

aryoda commented 2 years ago

@emtiu Good work (sharp eyes ;-) I didn't realize that there are duplicated issues. I have just briefly checked the stack traces and think these issues are really duplicates since the segfault is caused in the the same location:

1095: #0 0x00007f20a6756be0 in PyCFunction_Type () from /lib64/libpython3.9.so.1.0

1227: #0 0x00007f54228284e0 PyCFunction_Type (libpython3.10.so.1.0 + 0x3ad4e0)

1271: #0 0x0000557b65db38a0 in PyCFunction_Type ()

If have searched all issues containing the keyword in:body in:comments PyCFunction_Type and in:body in:comments in:title is:open segfault and could not find more issues so there are no more duplicates at the moment.

Any good ideas on debugging?

Debugging of segfaults if difficult (requires eg. gdb + installed debug symbols, eg. via the *-dbg packages in Ubuntu) of the library the causes the segfault according to the stacktrace

Also the developer/debugger needs to understand the segfault-causing library a little bit to debug it so I think it would be best to

a) try to make the crash reproducible with a minimal reproducible (code) example (MRE) b) open an issue at the library developer site that includes the MRE c) let the developers debug the code and/or git bisect their changes to find the commit that introduced the problem

emtiu commented 2 years ago

a) try to make the crash reproducible with a minimal reproducible (code) example (MRE)

Hmm, that's tricky. From what I've seen, it' not 100% reproducable, but it happens almost every time that backintime exits.

My working hypothesis is: backintime segfaults almost always on GUI quit, but most users don't notice, because: a) there's no loss of functionality, and b) the graphical desktop environment doesn't show the error when it happens.

aryoda commented 2 years ago

If I find the time I could write some basic GUI-related unit tests (just checking for the best tools to do this) and hopefully one unit tests provokes this segfault...

emtiu commented 2 years ago

Digging around the discussions in https://bugzilla.redhat.com/show_bug.cgi?id=1844781 and https://forum.manjaro.org/t/python-crash-when-exiting-back-in-time/102856/11, I see three hints on a possible root of the problem:

1) https://www.riverbankcomputing.com/static/Docs/PyQt5/gotchas.html#crashes-on-exit – quote:

"When the Python interpreter leaves a scope (for example when it returns from a function) it will potentially garbage collect all objects local to that scope. The order in which it is done is, in effect, random. Theoretically this can cause problems because it may mean that the C++ destructors of any wrapped Qt instances are called in an order that Qt isn’t expecting and may result in a crash. However, in practice, this is only likely to be a problem when the application is terminating.

As a way of mitigating this possiblity PyQt5 ensures that the C++ destructors of any QObject instances owned by Python are invoked before the destructor of any QCoreApplication instance is invoked. Note however that the order in which the QObject destructors are invoked is still random."

2) https://bugzilla.redhat.com/show_bug.cgi?id=1844781#c14 (referring to the above documentation) – quote:

Based on that documentation, the order in which the Qt objects QObjects are destroyed on exit is random to some extent. If the memory for a Qt object was freed before it was used by functions in python-pyqt5-sip like sip_api_get_address in my trace from Fedora 36 from comment 12 or those in the valgrind invalid reads and writes in my original report, then this type of crash might be the result. The backintime maintainers could look at whether the order in which its QObjects are destroyed when closing could be changed somehow to avoid this problem.

3) https://www.riverbankcomputing.com/pipermail/pyqt/2022-January/044458.html – a mailing list thread describing a similar error, also documenten in this Debian bug report: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=998897

I don't know enough about Qt or C++ to make sense of any of it, but maybe it helps someone else looking at this.

aryoda commented 2 years ago

Good summary and yes Matt Fagnani did a damn good job to narrow down the problem and in the end the challenge is (if it should really be caused by "use-after-freed") that at the moment the error happens (segfault) the stacktrace does not directly point to the code line that freed the object before (because freeing memory happens non-deterministically and most probably async - edit: not true for C).

This is why I suggest git bisect while keeping all other dependencies unchanged to find the commit that introduced the problem.

I am out, I know Qt, C, C++, Valgrind and gdb, but this bug is too time consuming for me ATM, I hope it will be diagnosed and fixed upstream.

emtiu commented 2 years ago

Adding https://github.com/bit-team/backintime/labels/Python-Specific, because only Python 3.9 and 3.10 seem affected right now.

emtiu commented 2 years ago

Here's another piece to the puzzle – but be careful, there's a good chance it will melt your brain: https://github.com/bit-team/backintime/commit/1d63ced1d0025dc4ca18f595bf3e0c8b18b555d0#commitcomment-21596448

aryoda commented 2 years ago

In my Manjaro VM I also get a crash with memory dump now-and-then when I exit BiT-qt.

Again in PyCFunction_Type with Python 3.10.7:

0 0x00007f6ea978f4e0 PyCFunction_Type (libpython3.10.so.1.0 + 0x3a94e0)

Module libstdc++.so.6 with build-id 735a3d0cc7699fd69337361cba4aedb644b2a7ed
                                                Module libQt5Core.so.5 with build-id 10f403c84cef570e5302c7b1f0d8db34f8293f71
                                                Module libQt5Gui.so.5 with build-id c3306c1f059a4d83b3ece5ca28ce2a147fc154e3
                                                Module QtGui.abi3.so with build-id 535cb23d62380e2c5ba799aa6597a0514c478b9d
                                                Module _sha512.cpython-310-x86_64-linux-gnu.so with build-id fc29dd2925467c7320756880fd6097a434a80383
                                                Module _random.cpython-310-x86_64-linux-gnu.so with build-id 3ba0c8aa724ca018e1e92d2450db4140960f5fad
                                                Module _bisect.cpython-310-x86_64-linux-gnu.so with build-id 22aab3ad2d659a48dc9cf0644ea649dd6af5d02b
                                                Module liblzma.so.5 with build-id d08f5868cd5adcc6b7c53bf1725aac65bd4539cd
                                                Module _lzma.cpython-310-x86_64-linux-gnu.so with build-id e09d86931d10be53314416ae42b4acc83bad99db
                                                Module libbz2.so.1.0 with build-id 919597c477c9b2cb9cdbb7745ed6494ac0e6da60
                                                Module _bz2.cpython-310-x86_64-linux-gnu.so with build-id e0c85fab13c0ac6e0116ade839fbc014a49de646
                                                Module libz.so.1 with build-id fefe3219a96d682ec98fcfb78866b8594298b5a2
                                                Module zlib.cpython-310-x86_64-linux-gnu.so with build-id f0004944c412854a4f2789a472b725c604bb4a41
                                                Module select.cpython-310-x86_64-linux-gnu.so with build-id 0a22fb2dce45bf7b54b47cb578c6514b5f5e99ad
                                                Module _posixsubprocess.cpython-310-x86_64-linux-gnu.so with build-id a0d950372300ef708a942ca0ede06c4dba112919
                                                Module fcntl.cpython-310-x86_64-linux-gnu.so with build-id 0abd0b41ae49f4c1f42f8eb46f2177f3793907cb
                                                Module _datetime.cpython-310-x86_64-linux-gnu.so with build-id a3c402a3da9060f2ab4a3b8687075bf8369ace05
                                                Module math.cpython-310-x86_64-linux-gnu.so with build-id 15ac91d5b595d5e8e572133fa1f393fb0cad45cd
                                                Module ld-linux-x86-64.so.2 with build-id 075a6ad9f1c3f9cbb5f3301186bbe68c6a477808
                                                Module libm.so.6 with build-id 2c8ff1d29b255da5b7371efd5caf57444d622838
                                                Module libc.so.6 with build-id 90b9e4f641f8752292698389f241cbf0ff49d687
                                                Module libpython3.10.so.1.0 with build-id ae3d4703207944dec3b048362873b7794eedf306
                                                Module python3.10 with build-id c0d0b166e6a6b76fc6156beacc8c71e7ad9ba2bc
                                                Stack trace of thread 1277:
                                                #0  0x00007f6ea978f4e0 PyCFunction_Type (libpython3.10.so.1.0 + 0x3a94e0)
                                                ELF object binary architecture: AMD x86-64
aryoda commented 2 years ago

If sip is really the (only) reason for the segfaults (which I am not sure in case of the PyCFunction_Type calls) there might be a fix on its way (implemented 8 months ago):

https://www.riverbankcomputing.com/hg/sip/rev/072b8949de41

It was fixed in all sip versions (or at least in 6.5maint) but I am not sure if it is already contained in PyQt5-sip so it would be great if someone having this crash could manually pip-install the newest sip version to test it...

https://pypi.org/project/PyQt5-sip/

buhtz commented 1 year ago

I vote to reduce priority from High to Medium. It is not a big deal and doesn't affect the users or the functionality of BIT that much.

bentolor commented 1 year ago

@buhtz It appears somewhat frightening if you run B-I-T from console (and as a user may be concerned on the data integrity), but as a) typically users run the UI not from terminal and b) I could not spot any other negative effect, I'm on your page.

emtiu commented 1 year ago

Compared to the other High-priority Issues, I agree.

aryoda commented 1 year ago

@bentolor Can you still reproduce/provoke the segfault?

It would be great then if you start BiT via this helper and provide the output here:

catchsegv backintime-qt

Perhaps it contains more info that the other backtraces...

bentolor commented 1 year ago

@aryoda Yes, it's reproducible, but happening randomly. Interestingly more often direct after system startup.

Please find below one output i just received after ~5 runs. Should I install some debug symbols for a more meaningful ouput? Looks quite lenghty but not really meaty to me.

 ~ catchsegv backintime-qt                                                                                                                                                                                                                                   
Back In Time
Version: 1.3.3-3

Back In Time comes with ABSOLUTELY NO WARRANTY.
This is free software, and you are welcome to redistribute it
under certain conditions; type `backintime --license' for details.

Warning: Ignoring XDG_SESSION_TYPE=wayland on Gnome. Use QT_QPA_PLATFORM=wayland to run on Wayland anyway.
INFO: mount ssh_encfs: …
…
INFO: unmount ssh_encfs: …
Segmentation fault (core dumped)
*** signal 11
Register dump:

 RAX: 0000562e0689a8a0   RBX: 0000562e0718c820   RCX: 0000562e068cfa40
 RDX: 0000000000000000   RSI: 0000000000000001   RDI: 00007ffa003e4ee0
 RBP: 00007ffa0201c3c0   R8 : 0000562e07223f00   R9 : 0000000000000000
 R10: 0000000000000000   R11: 0000000000000000   R12: 00007ffa003e4ee0
 R13: 0000562e07c85000   R14: 00000000000001be   R15: 0000562e06911138
 RSP: 00007fffdb1d4468

 RIP: 0000562e0689a8a0   EFLAGS: 00010206

 CS: 0033   FS: 0000   GS: 0000

 Trap: 0000000e   Error: 00000015   OldMask: 00000000   CR2: 0689a8a0

 FPUCW: 0000037f   FPUSW: 00000000   TAG: 00000000
 RIP: 00000000   RDP: 00000000

 ST(0) 0000 0000000000000000   ST(1) 0000 0000000000000000
 ST(2) 0000 0000000000000000   ST(3) 0000 0000000000000000
 ST(4) 0000 0000000000000000   ST(5) 0000 0000000000000000
 ST(6) 0000 0000000000000000   ST(7) 0000 0000000000000000
 mxcsr: 1fa1
 XMM0:  000000000000000000000000fef63e60 XMM1:  000000000000000000000000fef63e60
 XMM2:  000000000000000000000000fef63e60 XMM3:  000000000000000000000000fef63e60
 XMM4:  000000000000000000000000fef63e60 XMM5:  000000000000000000000000fef63e60
 XMM6:  000000000000000000000000fef63e60 XMM7:  000000000000000000000000fef63e60
 XMM8:  000000000000000000000000fef63e60 XMM9:  000000000000000000000000fef63e60
 XMM10: 000000000000000000000000fef63e60 XMM11: 000000000000000000000000fef63e60
 XMM12: 000000000000000000000000fef63e60 XMM13: 000000000000000000000000fef63e60
 XMM14: 000000000000000000000000fef63e60 XMM15: 000000000000000000000000fef63e60

Backtrace:
python3(PyCFunction_Type+0x0)[0x562e0689a8a0]

Memory map:

562e0632a000-562e06397000 r--p 00000000 00:1c 770276 /usr/bin/python3.10
562e06397000-562e0664b000 r-xp 0006d000 00:1c 770276 /usr/bin/python3.10
562e0664b000-562e06889000 r--p 00321000 00:1c 770276 /usr/bin/python3.10
562e0688a000-562e06891000 r--p 0055f000 00:1c 770276 /usr/bin/python3.10
562e06891000-562e068d0000 rw-p 00566000 00:1c 770276 /usr/bin/python3.10
562e068d0000-562e06916000 rw-p 00000000 00:00 0
562e06a20000-562e07f89000 rw-p 00000000 00:00 0 [heap]
7ff9b8000000-7ff9b8021000 rw-p 00000000 00:00 0
7ff9b8021000-7ff9bc000000 ---p 00000000 00:00 0
7ff9bc000000-7ff9bc021000 rw-p 00000000 00:00 0
7ff9bc021000-7ff9c0000000 ---p 00000000 00:00 0
7ff9c0000000-7ff9c0021000 rw-p 00000000 00:00 0
7ff9c0021000-7ff9c4000000 ---p 00000000 00:00 0
7ff9c4000000-7ff9c4021000 rw-p 00000000 00:00 0
7ff9c4021000-7ff9c8000000 ---p 00000000 00:00 0
7ff9c8000000-7ff9c8021000 rw-p 00000000 00:00 0
7ff9c8021000-7ff9cc000000 ---p 00000000 00:00 0
7ff9ceffe000-7ff9cefff000 ---p 00000000 00:00 0
7ff9cefff000-7ff9cf7ff000 rw-p 00000000 00:00 0
7ff9cf7ff000-7ff9cf800000 ---p 00000000 00:00 0
7ff9cf800000-7ff9d0000000 rw-p 00000000 00:00 0
7ff9d0000000-7ff9d0021000 rw-p 00000000 00:00 0
7ff9d0021000-7ff9d4000000 ---p 00000000 00:00 0
7ff9d4000000-7ff9d4021000 rw-p 00000000 00:00 0
7ff9d4021000-7ff9d8000000 ---p 00000000 00:00 0
7ff9d8000000-7ff9d8021000 rw-p 00000000 00:00 0
7ff9d8021000-7ff9dc000000 ---p 00000000 00:00 0
7ff9dc14b000-7ff9dc14c000 ---p 00000000 00:00 0
7ff9dc14c000-7ff9dc94c000 rw-p 00000000 00:00 0
7ff9dc94c000-7ff9dc94d000 ---p 00000000 00:00 0
7ff9dc94d000-7ff9dd24e000 rw-p 00000000 00:00 0
7ff9dd34f000-7ff9dd350000 ---p 00000000 00:00 0
7ff9dd350000-7ff9ddb50000 rw-p 00000000 00:00 0
7ff9ddb50000-7ff9ddb51000 ---p 00000000 00:00 0
7ff9ddb51000-7ff9de351000 rw-p 00000000 00:00 0
7ff9de351000-7ff9de352000 ---p 00000000 00:00 0
7ff9de352000-7ff9deb52000 rw-p 00000000 00:00 0
7ff9deb52000-7ff9deb53000 ---p 00000000 00:00 0
7ff9deb53000-7ff9df353000 rw-p 00000000 00:00 0
7ff9df353000-7ff9df494000 rw-s 00000000 00:2a 66256 /home/ben/.cache/mesa_shader_cache/index
7ff9df494000-7ff9df4c3000 r--p 00000000 00:1c 743246 /usr/lib/x86_64-linux-gnu/libxml2.so.2.9.13
7ff9df4c3000-7ff9df616000 r-xp 0002f000 00:1c 743246 /usr/lib/x86_64-linux-gnu/libxml2.so.2.9.13
7ff9df616000-7ff9df66a000 r--p 00182000 00:1c 743246 /usr/lib/x86_64-linux-gnu/libxml2.so.2.9.13
7ff9df66a000-7ff9df66b000 ---p 001d6000 00:1c 743246 /usr/lib/x86_64-linux-gnu/libxml2.so.2.9.13
7ff9df66b000-7ff9df674000 r--p 001d6000 00:1c 743246 /usr/lib/x86_64-linux-gnu/libxml2.so.2.9.13
7ff9df674000-7ff9df675000 rw-p 001df000 00:1c 743246 /usr/lib/x86_64-linux-gnu/libxml2.so.2.9.13
7ff9df675000-7ff9df676000 rw-p 00000000 00:00 0
7ff9df676000-7ff9e5d88000 r-xp 00000000 00:1c 548872 /usr/lib/x86_64-linux-gnu/libLLVM-15.so.1
7ff9e5d88000-7ff9e65a6000 r--p 06711000 00:1c 548872 /usr/lib/x86_64-linux-gnu/libLLVM-15.so.1
7ff9e65a6000-7ff9e65ec000 rw-p 06f2f000 00:1c 548872 /usr/lib/x86_64-linux-gnu/libLLVM-15.so.1
7ff9e65ec000-7ff9e6668000 rw-p 00000000 00:00 0
7ff9e6668000-7ff9e66f5000 r--p 00000000 00:1c 635211 /usr/lib/x86_64-linux-gnu/dri/iris_dri.so
7ff9e66f5000-7ff9e76ea000 r-xp 0008d000 00:1c 635211 /usr/lib/x86_64-linux-gnu/dri/iris_dri.so
7ff9e76ea000-7ff9e7db6000 r--p 01082000 00:1c 635211 /usr/lib/x86_64-linux-gnu/dri/iris_dri.so
7ff9e7db6000-7ff9e7e36000 r--p 0174d000 00:1c 635211 /usr/lib/x86_64-linux-gnu/dri/iris_dri.so
7ff9e7e36000-7ff9e7e43000 rw-p 017cd000 00:1c 635211 /usr/lib/x86_64-linux-gnu/dri/iris_dri.so
7ff9e7e43000-7ff9e8000000 rw-p 00000000 00:00 0
7ff9e8000000-7ff9e8021000 rw-p 00000000 00:00 0
7ff9e8021000-7ff9ec000000 ---p 00000000 00:00 0
7ff9ec000000-7ff9ec021000 rw-p 00000000 00:00 0
7ff9ec021000-7ff9f0000000 ---p 00000000 00:00 0
7ff9f0000000-7ff9f0021000 rw-p 00000000 00:00 0
7ff9f0021000-7ff9f4000000 ---p 00000000 00:00 0
7ff9f4000000-7ff9f4058000 rw-p 00000000 00:00 0
7ff9f4058000-7ff9f8000000 ---p 00000000 00:00 0
7ff9f8000000-7ff9f8048000 rw-p 00000000 00:00 0
7ff9f8048000-7ff9fc000000 ---p 00000000 00:00 0
7ff9fc025000-7ff9fc065000 rw-s 11e7f3000 00:0e 2076 anon_inode:i915.gem
7ff9fc065000-7ff9fc073000 r--p 00000000 00:1c 1281152 /usr/lib/x86_64-linux-gnu/libtinfo.so.6.3
7ff9fc073000-7ff9fc084000 r-xp 0000e000 00:1c 1281152 /usr/lib/x86_64-linux-gnu/libtinfo.so.6.3
7ff9fc084000-7ff9fc092000 r--p 0001f000 00:1c 1281152 /usr/lib/x86_64-linux-gnu/libtinfo.so.6.3
7ff9fc092000-7ff9fc096000 r--p 0002c000 00:1c 1281152 /usr/lib/x86_64-linux-gnu/libtinfo.so.6.3
7ff9fc096000-7ff9fc097000 rw-p 00030000 00:1c 1281152 /usr/lib/x86_64-linux-gnu/libtinfo.so.6.3
7ff9fc097000-7ff9fc09f000 r--p 00000000 00:1c 1721453 /usr/lib/x86_64-linux-gnu/libedit.so.2.0.68
7ff9fc09f000-7ff9fc0bd000 r-xp 00008000 00:1c 1721453 /usr/lib/x86_64-linux-gnu/libedit.so.2.0.68
7ff9fc0bd000-7ff9fc0ca000 r--p 00026000 00:1c 1721453 /usr/lib/x86_64-linux-gnu/libedit.so.2.0.68
7ff9fc0ca000-7ff9fc0cc000 r--p 00032000 00:1c 1721453 /usr/lib/x86_64-linux-gnu/libedit.so.2.0.68
7ff9fc0cc000-7ff9fc0cd000 rw-p 00034000 00:1c 1721453 /usr/lib/x86_64-linux-gnu/libedit.so.2.0.68
7ff9fc0cd000-7ff9fc0d1000 rw-p 00000000 00:00 0
7ff9fc0d1000-7ff9fc0d3000 r--p 00000000 00:1c 597555 /usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0
7ff9fc0d3000-7ff9fc0d8000 r-xp 00002000 00:1c 597555 /usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0
7ff9fc0d8000-7ff9fc0da000 r--p 00007000 00:1c 597555 /usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0
7ff9fc0da000-7ff9fc0db000 r--p 00008000 00:1c 597555 /usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0
7ff9fc0db000-7ff9fc0dc000 rw-p 00009000 00:1c 597555 /usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0
7ff9fc0dc000-7ff9fc0df000 r--p 00000000 00:1c 1712224 /usr/lib/x86_64-linux-gnu/libelf-0.186.so
7ff9fc0df000-7ff9fc0f3000 r-xp 00003000 00:1c 1712224 /usr/lib/x86_64-linux-gnu/libelf-0.186.so
7ff9fc0f3000-7ff9fc0f7000 r--p 00017000 00:1c 1712224 /usr/lib/x86_64-linux-gnu/libelf-0.186.so
7ff9fc0f7000-7ff9fc0f8000 ---p 0001b000 00:1c 1712224 /usr/lib/x86_64-linux-gnu/libelf-0.186.so
7ff9fc0f8000-7ff9fc0f9000 r--p 0001b000 00:1c 1712224 /usr/lib/x86_64-linux-gnu/libelf-0.186.so
7ff9fc0f9000-7ff9fc0fa000 rw-p 0001c000 00:1c 1712224 /usr/lib/x86_64-linux-gnu/libelf-0.186.so
7ff9fc0fa000-7ff9fc107000 r--p 00000000 00:1c 635100 /usr/lib/x86_64-linux-gnu/libglapi.so.0.0.0
7ff9fc107000-7ff9fc115000 r-xp 0000d000 00:1c 635100 /usr/lib/x86_64-linux-gnu/libglapi.so.0.0.0
7ff9fc115000-7ff9fc12e000 r--p 0001b000 00:1c 635100 /usr/lib/x86_64-linux-gnu/libglapi.so.0.0.0
7ff9fc12e000-7ff9fc12f000 ---p 00034000 00:1c 635100 /usr/lib/x86_64-linux-gnu/libglapi.so.0.0.0
7ff9fc12f000-7ff9fc133000 r--p 00034000 00:1c 635100 /usr/lib/x86_64-linux-gnu/libglapi.so.0.0.0
7ff9fc133000-7ff9fc134000 rw-p 00038000 00:1c 635100 /usr/lib/x86_64-linux-gnu/libglapi.so.0.0.0
7ff9fc134000-7ff9fc135000 rw-p 00000000 00:00 0
7ff9fc135000-7ff9fc14e000 r--p 00000000 00:1c 634973 /usr/lib/x86_64-linux-gnu/libGLX_mesa.so.0.0.0
7ff9fc14e000-7ff9fc18d000 r-xp 00019000 00:1c 634973 /usr/lib/x86_64-linux-gnu/libGLX_mesa.so.0.0.0
7ff9fc18d000-7ff9fc1a3000 r--p 00058000 00:1c 634973 /usr/lib/x86_64-linux-gnu/libGLX_mesa.so.0.0.0
7ff9fc1a3000-7ff9fc1a5000 r--p 0006d000 00:1c 634973 /usr/lib/x86_64-linux-gnu/libGLX_mesa.so.0.0.0
7ff9fc1a5000-7ff9fc1a6000 rw-p 0006f000 00:1c 634973 /usr/lib/x86_64-linux-gnu/libGLX_mesa.so.0.0.0
7ff9fc1a6000-7ff9fc1a7000 rw-p 00000000 00:00 0
7ff9fc1a7000-7ff9fc1a8000 ---p 00000000 00:00 0
7ff9fc1a8000-7ff9fcae9000 rw-p 00000000 00:00 0
7ff9fcae9000-7ff9fcaea000 ---p 00000000 00:00 0
7ff9fcaea000-7ff9fd3ea000 rw-p 00000000 00:00 0
7ff9fd3ea000-7ff9fd3f0000 r--p 00000000 00:1c 770315 /usr/lib/python3.10/lib-dynload/_ctypes.cpython-310-x86_64-linux-gnu.so
7ff9fd3f0000-7ff9fd401000 r-xp 00006000 00:1c 770315 /usr/lib/python3.10/lib-dynload/_ctypes.cpython-310-x86_64-linux-gnu.so
7ff9fd401000-7ff9fd407000 r--p 00017000 00:1c 770315 /usr/lib/python3.10/lib-dynload/_ctypes.cpython-310-x86_64-linux-gnu.so
7ff9fd407000-7ff9fd408000 r--p 0001c000 00:1c 770315 /usr/lib/python3.10/lib-dynload/_ctypes.cpython-310-x86_64-linux-gnu.so
7ff9fd408000-7ff9fd40c000 rw-p 0001d000 00:1c 770315 /usr/lib/python3.10/lib-dynload/_ctypes.cpython-310-x86_64-linux-gnu.so
7ff9fd40c000-7ff9fd41e000 r--p 00000000 00:1c 1724120 /usr/lib/x86_64-linux-gnu/libsecret-1.so.0.0.0
7ff9fd41e000-7ff9fd451000 r-xp 00012000 00:1c 1724120 /usr/lib/x86_64-linux-gnu/libsecret-1.so.0.0.0
7ff9fd451000-7ff9fd468000 r--p 00045000 00:1c 1724120 /usr/lib/x86_64-linux-gnu/libsecret-1.so.0.0.0
7ff9fd468000-7ff9fd469000 ---p 0005c000 00:1c 1724120 /usr/lib/x86_64-linux-gnu/libsecret-1.so.0.0.0
7ff9fd469000-7ff9fd46d000 r--p 0005c000 00:1c 1724120 /usr/lib/x86_64-linux-gnu/libsecret-1.so.0.0.0
7ff9fd46d000-7ff9fd46e000 rw-p 00060000 00:1c 1724120 /usr/lib/x86_64-linux-gnu/libsecret-1.so.0.0.0
7ff9fd473000-7ff9fd476000 r--p 00000000 00:1c 635035 /usr/lib/x86_64-linux-gnu/libdrm_amdgpu.so.1.0.0
7ff9fd476000-7ff9fd47b000 r-xp 00003000 00:1c 635035 /usr/lib/x86_64-linux-gnu/libdrm_amdgpu.so.1.0.0
7ff9fd47b000-7ff9fd47d000 r--p 00008000 00:1c 635035 /usr/lib/x86_64-linux-gnu/libdrm_amdgpu.so.1.0.0
7ff9fd47d000-7ff9fd47e000 r--p 00009000 00:1c 635035 /usr/lib/x86_64-linux-gnu/libdrm_amdgpu.so.1.0.0
7ff9fd47e000-7ff9fd47f000 rw-p 0000a000 00:1c 635035 /usr/lib/x86_64-linux-gnu/libdrm_amdgpu.so.1.0.0
7ff9fd47f000-7ff9fd481000 r--p 00000000 00:1c 634929 /usr/lib/x86_64-linux-gnu/libdrm_radeon.so.1.0.1
7ff9fd481000-7ff9fd488000 r-xp 00002000 00:1c 634929 /usr/lib/x86_64-linux-gnu/libdrm_radeon.so.1.0.1
7ff9fd488000-7ff9fd48c000 r--p 00009000 00:1c 634929 /usr/lib/x86_64-linux-gnu/libdrm_radeon.so.1.0.1
7ff9fd48c000-7ff9fd48d000 r--p 0000c000 00:1c 634929 /usr/lib/x86_64-linux-gnu/libdrm_radeon.so.1.0.1
7ff9fd48d000-7ff9fd48e000 rw-p 0000d000 00:1c 634929 /usr/lib/x86_64-linux-gnu/libdrm_radeon.so.1.0.1
7ff9fd48e000-7ff9fd4c1000 r--p 00000000 00:1c 1806327 /usr/lib/x86_64-linux-gnu/girepository-1.0/GLib-2.0.typelib
7ff9fd4c1000-7ff9fd51a000 r--p 00000000 00:1c 1806464 /usr/lib/x86_64-linux-gnu/girepository-1.0/Gio-2.0.typelib
7ff9fd51a000-7ff9fd527000 r--p 00000000 00:1c 1680286 /usr/lib/python3/dist-packages/cairo/_cairo.cpython-310-x86_64-linux-gnu.so
7ff9fd527000-7ff9fd53d000 r-xp 0000d000 00:1c 1680286 /usr/lib/python3/dist-packages/cairo/_cairo.cpython-310-x86_64-linux-gnu.so
7ff9fd53d000-7ff9fd546000 r--p 00023000 00:1c 1680286 /usr/lib/python3/dist-packages/cairo/_cairo.cpython-310-x86_64-linux-gnu.so
7ff9fd546000-7ff9fd547000 r--p 0002b000 00:1c 1680286 /usr/lib/python3/dist-packages/cairo/_cairo.cpython-310-x86_64-linux-gnu.so
7ff9fd547000-7ff9fd552000 rw-p 0002c000 00:1c 1680286 /usr/lib/python3/dist-packages/cairo/_cairo.cpython-310-x86_64-linux-gnu.so
7ff9fd552000-7ff9fd652000 rw-p 00000000 00:00 0
7ff9fd652000-7ff9fd656000 r--p 00000000 00:1c 1703766 /usr/lib/x86_64-linux-gnu/libXext.so.6.4.0
7ff9fd656000-7ff9fd661000 r-xp 00004000 00:1c 1703766 /usr/lib/x86_64-linux-gnu/libXext.so.6.4.0
7ff9fd661000-7ff9fd665000 r--p 0000f000 00:1c 1703766 /usr/lib/x86_64-linux-gnu/libXext.so.6.4.0
7ff9fd665000-7ff9fd666000 r--p 00012000 00:1c 1703766 /usr/lib/x86_64-linux-gnu/libXext.so.6.4.0
7ff9fd666000-7ff9fd667000 rw-p 00013000 00:1c 1703766 /usr/lib/x86_64-linux-gnu/libXext.so.6.4.0
7ff9fd667000-7ff9fd671000 r--p 00000000 00:1c 2241497 /usr/lib/x86_64-linux-gnu/libpixman-1.so.0.40.0
7ff9fd671000-7ff9fd6f7000 r-xp 0000a000 00:1c 2241497 /usr/lib/x86_64-linux-gnu/libpixman-1.so.0.40.0
7ff9fd6f7000-7ff9fd709000 r--p 00090000 00:1c 2241497 /usr/lib/x86_64-linux-gnu/libpixman-1.so.0.40.0
7ff9fd709000-7ff9fd711000 r--p 000a1000 00:1c 2241497 /usr/lib/x86_64-linux-gnu/libpixman-1.so.0.40.0
7ff9fd711000-7ff9fd712000 rw-p 000a9000 00:1c 2241497 /usr/lib/x86_64-linux-gnu/libpixman-1.so.0.40.0
7ff9fd712000-7ff9fd724000 r--p 00000000 00:1c 1715057 /usr/lib/x86_64-linux-gnu/libcairo.so.2.11600.0
7ff9fd724000-7ff9fd7f7000 r-xp 00012000 00:1c 1715057 /usr/lib/x86_64-linux-gnu/libcairo.so.2.11600.0
7ff9fd7f7000-7ff9fd834000 r--p 000e5000 00:1c 1715057 /usr/lib/x86_64-linux-gnu/libcairo.so.2.11600.0
7ff9fd834000-7ff9fd838000 r--p 00121000 00:1c 1715057 /usr/lib/x86_64-linux-gnu/libcairo.so.2.11600.0
7ff9fd838000-7ff9fd839000 rw-p 00125000 00:1c 1715057 /usr/lib/x86_64-linux-gnu/libcairo.so.2.11600.0
7ff9fd839000-7ff9fd83a000 rw-p 00000000 00:00 0
7ff9fd83b000-7ff9fd83d000 r--p 00000000 00:1c 1762740 /usr/lib/x86_64-linux-gnu/libsensors.so.5.0.0
7ff9fd83d000-7ff9fd844000 r-xp 00002000 00:1c 1762740 /usr/lib/x86_64-linux-gnu/libsensors.so.5.0.0
7ff9fd844000-7ff9fd848000 r--p 00009000 00:1c 1762740 /usr/lib/x86_64-linux-gnu/libsensors.so.5.0.0
7ff9fd848000-7ff9fd849000 ---p 0000d000 00:1c 1762740 /usr/lib/x86_64-linux-gnu/libsensors.so.5.0.0
7ff9fd849000-7ff9fd84a000 r--p 0000d000 00:1c 1762740 /usr/lib/x86_64-linux-gnu/libsensors.so.5.0.0
7ff9fd84a000-7ff9fd84b000 rw-p 0000e000 00:1c 1762740 /usr/lib/x86_64-linux-gnu/libsensors.so.5.0.0
7ff9fd84b000-7ff9fd85a000 r--p 00000000 00:1c 1806207 /usr/lib/x86_64-linux-gnu/girepository-1.0/GObject-2.0.typelib
7ff9fd85a000-7ff9fd85c000 r--p 00000000 00:1c 329221 /usr/lib/x86_64-linux-gnu/libpcre2-8.so.0.10.4
7ff9fd85c000-7ff9fd8c7000 r-xp 00002000 00:1c 329221 /usr/lib/x86_64-linux-gnu/libpcre2-8.so.0.10.4
7ff9fd8c7000-7ff9fd8ef000 r--p 0006d000 00:1c 329221 /usr/lib/x86_64-linux-gnu/libpcre2-8.so.0.10.4
7ff9fd8ef000-7ff9fd8f0000 r--p 00094000 00:1c 329221 /usr/lib/x86_64-linux-gnu/libpcre2-8.so.0.10.4
7ff9fd8f0000-7ff9fd8f1000 rw-p 00095000 00:1c 329221 /usr/lib/x86_64-linux-gnu/libpcre2-8.so.0.10.4
7ff9fd8f1000-7ff9fd8f8000 r--p 00000000 00:1c 1689260 /usr/lib/x86_64-linux-gnu/libblkid.so.1.1.0
7ff9fd8f8000-7ff9fd918000 r-xp 00007000 00:1c 1689260 /usr/lib/x86_64-linux-gnu/libblkid.so.1.1.0
7ff9fd918000-7ff9fd921000 r--p 00027000 00:1c 1689260 /usr/lib/x86_64-linux-gnu/libblkid.so.1.1.0
7ff9fd921000-7ff9fd922000 ---p 00030000 00:1c 1689260 /usr/lib/x86_64-linux-gnu/libblkid.so.1.1.0
7ff9fd922000-7ff9fd927000 r--p 00030000 00:1c 1689260 /usr/lib/x86_64-linux-gnu/libblkid.so.1.1.0
7ff9fd927000-7ff9fd928000 rw-p 00035000 00:1c 1689260 /usr/lib/x86_64-linux-gnu/libblkid.so.1.1.0
7ff9fd928000-7ff9fd92e000 r--p 00000000 00:1c 1280409 /usr/lib/x86_64-linux-gnu/libselinux.so.1
7ff9fd92e000-7ff9fd948000 r-xp 00006000 00:1c 1280409 /usr/lib/x86_64-linux-gnu/libselinux.so.1
7ff9fd948000-7ff9fd94f000 r--p 00020000 00:1c 1280409 /usr/lib/x86_64-linux-gnu/libselinux.so.1
7ff9fd94f000-7ff9fd950000 ---p 00027000 00:1c 1280409 /usr/lib/x86_64-linux-gnu/libselinux.so.1
7ff9fd950000-7ff9fd951000 r--p 00027000 00:1c 1280409 /usr/lib/x86_64-linux-gnu/libselinux.so.1
7ff9fd951000-7ff9fd952000 rw-p 00028000 00:1c 1280409 /usr/lib/x86_64-linux-gnu/libselinux.so.1
7ff9fd952000-7ff9fd954000 rw-p 00000000 00:00 0
7ff9fd954000-7ff9fd95c000 r--p 00000000 00:1c 306720 /usr/lib/x86_64-linux-gnu/libmount.so.1.1.0
7ff9fd95c000-7ff9fd988000 r-xp 00008000 00:1c 306720 /usr/lib/x86_64-linux-gnu/libmount.so.1.1.0
7ff9fd988000-7ff9fd995000 r--p 00034000 00:1c 306720 /usr/lib/x86_64-linux-gnu/libmount.so.1.1.0
7ff9fd995000-7ff9fd996000 ---p 00041000 00:1c 306720 /usr/lib/x86_64-linux-gnu/libmount.so.1.1.0
7ff9fd996000-7ff9fd997000 r--p 00041000 00:1c 306720 /usr/lib/x86_64-linux-gnu/libmount.so.1.1.0
7ff9fd997000-7ff9fd998000 rw-p 00042000 00:1c 306720 /usr/lib/x86_64-linux-gnu/libmount.so.1.1.0
7ff9fd998000-7ff9fd9d0000 r--p 00000000 00:1c 726465 /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.7200.4
7ff9fd9d0000-7ff9fdae0000 r-xp 00038000 00:1c 726465 /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.7200.4
7ff9fdae0000-7ff9fdb65000 r--p 00148000 00:1c 726465 /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.7200.4
7ff9fdb65000-7ff9fdb6d000 r--p 001cc000 00:1c 726465 /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.7200.4
7ff9fdb6d000-7ff9fdb6e000 rw-p 001d4000 00:1c 726465 /usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.7200.4
7ff9fdb6e000-7ff9fdb70000 rw-p 00000000 00:00 0
7ff9fdb70000-7ff9fdb72000 r--p 00000000 00:1c 726466 /usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.7200.4
7ff9fdb72000-7ff9fdb74000 r-xp 00002000 00:1c 726466 /usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.7200.4
7ff9fdb74000-7ff9fdb75000 r--p 00004000 00:1c 726466 /usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.7200.4
7ff9fdb75000-7ff9fdb76000 r--p 00004000 00:1c 726466 /usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.7200.4
7ff9fdb76000-7ff9fdb77000 rw-p 00005000 00:1c 726466 /usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.7200.4
7ff9fdb77000-7ff9fdb79000 r--p 00000000 00:1c 305385 /usr/lib/x86_64-linux-gnu/libffi.so.8.1.0
7ff9fdb79000-7ff9fdb80000 r-xp 00002000 00:1c 305385 /usr/lib/x86_64-linux-gnu/libffi.so.8.1.0
7ff9fdb80000-7ff9fdb81000 r--p 00009000 00:1c 305385 /usr/lib/x86_64-linux-gnu/libffi.so.8.1.0
7ff9fdb81000-7ff9fdb82000 ---p 0000a000 00:1c 305385 /usr/lib/x86_64-linux-gnu/libffi.so.8.1.0
7ff9fdb82000-7ff9fdb83000 r--p 0000a000 00:1c 305385 /usr/lib/x86_64-linux-gnu/libffi.so.8.1.0
7ff9fdb83000-7ff9fdb84000 rw-p 0000b000 00:1c 305385 /usr/lib/x86_64-linux-gnu/libffi.so.8.1.0
7ff9fdb84000-7ff9fdb8b000 r--p 00000000 00:1c 1685941 /usr/lib/x86_64-linux-gnu/libgirepository-1.0.so.1.0.0
7ff9fdb8b000-7ff9fdb9c000 r-xp 00007000 00:1c 1685941 /usr/lib/x86_64-linux-gnu/libgirepository-1.0.so.1.0.0
7ff9fdb9c000-7ff9fdba5000 r--p 00018000 00:1c 1685941 /usr/lib/x86_64-linux-gnu/libgirepository-1.0.so.1.0.0
7ff9fdba5000-7ff9fdba6000 r--p 00020000 00:1c 1685941 /usr/lib/x86_64-linux-gnu/libgirepository-1.0.so.1.0.0
7ff9fdba6000-7ff9fdba7000 rw-p 00021000 00:1c 1685941 /usr/lib/x86_64-linux-gnu/libgirepository-1.0.so.1.0.0
7ff9fdba7000-7ff9fdbb6000 r--p 00000000 00:1c 726467 /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.7200.4
7ff9fdbb6000-7ff9fdbe9000 r-xp 0000f000 00:1c 726467 /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.7200.4
7ff9fdbe9000-7ff9fdc03000 r--p 00042000 00:1c 726467 /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.7200.4
7ff9fdc03000-7ff9fdc06000 r--p 0005b000 00:1c 726467 /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.7200.4
7ff9fdc06000-7ff9fdc07000 rw-p 0005e000 00:1c 726467 /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.7200.4
7ff9fdc0d000-7ff9fdc14000 r--p 00000000 00:1c 203589 /usr/lib/x86_64-linux-gnu/girepository-1.0/Secret-1.typelib
7ff9fdc14000-7ff9fdc18000 r--p 00000000 00:1c 1714616 /usr/lib/x86_64-linux-gnu/libcairo-gobject.so.2.11600.0
7ff9fdc18000-7ff9fdc1a000 r-xp 00004000 00:1c 1714616 /usr/lib/x86_64-linux-gnu/libcairo-gobject.so.2.11600.0
7ff9fdc1a000-7ff9fdc1c000 r--p 00006000 00:1c 1714616 /usr/lib/x86_64-linux-gnu/libcairo-gobject.so.2.11600.0
7ff9fdc1c000-7ff9fdc1d000 ---p 00008000 00:1c 1714616 /usr/lib/x86_64-linux-gnu/libcairo-gobject.so.2.11600.0
7ff9fdc1d000-7ff9fdc1f000 r--p 00008000 00:1c 1714616 /usr/lib/x86_64-linux-gnu/libcairo-gobject.so.2.11600.0
7ff9fdc1f000-7ff9fdc20000 rw-p 0000a000 00:1c 1714616 /usr/lib/x86_64-linux-gnu/libcairo-gobject.so.2.11600.0
7ff9fdc20000-7ff9fdc22000 r--p 00000000 00:1c 1679453 /usr/lib/python3/dist-packages/gi/_gi_cairo.cpython-310-x86_64-linux-gnu.so
7ff9fdc22000-7ff9fdc24000 r-xp 00002000 00:1c 1679453 /usr/lib/python3/dist-packages/gi/_gi_cairo.cpython-310-x86_64-linux-gnu.so
7ff9fdc24000-7ff9fdc25000 r--p 00004000 00:1c 1679453 /usr/lib/python3/dist-packages/gi/_gi_cairo.cpython-310-x86_64-linux-gnu.so
7ff9fdc25000-7ff9fdc26000 r--p 00004000 00:1c 1679453 /usr/lib/python3/dist-packages/gi/_gi_cairo.cpython-310-x86_64-linux-gnu.so
7ff9fdc26000-7ff9fdc27000 rw-p 00005000 00:1c 1679453 /usr/lib/python3/dist-packages/gi/_gi_cairo.cpython-310-x86_64-linux-gnu.so
7ff9fdc27000-7ff9fdc36000 r--p 00000000 00:1c 1685286 /usr/lib/python3/dist-packages/gi/_gi.cpython-310-x86_64-linux-gnu.so
7ff9fdc36000-7ff9fdc64000 r-xp 0000f000 00:1c 1685286 /usr/lib/python3/dist-packages/gi/_gi.cpython-310-x86_64-linux-gnu.so
7ff9fdc64000-7ff9fdc73000 r--p 0003d000 00:1c 1685286 /usr/lib/python3/dist-packages/gi/_gi.cpython-310-x86_64-linux-gnu.so
7ff9fdc73000-7ff9fdc74000 ---p 0004c000 00:1c 1685286 /usr/lib/python3/dist-packages/gi/_gi.cpython-310-x86_64-linux-gnu.so
7ff9fdc74000-7ff9fdc76000 r--p 0004c000 00:1c 1685286 /usr/lib/python3/dist-packages/gi/_gi.cpython-310-x86_64-linux-gnu.so
7ff9fdc76000-7ff9fdc7d000 rw-p 0004e000 00:1c 1685286 /usr/lib/python3/dist-packages/gi/_gi.cpython-310-x86_64-linux-gnu.so
7ff9fdc7d000-7ff9fdc7f000 r--p 00000000 00:1c 1680187 /usr/lib/python3/dist-packages/_dbus_glib_bindings.cpython-310-x86_64-linux-gnu.so
7ff9fdc7f000-7ff9fdc81000 r-xp 00002000 00:1c 1680187 /usr/lib/python3/dist-packages/_dbus_glib_bindings.cpython-310-x86_64-linux-gnu.so
7ff9fdc81000-7ff9fdc82000 r--p 00004000 00:1c 1680187 /usr/lib/python3/dist-packages/_dbus_glib_bindings.cpython-310-x86_64-linux-gnu.so
7ff9fdc82000-7ff9fdc83000 r--p 00004000 00:1c 1680187 /usr/lib/python3/dist-packages/_dbus_glib_bindings.cpython-310-x86_64-linux-gnu.so
7ff9fdc83000-7ff9fdc84000 rw-p 00005000 00:1c 1680187 /usr/lib/python3/dist-packages/_dbus_glib_bindings.cpython-310-x86_64-linux-gnu.so
7ff9fdc84000-7ff9fdc85000 r--p 00000000 00:1c 770729 /usr/lib/python3.10/lib-dynload/_opcode.cpython-310-x86_64-linux-gnu.so
7ff9fdc85000-7ff9fdc86000 r-xp 00001000 00:1c 770729 /usr/lib/python3.10/lib-dynload/_opcode.cpython-310-x86_64-linux-gnu.so
7ff9fdc86000-7ff9fdc87000 r--p 00002000 00:1c 770729 /usr/lib/python3.10/lib-dynload/_opcode.cpython-310-x86_64-linux-gnu.so
7ff9fdc87000-7ff9fdc88000 r--p 00002000 00:1c 770729 /usr/lib/python3.10/lib-dynload/_opcode.cpython-310-x86_64-linux-gnu.so
7ff9fdc88000-7ff9fdc89000 rw-p 00003000 00:1c 770729 /usr/lib/python3.10/lib-dynload/_opcode.cpython-310-x86_64-linux-gnu.so
7ff9fdc89000-7ff9fdd89000 rw-p 00000000 00:00 0
7ff9fdd89000-7ff9fddaf000 r--s 00000000 00:1c 80933 /usr/share/mime/mime.cache
7ff9fddaf000-7ff9fddb1000 r--s 00000000 00:1c 104191 /usr/local/share/mime/mime.cache
7ff9fddb1000-7ff9fddb2000 r--s 00000000 00:1c 574887 /var/lib/flatpak/exports/share/mime/mime.cache
7ff9fddb2000-7ff9fddb8000 r--s 00000000 00:2a 354412 /home/ben/.local/share/mime/mime.cache
7ff9fddb8000-7ff9fddb9000 ---p 00000000 00:00 0
7ff9fddb9000-7ff9fe5b9000 rw-p 00000000 00:00 0
7ff9fe5b9000-7ff9fe666000 r--p 00000000 00:1c 1700067 /usr/share/fonts/truetype/dejavu/DejaVuSans-Bold.ttf
7ff9fe666000-7ff9fe71f000 r--p 00000000 00:1c 1703370 /usr/share/fonts/truetype/dejavu/DejaVuSans.ttf
7ff9fe71f000-7ff9fe724000 r--s 00000000 00:1c 1314331 /var/cache/fontconfig/bef2e540-c995-4649-9b5e-397f8db72e42-le64.cache-7
7ff9fe724000-7ff9fe728000 r--s 00000000 00:1c 1314329 /var/cache/fontconfig/c6ea1590-463f-4b17-b804-c3d59cc7ec9d-le64.cache-7
7ff9fe728000-7ff9fe733000 r--s 00000000 00:1c 1314359 /var/cache/fontconfig/24948cad-4580-4f85-b596-5c88dc8e9bf8-le64.cache-7
7ff9fe733000-7ff9fe73f000 r--s 00000000 00:1c 1314357 /var/cache/fontconfig/bc487511-d00d-4c1e-b328-47c37877e104-le64.cache-7
7ff9fe73f000-7ff9fe74a000 r--s 00000000 00:1c 1314353 /var/cache/fontconfig/d9a7a915-76ae-4b01-b0c9-e51d506b89b6-le64.cache-7
7ff9fe74a000-7ff9fe750000 r--s 00000000 00:1c 1314349 /var/cache/fontconfig/2f46fb85-e450-4a33-94f8-8b46bb676060-le64.cache-7
7ff9fe750000-7ff9fe751000 r--s 00000000 00:1c 1314347 /var/cache/fontconfig/00adb322-0e46-4df6-b266-d8ff9bb75fb3-le64.cache-7
7ff9fe751000-7ff9fe755000 r--s 00000000 00:1c 1314345 /var/cache/fontconfig/8de88832-6de1-428b-866f-4dcb80f2e651-le64.cache-7
7ff9fe755000-7ff9fe76b000 r--s 00000000 00:1c 1314343 /var/cache/fontconfig/ffbacda5-3487-4366-914e-b02bf1262b7e-le64.cache-7
7ff9fe76b000-7ff9fe76c000 r--s 00000000 00:1c 1314341 /var/cache/fontconfig/9a0df2f5-bcd2-4e35-ae45-cface100bddd-le64.cache-7
7ff9fe76c000-7ff9fe774000 r--s 00000000 00:1c 1314339 /var/cache/fontconfig/6ee311eb-c802-495d-9f72-c95537f12587-le64.cache-7
7ff9fe774000-7ff9fe775000 r--s 00000000 00:1c 1314337 /var/cache/fontconfig/7c9f2819-13ca-473a-9108-9cd323d64749-le64.cache-7
7ff9fe775000-7ff9fe777000 r--s 00000000 00:1c 1314335 /var/cache/fontconfig/b5416a83-494d-4e30-bd34-44a21eb0464c-le64.cache-7
7ff9fe777000-7ff9fe778000 r--s 00000000 00:1c 1314333 /var/cache/fontconfig/a90974d0-4590-4288-806d-e11f401f957c-le64.cache-7
7ff9fe778000-7ff9fe77a000 r--s 00000000 00:1c 1314323 /var/cache/fontconfig/6c413d47-2a37-4ccc-965d-000eb43fe42a-le64.cache-7
7ff9fe77a000-7ff9fe77c000 r--s 00000000 00:1c 1314321 /var/cache/fontconfig/aeffa5cc-39ab-45e0-8e07-7c9ae8f3d2dc-le64.cache-7
7ff9fe77c000-7ff9fe7f1000 r--s 00000000 00:1c 233600 /var/cache/fontconfig/c1f83f07-fb42-424f-917a-39b74af896d3-le64.cache-7
7ff9fe7f1000-7ff9fe82c000 r--s 00000000 00:1c 1339862 /var/cache/fontconfig/b9bd45cf-c571-455a-bd0a-83353d7ae4aa-le64.cache-7
7ff9fe82c000-7ff9fe831000 r--s 00000000 00:1c 1314526 /var/cache/fontconfig/9d45f405-bf64-4a4e-b499-e73d65343537-le64.cache-7
7ff9fe831000-7ff9fe836000 r--s 00000000 00:1c 1314524 /var/cache/fontconfig/3d73bcac-2895-4e53-88b5-2ea0b31f30b8-le64.cache-7
7ff9fe836000-7ff9fe837000 r--s 00000000 00:1c 1314522 /var/cache/fontconfig/8b83f4ec-3fe5-473b-8744-d48f487ab79f-le64.cache-7
7ff9fe837000-7ff9fe838000 r--s 00000000 00:1c 1314520 /var/cache/fontconfig/d7c1db79-9f15-4ac3-b89a-ead957eee1a5-le64.cache-7
7ff9fe838000-7ff9fe839000 r--s 00000000 00:1c 1314518 /var/cache/fontconfig/fa96240b-ba56-48cf-9a08-b88a06fedbd4-le64.cache-7
7ff9fe839000-7ff9fe83a000 r--s 00000000 00:1c 1314516 /var/cache/fontconfig/81919b02-0dd4-4181-96af-bac70abc4c07-le64.cache-7
7ff9fe83a000-7ff9fe83b000 r--s 00000000 00:1c 1314514 /var/cache/fontconfig/ff54ee1c-7a4c-4873-8c62-38ac4ecb272c-le64.cache-7
7ff9fe83b000-7ff9fe83c000 r--s 00000000 00:1c 1314512 /var/cache/fontconfig/fea6c47c-4022-4a62-a934-e35f3b1fcc4e-le64.cache-7
7ff9fe83c000-7ff9fe83d000 r--s 00000000 00:1c 1314510 /var/cache/fontconfig/9385a8c8-2ac1-4e12-bd69-447b4358eca9-le64.cache-7
7ff9fe83d000-7ff9fe83e000 r--s 00000000 00:1c 1314508 /var/cache/fontconfig/cd2c9c30-73f8-4790-876f-da931c53c6f2-le64.cache-7
7ff9fe83e000-7ff9fe83f000 r--s 00000000 00:1c 1314506 /var/cache/fontconfig/a80c42fe-7bf7-4d7b-950c-1ad4dfea8980-le64.cache-7
7ff9fe83f000-7ff9fe840000 r--s 00000000 00:1c 1314504 /var/cache/fontconfig/7a33167b-a2d5-4dbf-b9e5-ed948105e9b7-le64.cache-7
7ff9fe840000-7ff9fe841000 r--s 00000000 00:1c 1314502 /var/cache/fontconfig/b1aa13bd-0913-4ab7-8153-3950f5157b63-le64.cache-7
7ff9fe841000-7ff9fe842000 r--s 00000000 00:1c 255538 /var/cache/fontconfig/86115755-e90d-4df2-b986-ede7f214712a-le64.cache-7
7ff9fe842000-7ff9fe848000 r--s 00000000 00:1c 1314498 /var/cache/fontconfig/4e0d57d0-4646-40f1-9a2d-324f85f416c1-le64.cache-7
7ff9fe848000-7ff9fe84f000 r--s 00000000 00:1c 1314496 /var/cache/fontconfig/6ed88102-3f1b-4453-8c8d-4440e282a601-le64.cache-7
7ff9fe84f000-7ff9fe857000 r--s 00000000 00:1c 1314494 /var/cache/fontconfig/ad07acc6-4a5f-4d33-b606-96b076c14366-le64.cache-7
7ff9fe857000-7ff9fe858000 r--s 00000000 00:1c 1314492 /var/cache/fontconfig/fb584f51-b3fc-4a18-822b-aeea9b900c42-le64.cache-7
7ff9fe858000-7ff9fe859000 r--s 00000000 00:1c 1314490 /var/cache/fontconfig/0abd3fe7-7d9a-4799-8974-da97ebfc9f99-le64.cache-7
7ff9fe859000-7ff9fe85f000 r--s 00000000 00:1c 1314488 /var/cache/fontconfig/e3be9626-aa21-4a5e-8dce-cc0edd53faad-le64.cache-7
7ff9fe85f000-7ff9fed95000 r--s 00000000 00:1c 1314486 /var/cache/fontconfig/8720d1f7-66b8-4673-9f5b-c997d05ec2dc-le64.cache-7
7ff9fed95000-7ff9feda8000 r--s 00000000 00:1c 1314482 /var/cache/fontconfig/0d21f4bf-c676-4fca-8255-3c6addf10b2c-le64.cache-7
7ff9feda8000-7ff9fedae000 r--s 00000000 00:1c 1314480 /var/cache/fontconfig/d48f1c56-10a0-474d-8eb0-dd2a003f1ad3-le64.cache-7
7ff9fedae000-7ff9fedaf000 r--s 00000000 00:1c 1314478 /var/cache/fontconfig/1681c526-7e3c-4d5d-8a57-9289a89e8317-le64.cache-7
7ff9fedaf000-7ff9fedb0000 r--s 00000000 00:1c 1314476 /var/cache/fontconfig/3df67490-ce5a-44a9-95bd-8a0760a495d8-le64.cache-7
7ff9fedb0000-7ff9fedb1000 r--s 00000000 00:1c 1314474 /var/cache/fontconfig/4489a41b-dbb7-40c4-8591-2511a720ad4b-le64.cache-7
7ff9fedb1000-7ff9fedb2000 r--s 00000000 00:1c 1314472 /var/cache/fontconfig/f99e08e3-f324-4576-b7e4-2173131b0ad1-le64.cache-7
7ff9fedb2000-7ff9fedb5000 r--s 00000000 00:1c 1314470 /var/cache/fontconfig/7a823765-6106-423a-aa12-71aa15e1c2cc-le64.cache-7
7ff9fedb5000-7ff9fedb7000 r--s 00000000 00:1c 1314468 /var/cache/fontconfig/9614d283-27e7-4078-9df6-43d8a1d9cd34-le64.cache-7
7ff9fedb7000-7ff9fedba000 r--s 00000000 00:1c 1314466 /var/cache/fontconfig/1c352947-467c-46f0-afc3-5ed40ce4124e-le64.cache-7
7ff9fedba000-7ff9fedbb000 r--s 00000000 00:1c 1314464 /var/cache/fontconfig/d9343f1d-62bc-4dc0-87db-443c6d3cb451-le64.cache-7
7ff9fedbb000-7ff9fedc7000 r--s 00000000 00:1c 1314462 /var/cache/fontconfig/5841d586-497b-48f3-b8ed-af377e30bdda-le64.cache-7
7ff9fedc7000-7ff9fedc8000 r--s 00000000 00:1c 1314460 /var/cache/fontconfig/f3098f92-091c-4f44-8321-8de996ad98b6-le64.cache-7
7ff9fedc8000-7ff9fedc9000 r--s 00000000 00:1c 1314458 /var/cache/fontconfig/2e8f9519-6d96-4181-96b2-d891d50b6132-le64.cache-7
7ff9fedc9000-7ff9fedca000 r--s 00000000 00:1c 1314456 /var/cache/fontconfig/5bae9439-8051-4cf3-ada2-8dbc9a50975d-le64.cache-7
7ff9fedca000-7ff9fedcb000 r--s 00000000 00:1c 1314454 /var/cache/fontconfig/47a7876a-82a2-4049-bcda-943cec262add-le64.cache-7
7ff9fedcb000-7ff9fedd9000 r--s 00000000 00:1c 1314440 /var/cache/fontconfig/77bf7e37-63c6-4009-9778-495d4b180b0f-le64.cache-7
7ff9fedd9000-7ff9fede9000 r--s 00000000 00:1c 1314438 /var/cache/fontconfig/4f5d5163-85c9-4541-ae03-c05c3f340263-le64.cache-7
7ff9fede9000-7ff9fedec000 r--s 00000000 00:1c 1314436 /var/cache/fontconfig/570c7e12-7032-4e7f-a754-ed747e5b1b26-le64.cache-7
7ff9fedec000-7ff9fee2a000 r--s 00000000 00:2a 66561 /home/ben/.cache/fontconfig/43e1f08a-d11d-442a-9cfc-1467e7f95eb7-le64.cache-7
7ff9fee2a000-7ff9fee4f000 r--p 00000000 00:1c 1187471 /usr/share/locale-langpack/de/LC_MESSAGES/libc.mo
7ff9fee4f000-7ff9fee67000 r--s 00000000 00:1c 89461 /usr/share/icons/gnome/icon-theme.cache
7ff9fee67000-7ff9fee80000 r--p 00000000 00:1c 1614618 /usr/lib/x86_64-linux-gnu/libQt5Svg.so.5.15.3
7ff9fee80000-7ff9feeb5000 r-xp 00019000 00:1c 1614618 /usr/lib/x86_64-linux-gnu/libQt5Svg.so.5.15.3
7ff9feeb5000-7ff9feec0000 r--p 0004e000 00:1c 1614618 /usr/lib/x86_64-linux-gnu/libQt5Svg.so.5.15.3
7ff9feec0000-7ff9feec1000 ---p 00059000 00:1c 1614618 /usr/lib/x86_64-linux-gnu/libQt5Svg.so.5.15.3
7ff9feec1000-7ff9feec3000 r--p 00059000 00:1c 1614618 /usr/lib/x86_64-linux-gnu/libQt5Svg.so.5.15.3
7ff9feec3000-7ff9feec4000 rw-p 0005b000 00:1c 1614618 /usr/lib/x86_64-linux-gnu/libQt5Svg.so.5.15.3
7ff9feec4000-7ff9feee4000 r--s 00000000 00:1c 85069 /usr/share/icons/Adwaita/icon-theme.cache
7ff9feee4000-7ff9feee8000 r--p 00000000 00:1c 307172 /usr/lib/x86_64-linux-gnu/libjpeg.so.8.2.2
7ff9feee8000-7ff9fef31000 r-xp 00004000 00:1c 307172 /usr/lib/x86_64-linux-gnu/libjpeg.so.8.2.2
7ff9fef31000-7ff9fef63000 r--p 0004d000 00:1c 307172 /usr/lib/x86_64-linux-gnu/libjpeg.so.8.2.2
7ff9fef63000-7ff9fef64000 r--p 0007e000 00:1c 307172 /usr/lib/x86_64-linux-gnu/libjpeg.so.8.2.2
7ff9fef64000-7ff9fef65000 rw-p 0007f000 00:1c 307172 /usr/lib/x86_64-linux-gnu/libjpeg.so.8.2.2
7ff9fef65000-7ff9fef66000 r--s 00000000 00:1c 1314452 /var/cache/fontconfig/ec533263-20c1-4e1c-92c7-688e498ab519-le64.cache-7
7ff9fef66000-7ff9fef67000 r--s 00000000 00:1c 1314450 /var/cache/fontconfig/ed3518bf-3d33-47b7-bc4a-db7db3e97b92-le64.cache-7
7ff9fef67000-7ff9fef75000 r--s 00000000 00:1c 1314367 /var/cache/fontconfig/bfdca7a6-fd5b-460d-9f35-2db891051783-le64.cache-7
7ff9fef75000-7ff9fef7d000 r--s 00000000 00:1c 208118 /usr/share/icons/hicolor/icon-theme.cache
7ff9fef7d000-7ff9fef80000 r--p 00000000 00:1c 1614316 /usr/lib/x86_64-linux-gnu/qt5/plugins/imageformats/libqsvg.so
7ff9fef80000-7ff9fef82000 r-xp 00003000 00:1c 1614316 /usr/lib/x86_64-linux-gnu/qt5/plugins/imageformats/libqsvg.so
7ff9fef82000-7ff9fef83000 r--p 00005000 00:1c 1614316 /usr/lib/x86_64-linux-gnu/qt5/plugins/imageformats/libqsvg.so
7ff9fef83000-7ff9fef84000 r--p 00005000 00:1c 1614316 /usr/lib/x86_64-linux-gnu/qt5/plugins/imageformats/libqsvg.so
7ff9fef84000-7ff9fef85000 rw-p 00006000 00:1c 1614316 /usr/lib/x86_64-linux-gnu/qt5/plugins/imageformats/libqsvg.so
7ff9fef85000-7ff9fef86000 ---p 00000000 00:00 0
7ff9fef86000-7ff9ff786000 rw-p 00000000 00:00 0
7ff9ff786000-7ff9ff78e000 r--p 00000000 00:1c 2171113 /usr/lib/x86_64-linux-gnu/qt5/plugins/platforminputcontexts/libibusplatforminputcontextplugin.so
7ff9ff78e000-7ff9ff7a1000 r-xp 00008000 00:1c 2171113 /usr/lib/x86_64-linux-gnu/qt5/plugins/platforminputcontexts/libibusplatforminputcontextplugin.so
7ff9ff7a1000-7ff9ff7a7000 r--p 0001b000 00:1c 2171113 /usr/lib/x86_64-linux-gnu/qt5/plugins/platforminputcontexts/libibusplatforminputcontextplugin.so
7ff9ff7a7000-7ff9ff7a8000 ---p 00021000 00:1c 2171113 /usr/lib/x86_64-linux-gnu/qt5/plugins/platforminputcontexts/libibusplatforminputcontextplugin.so
7ff9ff7a8000-7ff9ff7a9000 r--p 00021000 00:1c 2171113 /usr/lib/x86_64-linux-gnu/qt5/plugins/platforminputcontexts/libibusplatforminputcontextplugin.so
7ff9ff7a9000-7ff9ff7aa000 rw-p 00022000 00:1c 2171113 /usr/lib/x86_64-linux-gnu/qt5/plugins/platforminputcontexts/libibusplatforminputcontextplugin.so
7ff9ff7aa000-7ff9ff7ac000 r--p 00000000 00:1c 1585813 /usr/lib/x86_64-linux-gnu/libXfixes.so.3.1.0
7ff9ff7ac000-7ff9ff7af000 r-xp 00002000 00:1c 1585813 /usr/lib/x86_64-linux-gnu/libXfixes.so.3.1.0
7ff9ff7af000-7ff9ff7b0000 r--p 00005000 00:1c 1585813 /usr/lib/x86_64-linux-gnu/libXfixes.so.3.1.0
7ff9ff7b0000-7ff9ff7b1000 r--p 00006000 00:1c 1585813 /usr/lib/x86_64-linux-gnu/libXfixes.so.3.1.0
7ff9ff7b1000-7ff9ff7b2000 rw-p 00007000 00:1c 1585813 /usr/lib/x86_64-linux-gnu/libXfixes.so.3.1.0
7ff9ff7b2000-7ff9ff7b4000 r--p 00000000 00:1c 1727273 /usr/lib/x86_64-linux-gnu/libXcursor.so.1.0.2
7ff9ff7b4000-7ff9ff7ba000 r-xp 00002000 00:1c 1727273 /usr/lib/x86_64-linux-gnu/libXcursor.so.1.0.2
7ff9ff7ba000-7ff9ff7bc000 r--p 00008000 00:1c 1727273 /usr/lib/x86_64-linux-gnu/libXcursor.so.1.0.2
7ff9ff7bc000-7ff9ff7bd000 r--p 00009000 00:1c 1727273 /usr/lib/x86_64-linux-gnu/libXcursor.so.1.0.2
7ff9ff7bd000-7ff9ff7be000 rw-p 0000a000 00:1c 1727273 /usr/lib/x86_64-linux-gnu/libXcursor.so.1.0.2
7ff9ff7be000-7ff9ff7bf000 ---p 00000000 00:00 0
7ff9ff7bf000-7ff9fffbf000 rw-p 00000000 00:00 0
7ff9fffbf000-7ff9fffc2000 r--p 00000000 00:1c 1761405 /usr/lib/x86_64-linux-gnu/libxcb-util.so.1.0.0
7ff9fffc2000-7ff9fffc4000 r-xp 00003000 00:1c 1761405 /usr/lib/x86_64-linux-gnu/libxcb-util.so.1.0.0
7ff9fffc4000-7ff9fffc5000 r--p 00005000 00:1c 1761405 /usr/lib/x86_64-linux-gnu/libxcb-util.so.1.0.0
7ff9fffc5000-7ff9fffc6000 ---p 00006000 00:1c 1761405 /usr/lib/x86_64-linux-gnu/libxcb-util.so.1.0.0
7ff9fffc6000-7ff9fffc7000 r--p 00006000 00:1c 1761405 /usr/lib/x86_64-linux-gnu/libxcb-util.so.1.0.0
7ff9fffc7000-7ff9fffc8000 rw-p 00007000 00:1c 1761405 /usr/lib/x86_64-linux-gnu/libxcb-util.so.1.0.0
7ff9fffc8000-7ff9fffca000 r--p 00000000 00:1c 1689131 /usr/lib/x86_64-linux-gnu/libuuid.so.1.3.0
7ff9fffca000-7ff9fffce000 r-xp 00002000 00:1c 1689131 /usr/lib/x86_64-linux-gnu/libuuid.so.1.3.0
7ff9fffce000-7ff9fffcf000 r--p 00006000 00:1c 1689131 /usr/lib/x86_64-linux-gnu/libuuid.so.1.3.0
7ff9fffcf000-7ff9fffd0000 r--p 00006000 00:1c 1689131 /usr/lib/x86_64-linux-gnu/libuuid.so.1.3.0
7ff9fffd0000-7ff9fffd1000 rw-p 00007000 00:1c 1689131 /usr/lib/x86_64-linux-gnu/libuuid.so.1.3.0
7ff9fffd1000-7ff9fffd5000 r--p 00000000 00:1c 1600681 /usr/lib/x86_64-linux-gnu/libxkbcommon.so.0.0.0
7ff9fffd5000-7ff9ffff4000 r-xp 00004000 00:1c 1600681 /usr/lib/x86_64-linux-gnu/libxkbcommon.so.0.0.0
7ff9ffff4000-7ffa00015000 r--p 00023000 00:1c 1600681 /usr/lib/x86_64-linux-gnu/libxkbcommon.so.0.0.0
7ffa00015000-7ffa00017000 r--p 00043000 00:1c 1600681 /usr/lib/x86_64-linux-gnu/libxkbcommon.so.0.0.0
7ffa00017000-7ffa00018000 rw-p 00045000 00:1c 1600681 /usr/lib/x86_64-linux-gnu/libxkbcommon.so.0.0.0
7ffa00018000-7ffa0001b000 r--p 00000000 00:1c 1600691 /usr/lib/x86_64-linux-gnu/libxkbcommon-x11.so.0.0.0
7ffa0001b000-7ffa0001f000 r-xp 00003000 00:1c 1600691 /usr/lib/x86_64-linux-gnu/libxkbcommon-x11.so.0.0.0
7ffa0001f000-7ffa00020000 r--p 00007000 00:1c 1600691 /usr/lib/x86_64-linux-gnu/libxkbcommon-x11.so.0.0.0
7ffa00020000-7ffa00021000 ---p 00008000 00:1c 1600691 /usr/lib/x86_64-linux-gnu/libxkbcommon-x11.so.0.0.0
7ffa00021000-7ffa00022000 r--p 00008000 00:1c 1600691 /usr/lib/x86_64-linux-gnu/libxkbcommon-x11.so.0.0.0
7ffa00022000-7ffa00023000 rw-p 00009000 00:1c 1600691 /usr/lib/x86_64-linux-gnu/libxkbcommon-x11.so.0.0.0
7ffa00023000-7ffa00027000 r--p 00000000 00:1c 1704267 /usr/lib/x86_64-linux-gnu/libICE.so.6.3.0
7ffa00027000-7ffa00036000 r-xp 00004000 00:1c 1704267 /usr/lib/x86_64-linux-gnu/libICE.so.6.3.0
7ffa00036000-7ffa0003b000 r--p 00013000 00:1c 1704267 /usr/lib/x86_64-linux-gnu/libICE.so.6.3.0
7ffa0003b000-7ffa0003c000 r--p 00017000 00:1c 1704267 /usr/lib/x86_64-linux-gnu/libICE.so.6.3.0
7ffa0003c000-7ffa0003d000 rw-p 00018000 00:1c 1704267 /usr/lib/x86_64-linux-gnu/libICE.so.6.3.0
7ffa0003d000-7ffa00040000 rw-p 00000000 00:00 0
7ffa00040000-7ffa00042000 r--p 00000000 00:1c 1704647 /usr/lib/x86_64-linux-gnu/libSM.so.6.0.1
7ffa00042000-7ffa00047000 r-xp 00002000 00:1c 1704647 /usr/lib/x86_64-linux-gnu/libSM.so.6.0.1
7ffa00047000-7ffa00049000 r--p 00007000 00:1c 1704647 /usr/lib/x86_64-linux-gnu/libSM.so.6.0.1
7ffa00049000-7ffa0004a000 r--p 00008000 00:1c 1704647 /usr/lib/x86_64-linux-gnu/libSM.so.6.0.1
7ffa0004a000-7ffa0004b000 rw-p 00009000 00:1c 1704647 /usr/lib/x86_64-linux-gnu/libSM.so.6.0.1
7ffa0004b000-7ffa0004d000 r--p 00000000 00:1c 1715013 /usr/lib/x86_64-linux-gnu/libXrender.so.1.3.0
7ffa0004d000-7ffa00054000 r-xp 00002000 00:1c 1715013 /usr/lib/x86_64-linux-gnu/libXrender.so.1.3.0
7ffa00054000-7ffa00056000 r--p 00009000 00:1c 1715013 /usr/lib/x86_64-linux-gnu/libXrender.so.1.3.0
7ffa00056000-7ffa00057000 r--p 0000a000 00:1c 1715013 /usr/lib/x86_64-linux-gnu/libXrender.so.1.3.0
7ffa00057000-7ffa00058000 rw-p 0000b000 00:1c 1715013 /usr/lib/x86_64-linux-gnu/libXrender.so.1.3.0
7ffa00058000-7ffa00066000 r--p 00000000 00:1c 1808417 /usr/lib/x86_64-linux-gnu/libxcb-xinput.so.0.1.0
7ffa00066000-7ffa00073000 r-xp 0000e000 00:1c 1808417 /usr/lib/x86_64-linux-gnu/libxcb-xinput.so.0.1.0
7ffa00073000-7ffa00079000 r--p 0001b000 00:1c 1808417 /usr/lib/x86_64-linux-gnu/libxcb-xinput.so.0.1.0
7ffa00079000-7ffa0007b000 r--p 00020000 00:1c 1808417 /usr/lib/x86_64-linux-gnu/libxcb-xinput.so.0.1.0
7ffa0007b000-7ffa0007c000 rw-p 00022000 00:1c 1808417 /usr/lib/x86_64-linux-gnu/libxcb-xinput.so.0.1.0
7ffa0007c000-7ffa00086000 r--p 00000000 00:1c 1721640 /usr/lib/x86_64-linux-gnu/libxcb-xkb.so.1.0.0
7ffa00086000-7ffa00093000 r-xp 0000a000 00:1c 1721640 /usr/lib/x86_64-linux-gnu/libxcb-xkb.so.1.0.0
7ffa00093000-7ffa00098000 r--p 00017000 00:1c 1721640 /usr/lib/x86_64-linux-gnu/libxcb-xkb.so.1.0.0
7ffa00098000-7ffa00099000 r--p 0001b000 00:1c 1721640 /usr/lib/x86_64-linux-gnu/libxcb-xkb.so.1.0.0
7ffa00099000-7ffa0009a000 rw-p 0001c000 00:1c 1721640 /usr/lib/x86_64-linux-gnu/libxcb-xkb.so.1.0.0
7ffa0009a000-7ffa0009b000 r--p 00000000 00:1c 1808331 /usr/lib/x86_64-linux-gnu/libxcb-xinerama.so.0.0.0
7ffa0009b000-7ffa0009c000 r-xp 00001000 00:1c 1808331 /usr/lib/x86_64-linux-gnu/libxcb-xinerama.so.0.0.0
7ffa0009c000-7ffa0009d000 r--p 00002000 00:1c 1808331 /usr/lib/x86_64-linux-gnu/libxcb-xinerama.so.0.0.0
7ffa0009d000-7ffa0009e000 r--p 00002000 00:1c 1808331 /usr/lib/x86_64-linux-gnu/libxcb-xinerama.so.0.0.0
7ffa0009e000-7ffa0009f000 rw-p 00003000 00:1c 1808331 /usr/lib/x86_64-linux-gnu/libxcb-xinerama.so.0.0.0
7ffa0009f000-7ffa000a2000 r--p 00000000 00:1c 1724662 /usr/lib/x86_64-linux-gnu/libxcb-xfixes.so.0.0.0
7ffa000a2000-7ffa000a5000 r-xp 00003000 00:1c 1724662 /usr/lib/x86_64-linux-gnu/libxcb-xfixes.so.0.0.0
7ffa000a5000-7ffa000a6000 r--p 00006000 00:1c 1724662 /usr/lib/x86_64-linux-gnu/libxcb-xfixes.so.0.0.0
7ffa000a6000-7ffa000a7000 ---p 00007000 00:1c 1724662 /usr/lib/x86_64-linux-gnu/libxcb-xfixes.so.0.0.0
7ffa000a7000-7ffa000a8000 r--p 00007000 00:1c 1724662 /usr/lib/x86_64-linux-gnu/libxcb-xfixes.so.0.0.0
7ffa000a8000-7ffa000a9000 rw-p 00008000 00:1c 1724662 /usr/lib/x86_64-linux-gnu/libxcb-xfixes.so.0.0.0
7ffa000a9000-7ffa000ac000 r--p 00000000 00:1c 1724615 /usr/lib/x86_64-linux-gnu/libxcb-sync.so.1.0.0
7ffa000ac000-7ffa000af000 r-xp 00003000 00:1c 1724615 /usr/lib/x86_64-linux-gnu/libxcb-sync.so.1.0.0
7ffa000af000-7ffa000b0000 r--p 00006000 00:1c 1724615 /usr/lib/x86_64-linux-gnu/libxcb-sync.so.1.0.0
7ffa000b0000-7ffa000b1000 ---p 00007000 00:1c 1724615 /usr/lib/x86_64-linux-gnu/libxcb-sync.so.1.0.0
7ffa000b1000-7ffa000b2000 r--p 00007000 00:1c 1724615 /usr/lib/x86_64-linux-gnu/libxcb-sync.so.1.0.0
7ffa000b2000-7ffa000b3000 rw-p 00008000 00:1c 1724615 /usr/lib/x86_64-linux-gnu/libxcb-sync.so.1.0.0
7ffa000b3000-7ffa000b4000 r--p 00000000 00:1c 1725163 /usr/lib/x86_64-linux-gnu/libxcb-shape.so.0.0.0
7ffa000b4000-7ffa000b5000 r-xp 00001000 00:1c 1725163 /usr/lib/x86_64-linux-gnu/libxcb-shape.so.0.0.0
7ffa000b5000-7ffa000b6000 r--p 00002000 00:1c 1725163 /usr/lib/x86_64-linux-gnu/libxcb-shape.so.0.0.0
7ffa000b6000-7ffa000b7000 r--p 00002000 00:1c 1725163 /usr/lib/x86_64-linux-gnu/libxcb-shape.so.0.0.0
7ffa000b7000-7ffa000b8000 rw-p 00003000 00:1c 1725163 /usr/lib/x86_64-linux-gnu/libxcb-shape.so.0.0.0
7ffa000b8000-7ffa000bd000 r--p 00000000 00:1c 1715124 /usr/lib/x86_64-linux-gnu/libxcb-render.so.0.0.0
7ffa000bd000-7ffa000c2000 r-xp 00005000 00:1c 1715124 /usr/lib/x86_64-linux-gnu/libxcb-render.so.0.0.0
7ffa000c2000-7ffa000c4000 r--p 0000a000 00:1c 1715124 /usr/lib/x86_64-linux-gnu/libxcb-render.so.0.0.0
7ffa000c4000-7ffa000c5000 ---p 0000c000 00:1c 1715124 /usr/lib/x86_64-linux-gnu/libxcb-render.so.0.0.0
7ffa000c5000-7ffa000c6000 r--p 0000c000 00:1c 1715124 /usr/lib/x86_64-linux-gnu/libxcb-render.so.0.0.0
7ffa000c6000-7ffa000c7000 rw-p 0000d000 00:1c 1715124 /usr/lib/x86_64-linux-gnu/libxcb-render.so.0.0.0
7ffa000c7000-7ffa000c9000 r--p 00000000 00:1c 1800444 /usr/lib/x86_64-linux-gnu/libxcb-render-util.so.0.0.0
7ffa000c9000-7ffa000cb000 r-xp 00002000 00:1c 1800444 /usr/lib/x86_64-linux-gnu/libxcb-render-util.so.0.0.0
7ffa000cb000-7ffa000cc000 r--p 00004000 00:1c 1800444 /usr/lib/x86_64-linux-gnu/libxcb-render-util.so.0.0.0
7ffa000cc000-7ffa000cd000 r--p 00004000 00:1c 1800444 /usr/lib/x86_64-linux-gnu/libxcb-render-util.so.0.0.0
7ffa000cd000-7ffa000ce000 rw-p 00005000 00:1c 1800444 /usr/lib/x86_64-linux-gnu/libxcb-render-util.so.0.0.0
7ffa000ce000-7ffa000d5000 r--p 00000000 00:1c 1805273 /usr/lib/x86_64-linux-gnu/libxcb-randr.so.0.1.0
7ffa000d5000-7ffa000db000 r-xp 00007000 00:1c 1805273 /usr/lib/x86_64-linux-gnu/libxcb-randr.so.0.1.0
7ffa000db000-7ffa000de000 r--p 0000d000 00:1c 1805273 /usr/lib/x86_64-linux-gnu/libxcb-randr.so.0.1.0
7ffa000de000-7ffa000df000 ---p 00010000 00:1c 1805273 /usr/lib/x86_64-linux-gnu/libxcb-randr.so.0.1.0
7ffa000df000-7ffa000e0000 r--p 00010000 00:1c 1805273 /usr/lib/x86_64-linux-gnu/libxcb-randr.so.0.1.0
7ffa000e0000-7ffa000e1000 rw-p 00011000 00:1c 1805273 /usr/lib/x86_64-linux-gnu/libxcb-randr.so.0.1.0
7ffa000e1000-7ffa000e2000 r--p 00000000 00:1c 1808318 /usr/lib/x86_64-linux-gnu/libxcb-keysyms.so.1.0.0
7ffa000e2000-7ffa000e3000 r-xp 00001000 00:1c 1808318 /usr/lib/x86_64-linux-gnu/libxcb-keysyms.so.1.0.0
7ffa000e3000-7ffa000e4000 r--p 00002000 00:1c 1808318 /usr/lib/x86_64-linux-gnu/libxcb-keysyms.so.1.0.0
7ffa000e4000-7ffa000e5000 r--p 00002000 00:1c 1808318 /usr/lib/x86_64-linux-gnu/libxcb-keysyms.so.1.0.0
7ffa000e5000-7ffa000e6000 rw-p 00003000 00:1c 1808318 /usr/lib/x86_64-linux-gnu/libxcb-keysyms.so.1.0.0
7ffa000e6000-7ffa000e7000 r--p 00000000 00:1c 1715246 /usr/lib/x86_64-linux-gnu/libxcb-shm.so.0.0.0
7ffa000e7000-7ffa000e8000 r-xp 00001000 00:1c 1715246 /usr/lib/x86_64-linux-gnu/libxcb-shm.so.0.0.0
7ffa000e8000-7ffa000e9000 r--p 00002000 00:1c 1715246 /usr/lib/x86_64-linux-gnu/libxcb-shm.so.0.0.0
7ffa000e9000-7ffa000ea000 r--p 00002000 00:1c 1715246 /usr/lib/x86_64-linux-gnu/libxcb-shm.so.0.0.0
7ffa000ea000-7ffa000eb000 rw-p 00003000 00:1c 1715246 /usr/lib/x86_64-linux-gnu/libxcb-shm.so.0.0.0
7ffa000eb000-7ffa000ec000 r--p 00000000 00:1c 1808388 /usr/lib/x86_64-linux-gnu/libxcb-image.so.0.0.0
7ffa000ec000-7ffa000ee000 r-xp 00001000 00:1c 1808388 /usr/lib/x86_64-linux-gnu/libxcb-image.so.0.0.0
7ffa000ee000-7ffa000ef000 r--p 00003000 00:1c 1808388 /usr/lib/x86_64-linux-gnu/libxcb-image.so.0.0.0
7ffa000ef000-7ffa000f0000 r--p 00003000 00:1c 1808388 /usr/lib/x86_64-linux-gnu/libxcb-image.so.0.0.0
7ffa000f0000-7ffa000f1000 rw-p 00004000 00:1c 1808388 /usr/lib/x86_64-linux-gnu/libxcb-image.so.0.0.0
7ffa000f1000-7ffa000f3000 r--p 00000000 00:1c 1808114 /usr/lib/x86_64-linux-gnu/libxcb-icccm.so.4.0.0
7ffa000f3000-7ffa000f5000 r-xp 00002000 00:1c 1808114 /usr/lib/x86_64-linux-gnu/libxcb-icccm.so.4.0.0
7ffa000f5000-7ffa000f6000 r--p 00004000 00:1c 1808114 /usr/lib/x86_64-linux-gnu/libxcb-icccm.so.4.0.0
7ffa000f6000-7ffa000f7000 r--p 00004000 00:1c 1808114 /usr/lib/x86_64-linux-gnu/libxcb-icccm.so.4.0.0
7ffa000f7000-7ffa000f8000 rw-p 00005000 00:1c 1808114 /usr/lib/x86_64-linux-gnu/libxcb-icccm.so.4.0.0
7ffa000f8000-7ffa000f9000 r--p 00000000 00:1c 1599634 /usr/lib/x86_64-linux-gnu/libX11-xcb.so.1.0.0
7ffa000f9000-7ffa000fa000 r-xp 00001000 00:1c 1599634 /usr/lib/x86_64-linux-gnu/libX11-xcb.so.1.0.0
7ffa000fa000-7ffa000fb000 r--p 00002000 00:1c 1599634 /usr/lib/x86_64-linux-gnu/libX11-xcb.so.1.0.0
7ffa000fb000-7ffa000fc000 r--p 00002000 00:1c 1599634 /usr/lib/x86_64-linux-gnu/libX11-xcb.so.1.0.0
7ffa000fc000-7ffa000fd000 rw-p 00003000 00:1c 1599634 /usr/lib/x86_64-linux-gnu/libX11-xcb.so.1.0.0
7ffa000fd000-7ffa00112000 r--p 00000000 00:1c 2171047 /usr/lib/x86_64-linux-gnu/libQt5DBus.so.5.15.3
7ffa00112000-7ffa00175000 r-xp 00015000 00:1c 2171047 /usr/lib/x86_64-linux-gnu/libQt5DBus.so.5.15.3
7ffa00175000-7ffa0018d000 r--p 00078000 00:1c 2171047 /usr/lib/x86_64-linux-gnu/libQt5DBus.so.5.15.3
7ffa0018d000-7ffa0018f000 r--p 0008f000 00:1c 2171047 /usr/lib/x86_64-linux-gnu/libQt5DBus.so.5.15.3
7ffa0018f000-7ffa00190000 rw-p 00091000 00:1c 2171047 /usr/lib/x86_64-linux-gnu/libQt5DBus.so.5.15.3
7ffa00190000-7ffa00191000 rw-p 00000000 00:00 0
7ffa00191000-7ffa00198000 r--p 00000000 00:1c 1591621 /usr/lib/x86_64-linux-gnu/libfontconfig.so.1.12.0
7ffa00198000-7ffa001c1000 r-xp 00007000 00:1c 1591621 /usr/lib/x86_64-linux-gnu/libfontconfig.so.1.12.0
7ffa001c1000-7ffa001d7000 r--p 00030000 00:1c 1591621 /usr/lib/x86_64-linux-gnu/libfontconfig.so.1.12.0
7ffa001d7000-7ffa001d8000 ---p 00046000 00:1c 1591621 /usr/lib/x86_64-linux-gnu/libfontconfig.so.1.12.0
7ffa001d8000-7ffa001da000 r--p 00046000 00:1c 1591621 /usr/lib/x86_64-linux-gnu/libfontconfig.so.1.12.0
7ffa001da000-7ffa001db000 rw-p 00048000 00:1c 1591621 /usr/lib/x86_64-linux-gnu/libfontconfig.so.1.12.0
7ffa001db000-7ffa00214000 r--p 00000000 00:1c 2171084 /usr/lib/x86_64-linux-gnu/libQt5XcbQpa.so.5.15.3
7ffa00214000-7ffa002e6000 r-xp 00039000 00:1c 2171084 /usr/lib/x86_64-linux-gnu/libQt5XcbQpa.so.5.15.3
7ffa002e6000-7ffa0034a000 r--p 0010b000 00:1c 2171084 /usr/lib/x86_64-linux-gnu/libQt5XcbQpa.so.5.15.3
7ffa0034a000-7ffa0034b000 ---p 0016f000 00:1c 2171084 /usr/lib/x86_64-linux-gnu/libQt5XcbQpa.so.5.15.3
7ffa0034b000-7ffa00350000 r--p 0016f000 00:1c 2171084 /usr/lib/x86_64-linux-gnu/libQt5XcbQpa.so.5.15.3
7ffa00350000-7ffa00354000 rw-p 00174000 00:1c 2171084 /usr/lib/x86_64-linux-gnu/libQt5XcbQpa.so.5.15.3
7ffa00354000-7ffa00556000 rw-p 00000000 00:00 0
7ffa00556000-7ffa0055a000 r--p 00000000 00:1c 1280726 /usr/lib/x86_64-linux-gnu/libgpg-error.so.0.32.1
7ffa0055a000-7ffa00570000 r-xp 00004000 00:1c 1280726 /usr/lib/x86_64-linux-gnu/libgpg-error.so.0.32.1
7ffa00570000-7ffa0057a000 r--p 0001a000 00:1c 1280726 /usr/lib/x86_64-linux-gnu/libgpg-error.so.0.32.1
7ffa0057a000-7ffa0057b000 r--p 00023000 00:1c 1280726 /usr/lib/x86_64-linux-gnu/libgpg-error.so.0.32.1
7ffa0057b000-7ffa0057c000 rw-p 00024000 00:1c 1280726 /usr/lib/x86_64-linux-gnu/libgpg-error.so.0.32.1
7ffa0057c000-7ffa0058b000 r--p 00000000 00:1c 306730 /usr/lib/x86_64-linux-gnu/libgcrypt.so.20.3.4
7ffa0058b000-7ffa00671000 r-xp 0000f000 00:1c 306730 /usr/lib/x86_64-linux-gnu/libgcrypt.so.20.3.4
7ffa00671000-7ffa006af000 r--p 000f5000 00:1c 306730 /usr/lib/x86_64-linux-gnu/libgcrypt.so.20.3.4
7ffa006af000-7ffa006b0000 ---p 00133000 00:1c 306730 /usr/lib/x86_64-linux-gnu/libgcrypt.so.20.3.4
7ffa006b0000-7ffa006b3000 r--p 00133000 00:1c 306730 /usr/lib/x86_64-linux-gnu/libgcrypt.so.20.3.4
7ffa006b3000-7ffa006b9000 rw-p 00136000 00:1c 306730 /usr/lib/x86_64-linux-gnu/libgcrypt.so.20.3.4
7ffa006b9000-7ffa006ba000 rw-p 00000000 00:00 0
7ffa006ba000-7ffa006bc000 r--p 00000000 00:1c 1737717 /usr/lib/x86_64-linux-gnu/liblz4.so.1.9.3
7ffa006bc000-7ffa006d5000 r-xp 00002000 00:1c 1737717 /usr/lib/x86_64-linux-gnu/liblz4.so.1.9.3
7ffa006d5000-7ffa006d7000 r--p 0001b000 00:1c 1737717 /usr/lib/x86_64-linux-gnu/liblz4.so.1.9.3
7ffa006d7000-7ffa006d8000 ---p 0001d000 00:1c 1737717 /usr/lib/x86_64-linux-gnu/liblz4.so.1.9.3
7ffa006d8000-7ffa006d9000 r--p 0001d000 00:1c 1737717 /usr/lib/x86_64-linux-gnu/liblz4.so.1.9.3
7ffa006d9000-7ffa006da000 rw-p 0001e000 00:1c 1737717 /usr/lib/x86_64-linux-gnu/liblz4.so.1.9.3
7ffa006da000-7ffa006ed000 r--p 00000000 00:1c 336869 /usr/lib/x86_64-linux-gnu/libsystemd.so.0.32.0
7ffa006ed000-7ffa0076c000 r-xp 00013000 00:1c 336869 /usr/lib/x86_64-linux-gnu/libsystemd.so.0.32.0
7ffa0076c000-7ffa00797000 r--p 00092000 00:1c 336869 /usr/lib/x86_64-linux-gnu/libsystemd.so.0.32.0
7ffa00797000-7ffa00798000 ---p 000bd000 00:1c 336869 /usr/lib/x86_64-linux-gnu/libsystemd.so.0.32.0
7ffa00798000-7ffa0079f000 r--p 000bd000 00:1c 336869 /usr/lib/x86_64-linux-gnu/libsystemd.so.0.32.0
7ffa0079f000-7ffa007a0000 rw-p 000c4000 00:1c 336869 /usr/lib/x86_64-linux-gnu/libsystemd.so.0.32.0
7ffa007a0000-7ffa007a1000 rw-p 00000000 00:00 0
7ffa007a1000-7ffa007ac000 r--p 00000000 00:1c 600370 /usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13
7ffa007ac000-7ffa007da000 r-xp 0000b000 00:1c 600370 /usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13
7ffa007da000-7ffa007ec000 r--p 00039000 00:1c 600370 /usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13
7ffa007ec000-7ffa007ed000 ---p 0004b000 00:1c 600370 /usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13
7ffa007ed000-7ffa007ee000 r--p 0004b000 00:1c 600370 /usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13
7ffa007ee000-7ffa007ef000 rw-p 0004c000 00:1c 600370 /usr/lib/x86_64-linux-gnu/libdbus-1.so.3.19.13
7ffa007ef000-7ffa008ef000 rw-p 00000000 00:00 0
7ffa008f4000-7ffa008f5000 r--p 00000000 00:1c 1725138 /usr/lib/x86_64-linux-gnu/libxcb-present.so.0.0.0
7ffa008f5000-7ffa008f6000 r-xp 00001000 00:1c 1725138 /usr/lib/x86_64-linux-gnu/libxcb-present.so.0.0.0
7ffa008f6000-7ffa008f7000 r--p 00002000 00:1c 1725138 /usr/lib/x86_64-linux-gnu/libxcb-present.so.0.0.0
7ffa008f7000-7ffa008f8000 r--p 00002000 00:1c 1725138 /usr/lib/x86_64-linux-gnu/libxcb-present.so.0.0.0
7ffa008f8000-7ffa008f9000 rw-p 00003000 00:1c 1725138 /usr/lib/x86_64-linux-gnu/libxcb-present.so.0.0.0
7ffa008f9000-7ffa008fb000 r--p 00000000 00:1c 1724510 /usr/lib/x86_64-linux-gnu/libxcb-dri3.so.0.0.0
7ffa008fb000-7ffa008fd000 r-xp 00002000 00:1c 1724510 /usr/lib/x86_64-linux-gnu/libxcb-dri3.so.0.0.0
7ffa008fd000-7ffa008fe000 r--p 00004000 00:1c 1724510 /usr/lib/x86_64-linux-gnu/libxcb-dri3.so.0.0.0
7ffa008fe000-7ffa008ff000 r--p 00004000 00:1c 1724510 /usr/lib/x86_64-linux-gnu/libxcb-dri3.so.0.0.0
7ffa008ff000-7ffa00900000 rw-p 00005000 00:1c 1724510 /usr/lib/x86_64-linux-gnu/libxcb-dri3.so.0.0.0
7ffa00900000-7ffa00901000 r--p 00000000 00:1c 1727636 /usr/lib/x86_64-linux-gnu/libXxf86vm.so.1.0.0
7ffa00901000-7ffa00904000 r-xp 00001000 00:1c 1727636 /usr/lib/x86_64-linux-gnu/libXxf86vm.so.1.0.0
7ffa00904000-7ffa00905000 r--p 00004000 00:1c 1727636 /usr/lib/x86_64-linux-gnu/libXxf86vm.so.1.0.0
7ffa00905000-7ffa00906000 r--p 00004000 00:1c 1727636 /usr/lib/x86_64-linux-gnu/libXxf86vm.so.1.0.0
7ffa00906000-7ffa00907000 rw-p 00005000 00:1c 1727636 /usr/lib/x86_64-linux-gnu/libXxf86vm.so.1.0.0
7ffa00907000-7ffa0090c000 r--p 00000000 00:1c 635173 /usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0
7ffa0090c000-7ffa00917000 r-xp 00005000 00:1c 635173 /usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0
7ffa00917000-7ffa0091b000 r--p 00010000 00:1c 635173 /usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0
7ffa0091b000-7ffa0091c000 r--p 00013000 00:1c 635173 /usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0
7ffa0091c000-7ffa0091d000 rw-p 00014000 00:1c 635173 /usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0
7ffa0091d000-7ffa00928000 r--p 00000000 00:1c 1805882 /usr/lib/x86_64-linux-gnu/libxcb-glx.so.0.0.0
7ffa00928000-7ffa00931000 r-xp 0000b000 00:1c 1805882 /usr/lib/x86_64-linux-gnu/libxcb-glx.so.0.0.0
7ffa00931000-7ffa00936000 r--p 00014000 00:1c 1805882 /usr/lib/x86_64-linux-gnu/libxcb-glx.so.0.0.0
7ffa00936000-7ffa00937000 ---p 00019000 00:1c 1805882 /usr/lib/x86_64-linux-gnu/libxcb-glx.so.0.0.0
7ffa00937000-7ffa00939000 r--p 00019000 00:1c 1805882 /usr/lib/x86_64-linux-gnu/libxcb-glx.so.0.0.0
7ffa00939000-7ffa0093a000 rw-p 0001b000 00:1c 1805882 /usr/lib/x86_64-linux-gnu/libxcb-glx.so.0.0.0
7ffa0093e000-7ffa00941000 r--p 00000000 00:1c 1614315 /usr/lib/x86_64-linux-gnu/qt5/plugins/iconengines/libqsvgicon.so
7ffa00941000-7ffa00946000 r-xp 00003000 00:1c 1614315 /usr/lib/x86_64-linux-gnu/qt5/plugins/iconengines/libqsvgicon.so
7ffa00946000-7ffa00947000 r--p 00008000 00:1c 1614315 /usr/lib/x86_64-linux-gnu/qt5/plugins/iconengines/libqsvgicon.so
7ffa00947000-7ffa00948000 r--p 00008000 00:1c 1614315 /usr/lib/x86_64-linux-gnu/qt5/plugins/iconengines/libqsvgicon.so
7ffa00948000-7ffa00949000 rw-p 00009000 00:1c 1614315 /usr/lib/x86_64-linux-gnu/qt5/plugins/iconengines/libqsvgicon.so
7ffa00949000-7ffa00959000 rwxp 00000000 00:00 0
7ffa00959000-7ffa0095a000 rw-s 113bf2000 00:0e 2076 anon_inode:i915.gem
7ffa0095a000-7ffa0095b000 r--p 00000000 00:1c 1280724 /usr/lib/x86_64-linux-gnu/libnss_mdns4_minimal.so.2
7ffa0095b000-7ffa0095d000 r-xp 00001000 00:1c 1280724 /usr/lib/x86_64-linux-gnu/libnss_mdns4_minimal.so.2
7ffa0095d000-7ffa0095e000 r--p 00003000 00:1c 1280724 /usr/lib/x86_64-linux-gnu/libnss_mdns4_minimal.so.2
7ffa0095e000-7ffa0095f000 r--p 00003000 00:1c 1280724 /usr/lib/x86_64-linux-gnu/libnss_mdns4_minimal.so.2
7ffa0095f000-7ffa00960000 rw-p 00004000 00:1c 1280724 /usr/lib/x86_64-linux-gnu/libnss_mdns4_minimal.so.2
7ffa00960000-7ffa00961000 r--p 00000000 00:1c 1725182 /usr/lib/x86_64-linux-gnu/libxshmfence.so.1.0.0
7ffa00961000-7ffa00962000 r-xp 00001000 00:1c 1725182 /usr/lib/x86_64-linux-gnu/libxshmfence.so.1.0.0
7ffa00962000-7ffa00963000 r--p 00002000 00:1c 1725182 /usr/lib/x86_64-linux-gnu/libxshmfence.so.1.0.0
7ffa00963000-7ffa00964000 r--p 00002000 00:1c 1725182 /usr/lib/x86_64-linux-gnu/libxshmfence.so.1.0.0
7ffa00964000-7ffa00965000 rw-p 00003000 00:1c 1725182 /usr/lib/x86_64-linux-gnu/libxshmfence.so.1.0.0
7ffa00965000-7ffa00967000 r--p 00000000 00:1c 1725094 /usr/lib/x86_64-linux-gnu/libxcb-dri2.so.0.0.0
7ffa00967000-7ffa00969000 r-xp 00002000 00:1c 1725094 /usr/lib/x86_64-linux-gnu/libxcb-dri2.so.0.0.0
7ffa00969000-7ffa0096a000 r--p 00004000 00:1c 1725094 /usr/lib/x86_64-linux-gnu/libxcb-dri2.so.0.0.0
7ffa0096a000-7ffa0096b000 r--p 00004000 00:1c 1725094 /usr/lib/x86_64-linux-gnu/libxcb-dri2.so.0.0.0
7ffa0096b000-7ffa0096c000 rw-p 00005000 00:1c 1725094 /usr/lib/x86_64-linux-gnu/libxcb-dri2.so.0.0.0
7ffa0096c000-7ffa00973000 r--p 00000000 00:1c 2171131 /usr/lib/x86_64-linux-gnu/qt5/plugins/xcbglintegrations/libqxcb-glx-integration.so
7ffa00973000-7ffa0097b000 r-xp 00007000 00:1c 2171131 /usr/lib/x86_64-linux-gnu/qt5/plugins/xcbglintegrations/libqxcb-glx-integration.so
7ffa0097b000-7ffa0097d000 r--p 0000f000 00:1c 2171131 /usr/lib/x86_64-linux-gnu/qt5/plugins/xcbglintegrations/libqxcb-glx-integration.so
7ffa0097d000-7ffa0097e000 ---p 00011000 00:1c 2171131 /usr/lib/x86_64-linux-gnu/qt5/plugins/xcbglintegrations/libqxcb-glx-integration.so
7ffa0097e000-7ffa0097f000 r--p 00011000 00:1c 2171131 /usr/lib/x86_64-linux-gnu/qt5/plugins/xcbglintegrations/libqxcb-glx-integration.so
7ffa0097f000-7ffa00980000 rw-p 00012000 00:1c 2171131 /usr/lib/x86_64-linux-gnu/qt5/plugins/xcbglintegrations/libqxcb-glx-integration.so
7ffa00980000-7ffa00a80000 rw-p 00000000 00:00 0
7ffa00a80000-7ffa00b32000 r--p 00000000 00:1c 108699 /usr/lib/x86_64-linux-gnu/libcrypto.so.3
7ffa00b32000-7ffa00d90000 r-xp 000b2000 00:1c 108699 /usr/lib/x86_64-linux-gnu/libcrypto.so.3
7ffa00d90000-7ffa00e62000 r--p 00310000 00:1c 108699 /usr/lib/x86_64-linux-gnu/libcrypto.so.3
7ffa00e62000-7ffa00ebd000 r--p 003e1000 00:1c 108699 /usr/lib/x86_64-linux-gnu/libcrypto.so.3
7ffa00ebd000-7ffa00ec0000 rw-p 0043c000 00:1c 108699 /usr/lib/x86_64-linux-gnu/libcrypto.so.3
7ffa00ec0000-7ffa00ec3000 rw-p 00000000 00:00 0
7ffa00ec3000-7ffa00ec7000 r--p 00000000 00:1c 2171108 /usr/lib/x86_64-linux-gnu/qt5/plugins/imageformats/libqjpeg.so
7ffa00ec7000-7ffa00ecd000 r-xp 00004000 00:1c 2171108 /usr/lib/x86_64-linux-gnu/qt5/plugins/imageformats/libqjpeg.so
7ffa00ecd000-7ffa00ece000 r--p 0000a000 00:1c 2171108 /usr/lib/x86_64-linux-gnu/qt5/plugins/imageformats/libqjpeg.so
7ffa00ece000-7ffa00ecf000 r--p 0000a000 00:1c 2171108 /usr/lib/x86_64-linux-gnu/qt5/plugins/imageformats/libqjpeg.so
7ffa00ecf000-7ffa00ed0000 rw-p 0000b000 00:1c 2171108 /usr/lib/x86_64-linux-gnu/qt5/plugins/imageformats/libqjpeg.so
7ffa00ed0000-7ffa00ed3000 r--p 00000000 00:1c 2171106 /usr/lib/x86_64-linux-gnu/qt5/plugins/imageformats/libqico.so
7ffa00ed3000-7ffa00ed7000 r-xp 00003000 00:1c 2171106 /usr/lib/x86_64-linux-gnu/qt5/plugins/imageformats/libqico.so
7ffa00ed7000-7ffa00ed8000 r--p 00007000 00:1c 2171106 /usr/lib/x86_64-linux-gnu/qt5/plugins/imageformats/libqico.so
7ffa00ed8000-7ffa00ed9000 r--p 00007000 00:1c 2171106 /usr/lib/x86_64-linux-gnu/qt5/plugins/imageformats/libqico.so
7ffa00ed9000-7ffa00eda000 rw-p 00008000 00:1c 2171106 /usr/lib/x86_64-linux-gnu/qt5/plugins/imageformats/libqico.so
7ffa00eda000-7ffa00edc000 r--p 00000000 00:1c 2171104 /usr/lib/x86_64-linux-gnu/qt5/plugins/imageformats/libqgif.so
7ffa00edc000-7ffa00ee0000 r-xp 00002000 00:1c 2171104 /usr/lib/x86_64-linux-gnu/qt5/plugins/imageformats/libqgif.so
7ffa00ee0000-7ffa00ee1000 r--p 00006000 00:1c 2171104 /usr/lib/x86_64-linux-gnu/qt5/plugins/imageformats/libqgif.so
7ffa00ee1000-7ffa00ee2000 r--p 00006000 00:1c 2171104 /usr/lib/x86_64-linux-gnu/qt5/plugins/imageformats/libqgif.so
7ffa00ee2000-7ffa00ee3000 rw-p 00007000 00:1c 2171104 /usr/lib/x86_64-linux-gnu/qt5/plugins/imageformats/libqgif.so
7ffa00ee3000-7ffa010e3000 rw-p 00000000 00:00 0
7ffa010e3000-7ffa01231000 r--p 00000000 00:1c 2171216 /usr/lib/x86_64-linux-gnu/libQt5Widgets.so.5.15.3
7ffa01231000-7ffa0160f000 r-xp 0014e000 00:1c 2171216 /usr/lib/x86_64-linux-gnu/libQt5Widgets.so.5.15.3
7ffa0160f000-7ffa01772000 r--p 0052c000 00:1c 2171216 /usr/lib/x86_64-linux-gnu/libQt5Widgets.so.5.15.3
7ffa01772000-7ffa0179f000 r--p 0068e000 00:1c 2171216 /usr/lib/x86_64-linux-gnu/libQt5Widgets.so.5.15.3
7ffa0179f000-7ffa017a4000 rw-p 006bb000 00:1c 2171216 /usr/lib/x86_64-linux-gnu/libQt5Widgets.so.5.15.3
7ffa017a4000-7ffa018ce000 r--p 00000000 00:1c 1614588 /usr/lib/python3/dist-packages/PyQt5/QtWidgets.abi3.so
7ffa018ce000-7ffa01b81000 r-xp 0012a000 00:1c 1614588 /usr/lib/python3/dist-packages/PyQt5/QtWidgets.abi3.so
7ffa01b81000-7ffa01c9a000 r--p 003dd000 00:1c 1614588 /usr/lib/python3/dist-packages/PyQt5/QtWidgets.abi3.so
7ffa01c9a000-7ffa01cae000 r--p 004f5000 00:1c 1614588 /usr/lib/python3/dist-packages/PyQt5/QtWidgets.abi3.so
7ffa01cae000-7ffa01d06000 rw-p 00509000 00:1c 1614588 /usr/lib/python3/dist-packages/PyQt5/QtWidgets.abi3.so
7ffa01d06000-7ffa01e07000 rw-p 00000000 00:00 0
7ffa01e07000-7ffa01eb0000 r--p 00000000 00:1c 1614695 /usr/lib/python3/dist-packages/PyQt5/QtCore.abi3.so
7ffa01eb0000-7ffa0202b000 r-xp 000a9000 00:1c 1614695 /usr/lib/python3/dist-packages/PyQt5/QtCore.abi3.so
7ffa0202b000-7ffa020c5000 r--p 00224000 00:1c 1614695 /usr/lib/python3/dist-packages/PyQt5/QtCore.abi3.so
7ffa020c5000-7ffa020ca000 r--p 002bd000 00:1c 1614695 /usr/lib/python3/dist-packages/PyQt5/QtCore.abi3.so
7ffa020ca000-7ffa02112000 rw-p 002c2000 00:1c 1614695 /usr/lib/python3/dist-packages/PyQt5/QtCore.abi3.so
7ffa02112000-7ffa02113000 rw-p 00000000 00:00 0
7ffa02113000-7ffa02119000 r--p 00000000 00:1c 1610385 /usr/lib/python3/dist-packages/PyQt5/sip.cpython-310-x86_64-linux-gnu.so
7ffa02119000-7ffa02130000 r-xp 00006000 00:1c 1610385 /usr/lib/python3/dist-packages/PyQt5/sip.cpython-310-x86_64-linux-gnu.so
7ffa02130000-7ffa02137000 r--p 0001d000 00:1c 1610385 /usr/lib/python3/dist-packages/PyQt5/sip.cpython-310-x86_64-linux-gnu.so
7ffa02137000-7ffa02138000 r--p 00023000 00:1c 1610385 /usr/lib/python3/dist-packages/PyQt5/sip.cpython-310-x86_64-linux-gnu.so
7ffa02138000-7ffa0213a000 rw-p 00024000 00:1c 1610385 /usr/lib/python3/dist-packages/PyQt5/sip.cpython-310-x86_64-linux-gnu.so
7ffa0213a000-7ffa0213c000 r--p 00000000 00:1c 1699988 /usr/lib/x86_64-linux-gnu/libmd.so.0.0.5
7ffa0213c000-7ffa02143000 r-xp 00002000 00:1c 1699988 /usr/lib/x86_64-linux-gnu/libmd.so.0.0.5
7ffa02143000-7ffa02145000 r--p 00009000 00:1c 1699988 /usr/lib/x86_64-linux-gnu/libmd.so.0.0.5
7ffa02145000-7ffa02146000 r--p 0000a000 00:1c 1699988 /usr/lib/x86_64-linux-gnu/libmd.so.0.0.5
7ffa02146000-7ffa02147000 rw-p 0000b000 00:1c 1699988 /usr/lib/x86_64-linux-gnu/libmd.so.0.0.5
7ffa02147000-7ffa0214b000 r--p 00000000 00:1c 1699763 /usr/lib/x86_64-linux-gnu/libbsd.so.0.11.5
7ffa0214b000-7ffa02158000 r-xp 00004000 00:1c 1699763 /usr/lib/x86_64-linux-gnu/libbsd.so.0.11.5
7ffa02158000-7ffa0215b000 r--p 00011000 00:1c 1699763 /usr/lib/x86_64-linux-gnu/libbsd.so.0.11.5
7ffa0215b000-7ffa0215c000 ---p 00014000 00:1c 1699763 /usr/lib/x86_64-linux-gnu/libbsd.so.0.11.5
7ffa0215c000-7ffa0215d000 r--p 00014000 00:1c 1699763 /usr/lib/x86_64-linux-gnu/libbsd.so.0.11.5
7ffa0215d000-7ffa0215e000 rw-p 00015000 00:1c 1699763 /usr/lib/x86_64-linux-gnu/libbsd.so.0.11.5
7ffa0215e000-7ffa0215f000 rw-p 00000000 00:00 0
7ffa0215f000-7ffa02161000 r--p 00000000 00:1c 1699666 /usr/lib/x86_64-linux-gnu/libXdmcp.so.6.0.0
7ffa02161000-7ffa02163000 r-xp 00002000 00:1c 1699666 /usr/lib/x86_64-linux-gnu/libXdmcp.so.6.0.0
7ffa02163000-7ffa02165000 r--p 00004000 00:1c 1699666 /usr/lib/x86_64-linux-gnu/libXdmcp.so.6.0.0
7ffa02165000-7ffa02166000 r--p 00005000 00:1c 1699666 /usr/lib/x86_64-linux-gnu/libXdmcp.so.6.0.0
7ffa02166000-7ffa02167000 rw-p 00006000 00:1c 1699666 /usr/lib/x86_64-linux-gnu/libXdmcp.so.6.0.0
7ffa02167000-7ffa02168000 r--p 00000000 00:1c 1699629 /usr/lib/x86_64-linux-gnu/libXau.so.6.0.0
7ffa02168000-7ffa0216a000 r-xp 00001000 00:1c 1699629 /usr/lib/x86_64-linux-gnu/libXau.so.6.0.0
7ffa0216a000-7ffa0216b000 r--p 00003000 00:1c 1699629 /usr/lib/x86_64-linux-gnu/libXau.so.6.0.0
7ffa0216b000-7ffa0216c000 r--p 00003000 00:1c 1699629 /usr/lib/x86_64-linux-gnu/libXau.so.6.0.0
7ffa0216c000-7ffa0216d000 rw-p 00004000 00:1c 1699629 /usr/lib/x86_64-linux-gnu/libXau.so.6.0.0
7ffa0216d000-7ffa0216e000 r--p 00000000 00:1c 1714510 /usr/lib/x86_64-linux-gnu/libbrotlicommon.so.1.0.9
7ffa0216e000-7ffa0216f000 r-xp 00001000 00:1c 1714510 /usr/lib/x86_64-linux-gnu/libbrotlicommon.so.1.0.9
7ffa0216f000-7ffa0218e000 r--p 00002000 00:1c 1714510 /usr/lib/x86_64-linux-gnu/libbrotlicommon.so.1.0.9
7ffa0218e000-7ffa0218f000 r--p 00020000 00:1c 1714510 /usr/lib/x86_64-linux-gnu/libbrotlicommon.so.1.0.9
7ffa0218f000-7ffa02190000 rw-p 00021000 00:1c 1714510 /usr/lib/x86_64-linux-gnu/libbrotlicommon.so.1.0.9
7ffa02190000-7ffa0219b000 r--p 00000000 00:1c 1700020 /usr/lib/x86_64-linux-gnu/libxcb.so.1.1.0
7ffa0219b000-7ffa021af000 r-xp 0000b000 00:1c 1700020 /usr/lib/x86_64-linux-gnu/libxcb.so.1.1.0
7ffa021af000-7ffa021b8000 r--p 0001f000 00:1c 1700020 /usr/lib/x86_64-linux-gnu/libxcb.so.1.1.0
7ffa021b8000-7ffa021b9000 r--p 00027000 00:1c 1700020 /usr/lib/x86_64-linux-gnu/libxcb.so.1.1.0
7ffa021b9000-7ffa021ba000 rw-p 00028000 00:1c 1700020 /usr/lib/x86_64-linux-gnu/libxcb.so.1.1.0
7ffa021ba000-7ffa021bb000 r--p 00000000 00:1c 1714511 /usr/lib/x86_64-linux-gnu/libbrotlidec.so.1.0.9
7ffa021bb000-7ffa021c3000 r-xp 00001000 00:1c 1714511 /usr/lib/x86_64-linux-gnu/libbrotlidec.so.1.0.9
7ffa021c3000-7ffa021c6000 r--p 00009000 00:1c 1714511 /usr/lib/x86_64-linux-gnu/libbrotlidec.so.1.0.9
7ffa021c6000-7ffa021c7000 r--p 0000b000 00:1c 1714511 /usr/lib/x86_64-linux-gnu/libbrotlidec.so.1.0.9
7ffa021c7000-7ffa021c8000 rw-p 0000c000 00:1c 1714511 /usr/lib/x86_64-linux-gnu/libbrotlidec.so.1.0.9
7ffa021c8000-7ffa021e1000 r--p 00000000 00:1c 1599110 /usr/lib/x86_64-linux-gnu/libX11.so.6.4.0
7ffa021e1000-7ffa0226d000 r-xp 00019000 00:1c 1599110 /usr/lib/x86_64-linux-gnu/libX11.so.6.4.0
7ffa0226d000-7ffa02302000 r--p 000a5000 00:1c 1599110 /usr/lib/x86_64-linux-gnu/libX11.so.6.4.0
7ffa02302000-7ffa02303000 ---p 0013a000 00:1c 1599110 /usr/lib/x86_64-linux-gnu/libX11.so.6.4.0
7ffa02303000-7ffa02304000 r--p 0013a000 00:1c 1599110 /usr/lib/x86_64-linux-gnu/libX11.so.6.4.0
7ffa02304000-7ffa02308000 rw-p 0013b000 00:1c 1599110 /usr/lib/x86_64-linux-gnu/libX11.so.6.4.0
7ffa02308000-7ffa0230a000 r--p 00000000 00:1c 1280732 /usr/lib/x86_64-linux-gnu/libpcre.so.3.13.3
7ffa0230a000-7ffa0235f000 r-xp 00002000 00:1c 1280732 /usr/lib/x86_64-linux-gnu/libpcre.so.3.13.3
7ffa0235f000-7ffa0237c000 r--p 00057000 00:1c 1280732 /usr/lib/x86_64-linux-gnu/libpcre.so.3.13.3
7ffa0237c000-7ffa0237d000 r--p 00073000 00:1c 1280732 /usr/lib/x86_64-linux-gnu/libpcre.so.3.13.3
7ffa0237d000-7ffa0237e000 rw-p 00074000 00:1c 1280732 /usr/lib/x86_64-linux-gnu/libpcre.so.3.13.3
7ffa0237e000-7ffa0237f000 r--p 00000000 00:1c 1589456 /usr/lib/x86_64-linux-gnu/libicudata.so.70.1
7ffa0237f000-7ffa02380000 r-xp 00001000 00:1c 1589456 /usr/lib/x86_64-linux-gnu/libicudata.so.70.1
7ffa02380000-7ffa03f9a000 r--p 00002000 00:1c 1589456 /usr/lib/x86_64-linux-gnu/libicudata.so.70.1
7ffa03f9a000-7ffa03f9b000 r--p 01c1b000 00:1c 1589456 /usr/lib/x86_64-linux-gnu/libicudata.so.70.1
7ffa03f9b000-7ffa03f9c000 rw-p 01c1c000 00:1c 1589456 /usr/lib/x86_64-linux-gnu/libicudata.so.70.1
7ffa03f9c000-7ffa03f9f000 r--p 00000000 00:1c 1715596 /usr/lib/x86_64-linux-gnu/libgraphite2.so.3.2.1
7ffa03f9f000-7ffa03fbc000 r-xp 00003000 00:1c 1715596 /usr/lib/x86_64-linux-gnu/libgraphite2.so.3.2.1
7ffa03fbc000-7ffa03fc0000 r--p 00020000 00:1c 1715596 /usr/lib/x86_64-linux-gnu/libgraphite2.so.3.2.1
7ffa03fc0000-7ffa03fc2000 r--p 00023000 00:1c 1715596 /usr/lib/x86_64-linux-gnu/libgraphite2.so.3.2.1
7ffa03fc2000-7ffa03fc3000 rw-p 00025000 00:1c 1715596 /usr/lib/x86_64-linux-gnu/libgraphite2.so.3.2.1
7ffa03fc3000-7ffa03fd0000 r--p 00000000 00:1c 1714676 /usr/lib/x86_64-linux-gnu/libfreetype.so.6.18.1
7ffa03fd0000-7ffa04059000 r-xp 0000d000 00:1c 1714676 /usr/lib/x86_64-linux-gnu/libfreetype.so.6.18.1
7ffa04059000-7ffa04082000 r--p 00096000 00:1c 1714676 /usr/lib/x86_64-linux-gnu/libfreetype.so.6.18.1
7ffa04082000-7ffa04083000 ---p 000bf000 00:1c 1714676 /usr/lib/x86_64-linux-gnu/libfreetype.so.6.18.1
7ffa04083000-7ffa0408a000 r--p 000bf000 00:1c 1714676 /usr/lib/x86_64-linux-gnu/libfreetype.so.6.18.1
7ffa0408a000-7ffa0408b000 rw-p 000c6000 00:1c 1714676 /usr/lib/x86_64-linux-gnu/libfreetype.so.6.18.1
7ffa0408b000-7ffa0408e000 r--p 00000000 00:1c 1805809 /usr/lib/x86_64-linux-gnu/libGLX.so.0.0.0
7ffa0408e000-7ffa040a9000 r-xp 00003000 00:1c 1805809 /usr/lib/x86_64-linux-gnu/libGLX.so.0.0.0
7ffa040a9000-7ffa040ac000 r--p 0001e000 00:1c 1805809 /usr/lib/x86_64-linux-gnu/libGLX.so.0.0.0
7ffa040ac000-7ffa040ad000 ---p 00021000 00:1c 1805809 /usr/lib/x86_64-linux-gnu/libGLX.so.0.0.0
7ffa040ad000-7ffa040ae000 r--p 00021000 00:1c 1805809 /usr/lib/x86_64-linux-gnu/libGLX.so.0.0.0
7ffa040ae000-7ffa040af000 rw-p 00022000 00:1c 1805809 /usr/lib/x86_64-linux-gnu/libGLX.so.0.0.0
7ffa040af000-7ffa040bf000 rw-p 00000000 00:00 0
7ffa040bf000-7ffa040ff000 r--p 00000000 00:1c 1805820 /usr/lib/x86_64-linux-gnu/libGLdispatch.so.0.0.0
7ffa040ff000-7ffa0413e000 r-xp 00040000 00:1c 1805820 /usr/lib/x86_64-linux-gnu/libGLdispatch.so.0.0.0
7ffa0413e000-7ffa04151000 r--p 0007f000 00:1c 1805820 /usr/lib/x86_64-linux-gnu/libGLdispatch.so.0.0.0
7ffa04151000-7ffa04152000 ---p 00092000 00:1c 1805820 /usr/lib/x86_64-linux-gnu/libGLdispatch.so.0.0.0
7ffa04152000-7ffa0416e000 r--p 00092000 00:1c 1805820 /usr/lib/x86_64-linux-gnu/libGLdispatch.so.0.0.0
7ffa0416e000-7ffa0416f000 rw-p 000ae000 00:1c 1805820 /usr/lib/x86_64-linux-gnu/libGLdispatch.so.0.0.0
7ffa0416f000-7ffa04177000 rw-p 00000000 00:00 0
7ffa04177000-7ffa04194000 r--p 00000000 00:1c 726994 /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.7200.4
7ffa04194000-7ffa04223000 r-xp 0001d000 00:1c 726994 /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.7200.4
7ffa04223000-7ffa042ad000 r--p 000ac000 00:1c 726994 /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.7200.4
7ffa042ad000-7ffa042ae000 ---p 00136000 00:1c 726994 /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.7200.4
7ffa042ae000-7ffa042af000 r--p 00136000 00:1c 726994 /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.7200.4
7ffa042af000-7ffa042b0000 rw-p 00137000 00:1c 726994 /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.7200.4
7ffa042b0000-7ffa042b1000 rw-p 00000000 00:00 0
7ffa042b1000-7ffa042bb000 r--p 00000000 00:1c 1712427 /usr/lib/x86_64-linux-gnu/libzstd.so.1.4.8
7ffa042bb000-7ffa0436d000 r-xp 0000a000 00:1c 1712427 /usr/lib/x86_64-linux-gnu/libzstd.so.1.4.8
7ffa0436d000-7ffa0437e000 r--p 000bc000 00:1c 1712427 /usr/lib/x86_64-linux-gnu/libzstd.so.1.4.8
7ffa0437e000-7ffa0437f000 r--p 000cc000 00:1c 1712427 /usr/lib/x86_64-linux-gnu/libzstd.so.1.4.8
7ffa0437f000-7ffa04380000 rw-p 000cd000 00:1c 1712427 /usr/lib/x86_64-linux-gnu/libzstd.so.1.4.8
7ffa04380000-7ffa04382000 r--p 00000000 00:1c 328976 /usr/lib/x86_64-linux-gnu/libpcre2-16.so.0.10.4
7ffa04382000-7ffa043e1000 r-xp 00002000 00:1c 328976 /usr/lib/x86_64-linux-gnu/libpcre2-16.so.0.10.4
7ffa043e1000-7ffa04408000 r--p 00061000 00:1c 328976 /usr/lib/x86_64-linux-gnu/libpcre2-16.so.0.10.4
7ffa04408000-7ffa04409000 r--p 00087000 00:1c 328976 /usr/lib/x86_64-linux-gnu/libpcre2-16.so.0.10.4
7ffa04409000-7ffa0440a000 rw-p 00088000 00:1c 328976 /usr/lib/x86_64-linux-gnu/libpcre2-16.so.0.10.4
7ffa0440a000-7ffa04470000 r--p 00000000 00:1c 1590685 /usr/lib/x86_64-linux-gnu/libicuuc.so.70.1
7ffa04470000-7ffa04563000 r-xp 00066000 00:1c 1590685 /usr/lib/x86_64-linux-gnu/libicuuc.so.70.1
7ffa04563000-7ffa045ef000 r--p 00159000 00:1c 1590685 /usr/lib/x86_64-linux-gnu/libicuuc.so.70.1
7ffa045ef000-7ffa04602000 r--p 001e4000 00:1c 1590685 /usr/lib/x86_64-linux-gnu/libicuuc.so.70.1
7ffa04602000-7ffa04603000 rw-p 001f7000 00:1c 1590685 /usr/lib/x86_64-linux-gnu/libicuuc.so.70.1
7ffa04603000-7ffa04605000 rw-p 00000000 00:00 0
7ffa04605000-7ffa046ec000 r--p 00000000 00:1c 1590681 /usr/lib/x86_64-linux-gnu/libicui18n.so.70.1
7ffa046ec000-7ffa0488f000 r-xp 000e7000 00:1c 1590681 /usr/lib/x86_64-linux-gnu/libicui18n.so.70.1
7ffa0488f000-7ffa04921000 r--p 0028a000 00:1c 1590681 /usr/lib/x86_64-linux-gnu/libicui18n.so.70.1
7ffa04921000-7ffa04932000 r--p 0031b000 00:1c 1590681 /usr/lib/x86_64-linux-gnu/libicui18n.so.70.1
7ffa04932000-7ffa04933000 rw-p 0032c000 00:1c 1590681 /usr/lib/x86_64-linux-gnu/libicui18n.so.70.1
7ffa04933000-7ffa04934000 rw-p 00000000 00:00 0
7ffa04934000-7ffa04937000 r--p 00000000 00:1c 2150838 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1
7ffa04937000-7ffa0494e000 r-xp 00003000 00:1c 2150838 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1
7ffa0494e000-7ffa04952000 r--p 0001a000 00:1c 2150838 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1
7ffa04952000-7ffa04953000 r--p 0001d000 00:1c 2150838 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1
7ffa04953000-7ffa04954000 rw-p 0001e000 00:1c 2150838 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1
7ffa04954000-7ffa0495d000 r--p 00000000 00:1c 1715929 /usr/lib/x86_64-linux-gnu/libharfbuzz.so.0.20704.0
7ffa0495d000-7ffa049ee000 r-xp 00009000 00:1c 1715929 /usr/lib/x86_64-linux-gnu/libharfbuzz.so.0.20704.0
7ffa049ee000-7ffa04a20000 r--p 0009a000 00:1c 1715929 /usr/lib/x86_64-linux-gnu/libharfbuzz.so.0.20704.0
7ffa04a20000-7ffa04a21000 ---p 000cc000 00:1c 1715929 /usr/lib/x86_64-linux-gnu/libharfbuzz.so.0.20704.0
7ffa04a21000-7ffa04a22000 r--p 000cc000 00:1c 1715929 /usr/lib/x86_64-linux-gnu/libharfbuzz.so.0.20704.0
7ffa04a22000-7ffa04a23000 rw-p 000cd000 00:1c 1715929 /usr/lib/x86_64-linux-gnu/libharfbuzz.so.0.20704.0
7ffa04a23000-7ffa04a28000 r--p 00000000 00:1c 1713062 /usr/lib/x86_64-linux-gnu/libpng16.so.16.37.0
7ffa04a28000-7ffa04a51000 r-xp 00005000 00:1c 1713062 /usr/lib/x86_64-linux-gnu/libpng16.so.16.37.0
7ffa04a51000-7ffa04a5c000 r--p 0002e000 00:1c 1713062 /usr/lib/x86_64-linux-gnu/libpng16.so.16.37.0
7ffa04a5c000-7ffa04a5d000 r--p 00038000 00:1c 1713062 /usr/lib/x86_64-linux-gnu/libpng16.so.16.37.0
7ffa04a5d000-7ffa04a5e000 rw-p 00039000 00:1c 1713062 /usr/lib/x86_64-linux-gnu/libpng16.so.16.37.0
7ffa04a5e000-7ffa04aa1000 r--p 00000000 00:1c 1721600 /usr/lib/x86_64-linux-gnu/libGL.so.1.7.0
7ffa04aa1000-7ffa04ac0000 r-xp 00043000 00:1c 1721600 /usr/lib/x86_64-linux-gnu/libGL.so.1.7.0
7ffa04ac0000-7ffa04ad5000 r--p 00062000 00:1c 1721600 /usr/lib/x86_64-linux-gnu/libGL.so.1.7.0
7ffa04ad5000-7ffa04ae3000 r--p 00076000 00:1c 1721600 /usr/lib/x86_64-linux-gnu/libGL.so.1.7.0
7ffa04ae3000-7ffa04ae4000 rw-p 00084000 00:1c 1721600 /usr/lib/x86_64-linux-gnu/libGL.so.1.7.0
7ffa04ae4000-7ffa04ae5000 rw-p 00000000 00:00 0
7ffa04ae5000-7ffa04b7f000 r--p 00000000 00:1c 2150533 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
7ffa04b7f000-7ffa04c8f000 r-xp 0009a000 00:1c 2150533 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
7ffa04c8f000-7ffa04cfe000 r--p 001aa000 00:1c 2150533 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
7ffa04cfe000-7ffa04d09000 r--p 00218000 00:1c 2150533 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
7ffa04d09000-7ffa04d0c000 rw-p 00223000 00:1c 2150533 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30
7ffa04d0c000-7ffa04d0f000 rw-p 00000000 00:00 0
7ffa04d0f000-7ffa04d9d000 r--p 00000000 00:1c 2171023 /usr/lib/x86_64-linux-gnu/libQt5Core.so.5.15.3
7ffa04d9d000-7ffa050ac000 r-xp 0008e000 00:1c 2171023 /usr/lib/x86_64-linux-gnu/libQt5Core.so.5.15.3
7ffa050ac000-7ffa0525c000 r--p 0039d000 00:1c 2171023 /usr/lib/x86_64-linux-gnu/libQt5Core.so.5.15.3
7ffa0525c000-7ffa05269000 r--p 0054c000 00:1c 2171023 /usr/lib/x86_64-linux-gnu/libQt5Core.so.5.15.3
7ffa05269000-7ffa0526b000 rw-p 00559000 00:1c 2171023 /usr/lib/x86_64-linux-gnu/libQt5Core.so.5.15.3
7ffa0526b000-7ffa0526e000 rw-p 00000000 00:00 0
7ffa0526e000-7ffa05350000 r--p 00000000 00:1c 2171078 /usr/lib/x86_64-linux-gnu/libQt5Gui.so.5.15.3
7ffa05350000-7ffa0582f000 r-xp 000e2000 00:1c 2171078 /usr/lib/x86_64-linux-gnu/libQt5Gui.so.5.15.3
7ffa0582f000-7ffa0592a000 r--p 005c1000 00:1c 2171078 /usr/lib/x86_64-linux-gnu/libQt5Gui.so.5.15.3
7ffa0592a000-7ffa0592b000 ---p 006bc000 00:1c 2171078 /usr/lib/x86_64-linux-gnu/libQt5Gui.so.5.15.3
7ffa0592b000-7ffa0593c000 r--p 006bc000 00:1c 2171078 /usr/lib/x86_64-linux-gnu/libQt5Gui.so.5.15.3
7ffa0593c000-7ffa05940000 rw-p 006cd000 00:1c 2171078 /usr/lib/x86_64-linux-gnu/libQt5Gui.so.5.15.3
7ffa05940000-7ffa0594c000 rw-p 00000000 00:00 0
7ffa0594c000-7ffa05a16000 r--p 00000000 00:1c 1614578 /usr/lib/python3/dist-packages/PyQt5/QtGui.abi3.so
7ffa05a16000-7ffa05b7d000 r-xp 000ca000 00:1c 1614578 /usr/lib/python3/dist-packages/PyQt5/QtGui.abi3.so
7ffa05b7d000-7ffa05c32000 r--p 00231000 00:1c 1614578 /usr/lib/python3/dist-packages/PyQt5/QtGui.abi3.so
7ffa05c32000-7ffa05c4a000 r--p 002e5000 00:1c 1614578 /usr/lib/python3/dist-packages/PyQt5/QtGui.abi3.so
7ffa05c4a000-7ffa05c8f000 rw-p 002fd000 00:1c 1614578 /usr/lib/python3/dist-packages/PyQt5/QtGui.abi3.so
7ffa05c8f000-7ffa05c91000 rw-p 00000000 00:00 0
7ffa05c91000-7ffa05c94000 r--p 00000000 00:1c 1281170 /usr/lib/x86_64-linux-gnu/liblzma.so.5.2.5
7ffa05c94000-7ffa05caf000 r-xp 00003000 00:1c 1281170 /usr/lib/x86_64-linux-gnu/liblzma.so.5.2.5
7ffa05caf000-7ffa05cba000 r--p 0001e000 00:1c 1281170 /usr/lib/x86_64-linux-gnu/liblzma.so.5.2.5
7ffa05cba000-7ffa05cbb000 r--p 00028000 00:1c 1281170 /usr/lib/x86_64-linux-gnu/liblzma.so.5.2.5
7ffa05cbb000-7ffa05cbc000 rw-p 00029000 00:1c 1281170 /usr/lib/x86_64-linux-gnu/liblzma.so.5.2.5
7ffa05cbc000-7ffa05cbd000 r--s 00000000 00:1c 1314448 /var/cache/fontconfig/45e5ca2b-6a51-450d-8c81-4847d11024d4-le64.cache-7
7ffa05cbd000-7ffa05cbe000 r--s 00000000 00:1c 1314434 /var/cache/fontconfig/c2c8c023-bfa6-4cf5-b393-e662fbf6c96f-le64.cache-7
7ffa05cbe000-7ffa05cc0000 r--p 00000000 00:1c 2171127 /usr/lib/x86_64-linux-gnu/qt5/plugins/platforms/libqxcb.so
7ffa05cc0000-7ffa05cc1000 r-xp 00002000 00:1c 2171127 /usr/lib/x86_64-linux-gnu/qt5/plugins/platforms/libqxcb.so
7ffa05cc1000-7ffa05cc2000 r--p 00003000 00:1c 2171127 /usr/lib/x86_64-linux-gnu/qt5/plugins/platforms/libqxcb.so
7ffa05cc2000-7ffa05cc3000 r--p 00003000 00:1c 2171127 /usr/lib/x86_64-linux-gnu/qt5/plugins/platforms/libqxcb.so
7ffa05cc3000-7ffa05cc4000 rw-p 00004000 00:1c 2171127 /usr/lib/x86_64-linux-gnu/qt5/plugins/platforms/libqxcb.so
7ffa05cc4000-7ffa05cc6000 r--p 00000000 00:1c 1280856 /usr/lib/x86_64-linux-gnu/libnss_compat.so.2
7ffa05cc6000-7ffa05ccd000 r-xp 00002000 00:1c 1280856 /usr/lib/x86_64-linux-gnu/libnss_compat.so.2
7ffa05ccd000-7ffa05cce000 r--p 00009000 00:1c 1280856 /usr/lib/x86_64-linux-gnu/libnss_compat.so.2
7ffa05cce000-7ffa05ccf000 r--p 00009000 00:1c 1280856 /usr/lib/x86_64-linux-gnu/libnss_compat.so.2
7ffa05ccf000-7ffa05cd0000 rw-p 0000a000 00:1c 1280856 /usr/lib/x86_64-linux-gnu/libnss_compat.so.2
7ffa05cd0000-7ffa05cd3000 r--p 00000000 00:1c 1280749 /usr/lib/x86_64-linux-gnu/libcap.so.2.44
7ffa05cd3000-7ffa05cd7000 r-xp 00003000 00:1c 1280749 /usr/lib/x86_64-linux-gnu/libcap.so.2.44
7ffa05cd7000-7ffa05cd9000 r--p 00007000 00:1c 1280749 /usr/lib/x86_64-linux-gnu/libcap.so.2.44
7ffa05cd9000-7ffa05cda000 r--p 00008000 00:1c 1280749 /usr/lib/x86_64-linux-gnu/libcap.so.2.44
7ffa05cda000-7ffa05cdb000 rw-p 00009000 00:1c 1280749 /usr/lib/x86_64-linux-gnu/libcap.so.2.44
7ffa05cdb000-7ffa05ce2000 r--p 00000000 00:1c 1680185 /usr/lib/python3/dist-packages/_dbus_bindings.cpython-310-x86_64-linux-gnu.so
7ffa05ce2000-7ffa05cf1000 r-xp 00007000 00:1c 1680185 /usr/lib/python3/dist-packages/_dbus_bindings.cpython-310-x86_64-linux-gnu.so
7ffa05cf1000-7ffa05cfe000 r--p 00016000 00:1c 1680185 /usr/lib/python3/dist-packages/_dbus_bindings.cpython-310-x86_64-linux-gnu.so
7ffa05cfe000-7ffa05cff000 r--p 00022000 00:1c 1680185 /usr/lib/python3/dist-packages/_dbus_bindings.cpython-310-x86_64-linux-gnu.so
7ffa05cff000-7ffa05d05000 rw-p 00023000 00:1c 1680185 /usr/lib/python3/dist-packages/_dbus_bindings.cpython-310-x86_64-linux-gnu.so
7ffa05d05000-7ffa05e05000 rw-p 00000000 00:00 0
7ffa05e3b000-7ffa05e3e000 r--s 00000000 00:1c 1314307 /var/cache/fontconfig/988d06d3-fdb2-43ab-b1af-241c1caef6b3-le64.cache-7
7ffa05e3e000-7ffa05e40000 r--p 00000000 00:1c 1808458 /usr/lib/x86_64-linux-gnu/libdouble-conversion.so.3.1
7ffa05e40000-7ffa05e4b000 r-xp 00002000 00:1c 1808458 /usr/lib/x86_64-linux-gnu/libdouble-conversion.so.3.1
7ffa05e4b000-7ffa05e50000 r--p 0000d000 00:1c 1808458 /usr/lib/x86_64-linux-gnu/libdouble-conversion.so.3.1
7ffa05e50000-7ffa05e51000 ---p 00012000 00:1c 1808458 /usr/lib/x86_64-linux-gnu/libdouble-conversion.so.3.1
7ffa05e51000-7ffa05e52000 r--p 00012000 00:1c 1808458 /usr/lib/x86_64-linux-gnu/libdouble-conversion.so.3.1
7ffa05e52000-7ffa05e53000 rw-p 00013000 00:1c 1808458 /usr/lib/x86_64-linux-gnu/libdouble-conversion.so.3.1
7ffa05e53000-7ffa05e55000 r--p 00000000 00:1c 1611029 /usr/lib/x86_64-linux-gnu/libmd4c.so.0.4.8
7ffa05e55000-7ffa05e60000 r-xp 00002000 00:1c 1611029 /usr/lib/x86_64-linux-gnu/libmd4c.so.0.4.8
7ffa05e60000-7ffa05e63000 r--p 0000d000 00:1c 1611029 /usr/lib/x86_64-linux-gnu/libmd4c.so.0.4.8
7ffa05e63000-7ffa05e64000 r--p 0000f000 00:1c 1611029 /usr/lib/x86_64-linux-gnu/libmd4c.so.0.4.8
7ffa05e64000-7ffa05e65000 rw-p 00010000 00:1c 1611029 /usr/lib/x86_64-linux-gnu/libmd4c.so.0.4.8
7ffa05e65000-7ffa05e67000 r--p 00000000 00:1c 1280740 /usr/lib/x86_64-linux-gnu/libbz2.so.1.0.4
7ffa05e67000-7ffa05e74000 r-xp 00002000 00:1c 1280740 /usr/lib/x86_64-linux-gnu/libbz2.so.1.0.4
7ffa05e74000-7ffa05e76000 r--p 0000f000 00:1c 1280740 /usr/lib/x86_64-linux-gnu/libbz2.so.1.0.4
7ffa05e76000-7ffa05e77000 r--p 00010000 00:1c 1280740 /usr/lib/x86_64-linux-gnu/libbz2.so.1.0.4
7ffa05e77000-7ffa05e78000 rw-p 00011000 00:1c 1280740 /usr/lib/x86_64-linux-gnu/libbz2.so.1.0.4
7ffa05e78000-7ffa05f78000 rw-p 00000000 00:00 0
7ffa05f78000-7ffa05f7a000 r--p 00000000 00:1c 770328 /usr/lib/python3.10/lib-dynload/_queue.cpython-310-x86_64-linux-gnu.so
7ffa05f7a000-7ffa05f7c000 r-xp 00002000 00:1c 770328 /usr/lib/python3.10/lib-dynload/_queue.cpython-310-x86_64-linux-gnu.so
7ffa05f7c000-7ffa05f7d000 r--p 00004000 00:1c 770328 /usr/lib/python3.10/lib-dynload/_queue.cpython-310-x86_64-linux-gnu.so
7ffa05f7d000-7ffa05f7e000 r--p 00004000 00:1c 770328 /usr/lib/python3.10/lib-dynload/_queue.cpython-310-x86_64-linux-gnu.so
7ffa05f7e000-7ffa05f7f000 rw-p 00005000 00:1c 770328 /usr/lib/python3.10/lib-dynload/_queue.cpython-310-x86_64-linux-gnu.so
7ffa05f7f000-7ffa05f83000 r--p 00000000 00:1c 770728 /usr/lib/python3.10/lib-dynload/_hashlib.cpython-310-x86_64-linux-gnu.so
7ffa05f83000-7ffa05f89000 r-xp 00004000 00:1c 770728 /usr/lib/python3.10/lib-dynload/_hashlib.cpython-310-x86_64-linux-gnu.so
7ffa05f89000-7ffa05f8d000 r--p 0000a000 00:1c 770728 /usr/lib/python3.10/lib-dynload/_hashlib.cpython-310-x86_64-linux-gnu.so
7ffa05f8d000-7ffa05f8e000 r--p 0000d000 00:1c 770728 /usr/lib/python3.10/lib-dynload/_hashlib.cpython-310-x86_64-linux-gnu.so
7ffa05f8e000-7ffa05f90000 rw-p 0000e000 00:1c 770728 /usr/lib/python3.10/lib-dynload/_hashlib.cpython-310-x86_64-linux-gnu.so
7ffa05f90000-7ffa05f92000 r--p 00000000 00:1c 770322 /usr/lib/python3.10/lib-dynload/_json.cpython-310-x86_64-linux-gnu.so
7ffa05f92000-7ffa05f99000 r-xp 00002000 00:1c 770322 /usr/lib/python3.10/lib-dynload/_json.cpython-310-x86_64-linux-gnu.so
7ffa05f99000-7ffa05f9b000 r--p 00009000 00:1c 770322 /usr/lib/python3.10/lib-dynload/_json.cpython-310-x86_64-linux-gnu.so
7ffa05f9b000-7ffa05f9c000 r--p 0000a000 00:1c 770322 /usr/lib/python3.10/lib-dynload/_json.cpython-310-x86_64-linux-gnu.so
7ffa05f9c000-7ffa05f9d000 rw-p 0000b000 00:1c 770322 /usr/lib/python3.10/lib-dynload/_json.cpython-310-x86_64-linux-gnu.so
7ffa05f9d000-7ffa061de000 rw-p 00000000 00:00 0
7ffa061de000-7ffa068e5000 r--p 00000000 00:1c 526411 /usr/lib/locale/locale-archive
7ffa068e5000-7ffa068e9000 rw-p 00000000 00:00 0
7ffa068e9000-7ffa06911000 r--p 00000000 00:1c 1279978 /usr/lib/x86_64-linux-gnu/libc.so.6
7ffa06911000-7ffa06aa6000 r-xp 00028000 00:1c 1279978 /usr/lib/x86_64-linux-gnu/libc.so.6
7ffa06aa6000-7ffa06afe000 r--p 001bd000 00:1c 1279978 /usr/lib/x86_64-linux-gnu/libc.so.6
7ffa06afe000-7ffa06b02000 r--p 00214000 00:1c 1279978 /usr/lib/x86_64-linux-gnu/libc.so.6
7ffa06b02000-7ffa06b04000 rw-p 00218000 00:1c 1279978 /usr/lib/x86_64-linux-gnu/libc.so.6
7ffa06b04000-7ffa06b11000 rw-p 00000000 00:00 0
7ffa06b11000-7ffa06b13000 r--p 00000000 00:1c 250591 /usr/lib/x86_64-linux-gnu/libz.so.1.2.11
7ffa06b13000-7ffa06b24000 r-xp 00002000 00:1c 250591 /usr/lib/x86_64-linux-gnu/libz.so.1.2.11
7ffa06b24000-7ffa06b2a000 r--p 00013000 00:1c 250591 /usr/lib/x86_64-linux-gnu/libz.so.1.2.11
7ffa06b2a000-7ffa06b2b000 ---p 00019000 00:1c 250591 /usr/lib/x86_64-linux-gnu/libz.so.1.2.11
7ffa06b2b000-7ffa06b2c000 r--p 00019000 00:1c 250591 /usr/lib/x86_64-linux-gnu/libz.so.1.2.11
7ffa06b2c000-7ffa06b2d000 rw-p 0001a000 00:1c 250591 /usr/lib/x86_64-linux-gnu/libz.so.1.2.11
7ffa06b2d000-7ffa06b31000 r--p 00000000 00:1c 614145 /usr/lib/x86_64-linux-gnu/libexpat.so.1.8.7
7ffa06b31000-7ffa06b50000 r-xp 00004000 00:1c 614145 /usr/lib/x86_64-linux-gnu/libexpat.so.1.8.7
7ffa06b50000-7ffa06b5a000 r--p 00023000 00:1c 614145 /usr/lib/x86_64-linux-gnu/libexpat.so.1.8.7
7ffa06b5a000-7ffa06b5b000 ---p 0002d000 00:1c 614145 /usr/lib/x86_64-linux-gnu/libexpat.so.1.8.7
7ffa06b5b000-7ffa06b5d000 r--p 0002d000 00:1c 614145 /usr/lib/x86_64-linux-gnu/libexpat.so.1.8.7
7ffa06b5d000-7ffa06b5e000 rw-p 0002f000 00:1c 614145 /usr/lib/x86_64-linux-gnu/libexpat.so.1.8.7
7ffa06b5e000-7ffa06b6c000 r--p 00000000 00:1c 1281173 /usr/lib/x86_64-linux-gnu/libm.so.6
7ffa06b6c000-7ffa06be8000 r-xp 0000e000 00:1c 1281173 /usr/lib/x86_64-linux-gnu/libm.so.6
7ffa06be8000-7ffa06c43000 r--p 0008a000 00:1c 1281173 /usr/lib/x86_64-linux-gnu/libm.so.6
7ffa06c43000-7ffa06c44000 r--p 000e4000 00:1c 1281173 /usr/lib/x86_64-linux-gnu/libm.so.6
7ffa06c44000-7ffa06c45000 rw-p 000e5000 00:1c 1281173 /usr/lib/x86_64-linux-gnu/libm.so.6
7ffa06c45000-7ffa06c46000 r--s 00000000 00:1c 1314432 /var/cache/fontconfig/9d72078c-dd2d-49d9-8cf8-3172e6210d19-le64.cache-7
7ffa06c46000-7ffa06c49000 r--s 00000000 00:1c 1314369 /var/cache/fontconfig/5039f0ad-9b43-492d-8f16-d41139fc4916-le64.cache-7
7ffa06c49000-7ffa06c4c000 r--p 00000000 00:1c 770324 /usr/lib/python3.10/lib-dynload/_lzma.cpython-310-x86_64-linux-gnu.so
7ffa06c4c000-7ffa06c50000 r-xp 00003000 00:1c 770324 /usr/lib/python3.10/lib-dynload/_lzma.cpython-310-x86_64-linux-gnu.so
7ffa06c50000-7ffa06c53000 r--p 00007000 00:1c 770324 /usr/lib/python3.10/lib-dynload/_lzma.cpython-310-x86_64-linux-gnu.so
7ffa06c53000-7ffa06c54000 r--p 00009000 00:1c 770324 /usr/lib/python3.10/lib-dynload/_lzma.cpython-310-x86_64-linux-gnu.so
7ffa06c54000-7ffa06c55000 rw-p 0000a000 00:1c 770324 /usr/lib/python3.10/lib-dynload/_lzma.cpython-310-x86_64-linux-gnu.so
7ffa06c55000-7ffa06c57000 r--p 00000000 00:1c 770306 /usr/lib/python3.10/lib-dynload/_bz2.cpython-310-x86_64-linux-gnu.so
7ffa06c57000-7ffa06c5a000 r-xp 00002000 00:1c 770306 /usr/lib/python3.10/lib-dynload/_bz2.cpython-310-x86_64-linux-gnu.so
7ffa06c5a000-7ffa06c5c000 r--p 00005000 00:1c 770306 /usr/lib/python3.10/lib-dynload/_bz2.cpython-310-x86_64-linux-gnu.so
7ffa06c5c000-7ffa06c5d000 r--p 00006000 00:1c 770306 /usr/lib/python3.10/lib-dynload/_bz2.cpython-310-x86_64-linux-gnu.so
7ffa06c5d000-7ffa06c5e000 rw-p 00007000 00:1c 770306 /usr/lib/python3.10/lib-dynload/_bz2.cpython-310-x86_64-linux-gnu.so
7ffa06c5e000-7ffa06c65000 r--s 00000000 00:1c 526601 /usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache
7ffa06c65000-7ffa06c66000 r--p 00000000 00:1c 209277 /usr/lib/x86_64-linux-gnu/libSegFault.so
7ffa06c66000-7ffa06c69000 r-xp 00001000 00:1c 209277 /usr/lib/x86_64-linux-gnu/libSegFault.so
7ffa06c69000-7ffa06c6a000 r--p 00004000 00:1c 209277 /usr/lib/x86_64-linux-gnu/libSegFault.so
7ffa06c6a000-7ffa06c6b000 r--p 00005000 00:1c 209277 /usr/lib/x86_64-linux-gnu/libSegFault.so
7ffa06c6b000-7ffa06c6c000 rw-p 00006000 00:1c 209277 /usr/lib/x86_64-linux-gnu/libSegFault.so
7ffa06c6c000-7ffa06c6e000 rw-p 00000000 00:00 0
7ffa06c6e000-7ffa06c70000 r--p 00000000 00:1c 1280358 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2
7ffa06c70000-7ffa06c9a000 r-xp 00002000 00:1c 1280358 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2
7ffa06c9a000-7ffa06ca5000 r--p 0002c000 00:1c 1280358 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2
7ffa06ca5000-7ffa06ca6000 r--s 00000000 00:1c 573093 /var/lib/flatpak/exports/share/icons/hicolor/icon-theme.cache
7ffa06ca6000-7ffa06ca8000 r--p 00037000 00:1c 1280358 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2
7ffa06ca8000-7ffa06caa000 rw-p 00039000 00:1c 1280358 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2
7fffdb1b6000-7fffdb1d7000 rw-p 00000000 00:00 0 [stack]
7fffdb1dd000-7fffdb1e1000 r--p 00000000 00:00 0 [vvar]
7fffdb1e1000-7fffdb1e3000 r-xp 00000000 00:00 0 [vdso]
ffffffffff600000-ffffffffff601000 --xp 00000000 00:00 0 [vsyscall]
aryoda commented 1 year ago

@bentolor THX for the output, the backtrace is even worse. End of this road ;-)

buhtz commented 1 year ago

I can confirm this on Debian 11 "bullseye". Start, end and start again backintime-qt round about 5 times and the Segmentation Fault comes up.

I wonder if this is a BIT bug, a PyQt bug or a Qt bug. Other GUI toolkits can handle destructor calls without problems. But I don't understand all details to come to a conclusion here. And the "fix" discussed in this Debian bug report did not arrived in Debian 11 but will in the next Debian 12. I'll check later with a Debian 12 machine and report back. I tested it with Debian 12 in a VM and the Segmentation Fault is still there.

Maybe it is fixed in Qt6 or any of its involved components. We should solve and close #1301 (migrating to PyQt6) first and then look again and this Issue here.

aryoda commented 1 year ago

@buhtz Since gdb debugging would be way to time-consuming, complicated and requiring a lot of skills I propose to use our planned GUI redesign to keep an eye on the lifecycle of all Python objects that are connected to Qt signals and Qt object properties, mainly that they

Also checking the exit behavior of the GUI could help (_PyAtExit_Call is in the call stack of the SEGFAULT!). Explicitly destructing Qt5 objects first before exiting could be solution then.

This issue is on my TODO list (but not yet at the top ;-) since I can reproduce the behavior every now and then at exit...

hannes101 commented 1 year ago

There is a report in the original bug report, which apparently might reproduce the bug. https://bugzilla.redhat.com/show_bug.cgi?id=1844781#c21

buhtz commented 10 months ago

I vote to add a simple FAQ entry about that problem and explain that we are not responsible for it and that this seems not to affect the snapshots.

EDIT: The problem also occur with PyQt6.

aryoda commented 10 months ago

I vote to add a simple FAQ entry about that problem

Yes and would like to keep this issue open until I have so much time left that I can do a multi-day trace & debug session since I can reproduce the problem on several distros (almost deterministically)...

DerekVeit commented 4 months ago

I wrote a script to run and close backintime-qt 10 times, logging to a file. I consistently get the segfault message about 5 out of 10 times. This is with the distro installation of 1.2.1 on Linux Mint 21.2.

If I add this line anywhere in MainWindow.closeEvent, the segfault message never happens at all:

self.qapp.removeEventFilter(self.mouseButtonEventFilter)
buhtz commented 4 months ago

Hello Derek, that is a fascinating "solution". How did you come across this lead? What is the origin of this idea?

I remember the mouseButtonEventFilter. I did not understand what it is doing. ~It was never clear to me why the BIT main window use class ExtraMouseButtonEventFilter instead of just overloading mousePressEvent() in the main window.~ It seems that the class ExtraMouseButtonEventFilter is used because mousePressEvent() won't work because the main windows child widgets to steel the mouse events.

Can you provide that script? I would like to increase the repetitions.

Depending on earlier experiments with the seg fault problem I am assuming that the "connection" between that problem and the mouse event filter it is only a coincidence. But we should give it a try of course.

Best, Christian

EDIT: The event filter instance is a member of the MainWindow but it is installed to the QApplication object. When the window closes, Python might garbage collect its members including the filter. The QApplication is destroyed later. There the filter is still installed but garbage collected by Python interpreter. QApplication object might touch the event filter at its end again and seg fault because it is not present anymore.

EDIT2: I support the proposal of Derek. Would you like to provide a PR for this? On a long run we encapsulate the widgets of the main window into their own classes. Then we might get rid of the need for an global event filter and then can simply use mousePressEvent() on our custom fileview widget.

DerekVeit commented 4 months ago

I was looking for something that might be destroyed out of order, and seeing that filter added without a corresponding removal looked like a possibility.

Here is the test script I'm using: run_and_quit_backintime.sh

You can call it with a numeric argument for how many times to run and close. It uses xdotool to close.

It's using ctrl+w for the version 1.2.1 that I'm running, so just change that to ctrl+q for a newer version.

I would be happy to make a PR for it.

emtiu commented 4 months ago

Wonderful! This problem has been bugging us for so long. Thanks for the good work :)

buhtz commented 4 months ago

I would be happy to make a PR for it.

Great. Let me know if you need assistance. Don't hesitate to ask.

DerekVeit commented 4 months ago

Thanks. I tried to conform my commit message and such, but I would be glad to get any pointers on my first PR here.

aryoda commented 4 months ago

@DerekVeit Excellent work (and approach), thanks a lot for helping us!

What I have learned as "take-away" from this issue is that debugging is not always the most-efficient way (but hard-core) for non-deterministic segfaults but white-box code-analysis and perhaps even disabling some code (perfectly via bisecting) is another excellent way to find the culprit :smile:

DerekVeit commented 4 months ago

@aryoda Thanks! That's what I was thinking after reading your posts and Benjamin's. I had just started along that strategy of methodically removing things. But since the widget structure should probably all get torn down in the normal way, I was starting by looking for anything special outside of that, and self.setMouseButtonNavigation() was one of the first such things I saw.

I've been using Back In Time for some years, so I'm grateful and glad to help too.

buhtz commented 3 months ago

Hello Derek, would you like to work further on that problem. 😆

It seems there are still segmentation faults. Was reported as a side problem in #1828. I can confirm and reproduce with latest dev version.

Steps to reproduce:

  1. Have no config file or delete it.
  2. Start BIT without any configuration.
  3. Click on "No" when being asked if you want to restore an old config.
  4. The Manage profiles (aka Settings) window comes up.
  5. Close it via "Cancel".
  6. Seg fault should appear (in ~50% of all cases).
DerekVeit commented 3 months ago

I was able to reproduce this too. I've made a modified version of the testing script for it.

run_and_quit_backintime_no-config.sh

And I see the reason. I added the fix in MainWindow.closeEvent, but that is only called if the application has started and then has a close event. In the unconfigured case, MainWindow.__init__ returns early on not config.isConfigured() but after the event filter has been added, and then the same condition is used at the bottom of the module to just skip executing the application. In that case it never closes, because it never really starts.

Moving the removeEventFilter call from closeEvent down to the bottom after the qapp.exec_() (replacing self with mainWindow) ensures that it happens in the unconfigured case as well as with a normal close. Running it 100+ times with both the normal close and the early exit, it doesn't segfault now.

If this sounds good, I can make another PR for this improved version of the fix.

buhtz commented 3 months ago

Sounds like a good solution to me. "Make it so." 🚀 Thank you very much for your efforts to help with this.