Skip to content

Instantly share code, notes, and snippets.

@stijlist
Last active October 29, 2021 18:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stijlist/399a6c6f26119df96838dfa543e115d7 to your computer and use it in GitHub Desktop.
Save stijlist/399a6c6f26119df96838dfa543e115d7 to your computer and use it in GitHub Desktop.
python_startup_time_blog

speeding up python startup time with io_uring

(trying the one-pass / no editing blog post style)

A few months ago I learned that python (and other interpreted languages') RPATH lookups involve a non-trivial amount of compute. For each invocation of the python interpreter, python makes ~hundreds of serial calls to stat and related functions before running user code (cf. 'What I've Learned About Optimizing Python', ENOENT caching in distri). Each stat system call costs some amount of time (~200ns-5us) and also causes a context switch into and out of the kernel. There are many workloads which invoke the Python interpreter 100s of times.

I was curious whether it'd be worth using io_uring for reducing startup and module importing overhead.

Wesley and I looked at this this morning - our plan was roughly:

  • strace python startup

    • assess whether RPATH lookups are a meaningful part of python startup time
  • write a c program that makes the same system calls as that strace log

  • write that same program using io_uring and see if we see a speedup

    $ time python hello_world.py 0.01s (0.07 user 0.01 system) $ rg 'stat' hello_world.py.log | wc -l 252

Wes used a slick command line trick ("Quick and Dirty Syscall Profiling with strace and VisiData" to get a histogram of system calls the python interpreter made.

The cost of stat from this stackoverflow answer is on the order of microseconds per system call. 250us is roughly the right order of magnitude for the amount of system time we see spent (I'm running on an M1 Mac so I expect my results will be faster than the ones in that stackoverflow answer). I'd guess that 1-10% of python interpreter time is spent running stat and friends and context switching back.

Let's verify this with perf and a flamegraph. We'll run perf sampling at 50khz:

$ sudo perf record -F 50000 -a -g -e "raw_syscalls:*" -- python3 /tmp/hello.py

From the output:

  • 10% of 'python' time is spent in __fstat64
  • 10% of 'python' time is spent in __xstat64

If we're reading the flamegraph right, this matches our intuition - on the order of 10% of python interpreter time in hello_world is spent on stat and friends.

It seems like it might actually be worth trying to reduce the time RPATH lookups take. This depends on the speedup we'd get from using io_uring (e.g. can we actually batch these stat calls) - we might look at this more in the future.

execve("/run/current-system/sw/bin/python3", ["python3", "/tmp/hello.py"], 0x7ffde663c248 /* 60 vars */) = 0
brk(NULL) = 0xb4c000
access("/etc/ld-nix.so.preload", R_OK) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/tls/haswell/x86_64/libpython3.8.so.1.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/tls/haswell/x86_64", 0x7fffdf811650) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/tls/haswell/libpython3.8.so.1.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/tls/haswell", 0x7fffdf811650) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/tls/x86_64/libpython3.8.so.1.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/tls/x86_64", 0x7fffdf811650) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/tls/libpython3.8.so.1.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/tls", 0x7fffdf811650) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/haswell/x86_64/libpython3.8.so.1.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/haswell/x86_64", 0x7fffdf811650) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/haswell/libpython3.8.so.1.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/haswell", 0x7fffdf811650) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/x86_64/libpython3.8.so.1.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/x86_64", 0x7fffdf811650) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/libpython3.8.so.1.0", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20\370\6\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0555, st_size=3915072, ...}) = 0
mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f63f6250000
mmap(NULL, 3697968, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f63f5ec9000
mprotect(0x7f63f5f32000, 2875392, PROT_NONE) = 0
mmap(0x7f63f5f32000, 1941504, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x69000) = 0x7f63f5f32000
mmap(0x7f63f610c000, 929792, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x243000) = 0x7f63f610c000
mmap(0x7f63f61f0000, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x326000) = 0x7f63f61f0000
mmap(0x7f63f6230000, 130352, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f63f6230000
close(3) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/jq72030zxqlq19ilmcfikcxsfbcvp96x-ncurses-6.2/lib/tls/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/nix/store/jq72030zxqlq19ilmcfikcxsfbcvp96x-ncurses-6.2/lib/tls/haswell/x86_64", 0x7fffdf811630) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/jq72030zxqlq19ilmcfikcxsfbcvp96x-ncurses-6.2/lib/tls/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/nix/store/jq72030zxqlq19ilmcfikcxsfbcvp96x-ncurses-6.2/lib/tls/haswell", 0x7fffdf811630) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/jq72030zxqlq19ilmcfikcxsfbcvp96x-ncurses-6.2/lib/tls/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/nix/store/jq72030zxqlq19ilmcfikcxsfbcvp96x-ncurses-6.2/lib/tls/x86_64", 0x7fffdf811630) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/jq72030zxqlq19ilmcfikcxsfbcvp96x-ncurses-6.2/lib/tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/nix/store/jq72030zxqlq19ilmcfikcxsfbcvp96x-ncurses-6.2/lib/tls", 0x7fffdf811630) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/jq72030zxqlq19ilmcfikcxsfbcvp96x-ncurses-6.2/lib/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/nix/store/jq72030zxqlq19ilmcfikcxsfbcvp96x-ncurses-6.2/lib/haswell/x86_64", 0x7fffdf811630) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/jq72030zxqlq19ilmcfikcxsfbcvp96x-ncurses-6.2/lib/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/nix/store/jq72030zxqlq19ilmcfikcxsfbcvp96x-ncurses-6.2/lib/haswell", 0x7fffdf811630) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/jq72030zxqlq19ilmcfikcxsfbcvp96x-ncurses-6.2/lib/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/nix/store/jq72030zxqlq19ilmcfikcxsfbcvp96x-ncurses-6.2/lib/x86_64", 0x7fffdf811630) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/jq72030zxqlq19ilmcfikcxsfbcvp96x-ncurses-6.2/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/nix/store/jq72030zxqlq19ilmcfikcxsfbcvp96x-ncurses-6.2/lib", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/nix/store/jsp3h3wpzc842j0rz61m5ly71ak6qgdn-glibc-2.32-54/lib/tls/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/nix/store/jsp3h3wpzc842j0rz61m5ly71ak6qgdn-glibc-2.32-54/lib/tls/haswell/x86_64", 0x7fffdf811630) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/jsp3h3wpzc842j0rz61m5ly71ak6qgdn-glibc-2.32-54/lib/tls/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/nix/store/jsp3h3wpzc842j0rz61m5ly71ak6qgdn-glibc-2.32-54/lib/tls/haswell", 0x7fffdf811630) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/jsp3h3wpzc842j0rz61m5ly71ak6qgdn-glibc-2.32-54/lib/tls/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/nix/store/jsp3h3wpzc842j0rz61m5ly71ak6qgdn-glibc-2.32-54/lib/tls/x86_64", 0x7fffdf811630) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/jsp3h3wpzc842j0rz61m5ly71ak6qgdn-glibc-2.32-54/lib/tls/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/nix/store/jsp3h3wpzc842j0rz61m5ly71ak6qgdn-glibc-2.32-54/lib/tls", 0x7fffdf811630) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/jsp3h3wpzc842j0rz61m5ly71ak6qgdn-glibc-2.32-54/lib/haswell/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/nix/store/jsp3h3wpzc842j0rz61m5ly71ak6qgdn-glibc-2.32-54/lib/haswell/x86_64", 0x7fffdf811630) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/jsp3h3wpzc842j0rz61m5ly71ak6qgdn-glibc-2.32-54/lib/haswell/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/nix/store/jsp3h3wpzc842j0rz61m5ly71ak6qgdn-glibc-2.32-54/lib/haswell", 0x7fffdf811630) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/jsp3h3wpzc842j0rz61m5ly71ak6qgdn-glibc-2.32-54/lib/x86_64/libpthread.so.0", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
stat("/nix/store/jsp3h3wpzc842j0rz61m5ly71ak6qgdn-glibc-2.32-54/lib/x86_64", 0x7fffdf811630) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/jsp3h3wpzc842j0rz61m5ly71ak6qgdn-glibc-2.32-54/lib/libpthread.so.0", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\300{\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0555, st_size=143608, ...}) = 0
mmap(NULL, 131512, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f63f5ea8000
mmap(0x7f63f5eaf000, 61440, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7000) = 0x7f63f5eaf000
mmap(0x7f63f5ebe000, 20480, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x16000) = 0x7f63f5ebe000
mmap(0x7f63f5ec3000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1a000) = 0x7f63f5ec3000
mmap(0x7f63f5ec5000, 12728, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f63f5ec5000
close(3) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/jq72030zxqlq19ilmcfikcxsfbcvp96x-ncurses-6.2/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/jsp3h3wpzc842j0rz61m5ly71ak6qgdn-glibc-2.32-54/lib/libdl.so.2", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 \21\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0555, st_size=18432, ...}) = 0
mmap(NULL, 16528, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f63f5ea3000
mmap(0x7f63f5ea4000, 4096, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7f63f5ea4000
mmap(0x7f63f5ea5000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f63f5ea5000
mmap(0x7f63f5ea6000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f63f5ea6000
close(3) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/libcrypt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/jq72030zxqlq19ilmcfikcxsfbcvp96x-ncurses-6.2/lib/libcrypt.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/jsp3h3wpzc842j0rz61m5ly71ak6qgdn-glibc-2.32-54/lib/libcrypt.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\220\21\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0555, st_size=48744, ...}) = 0
mmap(NULL, 233816, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f63f5e69000
mprotect(0x7f63f5e6a000, 36864, PROT_NONE) = 0
mmap(0x7f63f5e6a000, 24576, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7f63f5e6a000
mmap(0x7f63f5e70000, 8192, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7000) = 0x7f63f5e70000
mmap(0x7f63f5e73000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x9000) = 0x7f63f5e73000
mmap(0x7f63f5e75000, 184664, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f63f5e75000
close(3) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/libncursesw.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/jq72030zxqlq19ilmcfikcxsfbcvp96x-ncurses-6.2/lib/libncursesw.so.6", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000\235\1\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0555, st_size=503904, ...}) = 0
mmap(NULL, 466168, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f63f5df7000
mmap(0x7f63f5e0f000, 245760, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x18000) = 0x7f63f5e0f000
mmap(0x7f63f5e4b000, 98304, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x54000) = 0x7f63f5e4b000
mmap(0x7f63f5e63000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6b000) = 0x7f63f5e63000
close(3) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/jq72030zxqlq19ilmcfikcxsfbcvp96x-ncurses-6.2/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/jsp3h3wpzc842j0rz61m5ly71ak6qgdn-glibc-2.32-54/lib/libutil.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\22\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0555, st_size=17648, ...}) = 0
mmap(NULL, 16400, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f63f5df2000
mmap(0x7f63f5df3000, 4096, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7f63f5df3000
mmap(0x7f63f5df4000, 4096, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f63f5df4000
mmap(0x7f63f5df5000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f63f5df5000
close(3) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/jq72030zxqlq19ilmcfikcxsfbcvp96x-ncurses-6.2/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/jsp3h3wpzc842j0rz61m5ly71ak6qgdn-glibc-2.32-54/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320\361\0\0\0\0\0\0"..., 832) = 832
mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f63f5df0000
fstat(3, {st_mode=S_IFREG|0555, st_size=1422328, ...}) = 0
mmap(NULL, 1318936, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f63f5cad000
mprotect(0x7f63f5cbc000, 1253376, PROT_NONE) = 0
mmap(0x7f63f5cbc000, 622592, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xf000) = 0x7f63f5cbc000
mmap(0x7f63f5d54000, 626688, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xa7000) = 0x7f63f5d54000
mmap(0x7f63f5dee000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x140000) = 0x7f63f5dee000
close(3) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/jq72030zxqlq19ilmcfikcxsfbcvp96x-ncurses-6.2/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/jsp3h3wpzc842j0rz61m5ly71ak6qgdn-glibc-2.32-54/lib/libgcc_s.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\3402\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0444, st_size=112336, ...}) = 0
mmap(NULL, 103120, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f63f5c93000
mprotect(0x7f63f5c96000, 86016, PROT_NONE) = 0
mmap(0x7f63f5c96000, 69632, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3000) = 0x7f63f5c96000
mmap(0x7f63f5ca7000, 12288, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x14000) = 0x7f63f5ca7000
mmap(0x7f63f5cab000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17000) = 0x7f63f5cab000
close(3) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/jq72030zxqlq19ilmcfikcxsfbcvp96x-ncurses-6.2/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/jsp3h3wpzc842j0rz61m5ly71ak6qgdn-glibc-2.32-54/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0000\177\2\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0555, st_size=2076736, ...}) = 0
mmap(NULL, 1835568, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f63f5ad2000
mprotect(0x7f63f5af8000, 1642496, PROT_NONE) = 0
mmap(0x7f63f5af8000, 1327104, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x26000) = 0x7f63f5af8000
mmap(0x7f63f5c3c000, 311296, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x16a000) = 0x7f63f5c3c000
mmap(0x7f63f5c89000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1b6000) = 0x7f63f5c89000
mmap(0x7f63f5c8f000, 12848, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f63f5c8f000
close(3) = 0
mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f63f5ad0000
arch_prctl(ARCH_SET_FS, 0x7f63f5ad0f80) = 0
mprotect(0x7f63f5c89000, 12288, PROT_READ) = 0
mprotect(0x7f63f5cab000, 4096, PROT_READ) = 0
mprotect(0x7f63f5dee000, 4096, PROT_READ) = 0
mprotect(0x7f63f5df5000, 4096, PROT_READ) = 0
mprotect(0x7f63f5e63000, 20480, PROT_READ) = 0
mprotect(0x7f63f5e73000, 4096, PROT_READ) = 0
mprotect(0x7f63f5ea6000, 4096, PROT_READ) = 0
mprotect(0x7f63f5ec3000, 4096, PROT_READ) = 0
mprotect(0x7f63f61f0000, 32768, PROT_READ) = 0
mprotect(0x403000, 4096, PROT_READ) = 0
mprotect(0x7f63f627c000, 4096, PROT_READ) = 0
set_tid_address(0x7f63f5ad1250) = 1098045
set_robust_list(0x7f63f5ad1260, 24) = 0
rt_sigaction(SIGRTMIN, {sa_handler=0x7f63f5eaf640, sa_mask=[], sa_flags=SA_RESTORER|SA_SIGINFO, sa_restorer=0x7f63f5ebb700}, NULL, 8) = 0
rt_sigaction(SIGRT_1, {sa_handler=0x7f63f5eaf6e0, sa_mask=[], sa_flags=SA_RESTORER|SA_RESTART|SA_SIGINFO, sa_restorer=0x7f63f5ebb700}, NULL, 8) = 0
rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0
prlimit64(0, RLIMIT_STACK, NULL, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0
brk(NULL) = 0xb4c000
brk(0xb6d000) = 0xb6d000
openat(AT_FDCWD, "/run/current-system/sw/lib/locale/locale-archive", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=225226832, ...}) = 0
mmap(NULL, 225226832, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f63e8404000
close(3) = 0
openat(AT_FDCWD, "/nix/store/jsp3h3wpzc842j0rz61m5ly71ak6qgdn-glibc-2.32-54/lib/gconv/gconv-modules.cache", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/jsp3h3wpzc842j0rz61m5ly71ak6qgdn-glibc-2.32-54/lib/gconv/gconv-modules", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=56353, ...}) = 0
read(3, "# GNU libc iconv configuration.\n"..., 4096) = 4096
read(3, "B1002//\tJUS_I.B1.002//\nmodule\tJU"..., 4096) = 4096
read(3, "\tISO-IR-110//\t\tISO-8859-4//\nalia"..., 4096) = 4096
read(3, "\t\t\tISO-8859-14//\nalias\tISO_8859-"..., 4096) = 4096
read(3, "DIC-ES//\nalias\tEBCDICES//\t\tEBCDI"..., 4096) = 4096
read(3, "CDIC-CP-ES//\t\tIBM284//\nalias\tCSI"..., 4096) = 4096
read(3, "\t\tIBM863//\nalias\tOSF1002035F//\t\t"..., 4096) = 4096
read(3, "937//\t\tIBM937//\nmodule\tIBM937//\t"..., 4096) = 4096
read(3, "UJIS//\t\t\tEUC-JP//\nmodule\tEUC-JP/"..., 4096) = 4096
read(3, "lias\tISO2022CN//\t\tISO-2022-CN//\n"..., 4096) = 4096
read(3, "O_5427-EXT//\nalias\tISO_5427EXT//"..., 4096) = 4096
brk(0xb8e000) = 0xb8e000
read(3, "ost\nmodule\tMAC-SAMI//\t\tINTERNAL\t"..., 4096) = 4096
read(3, "112//\t\tINTERNAL\t\tIBM1112\t\t1\nmodu"..., 4096) = 4096
read(3, "s\tCP9448//\t\tIBM9448//\nalias\tCSIB"..., 4096) = 3105
read(3, "", 4096) = 0
close(3) = 0
futex(0x7f63f5c8e4b4, FUTEX_WAKE_PRIVATE, 2147483647) = 0
stat("/nix/store/2ac7xn823biiridcq1zr8g45xc8ivxgh-kitty-0.20.3/bin/python3", 0x7fffdf80cc00) = -1 ENOENT (No such file or directory)
stat("/nix/store/n0z5213qbs9iyl2nnkcx6mflywa7ngiv-imagemagick-7.1.0-6/bin/python3", 0x7fffdf80cc00) = -1 ENOENT (No such file or directory)
stat("/nix/store/17hhi709zc8zp1gd1y97habj6sr2786m-xsel-unstable-2020-05-27/bin/python3", 0x7fffdf80cc00) = -1 ENOENT (No such file or directory)
stat("/nix/store/xg1vp4knfigvnj039y91h79yjm8khb9a-ncurses-6.2-dev/bin/python3", 0x7fffdf80cc00) = -1 ENOENT (No such file or directory)
stat("/run/wrappers/bin/python3", 0x7fffdf80cc00) = -1 ENOENT (No such file or directory)
stat("/home/wesleyac/.nix-profile/bin/python3", 0x7fffdf80cc00) = -1 ENOENT (No such file or directory)
stat("/etc/profiles/per-user/wesleyac/bin/python3", 0x7fffdf80cc00) = -1 ENOENT (No such file or directory)
stat("/nix/var/nix/profiles/default/bin/python3", 0x7fffdf80cc00) = -1 ENOENT (No such file or directory)
stat("/run/current-system/sw/bin/python3", {st_mode=S_IFREG|0555, st_size=16128, ...}) = 0
readlink("/run/current-system/sw/bin/python3", "/nix/store/32q6ryrb860sksdi1al5d"..., 4096) = 70
readlink("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/bin/python3", "python3.8", 4096) = 9
readlink("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/bin/python3.8", 0x7fffdf7fba60, 4096) = -1 EINVAL (Invalid argument)
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/bin/pyvenv.cfg", O_RDONLY) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/pyvenv.cfg", O_RDONLY) = -1 ENOENT (No such file or directory)
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/bin/Modules/Setup.local", 0x7fffdf808bf0) = -1 ENOENT (No such file or directory)
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/bin/lib/python3.8/os.py", 0x7fffdf7fc9f0) = -1 ENOENT (No such file or directory)
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/bin/lib/python3.8/os.pyc", 0x7fffdf7fc9f0) = -1 ENOENT (No such file or directory)
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/os.py", {st_mode=S_IFREG|0444, st_size=38995, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/bin/pybuilddir.txt", 0x7fffdf7fcb30) = -1 ENOENT (No such file or directory)
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/bin/lib/python3.8/lib-dynload", 0x7fffdf80cc00) = -1 ENOENT (No such file or directory)
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/lib-dynload", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
getrandom("\xc7\xfd\x5f\x15\x67\x06\x0e\xda\x4e\x4c\xe2\x44\x3e\x37\x03\x97\x0b\x6f\x31\xca\x41\x81\x03\xde", 24, GRND_NONBLOCK) = 24
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f63e83c4000
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f63e8384000
brk(0xbaf000) = 0xbaf000
clock_gettime(CLOCK_REALTIME, {tv_sec=1635520062, tv_nsec=348869051}) = 0
clock_gettime(CLOCK_MONOTONIC, {tv_sec=413020, tv_nsec=322491705}) = 0
clock_gettime(CLOCK_MONOTONIC, {tv_sec=413020, tv_nsec=322712956}) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f63e8344000
brk(0xbd9000) = 0xbd9000
sysinfo({uptime=1461367, loads=[74976, 61440, 46144], totalram=16681869312, freeram=4116398080, sharedram=1715523584, bufferram=662900736, totalswap=8589930496, freeswap=8216395776, procs=922, totalhigh=0, freehigh=0, mem_unit=1}) = 0
openat(AT_FDCWD, "/etc/localtime", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=3536, ...}) = 0
fstat(3, {st_mode=S_IFREG|0444, st_size=3536, ...}) = 0
read(3, "TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\5\0\0\0\5\0\0\0\0"..., 4096) = 3536
lseek(3, -2252, SEEK_CUR) = 1284
read(3, "TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\5\0\0\0\5\0\0\0\0"..., 4096) = 2252
close(3) = 0
sigaltstack({ss_sp=0xbbe460, ss_flags=0, ss_size=16384}, {ss_sp=NULL, ss_flags=SS_DISABLE, ss_size=0}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python38.zip", 0x7fffdf810190) = -1 ENOENT (No such file or directory)
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python38.zip", 0x7fffdf80fea0) = -1 ENOENT (No such file or directory)
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
getdents64(3, 0xbc2900 /* 208 entries */, 32768) = 6920
getdents64(3, 0xbc2900 /* 0 entries */, 32768) = 0
close(3) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f63e8304000
munmap(0x7f63e8304000, 262144) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f63e8304000
munmap(0x7f63e8304000, 262144) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/encodings/__init__.cpython-38-x86_64-linux-gnu.so", 0x7fffdf810340) = -1 ENOENT (No such file or directory)
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/encodings/__init__.abi3.so", 0x7fffdf810340) = -1 ENOENT (No such file or directory)
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/encodings/__init__.so", 0x7fffdf810340) = -1 ENOENT (No such file or directory)
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/encodings/__init__.py", {st_mode=S_IFREG|0444, st_size=5588, ...}) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f63e8304000
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/encodings/__init__.py", {st_mode=S_IFREG|0444, st_size=5588, ...}) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/encodings/__pycache__/__init__.cpython-38.pyc", O_RDONLY|O_CLOEXEC) = 3
fcntl(3, F_GETFD) = 0x1 (flags FD_CLOEXEC)
fstat(3, {st_mode=S_IFREG|0444, st_size=3957, ...}) = 0
ioctl(3, TCGETS, 0x7fffdf8109f0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0444, st_size=3957, ...}) = 0
read(3, "U\r\r\n\3\0\0\0[@<\376\326\242\325r\343\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 3958) = 3957
read(3, "", 1) = 0
close(3) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/encodings/__init__.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=5588, ...}) = 0
ioctl(3, TCGETS, 0x7fffdf8109f0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0444, st_size=5588, ...}) = 0
read(3, "\"\"\" Standard \"encodings\" Package"..., 5589) = 5588
read(3, "", 1) = 0
close(3) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/codecs.py", {st_mode=S_IFREG|0444, st_size=36667, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/codecs.py", {st_mode=S_IFREG|0444, st_size=36667, ...}) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/__pycache__/codecs.cpython-38.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=34010, ...}) = 0
ioctl(3, TCGETS, 0x7fffdf80fb10) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0444, st_size=34010, ...}) = 0
read(3, "U\r\r\n\3\0\0\0\260\221\303\304\371d'\262\343\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 34011) = 34010
read(3, "", 1) = 0
close(3) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/codecs.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=36667, ...}) = 0
ioctl(3, TCGETS, 0x7fffdf80fb10) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0444, st_size=36667, ...}) = 0
read(3, "\"\"\" codecs -- Python Codec Regis"..., 36668) = 36667
read(3, "", 1) = 0
close(3) = 0
brk(0xbfa000) = 0xbfa000
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/encodings", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/encodings", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/encodings", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/encodings", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
getdents64(3, 0xbcc9d0 /* 126 entries */, 32768) = 4264
getdents64(3, 0xbcc9d0 /* 0 entries */, 32768) = 0
close(3) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/encodings/aliases.py", {st_mode=S_IFREG|0444, st_size=15693, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/encodings/aliases.py", {st_mode=S_IFREG|0444, st_size=15693, ...}) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/encodings/__pycache__/aliases.cpython-38.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=6384, ...}) = 0
ioctl(3, TCGETS, 0x7fffdf80f350) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0444, st_size=6384, ...}) = 0
read(3, "U\r\r\n\3\0\0\0\250\254 U\236\374j\216\343\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 6385) = 6384
read(3, "", 1) = 0
close(3) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/encodings/aliases.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=15693, ...}) = 0
ioctl(3, TCGETS, 0x7fffdf80f350) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0444, st_size=15693, ...}) = 0
read(3, "\"\"\" Encoding Aliases Support\n\n "..., 15694) = 15693
read(3, "", 1) = 0
close(3) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/encodings", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/encodings/utf_8.py", {st_mode=S_IFREG|0444, st_size=1005, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/encodings/utf_8.py", {st_mode=S_IFREG|0444, st_size=1005, ...}) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/encodings/__pycache__/utf_8.cpython-38.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=1684, ...}) = 0
ioctl(3, TCGETS, 0x7fffdf8109d0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0444, st_size=1684, ...}) = 0
read(3, "U\r\r\n\3\0\0\0\341>\252\277\220A\\w\343\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 1685) = 1684
read(3, "", 1) = 0
close(3) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/encodings/utf_8.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=1005, ...}) = 0
ioctl(3, TCGETS, 0x7fffdf8109d0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0444, st_size=1005, ...}) = 0
read(3, "\"\"\" Python 'utf-8' Codec\n\n\nWritt"..., 1006) = 1005
read(3, "", 1) = 0
close(3) = 0
rt_sigaction(SIGPIPE, {sa_handler=SIG_IGN, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f63f5ebb700}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGXFSZ, {sa_handler=SIG_IGN, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f63f5ebb700}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGHUP, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGINT, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGQUIT, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGILL, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGTRAP, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGABRT, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGBUS, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGFPE, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGKILL, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGUSR1, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGSEGV, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGUSR2, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGPIPE, NULL, {sa_handler=SIG_IGN, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f63f5ebb700}, 8) = 0
rt_sigaction(SIGALRM, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGTERM, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGSTKFLT, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGCHLD, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGCONT, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGSTOP, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGTSTP, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGTTIN, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGTTOU, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGURG, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGXCPU, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGXFSZ, NULL, {sa_handler=SIG_IGN, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f63f5ebb700}, 8) = 0
rt_sigaction(SIGVTALRM, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGPROF, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGWINCH, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGIO, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGPWR, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGSYS, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_2, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_3, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_4, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_5, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_6, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_7, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_8, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_9, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_10, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_11, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_12, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_13, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_14, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_15, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_16, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_17, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_18, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_19, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_20, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_21, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_22, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_23, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_24, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_25, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_26, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_27, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_28, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_29, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_30, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_31, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGRT_32, NULL, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
rt_sigaction(SIGINT, {sa_handler=0x7f63f60e94c0, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f63f5ebb700}, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=0}, 8) = 0
fstat(0, {st_mode=S_IFCHR|0620, st_rdev=makedev(0x88, 0), ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/encodings", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/encodings/latin_1.py", {st_mode=S_IFREG|0444, st_size=1264, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/encodings/latin_1.py", {st_mode=S_IFREG|0444, st_size=1264, ...}) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/encodings/__pycache__/latin_1.cpython-38.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=1947, ...}) = 0
ioctl(3, TCGETS, 0x7fffdf810a10) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0444, st_size=1947, ...}) = 0
read(3, "U\r\r\n\3\0\0\0K\326gz\207.x\207\343\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 1948) = 1947
read(3, "", 1) = 0
close(3) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/encodings/latin_1.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=1264, ...}) = 0
ioctl(3, TCGETS, 0x7fffdf810a10) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0444, st_size=1264, ...}) = 0
read(3, "\"\"\" Python 'latin-1' Codec\n\n\nWri"..., 1265) = 1264
read(3, "", 1) = 0
close(3) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/io.py", {st_mode=S_IFREG|0444, st_size=3541, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/io.py", {st_mode=S_IFREG|0444, st_size=3541, ...}) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/__pycache__/io.cpython-38.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=3508, ...}) = 0
ioctl(3, TCGETS, 0x7fffdf810a10) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0444, st_size=3508, ...}) = 0
read(3, "U\r\r\n\3\0\0\0\343\351\361\254\207Y\27\325\343\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 3509) = 3508
read(3, "", 1) = 0
close(3) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/io.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=3541, ...}) = 0
ioctl(3, TCGETS, 0x7fffdf810a10) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0444, st_size=3541, ...}) = 0
read(3, "\"\"\"The io module provides the Py"..., 3542) = 3541
read(3, "", 1) = 0
close(3) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/abc.py", {st_mode=S_IFREG|0444, st_size=4489, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/abc.py", {st_mode=S_IFREG|0444, st_size=4489, ...}) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/__pycache__/abc.cpython-38.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=5388, ...}) = 0
ioctl(3, TCGETS, 0x7fffdf80fb30) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0444, st_size=5388, ...}) = 0
read(3, "U\r\r\n\3\0\0\0\266\1\234\327\202\36\2\244\343\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 5389) = 5388
read(3, "", 1) = 0
close(3) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/abc.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=4489, ...}) = 0
ioctl(3, TCGETS, 0x7fffdf80fb30) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0444, st_size=4489, ...}) = 0
read(3, "# Copyright 2007 Google, Inc. Al"..., 4490) = 4489
read(3, "", 1) = 0
close(3) = 0
dup(0) = 3
close(3) = 0
fstat(0, {st_mode=S_IFCHR|0620, st_rdev=makedev(0x88, 0), ...}) = 0
ioctl(0, TCGETS, {B38400 opost isig icanon echo ...}) = 0
lseek(0, 0, SEEK_CUR) = -1 ESPIPE (Illegal seek)
ioctl(0, TCGETS, {B38400 opost isig icanon echo ...}) = 0
dup(1) = 3
close(3) = 0
fstat(1, {st_mode=S_IFCHR|0620, st_rdev=makedev(0x88, 0), ...}) = 0
ioctl(1, TCGETS, {B38400 opost isig icanon echo ...}) = 0
lseek(1, 0, SEEK_CUR) = -1 ESPIPE (Illegal seek)
ioctl(1, TCGETS, {B38400 opost isig icanon echo ...}) = 0
dup(2) = 3
close(3) = 0
fstat(2, {st_mode=S_IFREG|0644, st_size=44082, ...}) = 0
ioctl(2, TCGETS, 0x7fffdf811950) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(2, 0, SEEK_CUR) = 44235
ioctl(2, TCGETS, 0x7fffdf811c20) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(2, 0, SEEK_CUR) = 44368
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/site.py", {st_mode=S_IFREG|0444, st_size=21329, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/site.py", {st_mode=S_IFREG|0444, st_size=21329, ...}) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/__pycache__/site.cpython-38.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=16715, ...}) = 0
ioctl(3, TCGETS, 0x7fffdf810af0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0444, st_size=16715, ...}) = 0
read(3, "U\r\r\n\3\0\0\0\315e\242\27\3041#\231\343\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 16716) = 16715
read(3, "", 1) = 0
close(3) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/site.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=21329, ...}) = 0
ioctl(3, TCGETS, 0x7fffdf810af0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0444, st_size=21329, ...}) = 0
read(3, "\"\"\"Append module search paths fo"..., 21330) = 21329
read(3, "", 1) = 0
close(3) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/os.py", {st_mode=S_IFREG|0444, st_size=38995, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/os.py", {st_mode=S_IFREG|0444, st_size=38995, ...}) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/__pycache__/os.cpython-38.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=31451, ...}) = 0
ioctl(3, TCGETS, 0x7fffdf80fc10) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0444, st_size=31451, ...}) = 0
read(3, "U\r\r\n\3\0\0\0@\21\37\302O\267C\v\343\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 31452) = 31451
read(3, "", 1) = 0
close(3) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/os.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=38995, ...}) = 0
ioctl(3, TCGETS, 0x7fffdf80fc10) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0444, st_size=38995, ...}) = 0
read(3, "r\"\"\"OS routines for NT or Posix "..., 38996) = 38995
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f63e82c4000
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/stat.py", {st_mode=S_IFREG|0444, st_size=5485, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/stat.py", {st_mode=S_IFREG|0444, st_size=5485, ...}) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/__pycache__/stat.cpython-38.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=4426, ...}) = 0
ioctl(3, TCGETS, 0x7fffdf80ed30) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0444, st_size=4426, ...}) = 0
read(3, "U\r\r\n\3\0\0\0\325\230\307.F\254n\16\343\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 4427) = 4426
read(3, "", 1) = 0
close(3) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/stat.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=5485, ...}) = 0
ioctl(3, TCGETS, 0x7fffdf80ed30) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0444, st_size=5485, ...}) = 0
read(3, "\"\"\"Constants/functions for inter"..., 5486) = 5485
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 151552, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f63e829f000
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/_collections_abc.py", {st_mode=S_IFREG|0444, st_size=26100, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/_collections_abc.py", {st_mode=S_IFREG|0444, st_size=26100, ...}) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/__pycache__/_collections_abc.cpython-38.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=28795, ...}) = 0
ioctl(3, TCGETS, 0x7fffdf80ed30) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0444, st_size=28795, ...}) = 0
read(3, "U\r\r\n\3\0\0\0Yru:\247\361s\302\343\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 28796) = 28795
read(3, "", 1) = 0
close(3) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/_collections_abc.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=26100, ...}) = 0
ioctl(3, TCGETS, 0x7fffdf80ed30) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0444, st_size=26100, ...}) = 0
read(3, "# Copyright 2007 Google, Inc. Al"..., 26101) = 26100
read(3, "", 1) = 0
close(3) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/posixpath.py", {st_mode=S_IFREG|0444, st_size=15627, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/posixpath.py", {st_mode=S_IFREG|0444, st_size=15627, ...}) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/__pycache__/posixpath.cpython-38.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=10482, ...}) = 0
ioctl(3, TCGETS, 0x7fffdf80ed30) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0444, st_size=10482, ...}) = 0
read(3, "U\r\r\n\3\0\0\0\255 \251\21\2035\323i\343\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 10483) = 10482
read(3, "", 1) = 0
close(3) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/posixpath.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=15627, ...}) = 0
ioctl(3, TCGETS, 0x7fffdf80ed30) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0444, st_size=15627, ...}) = 0
read(3, "\"\"\"Common operations on Posix pa"..., 15628) = 15627
read(3, "", 1) = 0
close(3) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/genericpath.py", {st_mode=S_IFREG|0444, st_size=4975, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/genericpath.py", {st_mode=S_IFREG|0444, st_size=4975, ...}) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/__pycache__/genericpath.cpython-38.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=4055, ...}) = 0
ioctl(3, TCGETS, 0x7fffdf80de50) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0444, st_size=4055, ...}) = 0
read(3, "U\r\r\n\3\0\0\0\2060v\205\317\3648\250\343\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 4056) = 4055
read(3, "", 1) = 0
close(3) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/genericpath.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=4975, ...}) = 0
ioctl(3, TCGETS, 0x7fffdf80de50) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0444, st_size=4975, ...}) = 0
read(3, "\"\"\"\nPath operations common to mo"..., 4976) = 4975
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f63e825f000
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/_sitebuiltins.py", {st_mode=S_IFREG|0444, st_size=3115, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/_sitebuiltins.py", {st_mode=S_IFREG|0444, st_size=3115, ...}) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/__pycache__/_sitebuiltins.cpython-38.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=3535, ...}) = 0
ioctl(3, TCGETS, 0x7fffdf80fc10) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0444, st_size=3535, ...}) = 0
read(3, "U\r\r\n\3\0\0\0005\36\230V\330\253\327(\343\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 3536) = 3535
read(3, "", 1) = 0
close(3) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/_sitebuiltins.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=3115, ...}) = 0
ioctl(3, TCGETS, 0x7fffdf80fc10) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0444, st_size=3115, ...}) = 0
read(3, "\"\"\"\nThe objects used by the site"..., 3116) = 3115
read(3, "", 1) = 0
close(3) = 0
stat("/run/current-system/sw/bin/pyvenv.cfg", 0x7fffdf8103f0) = -1 ENOENT (No such file or directory)
stat("/run/current-system/sw/pyvenv.cfg", 0x7fffdf8103f0) = -1 ENOENT (No such file or directory)
geteuid() = 1000
getuid() = 1000
getegid() = 100
getgid() = 100
stat("/home/wesleyac/.local/lib/python3.8/site-packages", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/wesleyac/.local/lib/python3.8/site-packages", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0
getdents64(3, 0xbab630 /* 13 entries */, 32768) = 472
getdents64(3, 0xbab630 /* 0 entries */, 32768) = 0
close(3) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/site-packages", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/site-packages", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
getdents64(3, 0xbab630 /* 6 entries */, 32768) = 216
getdents64(3, 0xbab630 /* 0 entries */, 32768) = 0
close(3) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/lib-dynload", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/lib-dynload", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/lib-dynload", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/lib-dynload", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
getdents64(3, 0xbab630 /* 74 entries */, 32768) = 4576
getdents64(3, 0xbab630 /* 0 entries */, 32768) = 0
close(3) = 0
stat("/home/wesleyac/.local/lib/python3.8/site-packages", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0
stat("/home/wesleyac/.local/lib/python3.8/site-packages", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0
stat("/home/wesleyac/.local/lib/python3.8/site-packages", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/home/wesleyac/.local/lib/python3.8/site-packages", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0
getdents64(3, 0xbab630 /* 13 entries */, 32768) = 472
getdents64(3, 0xbab630 /* 0 entries */, 32768) = 0
close(3) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/site-packages", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/site-packages", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/site-packages", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/site-packages", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
fstat(3, {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
getdents64(3, 0xbab630 /* 6 entries */, 32768) = 216
getdents64(3, 0xbab630 /* 0 entries */, 32768) = 0
close(3) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/site-packages/sitecustomize.py", {st_mode=S_IFREG|0444, st_size=1659, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/site-packages/sitecustomize.py", {st_mode=S_IFREG|0444, st_size=1659, ...}) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/site-packages/__pycache__/sitecustomize.cpython-38.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=1430, ...}) = 0
ioctl(3, TCGETS, 0x7fffdf80f890) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0444, st_size=1430, ...}) = 0
read(3, "U\r\r\n\3\0\0\0)B\4\370\202\340\300G\343\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 1431) = 1430
read(3, "", 1) = 0
close(3) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/site-packages/sitecustomize.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=1659, ...}) = 0
ioctl(3, TCGETS, 0x7fffdf80f890) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0444, st_size=1659, ...}) = 0
read(3, "\"\"\"\nThis is a Nix-specific modul"..., 1660) = 1659
read(3, "", 1) = 0
close(3) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/functools.py", {st_mode=S_IFREG|0444, st_size=37406, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/functools.py", {st_mode=S_IFREG|0444, st_size=37406, ...}) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/__pycache__/functools.cpython-38.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=27955, ...}) = 0
ioctl(3, TCGETS, 0x7fffdf80e9b0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0444, st_size=27955, ...}) = 0
read(3, "U\r\r\n\3\0\0\0\320\210L\33c\235\3540\343\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 27956) = 27955
read(3, "", 1) = 0
close(3) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/functools.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=37406, ...}) = 0
ioctl(3, TCGETS, 0x7fffdf80e9b0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0444, st_size=37406, ...}) = 0
brk(0xc20000) = 0xc20000
read(3, "\"\"\"functools.py - Tools for work"..., 37407) = 37406
read(3, "", 1) = 0
close(3) = 0
brk(0xc17000) = 0xc17000
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/collections/__init__.cpython-38-x86_64-linux-gnu.so", 0x7fffdf80d420) = -1 ENOENT (No such file or directory)
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/collections/__init__.abi3.so", 0x7fffdf80d420) = -1 ENOENT (No such file or directory)
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/collections/__init__.so", 0x7fffdf80d420) = -1 ENOENT (No such file or directory)
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/collections/__init__.py", {st_mode=S_IFREG|0444, st_size=47939, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/collections/__init__.py", {st_mode=S_IFREG|0444, st_size=47939, ...}) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/collections/__pycache__/__init__.cpython-38.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=46490, ...}) = 0
ioctl(3, TCGETS, 0x7fffdf80dad0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0444, st_size=46490, ...}) = 0
read(3, "U\r\r\n\3\0\0\0<\21 \v\206\233\240\256\343\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 46491) = 46490
read(3, "", 1) = 0
close(3) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/collections/__init__.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=47939, ...}) = 0
ioctl(3, TCGETS, 0x7fffdf80dad0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0444, st_size=47939, ...}) = 0
read(3, "'''This module implements specia"..., 47940) = 47939
read(3, "", 1) = 0
close(3) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/operator.py", {st_mode=S_IFREG|0444, st_size=10711, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/operator.py", {st_mode=S_IFREG|0444, st_size=10711, ...}) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/__pycache__/operator.cpython-38.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=13745, ...}) = 0
ioctl(3, TCGETS, 0x7fffdf80cbf0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0444, st_size=13745, ...}) = 0
read(3, "U\r\r\n\3\0\0\0\276L\221\243H\261\233&\343\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 13746) = 13745
read(3, "", 1) = 0
close(3) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/operator.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=10711, ...}) = 0
ioctl(3, TCGETS, 0x7fffdf80cbf0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0444, st_size=10711, ...}) = 0
read(3, "\"\"\"\nOperator Interface\n\nThis mod"..., 10712) = 10711
read(3, "", 1) = 0
close(3) = 0
mmap(NULL, 262144, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f63e821f000
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/keyword.py", {st_mode=S_IFREG|0444, st_size=945, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/keyword.py", {st_mode=S_IFREG|0444, st_size=945, ...}) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/__pycache__/keyword.cpython-38.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=1052, ...}) = 0
ioctl(3, TCGETS, 0x7fffdf80cbf0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0444, st_size=1052, ...}) = 0
read(3, "U\r\r\n\3\0\0\0\267\n\207\222\352\2542o\343\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 1053) = 1052
read(3, "", 1) = 0
close(3) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/keyword.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=945, ...}) = 0
ioctl(3, TCGETS, 0x7fffdf80cbf0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0444, st_size=945, ...}) = 0
read(3, "\"\"\"Keywords (from \"Grammar/Gramm"..., 946) = 945
read(3, "", 1) = 0
close(3) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/heapq.py", {st_mode=S_IFREG|0444, st_size=22877, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/heapq.py", {st_mode=S_IFREG|0444, st_size=22877, ...}) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/__pycache__/heapq.cpython-38.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=14124, ...}) = 0
ioctl(3, TCGETS, 0x7fffdf80cbf0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0444, st_size=14124, ...}) = 0
read(3, "U\r\r\n\3\0\0\0E=q\371\347\220\32\310\343\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 14125) = 14124
read(3, "", 1) = 0
close(3) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/heapq.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=22877, ...}) = 0
ioctl(3, TCGETS, 0x7fffdf80cbf0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0444, st_size=22877, ...}) = 0
read(3, "\"\"\"Heap queue algorithm (a.k.a. "..., 22878) = 22877
read(3, "", 1) = 0
close(3) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/lib-dynload", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/lib-dynload/_heapq.cpython-38-x86_64-linux-gnu.so", {st_mode=S_IFREG|0555, st_size=25824, ...}) = 0
futex(0x7f63f5ea7048, FUTEX_WAKE_PRIVATE, 2147483647) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/lib-dynload/_heapq.cpython-38-x86_64-linux-gnu.so", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320\20\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0555, st_size=25824, ...}) = 0
mmap(NULL, 25032, PROT_READ, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f63e8218000
mmap(0x7f63e8219000, 4096, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7f63e8219000
mmap(0x7f63e821a000, 12288, PROT_READ, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f63e821a000
mmap(0x7f63e821d000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x4000) = 0x7f63e821d000
close(3) = 0
mprotect(0x7f63e821d000, 4096, PROT_READ) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/reprlib.py", {st_mode=S_IFREG|0444, st_size=5267, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/reprlib.py", {st_mode=S_IFREG|0444, st_size=5267, ...}) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/__pycache__/reprlib.cpython-38.pyc", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=5357, ...}) = 0
ioctl(3, TCGETS, 0x7fffdf80cbf0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0444, st_size=5357, ...}) = 0
read(3, "U\r\r\n\3\0\0\0\20M\17\341\205\0] \343\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 5358) = 5357
read(3, "", 1) = 0
close(3) = 0
openat(AT_FDCWD, "/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/reprlib.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0444, st_size=5267, ...}) = 0
ioctl(3, TCGETS, 0x7fffdf80cbf0) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0444, st_size=5267, ...}) = 0
read(3, "\"\"\"Redo the builtin repr() (repr"..., 5268) = 5267
read(3, "", 1) = 0
close(3) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/lib-dynload", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
stat("/home/wesleyac/.local/lib/python3.8/site-packages", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0
stat("/nix/store/32q6ryrb860sksdi1al5djg3pgcpq92l-python3-3.8.11/lib/python3.8/site-packages", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
stat("/tmp/hello.py", {st_mode=S_IFREG|0644, st_size=15, ...}) = 0
openat(AT_FDCWD, "/tmp/hello.py", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=15, ...}) = 0
ioctl(3, TCGETS, 0x7fffdf811720) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
lseek(3, -22, SEEK_END) = -1 EINVAL (Invalid argument)
close(3) = 0
stat("/tmp/hello.py", {st_mode=S_IFREG|0644, st_size=15, ...}) = 0
readlink("/tmp/hello.py", 0x7fffdf801260, 4096) = -1 EINVAL (Invalid argument)
lstat("/tmp", {st_mode=S_IFDIR|S_ISVTX|0777, st_size=28672, ...}) = 0
lstat("/tmp/hello.py", {st_mode=S_IFREG|0644, st_size=15, ...}) = 0
openat(AT_FDCWD, "/tmp/hello.py", O_RDONLY) = 3
fcntl(3, F_GETFD) = 0
fcntl(3, F_SETFD, FD_CLOEXEC) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=15, ...}) = 0
ioctl(3, TCGETS, 0x7fffdf812230) = -1 ENOTTY (Inappropriate ioctl for device)
lseek(3, 0, SEEK_CUR) = 0
fstat(3, {st_mode=S_IFREG|0644, st_size=15, ...}) = 0
read(3, "print(\"hello\")\n", 4096) = 15
lseek(3, 0, SEEK_SET) = 0
read(3, "print(\"hello\")\n", 4096) = 15
read(3, "", 4096) = 0
close(3) = 0
write(1, "hello\n", 6) = 6
rt_sigaction(SIGINT, {sa_handler=SIG_DFL, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f63f5ebb700}, {sa_handler=0x7f63f60e94c0, sa_mask=[], sa_flags=SA_RESTORER, sa_restorer=0x7f63f5ebb700}, 8) = 0
sigaltstack(NULL, {ss_sp=0xbbe460, ss_flags=0, ss_size=16384}) = 0
sigaltstack({ss_sp=NULL, ss_flags=SS_DISABLE, ss_size=0}, NULL) = 0
exit_group(0) = ?
+++ exited with 0 +++
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" width="1200" height="2134" onload="init(evt)" viewBox="0 0 1200 2134" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
<!-- NOTES: -->
<defs>
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
<stop stop-color="#eeeeee" offset="5%" />
<stop stop-color="#eeeeb0" offset="95%" />
</linearGradient>
</defs>
<style type="text/css">
text { font-family:Verdana; font-size:12px; fill:rgb(0,0,0); }
#search, #ignorecase { opacity:0.1; cursor:pointer; }
#search:hover, #search.show, #ignorecase:hover, #ignorecase.show { opacity:1; }
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
#title { text-anchor:middle; font-size:17px}
#unzoom { cursor:pointer; }
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
.hide { display:none; }
.parent { opacity:0.5; }
</style>
<script type="text/ecmascript">
<![CDATA[
"use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, currentSearchTerm, ignorecase, ignorecaseBtn;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
ignorecaseBtn = document.getElementById("ignorecase");
unzoombtn = document.getElementById("unzoom");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
currentSearchTerm = null;
// use GET parameters to restore a flamegraphs state.
var params = get_params();
if (params.x && params.y)
zoom(find_group(document.querySelector('[x="' + params.x + '"][y="' + params.y + '"]')));
if (params.s) search(params.s);
}
// event listeners
window.addEventListener("click", function(e) {
var target = find_group(e.target);
if (target) {
if (target.nodeName == "a") {
if (e.ctrlKey === false) return;
e.preventDefault();
}
if (target.classList.contains("parent")) unzoom();
zoom(target);
if (!document.querySelector('.parent')) {
clearzoom();
return;
}
// set parameters for zoom state
var el = target.querySelector("rect");
if (el && el.attributes && el.attributes.y && el.attributes._orig_x) {
var params = get_params()
params.x = el.attributes._orig_x.value;
params.y = el.attributes.y.value;
history.replaceState(null, null, parse_params(params));
}
}
else if (e.target.id == "unzoom") clearzoom();
else if (e.target.id == "search") search_prompt();
else if (e.target.id == "ignorecase") toggle_ignorecase();
}, false)
// mouse-over for info
// show
window.addEventListener("mouseover", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = "Function: " + g_to_text(target);
}, false)
// clear
window.addEventListener("mouseout", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = ' ';
}, false)
// ctrl-F for search
// ctrl-I to toggle case-sensitive search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
else if (e.ctrlKey && e.keyCode === 73) {
e.preventDefault();
toggle_ignorecase();
}
}, false)
// functions
function get_params() {
var params = {};
var paramsarr = window.location.search.substr(1).split('&');
for (var i = 0; i < paramsarr.length; ++i) {
var tmp = paramsarr[i].split("=");
if (!tmp[0] || !tmp[1]) continue;
params[tmp[0]] = decodeURIComponent(tmp[1]);
}
return params;
}
function parse_params(params) {
var uri = "?";
for (var key in params) {
uri += key + '=' + encodeURIComponent(params[key]) + '&';
}
if (uri.slice(-1) == "&")
uri = uri.substring(0, uri.length - 1);
if (uri == '?')
uri = window.location.href.split('?')[0];
return uri;
}
function find_child(node, selector) {
var children = node.querySelectorAll(selector);
if (children.length) return children[0];
}
function find_group(node) {
var parent = node.parentElement;
if (!parent) return;
if (parent.id == "frames") return node;
return find_group(parent);
}
function orig_save(e, attr, val) {
if (e.attributes["_orig_" + attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_" + attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_" + attr].value;
e.removeAttribute("_orig_"+attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes.x.value = parseFloat(r.attributes.x.value) + 3;
// Smaller than this size won't fit anything
if (w < 2 * 12 * 0.59) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w)
return;
for (var x = txt.length - 2; x > 0; x--) {
if (t.getSubStringLength(0, x + 2) <= w) {
t.textContent = txt.substring(0, x) + "..";
return;
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.attributes != undefined) {
orig_load(e, "x");
orig_load(e, "width");
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, ratio) {
if (e.attributes != undefined) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = (parseFloat(e.attributes.x.value) - x - 10) * ratio + 10;
if (e.tagName == "text")
e.attributes.x.value = find_child(e.parentNode, "rect[x]").attributes.x.value + 3;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseFloat(e.attributes.width.value) * ratio;
}
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_child(c[i], x - 10, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = 10;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseInt(svg.width.baseVal.value) - (10 * 2);
}
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseFloat(attr.width.value);
var xmin = parseFloat(attr.x.value);
var xmax = parseFloat(xmin + width);
var ymin = parseFloat(attr.y.value);
var ratio = (svg.width.baseVal.value - 2 * 10) / width;
// XXX: Workaround for JavaScript float issues (fix me)
var fudge = 0.0001;
unzoombtn.classList.remove("hide");
var el = document.getElementById("frames").children;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseFloat(a.x.value);
var ew = parseFloat(a.width.value);
var upstack;
// Is it an ancestor
if (0 == 0) {
upstack = parseFloat(a.y.value) > ymin;
} else {
upstack = parseFloat(a.y.value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.classList.add("parent");
zoom_parent(e);
update_text(e);
}
// not in current path
else
e.classList.add("hide");
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.classList.add("hide");
}
else {
zoom_child(e, xmin, ratio);
update_text(e);
}
}
}
search();
}
function unzoom() {
unzoombtn.classList.add("hide");
var el = document.getElementById("frames").children;
for(var i = 0; i < el.length; i++) {
el[i].classList.remove("parent");
el[i].classList.remove("hide");
zoom_reset(el[i]);
update_text(el[i]);
}
search();
}
function clearzoom() {
unzoom();
// remove zoom state
var params = get_params();
if (params.x) delete params.x;
if (params.y) delete params.y;
history.replaceState(null, null, parse_params(params));
}
// search
function toggle_ignorecase() {
ignorecase = !ignorecase;
if (ignorecase) {
ignorecaseBtn.classList.add("show");
} else {
ignorecaseBtn.classList.remove("show");
}
reset_search();
search();
}
function reset_search() {
var el = document.querySelectorAll("#frames rect");
for (var i = 0; i < el.length; i++) {
orig_load(el[i], "fill")
}
var params = get_params();
delete params.s;
history.replaceState(null, null, parse_params(params));
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)"
+ (ignorecase ? ", ignoring case" : "")
+ "\nPress Ctrl-i to toggle case sensitivity", "");
if (term != null) search(term);
} else {
reset_search();
searching = 0;
currentSearchTerm = null;
searchbtn.classList.remove("show");
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.classList.add("hide");
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
if (term) currentSearchTerm = term;
var re = new RegExp(currentSearchTerm, ignorecase ? 'i' : '');
var el = document.getElementById("frames").children;
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseFloat(rect.attributes.width.value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseFloat(rect.attributes.x.value);
orig_save(rect, "fill");
rect.attributes.fill.value = "rgb(230,0,230)";
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
var params = get_params();
params.s = currentSearchTerm;
history.replaceState(null, null, parse_params(params));
searchbtn.classList.add("show");
searchbtn.firstChild.nodeValue = "Reset Search";
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
var fudge = 0.0001; // JavaScript floating point
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw - fudge) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.classList.remove("hide");
var pct = 100 * count / maxwidth;
if (pct != 100) pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="2134.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="2117" > </text>
<text id="unzoom" x="10.00" y="24" class="hide">Reset Zoom</text>
<text id="search" x="1090.00" y="24" >Search</text>
<text id="ignorecase" x="1174.00" y="24" >ic</text>
<text id="matched" x="1090.00" y="2117" > </text>
<g id="frames">
<g >
<title>__libc_send (6 samples, 0.04%)</title><rect x="1035.9" y="2053" width="0.4" height="15.0" fill="rgb(220,63,2)" rx="2" ry="2" />
<text x="1038.90" y="2063.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1014.5" y="2005" width="0.1" height="15.0" fill="rgb(244,63,8)" rx="2" ry="2" />
<text x="1017.51" y="2015.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1047.0" y="1957" width="0.1" height="15.0" fill="rgb(213,152,29)" rx="2" ry="2" />
<text x="1049.95" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (13,132 samples, 78.85%)</title><rect x="46.6" y="2053" width="930.4" height="15.0" fill="rgb(248,31,8)" rx="2" ry="2" />
<text x="49.56" y="2063.5" >[unknown]</text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="11.0" y="1701" width="0.1" height="15.0" fill="rgb(237,223,36)" rx="2" ry="2" />
<text x="13.99" y="1711.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (10 samples, 0.06%)</title><rect x="1065.7" y="1989" width="0.7" height="15.0" fill="rgb(227,126,22)" rx="2" ry="2" />
<text x="1068.73" y="1999.5" ></text>
</g>
<g >
<title>clock_gettime@GLIBC_2.2.5 (2 samples, 0.01%)</title><rect x="1045.1" y="1973" width="0.2" height="15.0" fill="rgb(220,154,15)" rx="2" ry="2" />
<text x="1048.11" y="1983.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1045.1" y="1925" width="0.2" height="15.0" fill="rgb(212,78,3)" rx="2" ry="2" />
<text x="1048.11" y="1935.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1015.8" y="1989" width="0.1" height="15.0" fill="rgb(230,154,15)" rx="2" ry="2" />
<text x="1018.78" y="1999.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1044.7" y="1957" width="0.1" height="15.0" fill="rgb(247,207,24)" rx="2" ry="2" />
<text x="1047.69" y="1967.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.04%)</title><rect x="1047.9" y="2021" width="0.5" height="15.0" fill="rgb(245,112,46)" rx="2" ry="2" />
<text x="1050.95" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1461" width="0.5" height="15.0" fill="rgb(233,93,25)" rx="2" ry="2" />
<text x="1061.57" y="1471.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (62 samples, 0.37%)</title><rect x="983.9" y="2021" width="4.4" height="15.0" fill="rgb(239,68,10)" rx="2" ry="2" />
<text x="986.90" y="2031.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (10 samples, 0.06%)</title><rect x="1146.7" y="2021" width="0.7" height="15.0" fill="rgb(230,133,9)" rx="2" ry="2" />
<text x="1149.71" y="2031.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1153.5" y="2005" width="0.2" height="15.0" fill="rgb(208,221,43)" rx="2" ry="2" />
<text x="1156.51" y="2015.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (42 samples, 0.25%)</title><rect x="1099.0" y="2005" width="3.0" height="15.0" fill="rgb(238,161,26)" rx="2" ry="2" />
<text x="1102.03" y="2015.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.02%)</title><rect x="1016.1" y="1989" width="0.2" height="15.0" fill="rgb(229,83,16)" rx="2" ry="2" />
<text x="1019.06" y="1999.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="44.1" y="1989" width="0.2" height="15.0" fill="rgb(247,143,31)" rx="2" ry="2" />
<text x="47.15" y="1999.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (6 samples, 0.04%)</title><rect x="1047.5" y="1989" width="0.4" height="15.0" fill="rgb(241,86,53)" rx="2" ry="2" />
<text x="1050.52" y="1999.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1058.1" y="2005" width="0.1" height="15.0" fill="rgb(212,42,14)" rx="2" ry="2" />
<text x="1061.08" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (5 samples, 0.03%)</title><rect x="1092.5" y="1989" width="0.4" height="15.0" fill="rgb(213,102,0)" rx="2" ry="2" />
<text x="1095.51" y="1999.5" ></text>
</g>
<g >
<title>__GI___open64_nocancel (2 samples, 0.01%)</title><rect x="1169.0" y="2037" width="0.1" height="15.0" fill="rgb(216,51,37)" rx="2" ry="2" />
<text x="1171.96" y="2047.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="11.0" y="1733" width="0.1" height="15.0" fill="rgb(234,30,9)" rx="2" ry="2" />
<text x="13.99" y="1743.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (9 samples, 0.05%)</title><rect x="1180.9" y="1957" width="0.6" height="15.0" fill="rgb(239,48,0)" rx="2" ry="2" />
<text x="1183.86" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1317" width="0.2" height="15.0" fill="rgb(245,59,0)" rx="2" ry="2" />
<text x="1048.82" y="1327.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1189.7" y="2005" width="0.2" height="15.0" fill="rgb(205,45,8)" rx="2" ry="2" />
<text x="1192.72" y="2015.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1055.7" y="1973" width="0.2" height="15.0" fill="rgb(229,21,36)" rx="2" ry="2" />
<text x="1058.74" y="1983.5" ></text>
</g>
<g >
<title>[libxul.so] (4 samples, 0.02%)</title><rect x="1022.2" y="2053" width="0.2" height="15.0" fill="rgb(213,151,46)" rx="2" ry="2" />
<text x="1025.16" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1014.9" y="2053" width="0.6" height="15.0" fill="rgb(241,70,5)" rx="2" ry="2" />
<text x="1017.93" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="805" width="0.5" height="15.0" fill="rgb(222,173,0)" rx="2" ry="2" />
<text x="1061.57" y="815.5" ></text>
</g>
<g >
<title>[.electron-wrapped] (6 samples, 0.04%)</title><rect x="10.0" y="1493" width="0.4" height="15.0" fill="rgb(253,192,54)" rx="2" ry="2" />
<text x="13.00" y="1503.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="869" width="0.5" height="15.0" fill="rgb(221,85,17)" rx="2" ry="2" />
<text x="1061.57" y="879.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1685" width="0.2" height="15.0" fill="rgb(230,33,49)" rx="2" ry="2" />
<text x="1048.82" y="1695.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (9 samples, 0.05%)</title><rect x="34.2" y="2005" width="0.7" height="15.0" fill="rgb(250,189,6)" rx="2" ry="2" />
<text x="37.23" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1205" width="0.5" height="15.0" fill="rgb(254,175,52)" rx="2" ry="2" />
<text x="1061.57" y="1215.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="165" width="0.2" height="15.0" fill="rgb(206,19,2)" rx="2" ry="2" />
<text x="1048.82" y="175.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1125" width="0.2" height="15.0" fill="rgb(211,46,10)" rx="2" ry="2" />
<text x="1048.82" y="1135.5" ></text>
</g>
<g >
<title>[.electron-wrapped] (26 samples, 0.16%)</title><rect x="10.0" y="1909" width="1.8" height="15.0" fill="rgb(233,93,1)" rx="2" ry="2" />
<text x="13.00" y="1919.5" ></text>
</g>
<g >
<title>do_syscall_64 (9 samples, 0.05%)</title><rect x="1180.9" y="1989" width="0.6" height="15.0" fill="rgb(235,14,10)" rx="2" ry="2" />
<text x="1183.86" y="1999.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5 samples, 0.03%)</title><rect x="49.0" y="1941" width="0.4" height="15.0" fill="rgb(249,26,19)" rx="2" ry="2" />
<text x="52.04" y="1951.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (62 samples, 0.37%)</title><rect x="983.9" y="2005" width="4.4" height="15.0" fill="rgb(217,220,14)" rx="2" ry="2" />
<text x="986.90" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1909" width="0.2" height="15.0" fill="rgb(242,93,30)" rx="2" ry="2" />
<text x="1048.82" y="1919.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (52 samples, 0.31%)</title><rect x="38.8" y="1973" width="3.7" height="15.0" fill="rgb(242,182,10)" rx="2" ry="2" />
<text x="41.84" y="1983.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="49.4" y="1941" width="0.1" height="15.0" fill="rgb(234,168,20)" rx="2" ry="2" />
<text x="52.39" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="997" width="0.2" height="15.0" fill="rgb(206,18,37)" rx="2" ry="2" />
<text x="1048.82" y="1007.5" ></text>
</g>
<g >
<title>[.electron-wrapped] (14 samples, 0.08%)</title><rect x="1009.1" y="2037" width="1.0" height="15.0" fill="rgb(247,159,14)" rx="2" ry="2" />
<text x="1012.12" y="2047.5" ></text>
</g>
<g >
<title>__libc_read (4 samples, 0.02%)</title><rect x="35.0" y="2037" width="0.3" height="15.0" fill="rgb(225,12,32)" rx="2" ry="2" />
<text x="38.01" y="2047.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1012.6" y="1957" width="0.1" height="15.0" fill="rgb(211,96,31)" rx="2" ry="2" />
<text x="1015.59" y="1967.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (6,548 samples, 39.32%)</title><rect x="512.8" y="1989" width="463.9" height="15.0" fill="rgb(248,95,48)" rx="2" ry="2" />
<text x="515.82" y="1999.5" >syscall_exit_to_user_mode</text>
</g>
<g >
<title>__vdso_clock_gettime (112 samples, 0.67%)</title><rect x="1028.0" y="2021" width="7.9" height="15.0" fill="rgb(231,36,21)" rx="2" ry="2" />
<text x="1030.97" y="2031.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (5 samples, 0.03%)</title><rect x="45.1" y="1957" width="0.4" height="15.0" fill="rgb(238,70,15)" rx="2" ry="2" />
<text x="48.14" y="1967.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (10 samples, 0.06%)</title><rect x="1168.2" y="1989" width="0.8" height="15.0" fill="rgb(221,150,11)" rx="2" ry="2" />
<text x="1171.25" y="1999.5" ></text>
</g>
<g >
<title>__setitimer (8 samples, 0.05%)</title><rect x="1062.7" y="2053" width="0.6" height="15.0" fill="rgb(221,173,28)" rx="2" ry="2" />
<text x="1065.68" y="2063.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1022.9" y="2005" width="0.1" height="15.0" fill="rgb(212,15,9)" rx="2" ry="2" />
<text x="1025.87" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="677" width="0.5" height="15.0" fill="rgb(252,154,49)" rx="2" ry="2" />
<text x="1061.57" y="687.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1169.0" y="2021" width="0.1" height="15.0" fill="rgb(214,128,23)" rx="2" ry="2" />
<text x="1171.96" y="2031.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="1067.1" y="1973" width="0.3" height="15.0" fill="rgb(235,175,16)" rx="2" ry="2" />
<text x="1070.15" y="1983.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (10 samples, 0.06%)</title><rect x="1169.9" y="1989" width="0.8" height="15.0" fill="rgb(224,37,52)" rx="2" ry="2" />
<text x="1172.95" y="1999.5" ></text>
</g>
<g >
<title>clock_gettime@GLIBC_2.2.5 (2 samples, 0.01%)</title><rect x="1047.0" y="2005" width="0.1" height="15.0" fill="rgb(251,70,41)" rx="2" ry="2" />
<text x="1049.95" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1557" width="0.2" height="15.0" fill="rgb(223,163,6)" rx="2" ry="2" />
<text x="1048.82" y="1567.5" ></text>
</g>
<g >
<title>__libc_start_main (40 samples, 0.24%)</title><rect x="46.7" y="2037" width="2.8" height="15.0" fill="rgb(253,168,49)" rx="2" ry="2" />
<text x="49.70" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1445" width="0.2" height="15.0" fill="rgb(233,114,43)" rx="2" ry="2" />
<text x="1048.82" y="1455.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (35 samples, 0.21%)</title><rect x="977.0" y="1925" width="2.5" height="15.0" fill="rgb(207,181,50)" rx="2" ry="2" />
<text x="980.03" y="1935.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="35.2" y="2005" width="0.1" height="15.0" fill="rgb(215,214,16)" rx="2" ry="2" />
<text x="38.15" y="2015.5" ></text>
</g>
<g >
<title>do_syscall_64 (20 samples, 0.12%)</title><rect x="1038.6" y="1989" width="1.4" height="15.0" fill="rgb(250,1,35)" rx="2" ry="2" />
<text x="1041.59" y="1999.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (25 samples, 0.15%)</title><rect x="37.1" y="1957" width="1.7" height="15.0" fill="rgb(229,178,34)" rx="2" ry="2" />
<text x="40.06" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="325" width="0.5" height="15.0" fill="rgb(250,41,17)" rx="2" ry="2" />
<text x="1061.57" y="335.5" ></text>
</g>
<g >
<title>_dl_map_object (206 samples, 1.24%)</title><rect x="1167.5" y="2053" width="14.6" height="15.0" fill="rgb(248,131,29)" rx="2" ry="2" />
<text x="1170.54" y="2063.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="1024.7" y="2021" width="0.3" height="15.0" fill="rgb(243,119,9)" rx="2" ry="2" />
<text x="1027.71" y="2031.5" ></text>
</g>
<g >
<title>clock_gettime@GLIBC_2.2.5 (10 samples, 0.06%)</title><rect x="45.1" y="2037" width="0.7" height="15.0" fill="rgb(216,101,6)" rx="2" ry="2" />
<text x="48.14" y="2047.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="10.2" y="1365" width="0.2" height="15.0" fill="rgb(233,103,0)" rx="2" ry="2" />
<text x="13.21" y="1375.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (6 samples, 0.04%)</title><rect x="44.7" y="1989" width="0.4" height="15.0" fill="rgb(251,9,26)" rx="2" ry="2" />
<text x="47.72" y="1999.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (84 samples, 0.50%)</title><rect x="1077.6" y="2021" width="6.0" height="15.0" fill="rgb(247,27,42)" rx="2" ry="2" />
<text x="1080.63" y="2031.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1021.4" y="2021" width="0.2" height="15.0" fill="rgb(247,88,28)" rx="2" ry="2" />
<text x="1024.45" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1733" width="0.5" height="15.0" fill="rgb(240,2,2)" rx="2" ry="2" />
<text x="1061.57" y="1743.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (46 samples, 0.28%)</title><rect x="1109.9" y="2005" width="3.2" height="15.0" fill="rgb(205,60,43)" rx="2" ry="2" />
<text x="1112.87" y="2015.5" ></text>
</g>
<g >
<title>__open64_nocancel (10 samples, 0.06%)</title><rect x="1092.5" y="2037" width="0.7" height="15.0" fill="rgb(229,53,1)" rx="2" ry="2" />
<text x="1095.51" y="2047.5" ></text>
</g>
<g >
<title>do_syscall_64 (5 samples, 0.03%)</title><rect x="991.3" y="1973" width="0.3" height="15.0" fill="rgb(231,111,35)" rx="2" ry="2" />
<text x="994.27" y="1983.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (8 samples, 0.05%)</title><rect x="1076.4" y="1989" width="0.5" height="15.0" fill="rgb(252,96,32)" rx="2" ry="2" />
<text x="1079.36" y="1999.5" ></text>
</g>
<g >
<title>__mmap (20 samples, 0.12%)</title><rect x="1146.0" y="2053" width="1.4" height="15.0" fill="rgb(220,194,20)" rx="2" ry="2" />
<text x="1149.00" y="2063.5" ></text>
</g>
<g >
<title>_xstat (44 samples, 0.26%)</title><rect x="1170.7" y="2037" width="3.1" height="15.0" fill="rgb(233,205,46)" rx="2" ry="2" />
<text x="1173.66" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1253" width="0.2" height="15.0" fill="rgb(215,95,10)" rx="2" ry="2" />
<text x="1048.82" y="1263.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1066.6" y="2021" width="0.1" height="15.0" fill="rgb(214,119,41)" rx="2" ry="2" />
<text x="1069.58" y="2031.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (2 samples, 0.01%)</title><rect x="1055.7" y="2005" width="0.2" height="15.0" fill="rgb(254,203,28)" rx="2" ry="2" />
<text x="1058.74" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="33.7" y="1909" width="0.2" height="15.0" fill="rgb(250,29,12)" rx="2" ry="2" />
<text x="36.73" y="1919.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (101 samples, 0.61%)</title><rect x="1048.5" y="2005" width="7.2" height="15.0" fill="rgb(245,213,16)" rx="2" ry="2" />
<text x="1051.51" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="581" width="0.2" height="15.0" fill="rgb(252,162,27)" rx="2" ry="2" />
<text x="1048.82" y="591.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (4 samples, 0.02%)</title><rect x="1022.2" y="2021" width="0.2" height="15.0" fill="rgb(231,0,20)" rx="2" ry="2" />
<text x="1025.16" y="2031.5" ></text>
</g>
<g >
<title>__close (2 samples, 0.01%)</title><rect x="46.7" y="1973" width="0.1" height="15.0" fill="rgb(236,141,33)" rx="2" ry="2" />
<text x="49.70" y="1983.5" ></text>
</g>
<g >
<title>pt_TimedWait (2 samples, 0.01%)</title><rect x="1014.5" y="2037" width="0.1" height="15.0" fill="rgb(254,56,35)" rx="2" ry="2" />
<text x="1017.51" y="2047.5" ></text>
</g>
<g >
<title>__getpid (4 samples, 0.02%)</title><rect x="1017.1" y="2037" width="0.2" height="15.0" fill="rgb(233,49,24)" rx="2" ry="2" />
<text x="1020.06" y="2047.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (6 samples, 0.04%)</title><rect x="1145.4" y="2005" width="0.5" height="15.0" fill="rgb(239,143,34)" rx="2" ry="2" />
<text x="1148.44" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (17 samples, 0.10%)</title><rect x="1093.6" y="1973" width="1.2" height="15.0" fill="rgb(248,17,22)" rx="2" ry="2" />
<text x="1096.64" y="1983.5" ></text>
</g>
<g >
<title>__setitimer (4 samples, 0.02%)</title><rect x="1058.9" y="101" width="0.2" height="15.0" fill="rgb(246,160,39)" rx="2" ry="2" />
<text x="1061.86" y="111.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1058.1" y="1989" width="0.1" height="15.0" fill="rgb(249,115,37)" rx="2" ry="2" />
<text x="1061.08" y="1999.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (5 samples, 0.03%)</title><rect x="46.2" y="2021" width="0.4" height="15.0" fill="rgb(214,205,15)" rx="2" ry="2" />
<text x="49.20" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="373" width="0.2" height="15.0" fill="rgb(232,95,31)" rx="2" ry="2" />
<text x="1048.82" y="383.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1153.5" y="2037" width="0.3" height="15.0" fill="rgb(235,83,26)" rx="2" ry="2" />
<text x="1156.51" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="453" width="0.5" height="15.0" fill="rgb(220,139,43)" rx="2" ry="2" />
<text x="1061.57" y="463.5" ></text>
</g>
<g >
<title>do_syscall_64 (94 samples, 0.56%)</title><rect x="1154.2" y="2021" width="6.7" height="15.0" fill="rgb(251,208,19)" rx="2" ry="2" />
<text x="1157.22" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (22 samples, 0.13%)</title><rect x="1058.6" y="2037" width="1.5" height="15.0" fill="rgb(229,39,49)" rx="2" ry="2" />
<text x="1061.57" y="2047.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1024.1" y="1989" width="0.2" height="15.0" fill="rgb(224,24,24)" rx="2" ry="2" />
<text x="1027.14" y="1999.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (3 samples, 0.02%)</title><rect x="1016.1" y="2005" width="0.2" height="15.0" fill="rgb(231,221,26)" rx="2" ry="2" />
<text x="1019.06" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (5 samples, 0.03%)</title><rect x="1061.4" y="1973" width="0.4" height="15.0" fill="rgb(241,74,26)" rx="2" ry="2" />
<text x="1064.41" y="1983.5" ></text>
</g>
<g >
<title>do_syscall_64 (8 samples, 0.05%)</title><rect x="1042.7" y="2021" width="0.6" height="15.0" fill="rgb(224,222,51)" rx="2" ry="2" />
<text x="1045.70" y="2031.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1011.8" y="2005" width="0.2" height="15.0" fill="rgb(215,227,27)" rx="2" ry="2" />
<text x="1014.81" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="10.0" y="1365" width="0.2" height="15.0" fill="rgb(208,20,47)" rx="2" ry="2" />
<text x="13.00" y="1375.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (7 samples, 0.04%)</title><rect x="1059.6" y="1989" width="0.5" height="15.0" fill="rgb(228,192,13)" rx="2" ry="2" />
<text x="1062.64" y="1999.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (12 samples, 0.07%)</title><rect x="1047.1" y="2021" width="0.8" height="15.0" fill="rgb(226,122,22)" rx="2" ry="2" />
<text x="1050.10" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="389" width="0.5" height="15.0" fill="rgb(228,42,29)" rx="2" ry="2" />
<text x="1061.57" y="399.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="597" width="0.5" height="15.0" fill="rgb(231,215,30)" rx="2" ry="2" />
<text x="1061.57" y="607.5" ></text>
</g>
<g >
<title>clock_gettime@GLIBC_2.2.5 (2 samples, 0.01%)</title><rect x="1048.4" y="2021" width="0.1" height="15.0" fill="rgb(211,179,5)" rx="2" ry="2" />
<text x="1051.37" y="2031.5" ></text>
</g>
<g >
<title>[.electron-wrapped] (26 samples, 0.16%)</title><rect x="10.0" y="1973" width="1.8" height="15.0" fill="rgb(213,94,44)" rx="2" ry="2" />
<text x="13.00" y="1983.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (45 samples, 0.27%)</title><rect x="1177.7" y="1989" width="3.2" height="15.0" fill="rgb(233,64,40)" rx="2" ry="2" />
<text x="1180.67" y="1999.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="1016.1" y="1973" width="0.2" height="15.0" fill="rgb(252,56,30)" rx="2" ry="2" />
<text x="1019.06" y="1983.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (124 samples, 0.74%)</title><rect x="1083.6" y="2021" width="8.8" height="15.0" fill="rgb(226,69,41)" rx="2" ry="2" />
<text x="1086.58" y="2031.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (10 samples, 0.06%)</title><rect x="1167.5" y="1973" width="0.7" height="15.0" fill="rgb(206,222,52)" rx="2" ry="2" />
<text x="1170.54" y="1983.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (10 samples, 0.06%)</title><rect x="1169.2" y="1989" width="0.7" height="15.0" fill="rgb(246,176,40)" rx="2" ry="2" />
<text x="1172.24" y="1999.5" ></text>
</g>
<g >
<title>__libc_lseek64 (84 samples, 0.50%)</title><rect x="1077.6" y="2037" width="6.0" height="15.0" fill="rgb(253,160,32)" rx="2" ry="2" />
<text x="1080.63" y="2047.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (35 samples, 0.21%)</title><rect x="977.0" y="1909" width="2.5" height="15.0" fill="rgb(232,196,11)" rx="2" ry="2" />
<text x="980.03" y="1919.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1007.0" y="1973" width="0.1" height="15.0" fill="rgb(223,164,0)" rx="2" ry="2" />
<text x="1010.00" y="1983.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (3 samples, 0.02%)</title><rect x="33.7" y="1957" width="0.2" height="15.0" fill="rgb(231,70,40)" rx="2" ry="2" />
<text x="36.73" y="1967.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (20 samples, 0.12%)</title><rect x="1065.0" y="2021" width="1.4" height="15.0" fill="rgb(209,20,35)" rx="2" ry="2" />
<text x="1068.02" y="2031.5" ></text>
</g>
<g >
<title>clock_gettime@GLIBC_2.2.5 (290 samples, 1.74%)</title><rect x="11.8" y="2037" width="20.6" height="15.0" fill="rgb(237,61,24)" rx="2" ry="2" />
<text x="14.84" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1669" width="0.2" height="15.0" fill="rgb(218,124,31)" rx="2" ry="2" />
<text x="1048.82" y="1679.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="990.8" y="1941" width="0.3" height="15.0" fill="rgb(208,216,38)" rx="2" ry="2" />
<text x="993.84" y="1951.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.05%)</title><rect x="1062.7" y="2037" width="0.6" height="15.0" fill="rgb(235,108,11)" rx="2" ry="2" />
<text x="1065.68" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="885" width="0.5" height="15.0" fill="rgb(207,43,46)" rx="2" ry="2" />
<text x="1061.57" y="895.5" ></text>
</g>
<g >
<title>Compositor (274 samples, 1.65%)</title><rect x="990.8" y="2069" width="19.5" height="15.0" fill="rgb(226,21,27)" rx="2" ry="2" />
<text x="993.84" y="2079.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.05%)</title><rect x="32.4" y="2021" width="0.6" height="15.0" fill="rgb(237,220,51)" rx="2" ry="2" />
<text x="35.39" y="2031.5" ></text>
</g>
<g >
<title>pthread_cond_wait@@GLIBC_2.3.2 (2 samples, 0.01%)</title><rect x="1014.1" y="2053" width="0.1" height="15.0" fill="rgb(244,173,47)" rx="2" ry="2" />
<text x="1017.08" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1189" width="0.5" height="15.0" fill="rgb(233,138,50)" rx="2" ry="2" />
<text x="1061.57" y="1199.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (2 samples, 0.01%)</title><rect x="1045.1" y="1957" width="0.2" height="15.0" fill="rgb(218,222,33)" rx="2" ry="2" />
<text x="1048.11" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1333" width="0.5" height="15.0" fill="rgb(242,196,50)" rx="2" ry="2" />
<text x="1061.57" y="1343.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="36.9" y="1957" width="0.2" height="15.0" fill="rgb(236,47,8)" rx="2" ry="2" />
<text x="39.85" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1541" width="0.5" height="15.0" fill="rgb(251,136,50)" rx="2" ry="2" />
<text x="1061.57" y="1551.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1017.3" y="1973" width="0.3" height="15.0" fill="rgb(231,26,42)" rx="2" ry="2" />
<text x="1020.34" y="1983.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (2 samples, 0.01%)</title><rect x="34.1" y="1989" width="0.1" height="15.0" fill="rgb(214,110,5)" rx="2" ry="2" />
<text x="37.09" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="693" width="0.2" height="15.0" fill="rgb(213,218,11)" rx="2" ry="2" />
<text x="1048.82" y="703.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.04%)</title><rect x="990.8" y="1989" width="0.5" height="15.0" fill="rgb(231,155,30)" rx="2" ry="2" />
<text x="993.84" y="1999.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.05%)</title><rect x="11.3" y="1877" width="0.5" height="15.0" fill="rgb(246,164,34)" rx="2" ry="2" />
<text x="14.28" y="1887.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1021.2" y="2021" width="0.1" height="15.0" fill="rgb(250,175,45)" rx="2" ry="2" />
<text x="1024.17" y="2031.5" ></text>
</g>
<g >
<title>do_syscall_64 (22 samples, 0.13%)</title><rect x="1170.7" y="2005" width="1.5" height="15.0" fill="rgb(207,216,42)" rx="2" ry="2" />
<text x="1173.66" y="2015.5" ></text>
</g>
<g >
<title>.firefox-wrappe (144 samples, 0.86%)</title><rect x="33.5" y="2069" width="10.2" height="15.0" fill="rgb(215,101,30)" rx="2" ry="2" />
<text x="36.52" y="2079.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="501" width="0.2" height="15.0" fill="rgb(209,206,23)" rx="2" ry="2" />
<text x="1048.82" y="511.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1014.2" y="1925" width="0.2" height="15.0" fill="rgb(232,37,30)" rx="2" ry="2" />
<text x="1017.22" y="1935.5" ></text>
</g>
<g >
<title>_Py_wrealpath (4 samples, 0.02%)</title><rect x="1064.7" y="2037" width="0.3" height="15.0" fill="rgb(208,71,47)" rx="2" ry="2" />
<text x="1067.74" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1013" width="0.5" height="15.0" fill="rgb(248,103,12)" rx="2" ry="2" />
<text x="1061.57" y="1023.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1011.5" y="1989" width="0.1" height="15.0" fill="rgb(211,220,25)" rx="2" ry="2" />
<text x="1014.46" y="1999.5" ></text>
</g>
<g >
<title>__setitimer (4 samples, 0.02%)</title><rect x="1058.6" y="85" width="0.3" height="15.0" fill="rgb(214,169,11)" rx="2" ry="2" />
<text x="1061.57" y="95.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="1022.2" y="1989" width="0.2" height="15.0" fill="rgb(227,140,31)" rx="2" ry="2" />
<text x="1025.16" y="1999.5" ></text>
</g>
<g >
<title>__GI___ioctl (10 samples, 0.06%)</title><rect x="1016.3" y="2037" width="0.8" height="15.0" fill="rgb(254,129,8)" rx="2" ry="2" />
<text x="1019.35" y="2047.5" ></text>
</g>
<g >
<title>__pthread_initialize_minimal_internal (6 samples, 0.04%)</title><rect x="1153.8" y="2053" width="0.4" height="15.0" fill="rgb(252,18,23)" rx="2" ry="2" />
<text x="1156.80" y="2063.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1045.5" y="1957" width="0.2" height="15.0" fill="rgb(251,139,30)" rx="2" ry="2" />
<text x="1048.54" y="1967.5" ></text>
</g>
<g >
<title>do_syscall_64 (50 samples, 0.30%)</title><rect x="1068.1" y="2005" width="3.6" height="15.0" fill="rgb(213,142,36)" rx="2" ry="2" />
<text x="1071.14" y="2015.5" ></text>
</g>
<g >
<title>[.electron-wrapped] (18 samples, 0.11%)</title><rect x="10.0" y="1861" width="1.3" height="15.0" fill="rgb(221,72,5)" rx="2" ry="2" />
<text x="13.00" y="1871.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1013.5" y="1989" width="0.2" height="15.0" fill="rgb(232,224,52)" rx="2" ry="2" />
<text x="1016.51" y="1999.5" ></text>
</g>
<g >
<title>X_ (66 samples, 0.40%)</title><rect x="1058.6" y="2069" width="4.7" height="15.0" fill="rgb(213,70,3)" rx="2" ry="2" />
<text x="1061.57" y="2079.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1182.7" y="2021" width="0.2" height="15.0" fill="rgb(251,205,28)" rx="2" ry="2" />
<text x="1185.70" y="2031.5" ></text>
</g>
<g >
<title>__close_nocancel (16 samples, 0.10%)</title><rect x="1075.2" y="2037" width="1.2" height="15.0" fill="rgb(252,192,39)" rx="2" ry="2" />
<text x="1078.22" y="2047.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1064.7" y="1989" width="0.2" height="15.0" fill="rgb(235,177,15)" rx="2" ry="2" />
<text x="1067.74" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="933" width="0.2" height="15.0" fill="rgb(225,22,36)" rx="2" ry="2" />
<text x="1048.82" y="943.5" ></text>
</g>
<g >
<title>mmap64 (94 samples, 0.56%)</title><rect x="1182.9" y="2053" width="6.7" height="15.0" fill="rgb(252,138,5)" rx="2" ry="2" />
<text x="1185.92" y="2063.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="11.1" y="1733" width="0.2" height="15.0" fill="rgb(212,57,36)" rx="2" ry="2" />
<text x="14.13" y="1743.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="469" width="0.2" height="15.0" fill="rgb(213,34,25)" rx="2" ry="2" />
<text x="1048.82" y="479.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="1067.4" y="1989" width="0.3" height="15.0" fill="rgb(234,71,17)" rx="2" ry="2" />
<text x="1070.43" y="1999.5" ></text>
</g>
<g >
<title>pthread_cond_broadcast@@GLIBC_2.3.2 (4 samples, 0.02%)</title><rect x="990.6" y="2037" width="0.2" height="15.0" fill="rgb(251,77,0)" rx="2" ry="2" />
<text x="993.56" y="2047.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.02%)</title><rect x="33.5" y="2005" width="0.2" height="15.0" fill="rgb(241,117,23)" rx="2" ry="2" />
<text x="36.52" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="1009.5" y="1893" width="0.3" height="15.0" fill="rgb(247,37,6)" rx="2" ry="2" />
<text x="1012.55" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="437" width="0.2" height="15.0" fill="rgb(235,105,50)" rx="2" ry="2" />
<text x="1048.82" y="447.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="1009.1" y="1909" width="0.2" height="15.0" fill="rgb(235,159,32)" rx="2" ry="2" />
<text x="1012.12" y="1919.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (27 samples, 0.16%)</title><rect x="1048.5" y="1973" width="1.9" height="15.0" fill="rgb(225,198,51)" rx="2" ry="2" />
<text x="1051.51" y="1983.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="36.4" y="2021" width="0.3" height="15.0" fill="rgb(205,174,23)" rx="2" ry="2" />
<text x="39.43" y="2031.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (2 samples, 0.01%)</title><rect x="1048.4" y="2005" width="0.1" height="15.0" fill="rgb(242,31,20)" rx="2" ry="2" />
<text x="1051.37" y="2015.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="43.9" y="1989" width="0.1" height="15.0" fill="rgb(238,115,24)" rx="2" ry="2" />
<text x="46.87" y="1999.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (17 samples, 0.10%)</title><rect x="1094.8" y="2005" width="1.3" height="15.0" fill="rgb(205,18,31)" rx="2" ry="2" />
<text x="1097.85" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="1024.4" y="1989" width="0.3" height="15.0" fill="rgb(235,112,1)" rx="2" ry="2" />
<text x="1027.42" y="1999.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (56 samples, 0.34%)</title><rect x="1028.0" y="1973" width="3.9" height="15.0" fill="rgb(206,51,13)" rx="2" ry="2" />
<text x="1030.97" y="1983.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (4 samples, 0.02%)</title><rect x="1025.0" y="2021" width="0.3" height="15.0" fill="rgb(223,0,10)" rx="2" ry="2" />
<text x="1027.99" y="2031.5" ></text>
</g>
<g >
<title>clock_gettime@GLIBC_2.2.5 (2 samples, 0.01%)</title><rect x="34.1" y="2005" width="0.1" height="15.0" fill="rgb(229,29,3)" rx="2" ry="2" />
<text x="37.09" y="2015.5" ></text>
</g>
<g >
<title>do_syscall_64 (8 samples, 0.05%)</title><rect x="47.9" y="1925" width="0.6" height="15.0" fill="rgb(222,169,43)" rx="2" ry="2" />
<text x="50.90" y="1935.5" ></text>
</g>
<g >
<title>do_syscall_64 (16 samples, 0.10%)</title><rect x="1025.7" y="2005" width="1.1" height="15.0" fill="rgb(219,157,47)" rx="2" ry="2" />
<text x="1028.70" y="2015.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="1009.8" y="1909" width="0.3" height="15.0" fill="rgb(210,120,34)" rx="2" ry="2" />
<text x="1012.83" y="1919.5" ></text>
</g>
<g >
<title>[.electron-wrapped] (26 samples, 0.16%)</title><rect x="10.0" y="1941" width="1.8" height="15.0" fill="rgb(229,206,2)" rx="2" ry="2" />
<text x="13.00" y="1951.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1021.0" y="2021" width="0.2" height="15.0" fill="rgb(205,0,46)" rx="2" ry="2" />
<text x="1024.02" y="2031.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.02%)</title><rect x="36.9" y="1989" width="0.2" height="15.0" fill="rgb(210,223,17)" rx="2" ry="2" />
<text x="39.85" y="1999.5" ></text>
</g>
<g >
<title>[.electron-wrapped] (6 samples, 0.04%)</title><rect x="10.0" y="1653" width="0.4" height="15.0" fill="rgb(215,42,28)" rx="2" ry="2" />
<text x="13.00" y="1663.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (84 samples, 0.50%)</title><rect x="1133.1" y="2005" width="6.0" height="15.0" fill="rgb(240,35,43)" rx="2" ry="2" />
<text x="1136.11" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1733" width="0.2" height="15.0" fill="rgb(225,202,50)" rx="2" ry="2" />
<text x="1048.82" y="1743.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (10 samples, 0.06%)</title><rect x="1146.0" y="1989" width="0.7" height="15.0" fill="rgb(241,139,19)" rx="2" ry="2" />
<text x="1149.00" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (125 samples, 0.75%)</title><rect x="33.7" y="2053" width="8.9" height="15.0" fill="rgb(230,215,17)" rx="2" ry="2" />
<text x="36.73" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="181" width="0.5" height="15.0" fill="rgb(254,65,51)" rx="2" ry="2" />
<text x="1061.57" y="191.5" ></text>
</g>
<g >
<title>__GI___libc_open (6 samples, 0.04%)</title><rect x="1105.1" y="2053" width="0.4" height="15.0" fill="rgb(248,9,50)" rx="2" ry="2" />
<text x="1108.05" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1253" width="0.5" height="15.0" fill="rgb(234,79,11)" rx="2" ry="2" />
<text x="1061.57" y="1263.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1104.0" y="1973" width="0.2" height="15.0" fill="rgb(252,171,40)" rx="2" ry="2" />
<text x="1106.99" y="1983.5" ></text>
</g>
<g >
<title>read (6 samples, 0.04%)</title><rect x="1104.2" y="2037" width="0.4" height="15.0" fill="rgb(228,62,35)" rx="2" ry="2" />
<text x="1107.20" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="581" width="0.5" height="15.0" fill="rgb(249,157,53)" rx="2" ry="2" />
<text x="1061.57" y="591.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (8 samples, 0.05%)</title><rect x="1060.8" y="1989" width="0.6" height="15.0" fill="rgb(220,129,5)" rx="2" ry="2" />
<text x="1063.84" y="1999.5" ></text>
</g>
<g >
<title>do_syscall_64 (90 samples, 0.54%)</title><rect x="1113.6" y="2021" width="6.3" height="15.0" fill="rgb(234,39,24)" rx="2" ry="2" />
<text x="1116.55" y="2031.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.04%)</title><rect x="1104.6" y="2037" width="0.5" height="15.0" fill="rgb(217,208,35)" rx="2" ry="2" />
<text x="1107.63" y="2047.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (9 samples, 0.05%)</title><rect x="1181.5" y="1989" width="0.6" height="15.0" fill="rgb(242,153,36)" rx="2" ry="2" />
<text x="1184.50" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="997" width="0.5" height="15.0" fill="rgb(224,70,48)" rx="2" ry="2" />
<text x="1061.57" y="1007.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="990.6" y="1973" width="0.1" height="15.0" fill="rgb(210,176,45)" rx="2" ry="2" />
<text x="993.56" y="1983.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (20 samples, 0.12%)</title><rect x="1038.6" y="1957" width="1.4" height="15.0" fill="rgb(215,4,16)" rx="2" ry="2" />
<text x="1041.59" y="1967.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1182.7" y="2005" width="0.2" height="15.0" fill="rgb(209,104,45)" rx="2" ry="2" />
<text x="1185.70" y="2015.5" ></text>
</g>
<g >
<title>__poll (14 samples, 0.08%)</title><rect x="42.6" y="2053" width="1.0" height="15.0" fill="rgb(219,180,13)" rx="2" ry="2" />
<text x="45.59" y="2063.5" ></text>
</g>
<g >
<title>__GI___close_nocancel (20 samples, 0.12%)</title><rect x="1167.5" y="2037" width="1.5" height="15.0" fill="rgb(250,128,41)" rx="2" ry="2" />
<text x="1170.54" y="2047.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (8 samples, 0.05%)</title><rect x="1042.7" y="1989" width="0.6" height="15.0" fill="rgb(226,105,21)" rx="2" ry="2" />
<text x="1045.70" y="1999.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1153.7" y="2005" width="0.1" height="15.0" fill="rgb(216,42,31)" rx="2" ry="2" />
<text x="1156.65" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="1058.9" y="53" width="0.2" height="15.0" fill="rgb(226,66,22)" rx="2" ry="2" />
<text x="1061.86" y="63.5" ></text>
</g>
<g >
<title>__libc_recvmsg (2 samples, 0.01%)</title><rect x="1010.4" y="2037" width="0.1" height="15.0" fill="rgb(213,178,36)" rx="2" ry="2" />
<text x="1013.40" y="2047.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="1007.3" y="2021" width="0.2" height="15.0" fill="rgb(225,29,22)" rx="2" ry="2" />
<text x="1010.28" y="2031.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1021.4" y="2037" width="0.3" height="15.0" fill="rgb(219,155,2)" rx="2" ry="2" />
<text x="1024.45" y="2047.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1093.4" y="2021" width="0.2" height="15.0" fill="rgb(237,125,31)" rx="2" ry="2" />
<text x="1096.36" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (24 samples, 0.14%)</title><rect x="1022.4" y="2053" width="1.7" height="15.0" fill="rgb(254,18,37)" rx="2" ry="2" />
<text x="1025.44" y="2063.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (2 samples, 0.01%)</title><rect x="1047.0" y="1989" width="0.1" height="15.0" fill="rgb(247,91,19)" rx="2" ry="2" />
<text x="1049.95" y="1999.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (8 samples, 0.05%)</title><rect x="1009.5" y="1957" width="0.6" height="15.0" fill="rgb(242,180,27)" rx="2" ry="2" />
<text x="1012.55" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="677" width="0.2" height="15.0" fill="rgb(210,218,27)" rx="2" ry="2" />
<text x="1048.82" y="687.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1014.2" y="1957" width="0.2" height="15.0" fill="rgb(211,178,23)" rx="2" ry="2" />
<text x="1017.22" y="1967.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.04%)</title><rect x="1009.1" y="1925" width="0.4" height="15.0" fill="rgb(206,165,36)" rx="2" ry="2" />
<text x="1012.12" y="1935.5" ></text>
</g>
<g >
<title>__libc_recvmsg (12 samples, 0.07%)</title><rect x="44.3" y="2037" width="0.8" height="15.0" fill="rgb(243,102,17)" rx="2" ry="2" />
<text x="47.29" y="2047.5" ></text>
</g>
<g >
<title>GLXVsyncThread (26 samples, 0.16%)</title><rect x="1010.3" y="2069" width="1.8" height="15.0" fill="rgb(209,185,8)" rx="2" ry="2" />
<text x="1013.25" y="2079.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1445" width="0.5" height="15.0" fill="rgb(238,147,42)" rx="2" ry="2" />
<text x="1061.57" y="1455.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.05%)</title><rect x="1063.3" y="2005" width="0.5" height="15.0" fill="rgb(214,104,39)" rx="2" ry="2" />
<text x="1066.25" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1557" width="0.5" height="15.0" fill="rgb(243,152,46)" rx="2" ry="2" />
<text x="1061.57" y="1567.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="357" width="0.5" height="15.0" fill="rgb(254,131,6)" rx="2" ry="2" />
<text x="1061.57" y="367.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1015.4" y="1989" width="0.1" height="15.0" fill="rgb(213,72,44)" rx="2" ry="2" />
<text x="1018.36" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (6 samples, 0.04%)</title><rect x="1037.5" y="2005" width="0.5" height="15.0" fill="rgb(230,2,12)" rx="2" ry="2" />
<text x="1040.53" y="2015.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (16 samples, 0.10%)</title><rect x="1060.3" y="2021" width="1.1" height="15.0" fill="rgb(241,117,12)" rx="2" ry="2" />
<text x="1063.27" y="2031.5" ></text>
</g>
<g >
<title>clock_gettime@GLIBC_2.2.5 (3 samples, 0.02%)</title><rect x="33.5" y="2037" width="0.2" height="15.0" fill="rgb(242,220,7)" rx="2" ry="2" />
<text x="36.52" y="2047.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (9 samples, 0.05%)</title><rect x="1038.0" y="1957" width="0.6" height="15.0" fill="rgb(234,184,35)" rx="2" ry="2" />
<text x="1040.96" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1317" width="0.5" height="15.0" fill="rgb(241,222,53)" rx="2" ry="2" />
<text x="1061.57" y="1327.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (15 samples, 0.09%)</title><rect x="1057.0" y="2005" width="1.1" height="15.0" fill="rgb(237,117,30)" rx="2" ry="2" />
<text x="1060.02" y="2015.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (6 samples, 0.04%)</title><rect x="10.0" y="1413" width="0.4" height="15.0" fill="rgb(231,97,34)" rx="2" ry="2" />
<text x="13.00" y="1423.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="43.7" y="1957" width="0.2" height="15.0" fill="rgb(223,132,0)" rx="2" ry="2" />
<text x="46.72" y="1967.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (290 samples, 1.74%)</title><rect x="11.8" y="2021" width="20.6" height="15.0" fill="rgb(253,164,24)" rx="2" ry="2" />
<text x="14.84" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1685" width="0.5" height="15.0" fill="rgb(223,181,25)" rx="2" ry="2" />
<text x="1061.57" y="1695.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="869" width="0.2" height="15.0" fill="rgb(244,78,50)" rx="2" ry="2" />
<text x="1048.82" y="879.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="805" width="0.2" height="15.0" fill="rgb(216,107,43)" rx="2" ry="2" />
<text x="1048.82" y="815.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1058.6" y="69" width="0.3" height="15.0" fill="rgb(228,183,6)" rx="2" ry="2" />
<text x="1061.57" y="79.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1205" width="0.2" height="15.0" fill="rgb(214,164,38)" rx="2" ry="2" />
<text x="1048.82" y="1215.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.02%)</title><rect x="1023.9" y="1989" width="0.2" height="15.0" fill="rgb(251,196,24)" rx="2" ry="2" />
<text x="1026.93" y="1999.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1012.2" y="1989" width="0.1" height="15.0" fill="rgb(233,60,22)" rx="2" ry="2" />
<text x="1015.17" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="2005" width="0.5" height="15.0" fill="rgb(243,12,11)" rx="2" ry="2" />
<text x="1061.57" y="2015.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (7 samples, 0.04%)</title><rect x="43.1" y="2021" width="0.5" height="15.0" fill="rgb(246,98,31)" rx="2" ry="2" />
<text x="46.09" y="2031.5" ></text>
</g>
<g >
<title>do_syscall_64 (10 samples, 0.06%)</title><rect x="1044.0" y="1989" width="0.7" height="15.0" fill="rgb(251,223,40)" rx="2" ry="2" />
<text x="1046.98" y="1999.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1055.7" y="1989" width="0.2" height="15.0" fill="rgb(241,40,47)" rx="2" ry="2" />
<text x="1058.74" y="1999.5" ></text>
</g>
<g >
<title>.perf-wrapped (13,212 samples, 79.33%)</title><rect x="46.6" y="2069" width="936.0" height="15.0" fill="rgb(231,150,26)" rx="2" ry="2" />
<text x="49.56" y="2079.5" >.perf-wrapped</text>
</g>
<g >
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (8 samples, 0.05%)</title><rect x="1024.4" y="2053" width="0.6" height="15.0" fill="rgb(251,136,19)" rx="2" ry="2" />
<text x="1027.42" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1909" width="0.5" height="15.0" fill="rgb(212,103,13)" rx="2" ry="2" />
<text x="1061.57" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1125" width="0.5" height="15.0" fill="rgb(208,38,48)" rx="2" ry="2" />
<text x="1061.57" y="1135.5" ></text>
</g>
<g >
<title>[perf-109130.map] (6 samples, 0.04%)</title><rect x="10.0" y="1557" width="0.4" height="15.0" fill="rgb(254,194,32)" rx="2" ry="2" />
<text x="13.00" y="1567.5" ></text>
</g>
<g >
<title>[unknown] (13 samples, 0.08%)</title><rect x="34.1" y="2037" width="0.9" height="15.0" fill="rgb(236,29,4)" rx="2" ry="2" />
<text x="37.09" y="2047.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="1025.3" y="2005" width="0.2" height="15.0" fill="rgb(244,25,7)" rx="2" ry="2" />
<text x="1028.27" y="2015.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.04%)</title><rect x="1105.1" y="2037" width="0.4" height="15.0" fill="rgb(233,228,2)" rx="2" ry="2" />
<text x="1108.05" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (20 samples, 0.12%)</title><rect x="1045.7" y="2037" width="1.4" height="15.0" fill="rgb(219,209,47)" rx="2" ry="2" />
<text x="1048.68" y="2047.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="1067.1" y="1989" width="0.3" height="15.0" fill="rgb(223,202,54)" rx="2" ry="2" />
<text x="1070.15" y="1999.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (9 samples, 0.05%)</title><rect x="34.2" y="1989" width="0.7" height="15.0" fill="rgb(208,23,31)" rx="2" ry="2" />
<text x="37.23" y="1999.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1007.1" y="2005" width="0.2" height="15.0" fill="rgb(221,227,9)" rx="2" ry="2" />
<text x="1010.14" y="2015.5" ></text>
</g>
<g >
<title>pthread_cond_signal@@GLIBC_2.3.2 (4 samples, 0.02%)</title><rect x="1021.4" y="2053" width="0.3" height="15.0" fill="rgb(220,150,51)" rx="2" ry="2" />
<text x="1024.45" y="2063.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1064.9" y="1973" width="0.1" height="15.0" fill="rgb(207,35,32)" rx="2" ry="2" />
<text x="1067.88" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1461" width="0.2" height="15.0" fill="rgb(221,2,26)" rx="2" ry="2" />
<text x="1048.82" y="1471.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (6 samples, 0.04%)</title><rect x="1037.5" y="1973" width="0.5" height="15.0" fill="rgb(230,52,11)" rx="2" ry="2" />
<text x="1040.53" y="1983.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1022.9" y="1989" width="0.1" height="15.0" fill="rgb(248,209,34)" rx="2" ry="2" />
<text x="1025.87" y="1999.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1013.1" y="2021" width="0.1" height="15.0" fill="rgb(241,35,5)" rx="2" ry="2" />
<text x="1016.09" y="2031.5" ></text>
</g>
<g >
<title>do_syscall_64 (47 samples, 0.28%)</title><rect x="1126.4" y="2021" width="3.4" height="15.0" fill="rgb(238,159,38)" rx="2" ry="2" />
<text x="1129.45" y="2031.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (9 samples, 0.05%)</title><rect x="1007.7" y="2037" width="0.6" height="15.0" fill="rgb(221,12,49)" rx="2" ry="2" />
<text x="1010.70" y="2047.5" ></text>
</g>
<g >
<title>run_builtin (40 samples, 0.24%)</title><rect x="46.7" y="2005" width="2.8" height="15.0" fill="rgb(207,23,14)" rx="2" ry="2" />
<text x="49.70" y="2015.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.04%)</title><rect x="1037.5" y="1957" width="0.5" height="15.0" fill="rgb(221,140,1)" rx="2" ry="2" />
<text x="1040.53" y="1967.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1153.5" y="1989" width="0.2" height="15.0" fill="rgb(214,134,9)" rx="2" ry="2" />
<text x="1156.51" y="1999.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="33.9" y="1941" width="0.2" height="15.0" fill="rgb(226,103,2)" rx="2" ry="2" />
<text x="36.95" y="1951.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (52 samples, 0.31%)</title><rect x="38.8" y="1989" width="3.7" height="15.0" fill="rgb(230,134,53)" rx="2" ry="2" />
<text x="41.84" y="1999.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1182.5" y="1989" width="0.2" height="15.0" fill="rgb(222,40,10)" rx="2" ry="2" />
<text x="1185.49" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (3 samples, 0.02%)</title><rect x="1045.0" y="1989" width="0.3" height="15.0" fill="rgb(238,169,3)" rx="2" ry="2" />
<text x="1048.04" y="1999.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (6,539 samples, 39.26%)</title><rect x="49.5" y="1973" width="463.3" height="15.0" fill="rgb(225,35,32)" rx="2" ry="2" />
<text x="52.53" y="1983.5" >syscall_trace_enter.constprop.0</text>
</g>
<g >
<title>IPC_I/O_Parent (6 samples, 0.04%)</title><rect x="1013.1" y="2069" width="0.4" height="15.0" fill="rgb(234,168,14)" rx="2" ry="2" />
<text x="1016.09" y="2079.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (14 samples, 0.08%)</title><rect x="42.6" y="2037" width="1.0" height="15.0" fill="rgb(222,131,29)" rx="2" ry="2" />
<text x="45.59" y="2047.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (43 samples, 0.26%)</title><rect x="1147.4" y="2005" width="3.1" height="15.0" fill="rgb(235,195,8)" rx="2" ry="2" />
<text x="1150.42" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (6 samples, 0.04%)</title><rect x="982.6" y="1973" width="0.4" height="15.0" fill="rgb(238,92,35)" rx="2" ry="2" />
<text x="985.62" y="1983.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (90 samples, 0.54%)</title><rect x="1113.6" y="1989" width="6.3" height="15.0" fill="rgb(209,190,27)" rx="2" ry="2" />
<text x="1116.55" y="1999.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1058.1" y="1973" width="0.1" height="15.0" fill="rgb(220,219,24)" rx="2" ry="2" />
<text x="1061.08" y="1983.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1046.0" y="1973" width="0.2" height="15.0" fill="rgb(208,96,2)" rx="2" ry="2" />
<text x="1049.03" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="933" width="0.5" height="15.0" fill="rgb(217,179,37)" rx="2" ry="2" />
<text x="1061.57" y="943.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1013.7" y="2021" width="0.2" height="15.0" fill="rgb(244,131,2)" rx="2" ry="2" />
<text x="1016.73" y="2031.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (8 samples, 0.05%)</title><rect x="1105.5" y="2005" width="0.5" height="15.0" fill="rgb(212,69,31)" rx="2" ry="2" />
<text x="1108.48" y="2015.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="1064.1" y="1989" width="0.3" height="15.0" fill="rgb(216,67,4)" rx="2" ry="2" />
<text x="1067.10" y="1999.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="1062.7" y="2005" width="0.3" height="15.0" fill="rgb(249,136,10)" rx="2" ry="2" />
<text x="1065.68" y="2015.5" ></text>
</g>
<g >
<title>do_syscall_64 (62 samples, 0.37%)</title><rect x="1083.6" y="2005" width="4.4" height="15.0" fill="rgb(243,167,11)" rx="2" ry="2" />
<text x="1086.58" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="33.9" y="1909" width="0.2" height="15.0" fill="rgb(221,51,6)" rx="2" ry="2" />
<text x="36.95" y="1919.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1017.2" y="2005" width="0.1" height="15.0" fill="rgb(213,51,25)" rx="2" ry="2" />
<text x="1020.20" y="2015.5" ></text>
</g>
<g >
<title>access (3 samples, 0.02%)</title><rect x="1102.0" y="2021" width="0.2" height="15.0" fill="rgb(252,132,1)" rx="2" ry="2" />
<text x="1105.00" y="2031.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1045.5" y="1973" width="0.2" height="15.0" fill="rgb(217,121,24)" rx="2" ry="2" />
<text x="1048.54" y="1983.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (10 samples, 0.06%)</title><rect x="1168.2" y="2005" width="0.8" height="15.0" fill="rgb(208,78,17)" rx="2" ry="2" />
<text x="1171.25" y="2015.5" ></text>
</g>
<g >
<title>do_syscall_64 (9 samples, 0.05%)</title><rect x="34.2" y="1973" width="0.7" height="15.0" fill="rgb(236,192,4)" rx="2" ry="2" />
<text x="37.23" y="1983.5" ></text>
</g>
<g >
<title>clock_gettime@GLIBC_2.2.5 (2 samples, 0.01%)</title><rect x="1058.1" y="2037" width="0.1" height="15.0" fill="rgb(246,116,22)" rx="2" ry="2" />
<text x="1061.08" y="2047.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1012.3" y="2005" width="0.2" height="15.0" fill="rgb(244,178,31)" rx="2" ry="2" />
<text x="1015.31" y="2015.5" ></text>
</g>
<g >
<title>__GI___getegid (2 samples, 0.01%)</title><rect x="1066.4" y="2037" width="0.2" height="15.0" fill="rgb(244,50,9)" rx="2" ry="2" />
<text x="1069.44" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="693" width="0.5" height="15.0" fill="rgb(246,162,41)" rx="2" ry="2" />
<text x="1061.57" y="703.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (10 samples, 0.06%)</title><rect x="1044.0" y="1973" width="0.7" height="15.0" fill="rgb(229,158,12)" rx="2" ry="2" />
<text x="1046.98" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="501" width="0.5" height="15.0" fill="rgb(229,61,1)" rx="2" ry="2" />
<text x="1061.57" y="511.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5 samples, 0.03%)</title><rect x="47.6" y="1941" width="0.3" height="15.0" fill="rgb(248,29,39)" rx="2" ry="2" />
<text x="50.55" y="1951.5" ></text>
</g>
<g >
<title>__GI___sigaltstack (6 samples, 0.04%)</title><rect x="1067.7" y="2037" width="0.4" height="15.0" fill="rgb(209,99,52)" rx="2" ry="2" />
<text x="1070.71" y="2047.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (12 samples, 0.07%)</title><rect x="1023.1" y="1989" width="0.8" height="15.0" fill="rgb(231,93,54)" rx="2" ry="2" />
<text x="1026.08" y="1999.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (50 samples, 0.30%)</title><rect x="1071.7" y="2005" width="3.5" height="15.0" fill="rgb(234,186,35)" rx="2" ry="2" />
<text x="1074.68" y="2015.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1009.3" y="1893" width="0.2" height="15.0" fill="rgb(220,199,26)" rx="2" ry="2" />
<text x="1012.33" y="1903.5" ></text>
</g>
<g >
<title>__libc_read (4 samples, 0.02%)</title><rect x="44.0" y="2037" width="0.3" height="15.0" fill="rgb(229,193,45)" rx="2" ry="2" />
<text x="47.01" y="2047.5" ></text>
</g>
<g >
<title>clock_gettime@GLIBC_2.2.5 (39 samples, 0.23%)</title><rect x="1017.8" y="2037" width="2.8" height="15.0" fill="rgb(205,81,36)" rx="2" ry="2" />
<text x="1020.84" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1013" width="0.2" height="15.0" fill="rgb(254,171,46)" rx="2" ry="2" />
<text x="1048.82" y="1023.5" ></text>
</g>
<g >
<title>[unknown] (6 samples, 0.04%)</title><rect x="990.8" y="2021" width="0.5" height="15.0" fill="rgb(249,221,49)" rx="2" ry="2" />
<text x="993.84" y="2031.5" ></text>
</g>
<g >
<title>do_syscall_64 (42 samples, 0.25%)</title><rect x="1077.6" y="2005" width="3.0" height="15.0" fill="rgb(205,20,11)" rx="2" ry="2" />
<text x="1080.63" y="2015.5" ></text>
</g>
<g >
<title>run_builtin (70 samples, 0.42%)</title><rect x="977.0" y="2021" width="4.9" height="15.0" fill="rgb(219,179,25)" rx="2" ry="2" />
<text x="979.96" y="2031.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="43.7" y="1989" width="0.2" height="15.0" fill="rgb(217,227,9)" rx="2" ry="2" />
<text x="46.72" y="1999.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1014.4" y="1957" width="0.1" height="15.0" fill="rgb(250,74,27)" rx="2" ry="2" />
<text x="1017.36" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (14 samples, 0.08%)</title><rect x="1012.1" y="2053" width="1.0" height="15.0" fill="rgb(242,1,24)" rx="2" ry="2" />
<text x="1015.10" y="2063.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1009.1" y="1877" width="0.2" height="15.0" fill="rgb(229,171,37)" rx="2" ry="2" />
<text x="1012.12" y="1887.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1023.9" y="1941" width="0.2" height="15.0" fill="rgb(206,207,22)" rx="2" ry="2" />
<text x="1026.93" y="1951.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (30 samples, 0.18%)</title><rect x="1056.0" y="2037" width="2.1" height="15.0" fill="rgb(235,104,43)" rx="2" ry="2" />
<text x="1058.95" y="2047.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1047.0" y="1925" width="0.1" height="15.0" fill="rgb(246,153,9)" rx="2" ry="2" />
<text x="1049.95" y="1935.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="1105.1" y="2021" width="0.2" height="15.0" fill="rgb(242,119,30)" rx="2" ry="2" />
<text x="1108.05" y="2031.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1017.3" y="1989" width="0.3" height="15.0" fill="rgb(248,106,24)" rx="2" ry="2" />
<text x="1020.34" y="1999.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (5 samples, 0.03%)</title><rect x="1174.1" y="2005" width="0.4" height="15.0" fill="rgb(240,70,41)" rx="2" ry="2" />
<text x="1177.13" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (11 samples, 0.07%)</title><rect x="1102.2" y="1941" width="0.8" height="15.0" fill="rgb(215,138,13)" rx="2" ry="2" />
<text x="1105.22" y="1951.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (46 samples, 0.28%)</title><rect x="1109.9" y="2021" width="3.2" height="15.0" fill="rgb(218,155,13)" rx="2" ry="2" />
<text x="1112.87" y="2031.5" ></text>
</g>
<g >
<title>clock_gettime@GLIBC_2.2.5 (102 samples, 0.61%)</title><rect x="1048.5" y="2037" width="7.2" height="15.0" fill="rgb(227,52,40)" rx="2" ry="2" />
<text x="1051.51" y="2047.5" ></text>
</g>
<g >
<title>__GI___writev (2 samples, 0.01%)</title><rect x="1010.3" y="2021" width="0.1" height="15.0" fill="rgb(224,223,31)" rx="2" ry="2" />
<text x="1013.25" y="2031.5" ></text>
</g>
<g >
<title>__libc_write (6 samples, 0.04%)</title><rect x="1047.9" y="2037" width="0.5" height="15.0" fill="rgb(253,160,29)" rx="2" ry="2" />
<text x="1050.95" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="405" width="0.2" height="15.0" fill="rgb(221,217,28)" rx="2" ry="2" />
<text x="1048.82" y="415.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="885" width="0.2" height="15.0" fill="rgb(223,154,42)" rx="2" ry="2" />
<text x="1048.82" y="895.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="45.9" y="2005" width="0.3" height="15.0" fill="rgb(252,214,29)" rx="2" ry="2" />
<text x="48.92" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (5 samples, 0.03%)</title><rect x="991.3" y="1941" width="0.3" height="15.0" fill="rgb(242,56,31)" rx="2" ry="2" />
<text x="994.27" y="1951.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="1062.1" y="2005" width="0.3" height="15.0" fill="rgb(236,120,1)" rx="2" ry="2" />
<text x="1065.12" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1973" width="0.5" height="15.0" fill="rgb(240,186,41)" rx="2" ry="2" />
<text x="1061.57" y="1983.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (34 samples, 0.20%)</title><rect x="979.5" y="1941" width="2.4" height="15.0" fill="rgb(249,154,33)" rx="2" ry="2" />
<text x="982.51" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1669" width="0.5" height="15.0" fill="rgb(234,69,9)" rx="2" ry="2" />
<text x="1061.57" y="1679.5" ></text>
</g>
<g >
<title>[unknown] (4 samples, 0.02%)</title><rect x="1014.2" y="2021" width="0.3" height="15.0" fill="rgb(239,151,53)" rx="2" ry="2" />
<text x="1017.22" y="2031.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1066.4" y="2021" width="0.2" height="15.0" fill="rgb(220,30,31)" rx="2" ry="2" />
<text x="1069.44" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1333" width="0.2" height="15.0" fill="rgb(247,206,28)" rx="2" ry="2" />
<text x="1048.82" y="1343.5" ></text>
</g>
<g >
<title>__libc_lseek64 (94 samples, 0.56%)</title><rect x="1126.4" y="2053" width="6.7" height="15.0" fill="rgb(242,130,8)" rx="2" ry="2" />
<text x="1129.45" y="2063.5" ></text>
</g>
<g >
<title>clock_gettime@GLIBC_2.2.5 (217 samples, 1.30%)</title><rect x="991.6" y="2037" width="15.4" height="15.0" fill="rgb(213,12,17)" rx="2" ry="2" />
<text x="994.62" y="2047.5" ></text>
</g>
<g >
<title>mozilla::detail::MutexImpl::lock (2 samples, 0.01%)</title><rect x="1055.7" y="2037" width="0.2" height="15.0" fill="rgb(208,124,23)" rx="2" ry="2" />
<text x="1058.74" y="2047.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1058.3" y="1989" width="0.1" height="15.0" fill="rgb(244,67,44)" rx="2" ry="2" />
<text x="1061.29" y="1999.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1067.7" y="1973" width="0.2" height="15.0" fill="rgb(245,54,16)" rx="2" ry="2" />
<text x="1070.71" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1189" width="0.2" height="15.0" fill="rgb(227,60,11)" rx="2" ry="2" />
<text x="1048.82" y="1199.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1541" width="0.2" height="15.0" fill="rgb(237,164,14)" rx="2" ry="2" />
<text x="1048.82" y="1551.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="49.0" y="1909" width="0.3" height="15.0" fill="rgb(239,69,30)" rx="2" ry="2" />
<text x="52.04" y="1919.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (47 samples, 0.28%)</title><rect x="1126.4" y="1989" width="3.4" height="15.0" fill="rgb(245,166,15)" rx="2" ry="2" />
<text x="1129.45" y="1999.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1017.2" y="1989" width="0.1" height="15.0" fill="rgb(213,158,25)" rx="2" ry="2" />
<text x="1020.20" y="1999.5" ></text>
</g>
<g >
<title>__libc_recvmsg (12 samples, 0.07%)</title><rect x="982.6" y="2037" width="0.9" height="15.0" fill="rgb(234,134,15)" rx="2" ry="2" />
<text x="985.62" y="2047.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1022.7" y="2021" width="0.3" height="15.0" fill="rgb(245,95,8)" rx="2" ry="2" />
<text x="1025.72" y="2031.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (4 samples, 0.02%)</title><rect x="1022.7" y="2037" width="0.3" height="15.0" fill="rgb(224,59,13)" rx="2" ry="2" />
<text x="1025.72" y="2047.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (10 samples, 0.06%)</title><rect x="1065.0" y="1973" width="0.7" height="15.0" fill="rgb(220,188,44)" rx="2" ry="2" />
<text x="1068.02" y="1983.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (34 samples, 0.20%)</title><rect x="979.5" y="1925" width="2.4" height="15.0" fill="rgb(238,195,45)" rx="2" ry="2" />
<text x="982.51" y="1935.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.04%)</title><rect x="1025.3" y="2021" width="0.4" height="15.0" fill="rgb(209,17,25)" rx="2" ry="2" />
<text x="1028.27" y="2031.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (2 samples, 0.01%)</title><rect x="1013.5" y="2005" width="0.2" height="15.0" fill="rgb(252,9,5)" rx="2" ry="2" />
<text x="1016.51" y="2015.5" ></text>
</g>
<g >
<title>sched_getaffinity@@GLIBC_2.3.4 (2 samples, 0.01%)</title><rect x="47.4" y="1957" width="0.2" height="15.0" fill="rgb(218,219,16)" rx="2" ry="2" />
<text x="50.41" y="1967.5" ></text>
</g>
<g >
<title>__libc_read (2 samples, 0.01%)</title><rect x="46.6" y="2037" width="0.1" height="15.0" fill="rgb(232,19,16)" rx="2" ry="2" />
<text x="49.56" y="2047.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="990.6" y="1989" width="0.1" height="15.0" fill="rgb(234,12,17)" rx="2" ry="2" />
<text x="993.56" y="1999.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="1009.8" y="1925" width="0.3" height="15.0" fill="rgb(235,18,42)" rx="2" ry="2" />
<text x="1012.83" y="1935.5" ></text>
</g>
<g >
<title>__libc_read (168 samples, 1.01%)</title><rect x="1133.1" y="2053" width="11.9" height="15.0" fill="rgb(207,181,44)" rx="2" ry="2" />
<text x="1136.11" y="2063.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (22 samples, 0.13%)</title><rect x="1172.2" y="2005" width="1.6" height="15.0" fill="rgb(208,21,14)" rx="2" ry="2" />
<text x="1175.22" y="2015.5" ></text>
</g>
<g >
<title>clock_gettime@GLIBC_2.2.5 (2 samples, 0.01%)</title><rect x="1055.7" y="2021" width="0.2" height="15.0" fill="rgb(214,222,50)" rx="2" ry="2" />
<text x="1058.74" y="2031.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (44 samples, 0.26%)</title><rect x="1170.7" y="2021" width="3.1" height="15.0" fill="rgb(232,118,10)" rx="2" ry="2" />
<text x="1173.66" y="2031.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1021.9" y="2037" width="0.3" height="15.0" fill="rgb(240,134,7)" rx="2" ry="2" />
<text x="1024.87" y="2047.5" ></text>
</g>
<g >
<title>__poll (2 samples, 0.01%)</title><rect x="1021.3" y="2053" width="0.1" height="15.0" fill="rgb(208,33,18)" rx="2" ry="2" />
<text x="1024.31" y="2063.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1011.5" y="2021" width="0.1" height="15.0" fill="rgb(209,64,17)" rx="2" ry="2" />
<text x="1014.46" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="261" width="0.2" height="15.0" fill="rgb(224,108,4)" rx="2" ry="2" />
<text x="1048.82" y="271.5" ></text>
</g>
<g >
<title>clock_gettime@GLIBC_2.2.5 (10 samples, 0.06%)</title><rect x="34.2" y="2021" width="0.7" height="15.0" fill="rgb(217,15,14)" rx="2" ry="2" />
<text x="37.23" y="2031.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1045.1" y="1909" width="0.2" height="15.0" fill="rgb(240,97,1)" rx="2" ry="2" />
<text x="1048.11" y="1919.5" ></text>
</g>
<g >
<title>WRRende~ckend#1 (92 samples, 0.55%)</title><rect x="1037.5" y="2069" width="6.5" height="15.0" fill="rgb(226,5,36)" rx="2" ry="2" />
<text x="1040.46" y="2079.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="597" width="0.2" height="15.0" fill="rgb(239,78,24)" rx="2" ry="2" />
<text x="1048.82" y="607.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (180 samples, 1.08%)</title><rect x="1113.6" y="2037" width="12.7" height="15.0" fill="rgb(211,7,37)" rx="2" ry="2" />
<text x="1116.55" y="2047.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1045.3" y="1909" width="0.2" height="15.0" fill="rgb(205,148,6)" rx="2" ry="2" />
<text x="1048.25" y="1919.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (8 samples, 0.05%)</title><rect x="35.3" y="1973" width="0.6" height="15.0" fill="rgb(221,56,27)" rx="2" ry="2" />
<text x="38.29" y="1983.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5 samples, 0.03%)</title><rect x="1010.7" y="2005" width="0.3" height="15.0" fill="rgb(254,95,22)" rx="2" ry="2" />
<text x="1013.68" y="2015.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.02%)</title><rect x="1013.9" y="2005" width="0.2" height="15.0" fill="rgb(245,115,5)" rx="2" ry="2" />
<text x="1016.87" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (10 samples, 0.06%)</title><rect x="1044.0" y="1957" width="0.7" height="15.0" fill="rgb(216,112,13)" rx="2" ry="2" />
<text x="1046.98" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1413" width="0.2" height="15.0" fill="rgb(217,215,43)" rx="2" ry="2" />
<text x="1048.82" y="1423.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1045.1" y="1893" width="0.2" height="15.0" fill="rgb(227,30,28)" rx="2" ry="2" />
<text x="1048.11" y="1903.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.02%)</title><rect x="33.7" y="1941" width="0.2" height="15.0" fill="rgb(241,164,33)" rx="2" ry="2" />
<text x="36.73" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1861" width="0.5" height="15.0" fill="rgb(221,70,22)" rx="2" ry="2" />
<text x="1061.57" y="1871.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (7 samples, 0.04%)</title><rect x="1059.1" y="1957" width="0.5" height="15.0" fill="rgb(209,38,22)" rx="2" ry="2" />
<text x="1062.14" y="1967.5" ></text>
</g>
<g >
<title>do_syscall_64 (8 samples, 0.05%)</title><rect x="1075.2" y="2005" width="0.6" height="15.0" fill="rgb(207,162,15)" rx="2" ry="2" />
<text x="1078.22" y="2015.5" ></text>
</g>
<g >
<title>PR_Now (4 samples, 0.02%)</title><rect x="1014.2" y="2005" width="0.3" height="15.0" fill="rgb(230,26,15)" rx="2" ry="2" />
<text x="1017.22" y="2015.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.04%)</title><rect x="1153.8" y="2037" width="0.4" height="15.0" fill="rgb(218,142,29)" rx="2" ry="2" />
<text x="1156.80" y="2047.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (47 samples, 0.28%)</title><rect x="1182.9" y="2005" width="3.3" height="15.0" fill="rgb(221,24,41)" rx="2" ry="2" />
<text x="1185.92" y="2015.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (10 samples, 0.06%)</title><rect x="981.9" y="2037" width="0.7" height="15.0" fill="rgb(241,38,45)" rx="2" ry="2" />
<text x="984.91" y="2047.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (10 samples, 0.06%)</title><rect x="1146.0" y="2005" width="0.7" height="15.0" fill="rgb(228,101,4)" rx="2" ry="2" />
<text x="1149.00" y="2015.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="46.8" y="1925" width="0.3" height="15.0" fill="rgb(231,115,40)" rx="2" ry="2" />
<text x="49.84" y="1935.5" ></text>
</g>
<g >
<title>__close (2 samples, 0.01%)</title><rect x="49.4" y="1957" width="0.1" height="15.0" fill="rgb(239,15,36)" rx="2" ry="2" />
<text x="52.39" y="1967.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="11.3" y="1845" width="0.3" height="15.0" fill="rgb(239,196,41)" rx="2" ry="2" />
<text x="14.28" y="1855.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="1063.0" y="2005" width="0.3" height="15.0" fill="rgb(213,213,38)" rx="2" ry="2" />
<text x="1065.97" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1045" width="0.5" height="15.0" fill="rgb(206,180,31)" rx="2" ry="2" />
<text x="1061.57" y="1055.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (94 samples, 0.56%)</title><rect x="1160.9" y="2021" width="6.6" height="15.0" fill="rgb(245,26,5)" rx="2" ry="2" />
<text x="1163.88" y="2031.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (47 samples, 0.28%)</title><rect x="1126.4" y="2005" width="3.4" height="15.0" fill="rgb(245,146,41)" rx="2" ry="2" />
<text x="1129.45" y="2015.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1046.0" y="1957" width="0.2" height="15.0" fill="rgb(206,66,40)" rx="2" ry="2" />
<text x="1049.03" y="1967.5" ></text>
</g>
<g >
<title>do_syscall_64 (10 samples, 0.06%)</title><rect x="1169.2" y="2005" width="0.7" height="15.0" fill="rgb(245,3,3)" rx="2" ry="2" />
<text x="1172.24" y="2015.5" ></text>
</g>
<g >
<title>do_syscall_64 (35 samples, 0.21%)</title><rect x="977.0" y="1941" width="2.5" height="15.0" fill="rgb(225,137,22)" rx="2" ry="2" />
<text x="980.03" y="1951.5" ></text>
</g>
<g >
<title>__fxstat64 (180 samples, 1.08%)</title><rect x="1113.6" y="2053" width="12.7" height="15.0" fill="rgb(254,198,50)" rx="2" ry="2" />
<text x="1116.55" y="2063.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1103.8" y="1957" width="0.2" height="15.0" fill="rgb(210,12,34)" rx="2" ry="2" />
<text x="1106.85" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1285" width="0.2" height="15.0" fill="rgb(250,52,23)" rx="2" ry="2" />
<text x="1048.82" y="1295.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="33.9" y="1925" width="0.2" height="15.0" fill="rgb(222,46,6)" rx="2" ry="2" />
<text x="36.95" y="1935.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (8 samples, 0.05%)</title><rect x="1075.2" y="1989" width="0.6" height="15.0" fill="rgb(239,178,39)" rx="2" ry="2" />
<text x="1078.22" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="725" width="0.2" height="15.0" fill="rgb(252,205,5)" rx="2" ry="2" />
<text x="1048.82" y="735.5" ></text>
</g>
<g >
<title>__libc_write (4 samples, 0.02%)</title><rect x="1022.4" y="2037" width="0.3" height="15.0" fill="rgb(206,112,14)" rx="2" ry="2" />
<text x="1025.44" y="2047.5" ></text>
</g>
<g >
<title>do_syscall_64 (5 samples, 0.03%)</title><rect x="1092.5" y="2005" width="0.4" height="15.0" fill="rgb(240,209,21)" rx="2" ry="2" />
<text x="1095.51" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1957" width="0.5" height="15.0" fill="rgb(227,19,4)" rx="2" ry="2" />
<text x="1061.57" y="1967.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (8 samples, 0.05%)</title><rect x="10.4" y="1733" width="0.6" height="15.0" fill="rgb(216,90,23)" rx="2" ry="2" />
<text x="13.43" y="1743.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1765" width="0.5" height="15.0" fill="rgb(229,89,14)" rx="2" ry="2" />
<text x="1061.57" y="1775.5" ></text>
</g>
<g >
<title>[.electron-wrapped] (6 samples, 0.04%)</title><rect x="10.0" y="1685" width="0.4" height="15.0" fill="rgb(236,150,12)" rx="2" ry="2" />
<text x="13.00" y="1695.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (17 samples, 0.10%)</title><rect x="1017.8" y="1973" width="1.2" height="15.0" fill="rgb(225,116,51)" rx="2" ry="2" />
<text x="1020.84" y="1983.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1046.0" y="1941" width="0.2" height="15.0" fill="rgb(230,20,10)" rx="2" ry="2" />
<text x="1049.03" y="1951.5" ></text>
</g>
<g >
<title>__libc_start_main (26 samples, 0.16%)</title><rect x="10.0" y="2037" width="1.8" height="15.0" fill="rgb(237,207,33)" rx="2" ry="2" />
<text x="13.00" y="2047.5" ></text>
</g>
<g >
<title>[.electron-wrapped] (6 samples, 0.04%)</title><rect x="10.0" y="1429" width="0.4" height="15.0" fill="rgb(246,156,53)" rx="2" ry="2" />
<text x="13.00" y="1439.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1014.9" y="2021" width="0.2" height="15.0" fill="rgb(213,69,50)" rx="2" ry="2" />
<text x="1017.93" y="2031.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="1064.1" y="2005" width="0.3" height="15.0" fill="rgb(230,210,0)" rx="2" ry="2" />
<text x="1067.10" y="2015.5" ></text>
</g>
<g >
<title>do_syscall_64 (84 samples, 0.50%)</title><rect x="1133.1" y="2021" width="6.0" height="15.0" fill="rgb(208,223,43)" rx="2" ry="2" />
<text x="1136.11" y="2031.5" ></text>
</g>
<g >
<title>__libc_read (12 samples, 0.07%)</title><rect x="1047.1" y="2037" width="0.8" height="15.0" fill="rgb(246,78,16)" rx="2" ry="2" />
<text x="1050.10" y="2047.5" ></text>
</g>
<g >
<title>__tls_get_addr (2 samples, 0.01%)</title><rect x="1048.4" y="2037" width="0.1" height="15.0" fill="rgb(247,101,8)" rx="2" ry="2" />
<text x="1051.37" y="2047.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (31 samples, 0.19%)</title><rect x="983.9" y="1973" width="2.2" height="15.0" fill="rgb(234,112,2)" rx="2" ry="2" />
<text x="986.90" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1365" width="0.5" height="15.0" fill="rgb(211,145,5)" rx="2" ry="2" />
<text x="1061.57" y="1375.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (62 samples, 0.37%)</title><rect x="1088.0" y="2005" width="4.4" height="15.0" fill="rgb(239,54,6)" rx="2" ry="2" />
<text x="1090.98" y="2015.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1024.1" y="2037" width="0.3" height="15.0" fill="rgb(241,226,10)" rx="2" ry="2" />
<text x="1027.14" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1637" width="0.5" height="15.0" fill="rgb(237,32,22)" rx="2" ry="2" />
<text x="1061.57" y="1647.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1021.0" y="1989" width="0.2" height="15.0" fill="rgb(250,142,49)" rx="2" ry="2" />
<text x="1024.02" y="1999.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1021.9" y="1989" width="0.1" height="15.0" fill="rgb(247,77,33)" rx="2" ry="2" />
<text x="1024.87" y="1999.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="991.1" y="1973" width="0.2" height="15.0" fill="rgb(206,202,23)" rx="2" ry="2" />
<text x="994.05" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1157" width="0.2" height="15.0" fill="rgb(230,70,46)" rx="2" ry="2" />
<text x="1048.82" y="1167.5" ></text>
</g>
<g >
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (9 samples, 0.05%)</title><rect x="1007.7" y="2053" width="0.6" height="15.0" fill="rgb(250,172,41)" rx="2" ry="2" />
<text x="1010.70" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="629" width="0.5" height="15.0" fill="rgb(223,121,2)" rx="2" ry="2" />
<text x="1061.57" y="639.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="1022.2" y="1957" width="0.2" height="15.0" fill="rgb(244,171,0)" rx="2" ry="2" />
<text x="1025.16" y="1967.5" ></text>
</g>
<g >
<title>__libc_recvmsg (16 samples, 0.10%)</title><rect x="35.3" y="2037" width="1.1" height="15.0" fill="rgb(211,228,38)" rx="2" ry="2" />
<text x="38.29" y="2047.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (6 samples, 0.04%)</title><rect x="1145.0" y="2005" width="0.4" height="15.0" fill="rgb(233,153,16)" rx="2" ry="2" />
<text x="1148.01" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1010.3" y="2037" width="0.1" height="15.0" fill="rgb(241,96,11)" rx="2" ry="2" />
<text x="1013.25" y="2047.5" ></text>
</g>
<g >
<title>do_syscall_64 (11 samples, 0.07%)</title><rect x="1102.2" y="1973" width="0.8" height="15.0" fill="rgb(218,219,23)" rx="2" ry="2" />
<text x="1105.22" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="853" width="0.5" height="15.0" fill="rgb(233,123,7)" rx="2" ry="2" />
<text x="1061.57" y="863.5" ></text>
</g>
<g >
<title>Timer (44 samples, 0.26%)</title><rect x="1022.2" y="2069" width="3.1" height="15.0" fill="rgb(229,67,31)" rx="2" ry="2" />
<text x="1025.16" y="2079.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1011.8" y="1989" width="0.2" height="15.0" fill="rgb(211,191,45)" rx="2" ry="2" />
<text x="1014.81" y="1999.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (5 samples, 0.03%)</title><rect x="1008.3" y="2005" width="0.4" height="15.0" fill="rgb(244,19,26)" rx="2" ry="2" />
<text x="1011.34" y="2015.5" ></text>
</g>
<g >
<title>do_syscall_64 (9 samples, 0.05%)</title><rect x="1038.0" y="1973" width="0.6" height="15.0" fill="rgb(224,196,37)" rx="2" ry="2" />
<text x="1040.96" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1093" width="0.2" height="15.0" fill="rgb(214,124,34)" rx="2" ry="2" />
<text x="1048.82" y="1103.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="485" width="0.2" height="15.0" fill="rgb(223,70,47)" rx="2" ry="2" />
<text x="1048.82" y="495.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (8 samples, 0.05%)</title><rect x="1105.5" y="1989" width="0.5" height="15.0" fill="rgb(207,6,19)" rx="2" ry="2" />
<text x="1108.48" y="1999.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="35.0" y="2021" width="0.3" height="15.0" fill="rgb(221,35,30)" rx="2" ry="2" />
<text x="38.01" y="2031.5" ></text>
</g>
<g >
<title>__pthread_once_slow (6 samples, 0.04%)</title><rect x="1093.2" y="2037" width="0.4" height="15.0" fill="rgb(250,7,4)" rx="2" ry="2" />
<text x="1096.22" y="2047.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (62 samples, 0.37%)</title><rect x="1083.6" y="1973" width="4.4" height="15.0" fill="rgb(244,70,14)" rx="2" ry="2" />
<text x="1086.58" y="1983.5" ></text>
</g>
<g >
<title>[.electron-wrapped] (18 samples, 0.11%)</title><rect x="10.0" y="1893" width="1.3" height="15.0" fill="rgb(208,174,9)" rx="2" ry="2" />
<text x="13.00" y="1903.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.04%)</title><rect x="1182.5" y="2037" width="0.4" height="15.0" fill="rgb(220,1,6)" rx="2" ry="2" />
<text x="1185.49" y="2047.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (7 samples, 0.04%)</title><rect x="42.6" y="2005" width="0.5" height="15.0" fill="rgb(252,51,33)" rx="2" ry="2" />
<text x="45.59" y="2015.5" ></text>
</g>
<g >
<title>evlist__enable (21 samples, 0.13%)</title><rect x="47.9" y="1973" width="1.5" height="15.0" fill="rgb(220,189,44)" rx="2" ry="2" />
<text x="50.90" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="773" width="0.5" height="15.0" fill="rgb(222,22,40)" rx="2" ry="2" />
<text x="1061.57" y="783.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1011.0" y="2021" width="0.2" height="15.0" fill="rgb(208,168,28)" rx="2" ry="2" />
<text x="1014.03" y="2031.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1011.0" y="2005" width="0.2" height="15.0" fill="rgb(214,203,45)" rx="2" ry="2" />
<text x="1014.03" y="2015.5" ></text>
</g>
<g >
<title>clock_gettime@GLIBC_2.2.5 (56 samples, 0.34%)</title><rect x="1038.6" y="2037" width="4.0" height="15.0" fill="rgb(249,52,13)" rx="2" ry="2" />
<text x="1041.59" y="2047.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (9 samples, 0.05%)</title><rect x="981.9" y="2005" width="0.7" height="15.0" fill="rgb(218,77,11)" rx="2" ry="2" />
<text x="984.91" y="2015.5" ></text>
</g>
<g >
<title>pthread_cond_signal@@GLIBC_2.3.2 (2 samples, 0.01%)</title><rect x="1043.8" y="2053" width="0.2" height="15.0" fill="rgb(239,78,53)" rx="2" ry="2" />
<text x="1046.84" y="2063.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="1024.4" y="2021" width="0.3" height="15.0" fill="rgb(250,4,43)" rx="2" ry="2" />
<text x="1027.42" y="2031.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (8 samples, 0.05%)</title><rect x="1063.3" y="2021" width="0.5" height="15.0" fill="rgb(219,154,31)" rx="2" ry="2" />
<text x="1066.25" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="213" width="0.5" height="15.0" fill="rgb(237,38,11)" rx="2" ry="2" />
<text x="1061.57" y="223.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (217 samples, 1.30%)</title><rect x="991.6" y="2005" width="15.4" height="15.0" fill="rgb(223,85,5)" rx="2" ry="2" />
<text x="994.62" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="1024.4" y="2005" width="0.3" height="15.0" fill="rgb(216,164,18)" rx="2" ry="2" />
<text x="1027.42" y="2015.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1021.6" y="2021" width="0.1" height="15.0" fill="rgb(211,55,31)" rx="2" ry="2" />
<text x="1024.59" y="2031.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="1063.3" y="1989" width="0.2" height="15.0" fill="rgb(237,213,5)" rx="2" ry="2" />
<text x="1066.25" y="1999.5" ></text>
</g>
<g >
<title>do_syscall_64 (46 samples, 0.28%)</title><rect x="1106.6" y="2021" width="3.3" height="15.0" fill="rgb(243,126,9)" rx="2" ry="2" />
<text x="1109.61" y="2031.5" ></text>
</g>
<g >
<title>[.electron-wrapped] (6 samples, 0.04%)</title><rect x="10.0" y="1573" width="0.4" height="15.0" fill="rgb(208,47,30)" rx="2" ry="2" />
<text x="13.00" y="1583.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="293" width="0.2" height="15.0" fill="rgb(213,52,15)" rx="2" ry="2" />
<text x="1048.82" y="303.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1010.7" y="1989" width="0.1" height="15.0" fill="rgb(253,84,30)" rx="2" ry="2" />
<text x="1013.68" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1941" width="0.2" height="15.0" fill="rgb(225,126,21)" rx="2" ry="2" />
<text x="1048.82" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1589" width="0.2" height="15.0" fill="rgb(249,139,30)" rx="2" ry="2" />
<text x="1048.82" y="1599.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1182.3" y="2037" width="0.2" height="15.0" fill="rgb(215,50,4)" rx="2" ry="2" />
<text x="1185.35" y="2047.5" ></text>
</g>
<g >
<title>[.electron-wrapped] (6 samples, 0.04%)</title><rect x="10.0" y="1717" width="0.4" height="15.0" fill="rgb(245,126,40)" rx="2" ry="2" />
<text x="13.00" y="1727.5" ></text>
</g>
<g >
<title>do_syscall_64 (42 samples, 0.25%)</title><rect x="1096.1" y="2005" width="2.9" height="15.0" fill="rgb(211,100,30)" rx="2" ry="2" />
<text x="1099.05" y="2015.5" ></text>
</g>
<g >
<title>do_syscall_64 (5 samples, 0.03%)</title><rect x="1008.3" y="2021" width="0.4" height="15.0" fill="rgb(253,201,15)" rx="2" ry="2" />
<text x="1011.34" y="2031.5" ></text>
</g>
<g >
<title>clock_gettime@GLIBC_2.2.5 (2 samples, 0.01%)</title><rect x="33.9" y="1989" width="0.2" height="15.0" fill="rgb(236,188,28)" rx="2" ry="2" />
<text x="36.95" y="1999.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1011.2" y="2005" width="0.1" height="15.0" fill="rgb(242,220,31)" rx="2" ry="2" />
<text x="1014.18" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (5 samples, 0.03%)</title><rect x="45.1" y="1973" width="0.4" height="15.0" fill="rgb(216,212,22)" rx="2" ry="2" />
<text x="48.14" y="1983.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (4 samples, 0.02%)</title><rect x="1014.2" y="1989" width="0.3" height="15.0" fill="rgb(246,187,51)" rx="2" ry="2" />
<text x="1017.22" y="1999.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="47.1" y="1909" width="0.3" height="15.0" fill="rgb(239,53,44)" rx="2" ry="2" />
<text x="50.13" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="229" width="0.2" height="15.0" fill="rgb(237,37,5)" rx="2" ry="2" />
<text x="1048.82" y="239.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1781" width="0.5" height="15.0" fill="rgb(208,121,43)" rx="2" ry="2" />
<text x="1061.57" y="1791.5" ></text>
</g>
<g >
<title>__GI___getdents64 (20 samples, 0.12%)</title><rect x="1065.0" y="2037" width="1.4" height="15.0" fill="rgb(243,32,15)" rx="2" ry="2" />
<text x="1068.02" y="2047.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (145 samples, 0.87%)</title><rect x="22.1" y="1973" width="10.3" height="15.0" fill="rgb(208,217,6)" rx="2" ry="2" />
<text x="25.12" y="1983.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="35.0" y="2005" width="0.2" height="15.0" fill="rgb(230,96,29)" rx="2" ry="2" />
<text x="38.01" y="2015.5" ></text>
</g>
<g >
<title>Renderer (88 samples, 0.53%)</title><rect x="1015.6" y="2069" width="6.3" height="15.0" fill="rgb(232,158,11)" rx="2" ry="2" />
<text x="1018.64" y="2079.5" ></text>
</g>
<g >
<title>clock_gettime@GLIBC_2.2.5 (3 samples, 0.02%)</title><rect x="1023.9" y="2021" width="0.2" height="15.0" fill="rgb(225,185,23)" rx="2" ry="2" />
<text x="1026.93" y="2031.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (8 samples, 0.05%)</title><rect x="1060.8" y="2005" width="0.6" height="15.0" fill="rgb(225,181,10)" rx="2" ry="2" />
<text x="1063.84" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1029" width="0.5" height="15.0" fill="rgb(237,4,54)" rx="2" ry="2" />
<text x="1061.57" y="1039.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1015.1" y="2021" width="0.1" height="15.0" fill="rgb(205,84,33)" rx="2" ry="2" />
<text x="1018.07" y="2031.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1113.3" y="2005" width="0.3" height="15.0" fill="rgb(221,92,26)" rx="2" ry="2" />
<text x="1116.34" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="149" width="0.2" height="15.0" fill="rgb(217,116,4)" rx="2" ry="2" />
<text x="1048.82" y="159.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="709" width="0.2" height="15.0" fill="rgb(216,72,34)" rx="2" ry="2" />
<text x="1048.82" y="719.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="965" width="0.2" height="15.0" fill="rgb(205,126,19)" rx="2" ry="2" />
<text x="1048.82" y="975.5" ></text>
</g>
<g >
<title>[unknown] (50 samples, 0.30%)</title><rect x="1058.6" y="2053" width="3.5" height="15.0" fill="rgb(239,121,1)" rx="2" ry="2" />
<text x="1061.57" y="2063.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (5 samples, 0.03%)</title><rect x="1012.6" y="2021" width="0.3" height="15.0" fill="rgb(237,216,12)" rx="2" ry="2" />
<text x="1015.59" y="2031.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (56 samples, 0.34%)</title><rect x="1038.6" y="2021" width="4.0" height="15.0" fill="rgb(210,192,12)" rx="2" ry="2" />
<text x="1041.59" y="2031.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (6 samples, 0.04%)</title><rect x="983.0" y="1989" width="0.5" height="15.0" fill="rgb(254,80,35)" rx="2" ry="2" />
<text x="986.05" y="1999.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (69 samples, 0.41%)</title><rect x="977.0" y="1957" width="4.9" height="15.0" fill="rgb(241,196,18)" rx="2" ry="2" />
<text x="980.03" y="1967.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1104.4" y="1989" width="0.2" height="15.0" fill="rgb(221,125,20)" rx="2" ry="2" />
<text x="1107.41" y="1999.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.05%)</title><rect x="1063.8" y="2021" width="0.6" height="15.0" fill="rgb(245,215,5)" rx="2" ry="2" />
<text x="1066.82" y="2031.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (3 samples, 0.02%)</title><rect x="36.9" y="2005" width="0.2" height="15.0" fill="rgb(243,200,17)" rx="2" ry="2" />
<text x="39.85" y="2015.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1045.1" y="1941" width="0.2" height="15.0" fill="rgb(253,202,25)" rx="2" ry="2" />
<text x="1048.11" y="1951.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (16 samples, 0.10%)</title><rect x="988.3" y="1973" width="1.1" height="15.0" fill="rgb(226,201,42)" rx="2" ry="2" />
<text x="991.29" y="1983.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (8 samples, 0.05%)</title><rect x="1076.4" y="1973" width="0.5" height="15.0" fill="rgb(226,20,33)" rx="2" ry="2" />
<text x="1079.36" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1349" width="0.5" height="15.0" fill="rgb(218,34,16)" rx="2" ry="2" />
<text x="1061.57" y="1359.5" ></text>
</g>
<g >
<title>mprotect (22 samples, 0.13%)</title><rect x="1102.2" y="2005" width="1.6" height="15.0" fill="rgb(227,150,52)" rx="2" ry="2" />
<text x="1105.22" y="2015.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (16 samples, 0.10%)</title><rect x="1026.8" y="1989" width="1.2" height="15.0" fill="rgb(227,223,10)" rx="2" ry="2" />
<text x="1029.83" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1173" width="0.5" height="15.0" fill="rgb(221,78,1)" rx="2" ry="2" />
<text x="1061.57" y="1183.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (15 samples, 0.09%)</title><rect x="1056.0" y="2005" width="1.0" height="15.0" fill="rgb(206,207,23)" rx="2" ry="2" />
<text x="1058.95" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="837" width="0.2" height="15.0" fill="rgb(239,213,5)" rx="2" ry="2" />
<text x="1048.82" y="847.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.05%)</title><rect x="1024.4" y="2037" width="0.6" height="15.0" fill="rgb(236,107,3)" rx="2" ry="2" />
<text x="1027.42" y="2047.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (32 samples, 0.19%)</title><rect x="988.3" y="2021" width="2.3" height="15.0" fill="rgb(242,136,47)" rx="2" ry="2" />
<text x="991.29" y="2031.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1021.2" y="2005" width="0.1" height="15.0" fill="rgb(230,43,45)" rx="2" ry="2" />
<text x="1024.17" y="2015.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="47.4" y="1941" width="0.2" height="15.0" fill="rgb(238,85,35)" rx="2" ry="2" />
<text x="50.41" y="1951.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1064.9" y="1989" width="0.1" height="15.0" fill="rgb(247,151,3)" rx="2" ry="2" />
<text x="1067.88" y="1999.5" ></text>
</g>
<g >
<title>__getpid (4 samples, 0.02%)</title><rect x="1021.0" y="2053" width="0.3" height="15.0" fill="rgb(233,214,0)" rx="2" ry="2" />
<text x="1024.02" y="2063.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5 samples, 0.03%)</title><rect x="1012.6" y="2005" width="0.3" height="15.0" fill="rgb(206,95,47)" rx="2" ry="2" />
<text x="1015.59" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="1058.9" y="37" width="0.2" height="15.0" fill="rgb(221,183,34)" rx="2" ry="2" />
<text x="1061.86" y="47.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1011.6" y="2005" width="0.1" height="15.0" fill="rgb(224,184,37)" rx="2" ry="2" />
<text x="1014.60" y="2015.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="983.7" y="1989" width="0.2" height="15.0" fill="rgb(208,184,25)" rx="2" ry="2" />
<text x="986.69" y="1999.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (84 samples, 0.50%)</title><rect x="1139.1" y="2021" width="5.9" height="15.0" fill="rgb(247,172,25)" rx="2" ry="2" />
<text x="1142.06" y="2031.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (22 samples, 0.13%)</title><rect x="1019.0" y="1973" width="1.6" height="15.0" fill="rgb(231,44,35)" rx="2" ry="2" />
<text x="1022.04" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="133" width="0.5" height="15.0" fill="rgb(205,166,42)" rx="2" ry="2" />
<text x="1061.57" y="143.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (7 samples, 0.04%)</title><rect x="42.6" y="1989" width="0.5" height="15.0" fill="rgb(220,126,19)" rx="2" ry="2" />
<text x="45.59" y="1999.5" ></text>
</g>
<g >
<title>sched_setaffinity@@GLIBC_2.3.4 (5 samples, 0.03%)</title><rect x="47.6" y="1957" width="0.3" height="15.0" fill="rgb(207,108,31)" rx="2" ry="2" />
<text x="50.55" y="1967.5" ></text>
</g>
<g >
<title>epoll_wait (8 samples, 0.05%)</title><rect x="1063.8" y="2037" width="0.6" height="15.0" fill="rgb(241,103,49)" rx="2" ry="2" />
<text x="1066.82" y="2047.5" ></text>
</g>
<g >
<title>do_syscall_64 (7 samples, 0.04%)</title><rect x="42.6" y="2021" width="0.5" height="15.0" fill="rgb(219,222,38)" rx="2" ry="2" />
<text x="45.59" y="2031.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="45.9" y="1989" width="0.3" height="15.0" fill="rgb(210,19,41)" rx="2" ry="2" />
<text x="48.92" y="1999.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.05%)</title><rect x="1009.5" y="1941" width="0.6" height="15.0" fill="rgb(208,134,16)" rx="2" ry="2" />
<text x="1012.55" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1653" width="0.2" height="15.0" fill="rgb(234,65,6)" rx="2" ry="2" />
<text x="1048.82" y="1663.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="11.0" y="1717" width="0.1" height="15.0" fill="rgb(206,36,32)" rx="2" ry="2" />
<text x="13.99" y="1727.5" ></text>
</g>
<g >
<title>__GI___geteuid (2 samples, 0.01%)</title><rect x="1066.6" y="2037" width="0.1" height="15.0" fill="rgb(245,162,44)" rx="2" ry="2" />
<text x="1069.58" y="2047.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.04%)</title><rect x="1017.3" y="2021" width="0.5" height="15.0" fill="rgb(231,70,45)" rx="2" ry="2" />
<text x="1020.34" y="2031.5" ></text>
</g>
<g >
<title>__lll_lock_wait (2 samples, 0.01%)</title><rect x="1011.3" y="2053" width="0.2" height="15.0" fill="rgb(238,160,24)" rx="2" ry="2" />
<text x="1014.32" y="2063.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1093.4" y="1973" width="0.1" height="15.0" fill="rgb(205,62,43)" rx="2" ry="2" />
<text x="1096.36" y="1983.5" ></text>
</g>
<g >
<title>__open64_nocancel (2 samples, 0.01%)</title><rect x="1093.2" y="2021" width="0.2" height="15.0" fill="rgb(253,183,14)" rx="2" ry="2" />
<text x="1096.22" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="309" width="0.5" height="15.0" fill="rgb(205,17,54)" rx="2" ry="2" />
<text x="1061.57" y="319.5" ></text>
</g>
<g >
<title>__libc_read (2 samples, 0.01%)</title><rect x="1060.1" y="2037" width="0.2" height="15.0" fill="rgb(221,70,25)" rx="2" ry="2" />
<text x="1063.13" y="2047.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (22 samples, 0.13%)</title><rect x="1170.7" y="1989" width="1.5" height="15.0" fill="rgb(219,172,3)" rx="2" ry="2" />
<text x="1173.66" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="277" width="0.5" height="15.0" fill="rgb(237,157,3)" rx="2" ry="2" />
<text x="1061.57" y="287.5" ></text>
</g>
<g >
<title>do_syscall_64 (17 samples, 0.10%)</title><rect x="1093.6" y="2005" width="1.2" height="15.0" fill="rgb(210,134,39)" rx="2" ry="2" />
<text x="1096.64" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1877" width="0.2" height="15.0" fill="rgb(225,166,16)" rx="2" ry="2" />
<text x="1048.82" y="1887.5" ></text>
</g>
<g >
<title>cmd_record (70 samples, 0.42%)</title><rect x="977.0" y="2005" width="4.9" height="15.0" fill="rgb(206,206,0)" rx="2" ry="2" />
<text x="979.96" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (11 samples, 0.07%)</title><rect x="1046.2" y="1957" width="0.8" height="15.0" fill="rgb(231,224,29)" rx="2" ry="2" />
<text x="1049.18" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (4 samples, 0.02%)</title><rect x="1015.6" y="2021" width="0.3" height="15.0" fill="rgb(209,27,21)" rx="2" ry="2" />
<text x="1018.64" y="2031.5" ></text>
</g>
<g >
<title>[.electron-wrapped] (14 samples, 0.08%)</title><rect x="10.0" y="1749" width="1.0" height="15.0" fill="rgb(239,135,49)" rx="2" ry="2" />
<text x="13.00" y="1759.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (16 samples, 0.10%)</title><rect x="1076.4" y="2021" width="1.1" height="15.0" fill="rgb(208,37,30)" rx="2" ry="2" />
<text x="1079.36" y="2031.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.04%)</title><rect x="1067.7" y="2021" width="0.4" height="15.0" fill="rgb(227,217,26)" rx="2" ry="2" />
<text x="1070.71" y="2031.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (8 samples, 0.05%)</title><rect x="1075.8" y="1989" width="0.6" height="15.0" fill="rgb(210,171,12)" rx="2" ry="2" />
<text x="1078.79" y="1999.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="1024.7" y="2005" width="0.3" height="15.0" fill="rgb(236,38,22)" rx="2" ry="2" />
<text x="1027.71" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="1025.0" y="1957" width="0.3" height="15.0" fill="rgb(227,62,50)" rx="2" ry="2" />
<text x="1027.99" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (324 samples, 1.95%)</title><rect x="10.0" y="2053" width="23.0" height="15.0" fill="rgb(253,26,48)" rx="2" ry="2" />
<text x="13.00" y="2063.5" >[..</text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.02%)</title><rect x="1102.0" y="2005" width="0.2" height="15.0" fill="rgb(249,10,44)" rx="2" ry="2" />
<text x="1105.00" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (10 samples, 0.06%)</title><rect x="1065.0" y="1989" width="0.7" height="15.0" fill="rgb(230,189,50)" rx="2" ry="2" />
<text x="1068.02" y="1999.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1024.1" y="2005" width="0.2" height="15.0" fill="rgb(254,44,42)" rx="2" ry="2" />
<text x="1027.14" y="2015.5" ></text>
</g>
<g >
<title>do_syscall_64 (9 samples, 0.05%)</title><rect x="981.9" y="2021" width="0.7" height="15.0" fill="rgb(224,172,48)" rx="2" ry="2" />
<text x="984.91" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1093" width="0.5" height="15.0" fill="rgb(236,6,32)" rx="2" ry="2" />
<text x="1061.57" y="1103.5" ></text>
</g>
<g >
<title>__poll (30 samples, 0.18%)</title><rect x="1056.0" y="2053" width="2.1" height="15.0" fill="rgb(231,119,8)" rx="2" ry="2" />
<text x="1058.95" y="2063.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="36.7" y="2021" width="0.2" height="15.0" fill="rgb(237,152,53)" rx="2" ry="2" />
<text x="39.71" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="341" width="0.2" height="15.0" fill="rgb(230,217,52)" rx="2" ry="2" />
<text x="1048.82" y="351.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1058.3" y="2005" width="0.1" height="15.0" fill="rgb(253,3,17)" rx="2" ry="2" />
<text x="1061.29" y="2015.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1105.3" y="2021" width="0.2" height="15.0" fill="rgb(216,79,33)" rx="2" ry="2" />
<text x="1108.26" y="2031.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (86 samples, 0.52%)</title><rect x="1147.4" y="2037" width="6.1" height="15.0" fill="rgb(228,116,16)" rx="2" ry="2" />
<text x="1150.42" y="2047.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (36 samples, 0.22%)</title><rect x="1040.0" y="1989" width="2.6" height="15.0" fill="rgb(208,149,7)" rx="2" ry="2" />
<text x="1043.01" y="1999.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (10 samples, 0.06%)</title><rect x="1173.8" y="2021" width="0.7" height="15.0" fill="rgb(245,85,6)" rx="2" ry="2" />
<text x="1176.78" y="2031.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1043.8" y="2037" width="0.2" height="15.0" fill="rgb(217,13,18)" rx="2" ry="2" />
<text x="1046.84" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1013.5" y="2053" width="0.6" height="15.0" fill="rgb(244,69,31)" rx="2" ry="2" />
<text x="1016.51" y="2063.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1093.5" y="2005" width="0.1" height="15.0" fill="rgb(207,141,20)" rx="2" ry="2" />
<text x="1096.50" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1017.1" y="1973" width="0.1" height="15.0" fill="rgb(247,63,13)" rx="2" ry="2" />
<text x="1020.06" y="1983.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1014.2" y="1973" width="0.3" height="15.0" fill="rgb(239,5,22)" rx="2" ry="2" />
<text x="1017.22" y="1983.5" ></text>
</g>
<g >
<title>_dl_sysdep_start (25 samples, 0.15%)</title><rect x="1102.0" y="2037" width="1.8" height="15.0" fill="rgb(227,201,3)" rx="2" ry="2" />
<text x="1105.00" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="773" width="0.2" height="15.0" fill="rgb(224,35,50)" rx="2" ry="2" />
<text x="1048.82" y="783.5" ></text>
</g>
<g >
<title>[.electron-wrapped] (6 samples, 0.04%)</title><rect x="10.0" y="1525" width="0.4" height="15.0" fill="rgb(252,51,12)" rx="2" ry="2" />
<text x="13.00" y="1535.5" ></text>
</g>
<g >
<title>[.electron-wrapped] (6 samples, 0.04%)</title><rect x="10.0" y="1589" width="0.4" height="15.0" fill="rgb(228,175,29)" rx="2" ry="2" />
<text x="13.00" y="1599.5" ></text>
</g>
<g >
<title>__fcntl64_nocancel_adjusted (6 samples, 0.04%)</title><rect x="1113.1" y="2053" width="0.5" height="15.0" fill="rgb(209,203,36)" rx="2" ry="2" />
<text x="1116.13" y="2063.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1020.6" y="2005" width="0.2" height="15.0" fill="rgb(228,132,22)" rx="2" ry="2" />
<text x="1023.60" y="2015.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1012.6" y="1989" width="0.1" height="15.0" fill="rgb(220,198,40)" rx="2" ry="2" />
<text x="1015.59" y="1999.5" ></text>
</g>
<g >
<title>clock_gettime@GLIBC_2.2.5 (5 samples, 0.03%)</title><rect x="1012.6" y="2037" width="0.3" height="15.0" fill="rgb(217,177,15)" rx="2" ry="2" />
<text x="1015.59" y="2047.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1012.5" y="2021" width="0.1" height="15.0" fill="rgb(245,147,14)" rx="2" ry="2" />
<text x="1015.45" y="2031.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (7 samples, 0.04%)</title><rect x="43.1" y="2005" width="0.5" height="15.0" fill="rgb(230,225,22)" rx="2" ry="2" />
<text x="46.09" y="2015.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1012.2" y="2005" width="0.1" height="15.0" fill="rgb(245,144,53)" rx="2" ry="2" />
<text x="1015.17" y="2015.5" ></text>
</g>
<g >
<title>__GI___ioctl (8 samples, 0.05%)</title><rect x="46.8" y="1957" width="0.6" height="15.0" fill="rgb(227,11,19)" rx="2" ry="2" />
<text x="49.84" y="1967.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="1008.1" y="2021" width="0.2" height="15.0" fill="rgb(240,166,45)" rx="2" ry="2" />
<text x="1011.06" y="2031.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.04%)</title><rect x="1020.6" y="2037" width="0.4" height="15.0" fill="rgb(226,23,32)" rx="2" ry="2" />
<text x="1023.60" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1365" width="0.2" height="15.0" fill="rgb(248,37,23)" rx="2" ry="2" />
<text x="1048.82" y="1375.5" ></text>
</g>
<g >
<title>__GI___getuid (2 samples, 0.01%)</title><rect x="1067.0" y="2037" width="0.1" height="15.0" fill="rgb(232,72,50)" rx="2" ry="2" />
<text x="1070.01" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="2021" width="0.5" height="15.0" fill="rgb(231,31,3)" rx="2" ry="2" />
<text x="1061.57" y="2031.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (47 samples, 0.28%)</title><rect x="1182.9" y="1989" width="3.3" height="15.0" fill="rgb(237,223,49)" rx="2" ry="2" />
<text x="1185.92" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1637" width="0.2" height="15.0" fill="rgb(208,227,6)" rx="2" ry="2" />
<text x="1048.82" y="1647.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (4 samples, 0.02%)</title><rect x="1024.1" y="2053" width="0.3" height="15.0" fill="rgb(251,215,38)" rx="2" ry="2" />
<text x="1027.14" y="2063.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="35.0" y="1989" width="0.2" height="15.0" fill="rgb(249,132,1)" rx="2" ry="2" />
<text x="38.01" y="1999.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (62 samples, 0.37%)</title><rect x="1088.0" y="1989" width="4.4" height="15.0" fill="rgb(250,65,41)" rx="2" ry="2" />
<text x="1090.98" y="1999.5" ></text>
</g>
<g >
<title>clock_gettime@GLIBC_2.2.5 (9 samples, 0.05%)</title><rect x="1038.0" y="2021" width="0.6" height="15.0" fill="rgb(231,189,52)" rx="2" ry="2" />
<text x="1040.96" y="2031.5" ></text>
</g>
<g >
<title>__GI___getgid (2 samples, 0.01%)</title><rect x="1066.7" y="2037" width="0.2" height="15.0" fill="rgb(215,112,40)" rx="2" ry="2" />
<text x="1069.72" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (6 samples, 0.04%)</title><rect x="1037.5" y="2021" width="0.5" height="15.0" fill="rgb(249,38,43)" rx="2" ry="2" />
<text x="1040.53" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1157" width="0.5" height="15.0" fill="rgb(242,21,41)" rx="2" ry="2" />
<text x="1061.57" y="1167.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="629" width="0.2" height="15.0" fill="rgb(205,227,10)" rx="2" ry="2" />
<text x="1048.82" y="639.5" ></text>
</g>
<g >
<title>clock_gettime@GLIBC_2.2.5 (3 samples, 0.02%)</title><rect x="1045.3" y="1989" width="0.2" height="15.0" fill="rgb(219,63,30)" rx="2" ry="2" />
<text x="1048.25" y="1999.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="35.2" y="1989" width="0.1" height="15.0" fill="rgb(226,48,39)" rx="2" ry="2" />
<text x="38.15" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="853" width="0.2" height="15.0" fill="rgb(248,102,21)" rx="2" ry="2" />
<text x="1048.82" y="863.5" ></text>
</g>
<g >
<title>__libc_write (2 samples, 0.01%)</title><rect x="1013.7" y="2037" width="0.2" height="15.0" fill="rgb(213,93,32)" rx="2" ry="2" />
<text x="1016.73" y="2047.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1012.9" y="2021" width="0.2" height="15.0" fill="rgb(234,149,6)" rx="2" ry="2" />
<text x="1015.95" y="2031.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (43 samples, 0.26%)</title><rect x="1150.5" y="2021" width="3.0" height="15.0" fill="rgb(251,204,7)" rx="2" ry="2" />
<text x="1153.47" y="2031.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (2 samples, 0.01%)</title><rect x="1045.7" y="1957" width="0.1" height="15.0" fill="rgb(207,183,19)" rx="2" ry="2" />
<text x="1048.68" y="1967.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1021.9" y="2005" width="0.1" height="15.0" fill="rgb(244,50,46)" rx="2" ry="2" />
<text x="1024.87" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1989" width="0.5" height="15.0" fill="rgb(251,82,37)" rx="2" ry="2" />
<text x="1061.57" y="1999.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="44.0" y="2021" width="0.3" height="15.0" fill="rgb(247,209,13)" rx="2" ry="2" />
<text x="47.01" y="2031.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (5 samples, 0.03%)</title><rect x="991.3" y="1957" width="0.3" height="15.0" fill="rgb(227,171,3)" rx="2" ry="2" />
<text x="994.27" y="1967.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="991.1" y="1957" width="0.2" height="15.0" fill="rgb(241,4,53)" rx="2" ry="2" />
<text x="994.05" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="197" width="0.2" height="15.0" fill="rgb(246,35,23)" rx="2" ry="2" />
<text x="1048.82" y="207.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1045" width="0.2" height="15.0" fill="rgb(207,90,43)" rx="2" ry="2" />
<text x="1048.82" y="1055.5" ></text>
</g>
<g >
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (8 samples, 0.05%)</title><rect x="33.0" y="2053" width="0.5" height="15.0" fill="rgb(216,138,1)" rx="2" ry="2" />
<text x="35.96" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (74 samples, 0.44%)</title><rect x="1037.5" y="2053" width="5.2" height="15.0" fill="rgb(237,5,10)" rx="2" ry="2" />
<text x="1040.46" y="2063.5" ></text>
</g>
<g >
<title>[.electron-wrapped] (18 samples, 0.11%)</title><rect x="10.0" y="1813" width="1.3" height="15.0" fill="rgb(223,155,3)" rx="2" ry="2" />
<text x="13.00" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1285" width="0.5" height="15.0" fill="rgb(220,123,15)" rx="2" ry="2" />
<text x="1061.57" y="1295.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="10.4" y="1669" width="0.3" height="15.0" fill="rgb(253,50,24)" rx="2" ry="2" />
<text x="13.43" y="1679.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (94 samples, 0.56%)</title><rect x="1182.9" y="2037" width="6.7" height="15.0" fill="rgb(206,46,37)" rx="2" ry="2" />
<text x="1185.92" y="2047.5" ></text>
</g>
<g >
<title>__close (92 samples, 0.55%)</title><rect x="1106.6" y="2053" width="6.5" height="15.0" fill="rgb(243,197,47)" rx="2" ry="2" />
<text x="1109.61" y="2063.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="990.6" y="2021" width="0.2" height="15.0" fill="rgb(241,197,10)" rx="2" ry="2" />
<text x="993.56" y="2031.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="1153.8" y="2021" width="0.2" height="15.0" fill="rgb(244,162,44)" rx="2" ry="2" />
<text x="1156.80" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1765" width="0.2" height="15.0" fill="rgb(233,28,34)" rx="2" ry="2" />
<text x="1048.82" y="1775.5" ></text>
</g>
<g >
<title>[unknown] (12 samples, 0.07%)</title><rect x="1044.7" y="2021" width="0.8" height="15.0" fill="rgb(248,24,27)" rx="2" ry="2" />
<text x="1047.69" y="2031.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (5 samples, 0.03%)</title><rect x="1016.7" y="1989" width="0.4" height="15.0" fill="rgb(213,99,35)" rx="2" ry="2" />
<text x="1019.70" y="1999.5" ></text>
</g>
<g >
<title>__GI___writev (14 samples, 0.08%)</title><rect x="1059.1" y="2021" width="1.0" height="15.0" fill="rgb(224,102,7)" rx="2" ry="2" />
<text x="1062.14" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (232 samples, 1.39%)</title><rect x="990.8" y="2053" width="16.5" height="15.0" fill="rgb(209,214,34)" rx="2" ry="2" />
<text x="993.84" y="2063.5" ></text>
</g>
<g >
<title>__xstat64 (188 samples, 1.13%)</title><rect x="1154.2" y="2053" width="13.3" height="15.0" fill="rgb(230,141,18)" rx="2" ry="2" />
<text x="1157.22" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="725" width="0.5" height="15.0" fill="rgb(214,139,1)" rx="2" ry="2" />
<text x="1061.57" y="735.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1025.3" y="1989" width="0.2" height="15.0" fill="rgb(241,64,0)" rx="2" ry="2" />
<text x="1028.27" y="1999.5" ></text>
</g>
<g >
<title>do_syscall_64 (16 samples, 0.10%)</title><rect x="988.3" y="2005" width="1.1" height="15.0" fill="rgb(230,111,21)" rx="2" ry="2" />
<text x="991.29" y="2015.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (16 samples, 0.10%)</title><rect x="1075.2" y="2021" width="1.2" height="15.0" fill="rgb(247,227,41)" rx="2" ry="2" />
<text x="1078.22" y="2031.5" ></text>
</g>
<g >
<title>__GI___sysinfo (2 samples, 0.01%)</title><rect x="1064.4" y="2021" width="0.1" height="15.0" fill="rgb(243,50,7)" rx="2" ry="2" />
<text x="1067.38" y="2031.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (10 samples, 0.06%)</title><rect x="1016.3" y="2021" width="0.8" height="15.0" fill="rgb(253,149,11)" rx="2" ry="2" />
<text x="1019.35" y="2031.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (42 samples, 0.25%)</title><rect x="1080.6" y="1989" width="3.0" height="15.0" fill="rgb(212,156,28)" rx="2" ry="2" />
<text x="1083.61" y="1999.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (8 samples, 0.05%)</title><rect x="1060.3" y="1973" width="0.5" height="15.0" fill="rgb(243,83,1)" rx="2" ry="2" />
<text x="1063.27" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1413" width="0.5" height="15.0" fill="rgb(215,88,48)" rx="2" ry="2" />
<text x="1061.57" y="1423.5" ></text>
</g>
<g >
<title>syscall (2 samples, 0.01%)</title><rect x="1010.1" y="2053" width="0.2" height="15.0" fill="rgb(251,50,2)" rx="2" ry="2" />
<text x="1013.11" y="2063.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1036.1" y="2005" width="0.2" height="15.0" fill="rgb(213,182,16)" rx="2" ry="2" />
<text x="1039.11" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (4 samples, 0.02%)</title><rect x="43.7" y="2037" width="0.3" height="15.0" fill="rgb(252,133,19)" rx="2" ry="2" />
<text x="46.72" y="2047.5" ></text>
</g>
<g >
<title>VizCompositorTh (172 samples, 1.03%)</title><rect x="1025.3" y="2069" width="12.2" height="15.0" fill="rgb(251,180,9)" rx="2" ry="2" />
<text x="1028.27" y="2079.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1012.2" y="1973" width="0.1" height="15.0" fill="rgb(229,70,46)" rx="2" ry="2" />
<text x="1015.17" y="1983.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (111 samples, 0.67%)</title><rect x="999.1" y="1973" width="7.9" height="15.0" fill="rgb(211,12,36)" rx="2" ry="2" />
<text x="1002.13" y="1983.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (5 samples, 0.03%)</title><rect x="1092.9" y="2005" width="0.3" height="15.0" fill="rgb(233,77,13)" rx="2" ry="2" />
<text x="1095.87" y="2015.5" ></text>
</g>
<g >
<title>__libc_write (2 samples, 0.01%)</title><rect x="1015.1" y="2037" width="0.1" height="15.0" fill="rgb(238,9,13)" rx="2" ry="2" />
<text x="1018.07" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1861" width="0.2" height="15.0" fill="rgb(214,18,32)" rx="2" ry="2" />
<text x="1048.82" y="1871.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (9 samples, 0.05%)</title><rect x="1181.5" y="1973" width="0.6" height="15.0" fill="rgb(213,207,32)" rx="2" ry="2" />
<text x="1184.50" y="1983.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="990.8" y="1957" width="0.3" height="15.0" fill="rgb(213,106,46)" rx="2" ry="2" />
<text x="993.84" y="1967.5" ></text>
</g>
<g >
<title>clock_gettime@GLIBC_2.2.5 (5 samples, 0.03%)</title><rect x="991.3" y="2021" width="0.3" height="15.0" fill="rgb(217,166,42)" rx="2" ry="2" />
<text x="994.27" y="2031.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (9 samples, 0.05%)</title><rect x="34.2" y="1957" width="0.7" height="15.0" fill="rgb(225,218,34)" rx="2" ry="2" />
<text x="37.23" y="1967.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1010.4" y="2021" width="0.1" height="15.0" fill="rgb(225,79,33)" rx="2" ry="2" />
<text x="1013.40" y="2031.5" ></text>
</g>
<g >
<title>clock_gettime@GLIBC_2.2.5 (6 samples, 0.04%)</title><rect x="1037.5" y="1989" width="0.5" height="15.0" fill="rgb(240,221,38)" rx="2" ry="2" />
<text x="1040.53" y="1999.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1017.6" y="1989" width="0.2" height="15.0" fill="rgb(250,75,10)" rx="2" ry="2" />
<text x="1020.55" y="1999.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1093.5" y="1989" width="0.1" height="15.0" fill="rgb(227,90,2)" rx="2" ry="2" />
<text x="1096.50" y="1999.5" ></text>
</g>
<g >
<title>clock_gettime@GLIBC_2.2.5 (11 samples, 0.07%)</title><rect x="1046.2" y="2021" width="0.8" height="15.0" fill="rgb(223,58,27)" rx="2" ry="2" />
<text x="1049.18" y="2031.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="45.9" y="2021" width="0.3" height="15.0" fill="rgb(226,226,6)" rx="2" ry="2" />
<text x="48.92" y="2031.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1044.8" y="1941" width="0.2" height="15.0" fill="rgb(238,99,8)" rx="2" ry="2" />
<text x="1047.83" y="1951.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1025.0" y="2005" width="0.3" height="15.0" fill="rgb(232,123,29)" rx="2" ry="2" />
<text x="1027.99" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1022.4" y="1973" width="0.2" height="15.0" fill="rgb(205,30,18)" rx="2" ry="2" />
<text x="1025.44" y="1983.5" ></text>
</g>
<g >
<title>__libc_write (2 samples, 0.01%)</title><rect x="1012.5" y="2037" width="0.1" height="15.0" fill="rgb(236,185,13)" rx="2" ry="2" />
<text x="1015.45" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1877" width="0.5" height="15.0" fill="rgb(217,150,42)" rx="2" ry="2" />
<text x="1061.57" y="1887.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="32.7" y="2005" width="0.3" height="15.0" fill="rgb(218,133,53)" rx="2" ry="2" />
<text x="35.67" y="2015.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="33.2" y="2021" width="0.3" height="15.0" fill="rgb(205,97,50)" rx="2" ry="2" />
<text x="36.24" y="2031.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (45 samples, 0.27%)</title><rect x="1174.5" y="1957" width="3.2" height="15.0" fill="rgb(222,169,22)" rx="2" ry="2" />
<text x="1177.48" y="1967.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1182.5" y="2005" width="0.2" height="15.0" fill="rgb(226,68,30)" rx="2" ry="2" />
<text x="1185.49" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1025.3" y="1973" width="0.2" height="15.0" fill="rgb(232,70,41)" rx="2" ry="2" />
<text x="1028.27" y="1983.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (5 samples, 0.03%)</title><rect x="1173.8" y="1989" width="0.3" height="15.0" fill="rgb(229,125,8)" rx="2" ry="2" />
<text x="1176.78" y="1999.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (74 samples, 0.44%)</title><rect x="1050.4" y="1989" width="5.3" height="15.0" fill="rgb(232,147,20)" rx="2" ry="2" />
<text x="1053.43" y="1999.5" ></text>
</g>
<g >
<title>__GI___getrandom (2 samples, 0.01%)</title><rect x="1066.9" y="2037" width="0.1" height="15.0" fill="rgb(222,192,5)" rx="2" ry="2" />
<text x="1069.86" y="2047.5" ></text>
</g>
<g >
<title>__open64_nocancel (2 samples, 0.01%)</title><rect x="1189.9" y="2021" width="0.1" height="15.0" fill="rgb(235,71,25)" rx="2" ry="2" />
<text x="1192.86" y="2031.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1011.0" y="1989" width="0.2" height="15.0" fill="rgb(238,72,4)" rx="2" ry="2" />
<text x="1014.03" y="1999.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1058.1" y="1957" width="0.1" height="15.0" fill="rgb(232,53,7)" rx="2" ry="2" />
<text x="1061.08" y="1967.5" ></text>
</g>
<g >
<title>__libc_read (2 samples, 0.01%)</title><rect x="1014.9" y="2037" width="0.2" height="15.0" fill="rgb(238,201,43)" rx="2" ry="2" />
<text x="1017.93" y="2047.5" ></text>
</g>
<g >
<title>do_syscall_64 (106 samples, 0.64%)</title><rect x="991.6" y="1989" width="7.5" height="15.0" fill="rgb(230,31,10)" rx="2" ry="2" />
<text x="994.62" y="1999.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (11 samples, 0.07%)</title><rect x="1102.2" y="1957" width="0.8" height="15.0" fill="rgb(219,159,41)" rx="2" ry="2" />
<text x="1105.22" y="1967.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (8 samples, 0.05%)</title><rect x="1075.2" y="1973" width="0.6" height="15.0" fill="rgb(216,10,46)" rx="2" ry="2" />
<text x="1078.22" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1173" width="0.2" height="15.0" fill="rgb(241,43,15)" rx="2" ry="2" />
<text x="1048.82" y="1183.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (5 samples, 0.03%)</title><rect x="46.2" y="2005" width="0.4" height="15.0" fill="rgb(239,111,3)" rx="2" ry="2" />
<text x="49.20" y="2015.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (10 samples, 0.06%)</title><rect x="1065.7" y="2005" width="0.7" height="15.0" fill="rgb(236,184,20)" rx="2" ry="2" />
<text x="1068.73" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (6 samples, 0.04%)</title><rect x="1037.5" y="1909" width="0.5" height="15.0" fill="rgb(220,108,11)" rx="2" ry="2" />
<text x="1040.53" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1349" width="0.2" height="15.0" fill="rgb(244,135,44)" rx="2" ry="2" />
<text x="1048.82" y="1359.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="837" width="0.5" height="15.0" fill="rgb(217,11,2)" rx="2" ry="2" />
<text x="1061.57" y="847.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (10 samples, 0.06%)</title><rect x="1092.5" y="2021" width="0.7" height="15.0" fill="rgb(250,55,42)" rx="2" ry="2" />
<text x="1095.51" y="2031.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (8 samples, 0.05%)</title><rect x="1060.3" y="1989" width="0.5" height="15.0" fill="rgb(237,138,52)" rx="2" ry="2" />
<text x="1063.27" y="1999.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (6 samples, 0.04%)</title><rect x="1047.5" y="2005" width="0.4" height="15.0" fill="rgb(220,31,3)" rx="2" ry="2" />
<text x="1050.52" y="2015.5" ></text>
</g>
<g >
<title>[.electron-wrapped] (6 samples, 0.04%)</title><rect x="10.0" y="1733" width="0.4" height="15.0" fill="rgb(253,163,20)" rx="2" ry="2" />
<text x="13.00" y="1743.5" ></text>
</g>
<g >
<title>__poll (9 samples, 0.05%)</title><rect x="45.9" y="2053" width="0.7" height="15.0" fill="rgb(247,177,4)" rx="2" ry="2" />
<text x="48.92" y="2063.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1093.2" y="2005" width="0.2" height="15.0" fill="rgb(242,13,9)" rx="2" ry="2" />
<text x="1096.22" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (15 samples, 0.09%)</title><rect x="1037.5" y="2037" width="1.1" height="15.0" fill="rgb(240,77,25)" rx="2" ry="2" />
<text x="1040.53" y="2047.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1189.6" y="2005" width="0.1" height="15.0" fill="rgb(227,162,52)" rx="2" ry="2" />
<text x="1192.57" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (7 samples, 0.04%)</title><rect x="1045.7" y="2021" width="0.5" height="15.0" fill="rgb(245,160,18)" rx="2" ry="2" />
<text x="1048.68" y="2031.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1021.0" y="2037" width="0.3" height="15.0" fill="rgb(234,119,41)" rx="2" ry="2" />
<text x="1024.02" y="2047.5" ></text>
</g>
<g >
<title>[.electron-wrapped] (18 samples, 0.11%)</title><rect x="10.0" y="1877" width="1.3" height="15.0" fill="rgb(207,49,39)" rx="2" ry="2" />
<text x="13.00" y="1887.5" ></text>
</g>
<g >
<title>do_syscall_64 (10 samples, 0.06%)</title><rect x="1167.5" y="2005" width="0.7" height="15.0" fill="rgb(213,179,37)" rx="2" ry="2" />
<text x="1170.54" y="2015.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1044.7" y="1973" width="0.3" height="15.0" fill="rgb(235,186,17)" rx="2" ry="2" />
<text x="1047.69" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1653" width="0.5" height="15.0" fill="rgb(247,152,18)" rx="2" ry="2" />
<text x="1061.57" y="1663.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="1063.3" y="1973" width="0.2" height="15.0" fill="rgb(233,144,23)" rx="2" ry="2" />
<text x="1066.25" y="1983.5" ></text>
</g>
<g >
<title>clock_gettime@GLIBC_2.2.5 (5 samples, 0.03%)</title><rect x="1010.7" y="2037" width="0.3" height="15.0" fill="rgb(209,190,13)" rx="2" ry="2" />
<text x="1013.68" y="2047.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (6 samples, 0.04%)</title><rect x="1009.1" y="1941" width="0.4" height="15.0" fill="rgb(227,146,23)" rx="2" ry="2" />
<text x="1012.12" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1029" width="0.2" height="15.0" fill="rgb(205,226,9)" rx="2" ry="2" />
<text x="1048.82" y="1039.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="990.6" y="2005" width="0.1" height="15.0" fill="rgb(208,124,33)" rx="2" ry="2" />
<text x="993.56" y="2015.5" ></text>
</g>
<g >
<title>[libxul.so] (14 samples, 0.08%)</title><rect x="1044.7" y="2037" width="1.0" height="15.0" fill="rgb(207,104,39)" rx="2" ry="2" />
<text x="1047.69" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1781" width="0.2" height="15.0" fill="rgb(222,202,46)" rx="2" ry="2" />
<text x="1048.82" y="1791.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="1063.0" y="2021" width="0.3" height="15.0" fill="rgb(205,68,0)" rx="2" ry="2" />
<text x="1065.97" y="2031.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="1113.1" y="2021" width="0.2" height="15.0" fill="rgb(207,217,4)" rx="2" ry="2" />
<text x="1116.13" y="2031.5" ></text>
</g>
<g >
<title>__GI___readlink (8 samples, 0.05%)</title><rect x="1067.1" y="2037" width="0.6" height="15.0" fill="rgb(240,113,18)" rx="2" ry="2" />
<text x="1070.15" y="2047.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1047.0" y="1941" width="0.1" height="15.0" fill="rgb(210,124,4)" rx="2" ry="2" />
<text x="1049.95" y="1951.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (106 samples, 0.64%)</title><rect x="991.6" y="1957" width="7.5" height="15.0" fill="rgb(242,14,47)" rx="2" ry="2" />
<text x="994.62" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (5 samples, 0.03%)</title><rect x="1045.7" y="2005" width="0.3" height="15.0" fill="rgb(234,9,40)" rx="2" ry="2" />
<text x="1048.68" y="2015.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="1058.6" y="37" width="0.3" height="15.0" fill="rgb(250,141,35)" rx="2" ry="2" />
<text x="1061.57" y="47.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="245" width="0.5" height="15.0" fill="rgb(223,115,47)" rx="2" ry="2" />
<text x="1061.57" y="255.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="1104.2" y="2005" width="0.2" height="15.0" fill="rgb(214,166,54)" rx="2" ry="2" />
<text x="1107.20" y="2015.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (3 samples, 0.02%)</title><rect x="1023.9" y="2005" width="0.2" height="15.0" fill="rgb(222,196,54)" rx="2" ry="2" />
<text x="1026.93" y="2015.5" ></text>
</g>
<g >
<title>do_syscall_64 (5 samples, 0.03%)</title><rect x="45.1" y="1989" width="0.4" height="15.0" fill="rgb(243,193,5)" rx="2" ry="2" />
<text x="48.14" y="1999.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1066.7" y="2021" width="0.2" height="15.0" fill="rgb(209,92,4)" rx="2" ry="2" />
<text x="1069.72" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="965" width="0.5" height="15.0" fill="rgb(214,214,1)" rx="2" ry="2" />
<text x="1061.57" y="975.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="36.4" y="1973" width="0.2" height="15.0" fill="rgb(224,73,18)" rx="2" ry="2" />
<text x="39.43" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (3 samples, 0.02%)</title><rect x="33.7" y="1989" width="0.2" height="15.0" fill="rgb(233,19,54)" rx="2" ry="2" />
<text x="36.73" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="709" width="0.5" height="15.0" fill="rgb(219,22,50)" rx="2" ry="2" />
<text x="1061.57" y="719.5" ></text>
</g>
<g >
<title>pthread_cond_wait@@GLIBC_2.3.2 (2 samples, 0.01%)</title><rect x="1021.7" y="2053" width="0.2" height="15.0" fill="rgb(212,147,50)" rx="2" ry="2" />
<text x="1024.73" y="2063.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1010.8" y="1989" width="0.2" height="15.0" fill="rgb(224,198,42)" rx="2" ry="2" />
<text x="1013.82" y="1999.5" ></text>
</g>
<g >
<title>__libc_recvmsg (6 samples, 0.04%)</title><rect x="1017.3" y="2037" width="0.5" height="15.0" fill="rgb(245,192,7)" rx="2" ry="2" />
<text x="1020.34" y="2047.5" ></text>
</g>
<g >
<title>PyInit_posix (2 samples, 0.01%)</title><rect x="1064.4" y="2037" width="0.1" height="15.0" fill="rgb(253,183,6)" rx="2" ry="2" />
<text x="1067.38" y="2047.5" ></text>
</g>
<g >
<title>do_syscall_64 (10 samples, 0.06%)</title><rect x="1065.0" y="2005" width="0.7" height="15.0" fill="rgb(241,141,36)" rx="2" ry="2" />
<text x="1068.02" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="46.8" y="1909" width="0.3" height="15.0" fill="rgb(230,167,3)" rx="2" ry="2" />
<text x="49.84" y="1919.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="36.9" y="1941" width="0.2" height="15.0" fill="rgb(253,15,35)" rx="2" ry="2" />
<text x="39.85" y="1951.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1012.6" y="1973" width="0.1" height="15.0" fill="rgb(210,16,38)" rx="2" ry="2" />
<text x="1015.59" y="1983.5" ></text>
</g>
<g >
<title>mozilla::detail::MutexImpl::lock (3 samples, 0.02%)</title><rect x="1023.9" y="2037" width="0.2" height="15.0" fill="rgb(251,183,3)" rx="2" ry="2" />
<text x="1026.93" y="2047.5" ></text>
</g>
<g >
<title>syscall (2 samples, 0.01%)</title><rect x="1042.6" y="2037" width="0.1" height="15.0" fill="rgb(254,54,13)" rx="2" ry="2" />
<text x="1045.56" y="2047.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1020.6" y="1989" width="0.2" height="15.0" fill="rgb(240,82,12)" rx="2" ry="2" />
<text x="1023.60" y="1999.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="983.7" y="2005" width="0.2" height="15.0" fill="rgb(237,122,9)" rx="2" ry="2" />
<text x="986.69" y="2015.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="33.9" y="1957" width="0.2" height="15.0" fill="rgb(213,226,26)" rx="2" ry="2" />
<text x="36.95" y="1967.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (145 samples, 0.87%)</title><rect x="22.1" y="1989" width="10.3" height="15.0" fill="rgb(208,45,52)" rx="2" ry="2" />
<text x="25.12" y="1999.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (5 samples, 0.03%)</title><rect x="1010.7" y="2021" width="0.3" height="15.0" fill="rgb(230,167,38)" rx="2" ry="2" />
<text x="1013.68" y="2031.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="1058.9" y="69" width="0.2" height="15.0" fill="rgb(226,123,54)" rx="2" ry="2" />
<text x="1061.86" y="79.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1013.5" y="2021" width="0.2" height="15.0" fill="rgb(221,84,2)" rx="2" ry="2" />
<text x="1016.51" y="2031.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1066.9" y="2021" width="0.1" height="15.0" fill="rgb(209,221,44)" rx="2" ry="2" />
<text x="1069.86" y="2031.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1126.3" y="2037" width="0.1" height="15.0" fill="rgb(209,103,48)" rx="2" ry="2" />
<text x="1129.31" y="2047.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.05%)</title><rect x="10.4" y="1717" width="0.6" height="15.0" fill="rgb(217,63,16)" rx="2" ry="2" />
<text x="13.43" y="1727.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1113.1" y="2005" width="0.2" height="15.0" fill="rgb(226,187,37)" rx="2" ry="2" />
<text x="1116.13" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="421" width="0.5" height="15.0" fill="rgb(209,132,31)" rx="2" ry="2" />
<text x="1061.57" y="431.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1589" width="0.5" height="15.0" fill="rgb(233,78,21)" rx="2" ry="2" />
<text x="1061.57" y="1599.5" ></text>
</g>
<g >
<title>__libc_recvmsg (32 samples, 0.19%)</title><rect x="1025.7" y="2037" width="2.3" height="15.0" fill="rgb(215,56,42)" rx="2" ry="2" />
<text x="1028.70" y="2047.5" ></text>
</g>
<g >
<title>__GI___ioctl (6 samples, 0.04%)</title><rect x="1020.6" y="2053" width="0.4" height="15.0" fill="rgb(212,193,11)" rx="2" ry="2" />
<text x="1023.60" y="2063.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1093.4" y="2005" width="0.1" height="15.0" fill="rgb(239,159,39)" rx="2" ry="2" />
<text x="1096.36" y="2015.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.04%)</title><rect x="1104.2" y="2021" width="0.4" height="15.0" fill="rgb(253,33,3)" rx="2" ry="2" />
<text x="1107.20" y="2031.5" ></text>
</g>
<g >
<title>mozilla::detail::MutexImpl::lock (2 samples, 0.01%)</title><rect x="1058.1" y="2053" width="0.1" height="15.0" fill="rgb(249,34,19)" rx="2" ry="2" />
<text x="1061.08" y="2063.5" ></text>
</g>
<g >
<title>do_syscall_64 (15 samples, 0.09%)</title><rect x="1056.0" y="2021" width="1.0" height="15.0" fill="rgb(221,3,10)" rx="2" ry="2" />
<text x="1058.95" y="2031.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (11 samples, 0.07%)</title><rect x="1008.3" y="2037" width="0.8" height="15.0" fill="rgb(214,123,18)" rx="2" ry="2" />
<text x="1011.34" y="2047.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (4 samples, 0.02%)</title><rect x="1044.7" y="1989" width="0.3" height="15.0" fill="rgb(253,226,45)" rx="2" ry="2" />
<text x="1047.69" y="1999.5" ></text>
</g>
<g >
<title>do_syscall_64 (8 samples, 0.05%)</title><rect x="1076.4" y="2005" width="0.5" height="15.0" fill="rgb(223,141,51)" rx="2" ry="2" />
<text x="1079.36" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="517" width="0.5" height="15.0" fill="rgb(224,184,36)" rx="2" ry="2" />
<text x="1061.57" y="527.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1269" width="0.2" height="15.0" fill="rgb(223,199,32)" rx="2" ry="2" />
<text x="1048.82" y="1279.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1105.1" y="1989" width="0.2" height="15.0" fill="rgb(212,37,21)" rx="2" ry="2" />
<text x="1108.05" y="1999.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (3 samples, 0.02%)</title><rect x="1013.9" y="2021" width="0.2" height="15.0" fill="rgb(218,92,25)" rx="2" ry="2" />
<text x="1016.87" y="2031.5" ></text>
</g>
<g >
<title>__GI___open64_nocancel (90 samples, 0.54%)</title><rect x="1174.5" y="2021" width="6.4" height="15.0" fill="rgb(224,198,38)" rx="2" ry="2" />
<text x="1177.48" y="2031.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (16 samples, 0.10%)</title><rect x="988.3" y="1989" width="1.1" height="15.0" fill="rgb(215,196,5)" rx="2" ry="2" />
<text x="991.29" y="1999.5" ></text>
</g>
<g >
<title>__close_nocancel (2 samples, 0.01%)</title><rect x="1189.6" y="2021" width="0.1" height="15.0" fill="rgb(239,18,35)" rx="2" ry="2" />
<text x="1192.57" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1845" width="0.5" height="15.0" fill="rgb(230,96,13)" rx="2" ry="2" />
<text x="1061.57" y="1855.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (9 samples, 0.05%)</title><rect x="34.2" y="1941" width="0.7" height="15.0" fill="rgb(251,104,3)" rx="2" ry="2" />
<text x="37.23" y="1951.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1020.8" y="2021" width="0.2" height="15.0" fill="rgb(214,73,16)" rx="2" ry="2" />
<text x="1023.81" y="2031.5" ></text>
</g>
<g >
<title>IPDL_Background (10 samples, 0.06%)</title><rect x="1013.5" y="2069" width="0.7" height="15.0" fill="rgb(236,120,17)" rx="2" ry="2" />
<text x="1016.51" y="2079.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="165" width="0.5" height="15.0" fill="rgb(213,167,25)" rx="2" ry="2" />
<text x="1061.57" y="175.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1048.4" y="1989" width="0.1" height="15.0" fill="rgb(234,24,11)" rx="2" ry="2" />
<text x="1051.37" y="1999.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1153.8" y="1989" width="0.2" height="15.0" fill="rgb(229,128,28)" rx="2" ry="2" />
<text x="1156.80" y="1999.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="33.7" y="1893" width="0.2" height="15.0" fill="rgb(206,151,19)" rx="2" ry="2" />
<text x="36.73" y="1903.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1014.8" y="2037" width="0.1" height="15.0" fill="rgb(244,184,40)" rx="2" ry="2" />
<text x="1017.79" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1749" width="0.5" height="15.0" fill="rgb(224,121,24)" rx="2" ry="2" />
<text x="1061.57" y="1759.5" ></text>
</g>
<g >
<title>do_syscall_64 (6 samples, 0.04%)</title><rect x="44.3" y="2005" width="0.4" height="15.0" fill="rgb(243,125,47)" rx="2" ry="2" />
<text x="47.29" y="2015.5" ></text>
</g>
<g >
<title>[.electron-wrapped] (6 samples, 0.04%)</title><rect x="10.0" y="1509" width="0.4" height="15.0" fill="rgb(230,21,38)" rx="2" ry="2" />
<text x="13.00" y="1519.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (13,087 samples, 78.58%)</title><rect x="49.5" y="2021" width="927.2" height="15.0" fill="rgb(254,3,27)" rx="2" ry="2" />
<text x="52.53" y="2031.5" >entry_SYSCALL_64_after_hwframe</text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="990.7" y="1989" width="0.1" height="15.0" fill="rgb(236,27,7)" rx="2" ry="2" />
<text x="993.70" y="1999.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (17 samples, 0.10%)</title><rect x="1017.8" y="1957" width="1.2" height="15.0" fill="rgb(244,145,22)" rx="2" ry="2" />
<text x="1020.84" y="1967.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="36.6" y="1989" width="0.1" height="15.0" fill="rgb(208,182,50)" rx="2" ry="2" />
<text x="39.57" y="1999.5" ></text>
</g>
<g >
<title>clock_gettime@GLIBC_2.2.5 (4 samples, 0.02%)</title><rect x="1025.0" y="2037" width="0.3" height="15.0" fill="rgb(230,12,11)" rx="2" ry="2" />
<text x="1027.99" y="2047.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1048.4" y="1973" width="0.1" height="15.0" fill="rgb(221,123,17)" rx="2" ry="2" />
<text x="1051.37" y="1983.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (4 samples, 0.02%)</title><rect x="1015.2" y="2021" width="0.3" height="15.0" fill="rgb(241,45,29)" rx="2" ry="2" />
<text x="1018.21" y="2031.5" ></text>
</g>
<g >
<title>__GI___dup (6 samples, 0.04%)</title><rect x="1104.6" y="2053" width="0.5" height="15.0" fill="rgb(211,42,46)" rx="2" ry="2" />
<text x="1107.63" y="2063.5" ></text>
</g>
<g >
<title>update_get_addr (4 samples, 0.02%)</title><rect x="1025.0" y="2053" width="0.3" height="15.0" fill="rgb(211,127,2)" rx="2" ry="2" />
<text x="1027.99" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="741" width="0.2" height="15.0" fill="rgb(207,24,0)" rx="2" ry="2" />
<text x="1048.82" y="751.5" ></text>
</g>
<g >
<title>setlocale (6 samples, 0.04%)</title><rect x="1189.6" y="2053" width="0.4" height="15.0" fill="rgb(230,22,21)" rx="2" ry="2" />
<text x="1192.57" y="2063.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="34.1" y="1925" width="0.1" height="15.0" fill="rgb(225,102,25)" rx="2" ry="2" />
<text x="37.09" y="1935.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="1062.4" y="2005" width="0.3" height="15.0" fill="rgb(226,129,47)" rx="2" ry="2" />
<text x="1065.40" y="2015.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="10.7" y="1685" width="0.3" height="15.0" fill="rgb(205,136,27)" rx="2" ry="2" />
<text x="13.71" y="1695.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="32.4" y="1973" width="0.3" height="15.0" fill="rgb(215,190,39)" rx="2" ry="2" />
<text x="35.39" y="1983.5" ></text>
</g>
<g >
<title>do_syscall_64 (45 samples, 0.27%)</title><rect x="1174.5" y="1989" width="3.2" height="15.0" fill="rgb(214,85,26)" rx="2" ry="2" />
<text x="1177.48" y="1999.5" ></text>
</g>
<g >
<title>clock_gettime@GLIBC_2.2.5 (3 samples, 0.02%)</title><rect x="1013.9" y="2037" width="0.2" height="15.0" fill="rgb(211,228,53)" rx="2" ry="2" />
<text x="1016.87" y="2047.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="1025.0" y="1989" width="0.3" height="15.0" fill="rgb(214,76,20)" rx="2" ry="2" />
<text x="1027.99" y="1999.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="983.5" y="1989" width="0.2" height="15.0" fill="rgb(239,210,16)" rx="2" ry="2" />
<text x="986.47" y="1999.5" ></text>
</g>
<g >
<title>v8::internal::Execution::Call (6 samples, 0.04%)</title><rect x="10.0" y="1621" width="0.4" height="15.0" fill="rgb(238,144,3)" rx="2" ry="2" />
<text x="13.00" y="1631.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1061" width="0.5" height="15.0" fill="rgb(227,227,16)" rx="2" ry="2" />
<text x="1061.57" y="1071.5" ></text>
</g>
<g >
<title>[unknown] (116 samples, 0.70%)</title><rect x="982.6" y="2053" width="8.2" height="15.0" fill="rgb(248,44,1)" rx="2" ry="2" />
<text x="985.62" y="2063.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (8 samples, 0.05%)</title><rect x="1106.0" y="2021" width="0.6" height="15.0" fill="rgb(249,165,42)" rx="2" ry="2" />
<text x="1109.04" y="2031.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (10 samples, 0.06%)</title><rect x="1146.7" y="2005" width="0.7" height="15.0" fill="rgb(229,220,37)" rx="2" ry="2" />
<text x="1149.71" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1015.2" y="1973" width="0.2" height="15.0" fill="rgb(234,99,51)" rx="2" ry="2" />
<text x="1018.21" y="1983.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (47 samples, 0.28%)</title><rect x="1186.2" y="2005" width="3.4" height="15.0" fill="rgb(206,186,0)" rx="2" ry="2" />
<text x="1189.24" y="2015.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.04%)</title><rect x="983.5" y="2021" width="0.4" height="15.0" fill="rgb(230,169,15)" rx="2" ry="2" />
<text x="986.47" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="325" width="0.2" height="15.0" fill="rgb(230,208,8)" rx="2" ry="2" />
<text x="1048.82" y="335.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (145 samples, 0.87%)</title><rect x="11.8" y="1973" width="10.3" height="15.0" fill="rgb(232,182,16)" rx="2" ry="2" />
<text x="14.84" y="1983.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="49.0" y="1893" width="0.3" height="15.0" fill="rgb(211,56,39)" rx="2" ry="2" />
<text x="52.04" y="1903.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (34 samples, 0.20%)</title><rect x="1093.6" y="2021" width="2.5" height="15.0" fill="rgb(238,88,1)" rx="2" ry="2" />
<text x="1096.64" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1893" width="0.2" height="15.0" fill="rgb(249,202,38)" rx="2" ry="2" />
<text x="1048.82" y="1903.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (74 samples, 0.44%)</title><rect x="1050.4" y="1973" width="5.3" height="15.0" fill="rgb(244,79,3)" rx="2" ry="2" />
<text x="1053.43" y="1983.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.02%)</title><rect x="1045.3" y="1957" width="0.2" height="15.0" fill="rgb(206,134,18)" rx="2" ry="2" />
<text x="1048.25" y="1967.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1013.9" y="1989" width="0.2" height="15.0" fill="rgb(218,127,25)" rx="2" ry="2" />
<text x="1016.94" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1493" width="0.5" height="15.0" fill="rgb(221,221,7)" rx="2" ry="2" />
<text x="1061.57" y="1503.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (2 samples, 0.01%)</title><rect x="1058.1" y="2021" width="0.1" height="15.0" fill="rgb(222,148,12)" rx="2" ry="2" />
<text x="1061.08" y="2031.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (6 samples, 0.04%)</title><rect x="1145.4" y="2021" width="0.5" height="15.0" fill="rgb(253,109,22)" rx="2" ry="2" />
<text x="1148.44" y="2031.5" ></text>
</g>
<g >
<title>.kitty-wrapped (40 samples, 0.24%)</title><rect x="43.7" y="2069" width="2.9" height="15.0" fill="rgb(239,173,15)" rx="2" ry="2" />
<text x="46.72" y="2079.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5 samples, 0.03%)</title><rect x="991.3" y="1989" width="0.3" height="15.0" fill="rgb(211,34,21)" rx="2" ry="2" />
<text x="994.27" y="1999.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (16 samples, 0.10%)</title><rect x="35.3" y="2021" width="1.1" height="15.0" fill="rgb(234,210,24)" rx="2" ry="2" />
<text x="38.29" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1381" width="0.5" height="15.0" fill="rgb(216,217,33)" rx="2" ry="2" />
<text x="1061.57" y="1391.5" ></text>
</g>
<g >
<title>perf_event__synthesize_comm (2 samples, 0.01%)</title><rect x="49.4" y="1973" width="0.1" height="15.0" fill="rgb(208,90,40)" rx="2" ry="2" />
<text x="52.39" y="1983.5" ></text>
</g>
<g >
<title>init_tls (2 samples, 0.01%)</title><rect x="1182.3" y="2053" width="0.2" height="15.0" fill="rgb(206,83,10)" rx="2" ry="2" />
<text x="1185.35" y="2063.5" ></text>
</g>
<g >
<title>brk (2 samples, 0.01%)</title><rect x="1182.2" y="2053" width="0.1" height="15.0" fill="rgb(226,84,25)" rx="2" ry="2" />
<text x="1185.21" y="2063.5" ></text>
</g>
<g >
<title>mprotect (10 samples, 0.06%)</title><rect x="1173.8" y="2037" width="0.7" height="15.0" fill="rgb(249,217,37)" rx="2" ry="2" />
<text x="1176.78" y="2047.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (5 samples, 0.03%)</title><rect x="1173.8" y="1973" width="0.3" height="15.0" fill="rgb(248,35,12)" rx="2" ry="2" />
<text x="1176.78" y="1983.5" ></text>
</g>
<g >
<title>__libc_write (4 samples, 0.02%)</title><rect x="36.4" y="2037" width="0.3" height="15.0" fill="rgb(215,141,7)" rx="2" ry="2" />
<text x="39.43" y="2047.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="1022.2" y="1973" width="0.2" height="15.0" fill="rgb(218,167,40)" rx="2" ry="2" />
<text x="1025.16" y="1983.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (2 samples, 0.01%)</title><rect x="1010.5" y="2037" width="0.2" height="15.0" fill="rgb(228,41,24)" rx="2" ry="2" />
<text x="1013.54" y="2047.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (5 samples, 0.03%)</title><rect x="1008.3" y="1989" width="0.4" height="15.0" fill="rgb(243,128,12)" rx="2" ry="2" />
<text x="1011.34" y="1999.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1058.3" y="2037" width="0.3" height="15.0" fill="rgb(246,123,3)" rx="2" ry="2" />
<text x="1061.29" y="2047.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="47.1" y="1925" width="0.3" height="15.0" fill="rgb(253,87,37)" rx="2" ry="2" />
<text x="50.13" y="1935.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1113.3" y="2021" width="0.3" height="15.0" fill="rgb(239,212,43)" rx="2" ry="2" />
<text x="1116.34" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="645" width="0.5" height="15.0" fill="rgb(234,18,20)" rx="2" ry="2" />
<text x="1061.57" y="655.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1067.9" y="2005" width="0.2" height="15.0" fill="rgb(249,45,15)" rx="2" ry="2" />
<text x="1070.93" y="2015.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="1045.3" y="1941" width="0.2" height="15.0" fill="rgb(206,137,25)" rx="2" ry="2" />
<text x="1048.25" y="1951.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (43 samples, 0.26%)</title><rect x="1147.4" y="1989" width="3.1" height="15.0" fill="rgb(218,99,34)" rx="2" ry="2" />
<text x="1150.42" y="1999.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (5 samples, 0.03%)</title><rect x="1174.1" y="1989" width="0.4" height="15.0" fill="rgb(207,137,11)" rx="2" ry="2" />
<text x="1177.13" y="1999.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1153.8" y="2005" width="0.2" height="15.0" fill="rgb(235,121,37)" rx="2" ry="2" />
<text x="1156.80" y="2015.5" ></text>
</g>
<g >
<title>__munmap (2 samples, 0.01%)</title><rect x="1092.4" y="2037" width="0.1" height="15.0" fill="rgb(233,146,31)" rx="2" ry="2" />
<text x="1095.37" y="2047.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1153.7" y="2021" width="0.1" height="15.0" fill="rgb(229,156,14)" rx="2" ry="2" />
<text x="1156.65" y="2031.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1046.0" y="1925" width="0.2" height="15.0" fill="rgb(210,59,41)" rx="2" ry="2" />
<text x="1049.03" y="1935.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1011.0" y="2037" width="0.3" height="15.0" fill="rgb(254,155,0)" rx="2" ry="2" />
<text x="1014.03" y="2047.5" ></text>
</g>
<g >
<title>__getpid (2 samples, 0.01%)</title><rect x="1015.6" y="2005" width="0.2" height="15.0" fill="rgb(208,105,14)" rx="2" ry="2" />
<text x="1018.64" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1829" width="0.5" height="15.0" fill="rgb(230,44,38)" rx="2" ry="2" />
<text x="1061.57" y="1839.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="981" width="0.5" height="15.0" fill="rgb(216,179,4)" rx="2" ry="2" />
<text x="1061.57" y="991.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="1067.1" y="2005" width="0.3" height="15.0" fill="rgb(253,35,54)" rx="2" ry="2" />
<text x="1070.15" y="2015.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1067.0" y="2021" width="0.1" height="15.0" fill="rgb(216,90,18)" rx="2" ry="2" />
<text x="1070.01" y="2031.5" ></text>
</g>
<g >
<title>clock_gettime@GLIBC_2.2.5 (3 samples, 0.02%)</title><rect x="33.7" y="1973" width="0.2" height="15.0" fill="rgb(252,220,42)" rx="2" ry="2" />
<text x="36.73" y="1983.5" ></text>
</g>
<g >
<title>[.electron-wrapped] (26 samples, 0.16%)</title><rect x="10.0" y="2021" width="1.8" height="15.0" fill="rgb(250,200,35)" rx="2" ry="2" />
<text x="13.00" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="533" width="0.2" height="15.0" fill="rgb(230,170,13)" rx="2" ry="2" />
<text x="1048.82" y="543.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1022.4" y="2005" width="0.2" height="15.0" fill="rgb(222,53,10)" rx="2" ry="2" />
<text x="1025.44" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1113.1" y="1989" width="0.2" height="15.0" fill="rgb(206,139,8)" rx="2" ry="2" />
<text x="1116.13" y="1999.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (6 samples, 0.04%)</title><rect x="44.3" y="1973" width="0.4" height="15.0" fill="rgb(224,32,29)" rx="2" ry="2" />
<text x="47.29" y="1983.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1104.6" y="2005" width="0.2" height="15.0" fill="rgb(241,8,44)" rx="2" ry="2" />
<text x="1107.63" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (6 samples, 0.04%)</title><rect x="1013.1" y="2053" width="0.4" height="15.0" fill="rgb(237,218,9)" rx="2" ry="2" />
<text x="1016.09" y="2063.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (14 samples, 0.08%)</title><rect x="1059.1" y="2005" width="1.0" height="15.0" fill="rgb(247,188,22)" rx="2" ry="2" />
<text x="1062.14" y="2015.5" ></text>
</g>
<g >
<title>__libc_send (6 samples, 0.04%)</title><rect x="1007.3" y="2053" width="0.4" height="15.0" fill="rgb(233,179,23)" rx="2" ry="2" />
<text x="1010.28" y="2063.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1154.0" y="2005" width="0.2" height="15.0" fill="rgb(238,220,42)" rx="2" ry="2" />
<text x="1157.01" y="2015.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.05%)</title><rect x="1067.1" y="2021" width="0.6" height="15.0" fill="rgb(222,112,14)" rx="2" ry="2" />
<text x="1070.15" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="661" width="0.2" height="15.0" fill="rgb(215,84,32)" rx="2" ry="2" />
<text x="1048.82" y="671.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="949" width="0.2" height="15.0" fill="rgb(223,36,6)" rx="2" ry="2" />
<text x="1048.82" y="959.5" ></text>
</g>
<g >
<title>__poll (2 samples, 0.01%)</title><rect x="1015.5" y="2053" width="0.1" height="15.0" fill="rgb(207,22,32)" rx="2" ry="2" />
<text x="1018.50" y="2063.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (5 samples, 0.03%)</title><rect x="45.5" y="1973" width="0.3" height="15.0" fill="rgb(215,220,40)" rx="2" ry="2" />
<text x="48.50" y="1983.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (6 samples, 0.04%)</title><rect x="44.3" y="1989" width="0.4" height="15.0" fill="rgb(212,132,24)" rx="2" ry="2" />
<text x="47.29" y="1999.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (15 samples, 0.09%)</title><rect x="1056.0" y="1989" width="1.0" height="15.0" fill="rgb(226,49,12)" rx="2" ry="2" />
<text x="1058.95" y="1999.5" ></text>
</g>
<g >
<title>__vdso_gettimeofday (2 samples, 0.01%)</title><rect x="1014.5" y="2021" width="0.1" height="15.0" fill="rgb(229,74,46)" rx="2" ry="2" />
<text x="1017.51" y="2031.5" ></text>
</g>
<g >
<title>do_syscall_64 (5 samples, 0.03%)</title><rect x="1173.8" y="2005" width="0.3" height="15.0" fill="rgb(223,166,38)" rx="2" ry="2" />
<text x="1176.78" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="453" width="0.2" height="15.0" fill="rgb(217,82,31)" rx="2" ry="2" />
<text x="1048.82" y="463.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1014.2" y="1941" width="0.2" height="15.0" fill="rgb(239,175,14)" rx="2" ry="2" />
<text x="1017.22" y="1951.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (8 samples, 0.05%)</title><rect x="1036.9" y="2005" width="0.6" height="15.0" fill="rgb(212,41,25)" rx="2" ry="2" />
<text x="1039.89" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="373" width="0.5" height="15.0" fill="rgb(210,128,0)" rx="2" ry="2" />
<text x="1061.57" y="383.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1060.1" y="2021" width="0.2" height="15.0" fill="rgb(223,7,6)" rx="2" ry="2" />
<text x="1063.13" y="2031.5" ></text>
</g>
<g >
<title>[.electron-wrapped] (18 samples, 0.11%)</title><rect x="10.0" y="1765" width="1.3" height="15.0" fill="rgb(248,20,33)" rx="2" ry="2" />
<text x="13.00" y="1775.5" ></text>
</g>
<g >
<title>[unknown] (11 samples, 0.07%)</title><rect x="1010.3" y="2053" width="0.7" height="15.0" fill="rgb(219,5,54)" rx="2" ry="2" />
<text x="1013.25" y="2063.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (5 samples, 0.03%)</title><rect x="1016.3" y="1989" width="0.4" height="15.0" fill="rgb(228,222,9)" rx="2" ry="2" />
<text x="1019.35" y="1999.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="34.1" y="1941" width="0.1" height="15.0" fill="rgb(229,119,4)" rx="2" ry="2" />
<text x="37.09" y="1951.5" ></text>
</g>
<g >
<title>clock_gettime@GLIBC_2.2.5 (62 samples, 0.37%)</title><rect x="983.9" y="2037" width="4.4" height="15.0" fill="rgb(252,212,26)" rx="2" ry="2" />
<text x="986.90" y="2047.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (6,539 samples, 39.26%)</title><rect x="49.5" y="1989" width="463.3" height="15.0" fill="rgb(215,192,22)" rx="2" ry="2" />
<text x="52.53" y="1999.5" >syscall_trace_enter.constprop.0</text>
</g>
<g >
<title>.electron-wrapp (332 samples, 1.99%)</title><rect x="10.0" y="2069" width="23.5" height="15.0" fill="rgb(207,208,23)" rx="2" ry="2" />
<text x="13.00" y="2079.5" >...</text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (20 samples, 0.12%)</title><rect x="1169.2" y="2021" width="1.5" height="15.0" fill="rgb(234,221,22)" rx="2" ry="2" />
<text x="1172.24" y="2031.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (16 samples, 0.10%)</title><rect x="989.4" y="1989" width="1.2" height="15.0" fill="rgb(239,211,34)" rx="2" ry="2" />
<text x="992.42" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="389" width="0.2" height="15.0" fill="rgb(213,79,7)" rx="2" ry="2" />
<text x="1048.82" y="399.5" ></text>
</g>
<g >
<title>pthread_cond_broadcast@@GLIBC_2.3.2 (4 samples, 0.02%)</title><rect x="1007.0" y="2037" width="0.3" height="15.0" fill="rgb(223,52,12)" rx="2" ry="2" />
<text x="1010.00" y="2047.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="1062.1" y="1989" width="0.3" height="15.0" fill="rgb(246,86,14)" rx="2" ry="2" />
<text x="1065.12" y="1999.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="33.0" y="1989" width="0.2" height="15.0" fill="rgb(245,10,21)" rx="2" ry="2" />
<text x="35.96" y="1999.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1104.6" y="1989" width="0.2" height="15.0" fill="rgb(224,107,34)" rx="2" ry="2" />
<text x="1107.63" y="1999.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1012.7" y="1989" width="0.2" height="15.0" fill="rgb(218,109,22)" rx="2" ry="2" />
<text x="1015.73" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1605" width="0.2" height="15.0" fill="rgb(222,14,16)" rx="2" ry="2" />
<text x="1048.82" y="1615.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1397" width="0.2" height="15.0" fill="rgb(205,121,3)" rx="2" ry="2" />
<text x="1048.82" y="1407.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (111 samples, 0.67%)</title><rect x="999.1" y="1989" width="7.9" height="15.0" fill="rgb(236,185,37)" rx="2" ry="2" />
<text x="1002.13" y="1999.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (22 samples, 0.13%)</title><rect x="1170.7" y="1973" width="1.5" height="15.0" fill="rgb(254,67,35)" rx="2" ry="2" />
<text x="1173.66" y="1983.5" ></text>
</g>
<g >
<title>all (16,655 samples, 100%)</title><rect x="10.0" y="2085" width="1180.0" height="15.0" fill="rgb(253,177,45)" rx="2" ry="2" />
<text x="13.00" y="2095.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="469" width="0.5" height="15.0" fill="rgb(222,109,18)" rx="2" ry="2" />
<text x="1061.57" y="479.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1013.2" y="2021" width="0.2" height="15.0" fill="rgb(208,153,12)" rx="2" ry="2" />
<text x="1016.23" y="2031.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (6,548 samples, 39.32%)</title><rect x="512.8" y="2005" width="463.9" height="15.0" fill="rgb(218,128,28)" rx="2" ry="2" />
<text x="515.82" y="2015.5" >syscall_exit_to_user_mode</text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1477" width="0.2" height="15.0" fill="rgb(212,202,1)" rx="2" ry="2" />
<text x="1048.82" y="1487.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="757" width="0.5" height="15.0" fill="rgb(216,22,18)" rx="2" ry="2" />
<text x="1061.57" y="767.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="46.7" y="1957" width="0.1" height="15.0" fill="rgb(231,228,29)" rx="2" ry="2" />
<text x="49.70" y="1967.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1020.8" y="2005" width="0.2" height="15.0" fill="rgb(227,219,0)" rx="2" ry="2" />
<text x="1023.81" y="2015.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (39 samples, 0.23%)</title><rect x="1017.8" y="2021" width="2.8" height="15.0" fill="rgb(220,224,6)" rx="2" ry="2" />
<text x="1020.84" y="2031.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (11 samples, 0.07%)</title><rect x="1103.0" y="1957" width="0.8" height="15.0" fill="rgb(237,175,47)" rx="2" ry="2" />
<text x="1106.00" y="1967.5" ></text>
</g>
<g >
<title>__open64 (2 samples, 0.01%)</title><rect x="976.7" y="2037" width="0.2" height="15.0" fill="rgb(220,201,54)" rx="2" ry="2" />
<text x="979.74" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1077" width="0.2" height="15.0" fill="rgb(212,37,48)" rx="2" ry="2" />
<text x="1048.82" y="1087.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="44.0" y="1973" width="0.1" height="15.0" fill="rgb(223,68,6)" rx="2" ry="2" />
<text x="47.01" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="437" width="0.5" height="15.0" fill="rgb(233,128,35)" rx="2" ry="2" />
<text x="1061.57" y="447.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (12 samples, 0.07%)</title><rect x="982.6" y="2021" width="0.9" height="15.0" fill="rgb(226,12,33)" rx="2" ry="2" />
<text x="985.62" y="2031.5" ></text>
</g>
<g >
<title>cmd_record (40 samples, 0.24%)</title><rect x="46.7" y="1989" width="2.8" height="15.0" fill="rgb(234,190,17)" rx="2" ry="2" />
<text x="49.70" y="1999.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.05%)</title><rect x="46.8" y="1941" width="0.6" height="15.0" fill="rgb(208,27,19)" rx="2" ry="2" />
<text x="49.84" y="1951.5" ></text>
</g>
<g >
<title>[.electron-wrapped] (26 samples, 0.16%)</title><rect x="10.0" y="2005" width="1.8" height="15.0" fill="rgb(225,197,18)" rx="2" ry="2" />
<text x="13.00" y="2015.5" ></text>
</g>
<g >
<title>do_syscall_64 (8 samples, 0.05%)</title><rect x="1036.3" y="2021" width="0.6" height="15.0" fill="rgb(209,80,54)" rx="2" ry="2" />
<text x="1039.33" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1301" width="0.5" height="15.0" fill="rgb(230,153,32)" rx="2" ry="2" />
<text x="1061.57" y="1311.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="36.6" y="2005" width="0.1" height="15.0" fill="rgb(232,8,46)" rx="2" ry="2" />
<text x="39.57" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (42 samples, 0.25%)</title><rect x="1077.6" y="1973" width="3.0" height="15.0" fill="rgb(213,65,27)" rx="2" ry="2" />
<text x="1080.63" y="1983.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (5 samples, 0.03%)</title><rect x="1092.9" y="1989" width="0.3" height="15.0" fill="rgb(253,58,23)" rx="2" ry="2" />
<text x="1095.87" y="1999.5" ></text>
</g>
<g >
<title>perf_evlist__prepare_workload (69 samples, 0.41%)</title><rect x="977.0" y="1989" width="4.9" height="15.0" fill="rgb(223,84,3)" rx="2" ry="2" />
<text x="980.03" y="1999.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (31 samples, 0.19%)</title><rect x="986.1" y="1989" width="2.2" height="15.0" fill="rgb(227,38,43)" rx="2" ry="2" />
<text x="989.09" y="1999.5" ></text>
</g>
<g >
<title>do_syscall_64 (5 samples, 0.03%)</title><rect x="1007.7" y="2021" width="0.4" height="15.0" fill="rgb(213,61,4)" rx="2" ry="2" />
<text x="1010.70" y="2031.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (8 samples, 0.05%)</title><rect x="35.9" y="2005" width="0.5" height="15.0" fill="rgb(232,206,3)" rx="2" ry="2" />
<text x="38.86" y="2015.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1010.3" y="2005" width="0.1" height="15.0" fill="rgb(223,16,21)" rx="2" ry="2" />
<text x="1013.25" y="2015.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="33.2" y="2005" width="0.3" height="15.0" fill="rgb(229,112,6)" rx="2" ry="2" />
<text x="36.24" y="2015.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="10.7" y="1701" width="0.3" height="15.0" fill="rgb(205,193,17)" rx="2" ry="2" />
<text x="13.71" y="1711.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (94 samples, 0.56%)</title><rect x="1160.9" y="2005" width="6.6" height="15.0" fill="rgb(239,166,23)" rx="2" ry="2" />
<text x="1163.88" y="2015.5" ></text>
</g>
<g >
<title>[.electron-wrapped] (6 samples, 0.04%)</title><rect x="10.0" y="1669" width="0.4" height="15.0" fill="rgb(243,146,3)" rx="2" ry="2" />
<text x="13.00" y="1679.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (77 samples, 0.46%)</title><rect x="37.1" y="2005" width="5.4" height="15.0" fill="rgb(232,55,2)" rx="2" ry="2" />
<text x="40.06" y="2015.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="1062.7" y="2021" width="0.3" height="15.0" fill="rgb(248,5,13)" rx="2" ry="2" />
<text x="1065.68" y="2031.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1025.5" y="1989" width="0.2" height="15.0" fill="rgb(222,205,37)" rx="2" ry="2" />
<text x="1028.49" y="1999.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="1104.6" y="2021" width="0.2" height="15.0" fill="rgb(219,217,36)" rx="2" ry="2" />
<text x="1107.63" y="2031.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1011.3" y="2037" width="0.2" height="15.0" fill="rgb(233,169,23)" rx="2" ry="2" />
<text x="1014.32" y="2047.5" ></text>
</g>
<g >
<title>do_syscall_64 (6 samples, 0.04%)</title><rect x="982.6" y="2005" width="0.4" height="15.0" fill="rgb(239,13,14)" rx="2" ry="2" />
<text x="985.62" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1022.7" y="1989" width="0.2" height="15.0" fill="rgb(254,54,25)" rx="2" ry="2" />
<text x="1025.72" y="1999.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (47 samples, 0.28%)</title><rect x="1129.8" y="2005" width="3.3" height="15.0" fill="rgb(215,209,14)" rx="2" ry="2" />
<text x="1132.78" y="2015.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (56 samples, 0.34%)</title><rect x="1038.6" y="2005" width="4.0" height="15.0" fill="rgb(232,214,32)" rx="2" ry="2" />
<text x="1041.59" y="2015.5" ></text>
</g>
<g >
<title>[libxul.so] (3 samples, 0.02%)</title><rect x="33.5" y="2053" width="0.2" height="15.0" fill="rgb(206,170,9)" rx="2" ry="2" />
<text x="36.52" y="2063.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1024.3" y="2005" width="0.1" height="15.0" fill="rgb(223,164,43)" rx="2" ry="2" />
<text x="1027.28" y="2015.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (8 samples, 0.05%)</title><rect x="1076.9" y="2005" width="0.6" height="15.0" fill="rgb(206,106,45)" rx="2" ry="2" />
<text x="1079.92" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (6 samples, 0.04%)</title><rect x="982.6" y="1989" width="0.4" height="15.0" fill="rgb(225,10,3)" rx="2" ry="2" />
<text x="985.62" y="1999.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (20 samples, 0.12%)</title><rect x="1146.0" y="2037" width="1.4" height="15.0" fill="rgb(227,171,17)" rx="2" ry="2" />
<text x="1149.00" y="2047.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1007.0" y="2021" width="0.3" height="15.0" fill="rgb(246,146,34)" rx="2" ry="2" />
<text x="1010.00" y="2031.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="1047.9" y="2005" width="0.3" height="15.0" fill="rgb(209,219,28)" rx="2" ry="2" />
<text x="1050.95" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (5 samples, 0.03%)</title><rect x="1092.5" y="1973" width="0.4" height="15.0" fill="rgb(222,132,48)" rx="2" ry="2" />
<text x="1095.51" y="1983.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (45 samples, 0.27%)</title><rect x="1174.5" y="1973" width="3.2" height="15.0" fill="rgb(243,66,23)" rx="2" ry="2" />
<text x="1177.48" y="1983.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="1009.5" y="1925" width="0.3" height="15.0" fill="rgb(231,5,10)" rx="2" ry="2" />
<text x="1012.55" y="1935.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1104.0" y="1989" width="0.2" height="15.0" fill="rgb(244,60,27)" rx="2" ry="2" />
<text x="1106.99" y="1999.5" ></text>
</g>
<g >
<title>do_syscall_64 (5 samples, 0.03%)</title><rect x="1016.3" y="2005" width="0.4" height="15.0" fill="rgb(221,121,50)" rx="2" ry="2" />
<text x="1019.35" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="1063.8" y="1973" width="0.3" height="15.0" fill="rgb(210,106,29)" rx="2" ry="2" />
<text x="1066.82" y="1983.5" ></text>
</g>
<g >
<title>__brk (16 samples, 0.10%)</title><rect x="1105.5" y="2053" width="1.1" height="15.0" fill="rgb(244,99,35)" rx="2" ry="2" />
<text x="1108.48" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="645" width="0.2" height="15.0" fill="rgb(214,94,29)" rx="2" ry="2" />
<text x="1048.82" y="655.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1007.1" y="1989" width="0.2" height="15.0" fill="rgb(252,219,16)" rx="2" ry="2" />
<text x="1010.14" y="1999.5" ></text>
</g>
<g >
<title>[.electron-wrapped] (6 samples, 0.04%)</title><rect x="1009.1" y="1957" width="0.4" height="15.0" fill="rgb(233,69,42)" rx="2" ry="2" />
<text x="1012.12" y="1967.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (7 samples, 0.04%)</title><rect x="1059.1" y="1973" width="0.5" height="15.0" fill="rgb(226,30,21)" rx="2" ry="2" />
<text x="1062.14" y="1983.5" ></text>
</g>
<g >
<title>python3 (1,773 samples, 10.65%)</title><rect x="1064.4" y="2069" width="125.6" height="15.0" fill="rgb(209,0,30)" rx="2" ry="2" />
<text x="1067.38" y="2079.5" >python3</text>
</g>
<g >
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1048.2" y="2005" width="0.2" height="15.0" fill="rgb(253,162,18)" rx="2" ry="2" />
<text x="1051.16" y="2015.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="1035.9" y="2021" width="0.2" height="15.0" fill="rgb(216,59,2)" rx="2" ry="2" />
<text x="1038.90" y="2031.5" ></text>
</g>
<g >
<title>[.electron-wrapped] (18 samples, 0.11%)</title><rect x="10.0" y="1781" width="1.3" height="15.0" fill="rgb(237,53,42)" rx="2" ry="2" />
<text x="13.00" y="1791.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="181" width="0.2" height="15.0" fill="rgb(234,52,23)" rx="2" ry="2" />
<text x="1048.82" y="191.5" ></text>
</g>
<g >
<title>PR_Now (4 samples, 0.02%)</title><rect x="1044.7" y="2005" width="0.3" height="15.0" fill="rgb(236,0,24)" rx="2" ry="2" />
<text x="1047.69" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1047.9" y="1973" width="0.3" height="15.0" fill="rgb(245,163,10)" rx="2" ry="2" />
<text x="1050.95" y="1983.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (13 samples, 0.08%)</title><rect x="1023.0" y="2005" width="0.9" height="15.0" fill="rgb(236,14,16)" rx="2" ry="2" />
<text x="1026.01" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1973" width="0.2" height="15.0" fill="rgb(227,154,30)" rx="2" ry="2" />
<text x="1048.82" y="1983.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (11 samples, 0.07%)</title><rect x="1046.2" y="1941" width="0.8" height="15.0" fill="rgb(235,158,51)" rx="2" ry="2" />
<text x="1049.18" y="1951.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="11.3" y="1829" width="0.3" height="15.0" fill="rgb(248,151,22)" rx="2" ry="2" />
<text x="14.28" y="1839.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.05%)</title><rect x="33.0" y="2037" width="0.5" height="15.0" fill="rgb(250,136,43)" rx="2" ry="2" />
<text x="35.96" y="2047.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (77 samples, 0.46%)</title><rect x="37.1" y="2021" width="5.4" height="15.0" fill="rgb(212,188,2)" rx="2" ry="2" />
<text x="40.06" y="2031.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1044.8" y="1957" width="0.2" height="15.0" fill="rgb(236,32,7)" rx="2" ry="2" />
<text x="1047.83" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1893" width="0.5" height="15.0" fill="rgb(205,81,38)" rx="2" ry="2" />
<text x="1061.57" y="1903.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1021.7" y="2037" width="0.2" height="15.0" fill="rgb(215,28,46)" rx="2" ry="2" />
<text x="1024.73" y="2047.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (6 samples, 0.04%)</title><rect x="44.7" y="2005" width="0.4" height="15.0" fill="rgb(251,15,41)" rx="2" ry="2" />
<text x="47.72" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1103.8" y="1973" width="0.2" height="15.0" fill="rgb(216,146,26)" rx="2" ry="2" />
<text x="1106.85" y="1983.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (112 samples, 0.67%)</title><rect x="1028.0" y="2005" width="7.9" height="15.0" fill="rgb(205,79,25)" rx="2" ry="2" />
<text x="1030.97" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1493" width="0.2" height="15.0" fill="rgb(248,39,14)" rx="2" ry="2" />
<text x="1048.82" y="1503.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (27 samples, 0.16%)</title><rect x="1048.5" y="1957" width="1.9" height="15.0" fill="rgb(217,215,28)" rx="2" ry="2" />
<text x="1051.51" y="1967.5" ></text>
</g>
<g >
<title>clock_gettime@GLIBC_2.2.5 (3 samples, 0.02%)</title><rect x="36.9" y="2021" width="0.2" height="15.0" fill="rgb(240,163,32)" rx="2" ry="2" />
<text x="39.85" y="2031.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (16 samples, 0.10%)</title><rect x="1025.7" y="1973" width="1.1" height="15.0" fill="rgb(231,66,11)" rx="2" ry="2" />
<text x="1028.70" y="1983.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1013.4" y="2021" width="0.1" height="15.0" fill="rgb(231,34,3)" rx="2" ry="2" />
<text x="1016.37" y="2031.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1021.9" y="2021" width="0.1" height="15.0" fill="rgb(245,161,29)" rx="2" ry="2" />
<text x="1024.87" y="2031.5" ></text>
</g>
<g >
<title>_fxstat (20 samples, 0.12%)</title><rect x="1169.2" y="2037" width="1.5" height="15.0" fill="rgb(234,156,50)" rx="2" ry="2" />
<text x="1172.24" y="2047.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="983.5" y="1973" width="0.2" height="15.0" fill="rgb(233,137,14)" rx="2" ry="2" />
<text x="986.47" y="1983.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1093.4" y="1989" width="0.1" height="15.0" fill="rgb(235,89,52)" rx="2" ry="2" />
<text x="1096.36" y="1999.5" ></text>
</g>
<g >
<title>[.electron-wrapped] (18 samples, 0.11%)</title><rect x="10.0" y="1797" width="1.3" height="15.0" fill="rgb(209,221,42)" rx="2" ry="2" />
<text x="13.00" y="1807.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1381" width="0.2" height="15.0" fill="rgb(236,178,0)" rx="2" ry="2" />
<text x="1048.82" y="1391.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (47 samples, 0.28%)</title><rect x="1186.2" y="2021" width="3.4" height="15.0" fill="rgb(249,158,25)" rx="2" ry="2" />
<text x="1189.24" y="2031.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1021.0" y="2005" width="0.2" height="15.0" fill="rgb(226,17,21)" rx="2" ry="2" />
<text x="1024.02" y="2015.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="47.6" y="1925" width="0.3" height="15.0" fill="rgb(209,178,23)" rx="2" ry="2" />
<text x="50.62" y="1935.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (8 samples, 0.05%)</title><rect x="47.9" y="1909" width="0.6" height="15.0" fill="rgb(217,27,52)" rx="2" ry="2" />
<text x="50.90" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (31 samples, 0.19%)</title><rect x="43.7" y="2053" width="2.2" height="15.0" fill="rgb(231,45,44)" rx="2" ry="2" />
<text x="46.72" y="2063.5" ></text>
</g>
<g >
<title>do_syscall_64 (10 samples, 0.06%)</title><rect x="1146.0" y="2021" width="0.7" height="15.0" fill="rgb(228,11,48)" rx="2" ry="2" />
<text x="1149.00" y="2031.5" ></text>
</g>
<g >
<title>do_syscall_64 (6 samples, 0.04%)</title><rect x="1037.5" y="1941" width="0.5" height="15.0" fill="rgb(208,133,21)" rx="2" ry="2" />
<text x="1040.53" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="741" width="0.5" height="15.0" fill="rgb(248,9,50)" rx="2" ry="2" />
<text x="1061.57" y="751.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (16 samples, 0.10%)</title><rect x="989.4" y="2005" width="1.2" height="15.0" fill="rgb(237,41,44)" rx="2" ry="2" />
<text x="992.42" y="2015.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (6 samples, 0.04%)</title><rect x="1008.7" y="2021" width="0.4" height="15.0" fill="rgb(223,21,10)" rx="2" ry="2" />
<text x="1011.70" y="2031.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (10 samples, 0.06%)</title><rect x="1169.9" y="2005" width="0.8" height="15.0" fill="rgb(219,168,54)" rx="2" ry="2" />
<text x="1172.95" y="2015.5" ></text>
</g>
<g >
<title>__GI___read_nocancel (18 samples, 0.11%)</title><rect x="1180.9" y="2021" width="1.2" height="15.0" fill="rgb(239,0,44)" rx="2" ry="2" />
<text x="1183.86" y="2031.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (9 samples, 0.05%)</title><rect x="1038.0" y="2005" width="0.6" height="15.0" fill="rgb(247,165,30)" rx="2" ry="2" />
<text x="1040.96" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1021.4" y="2005" width="0.2" height="15.0" fill="rgb(232,10,40)" rx="2" ry="2" />
<text x="1024.45" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="1063.3" y="1957" width="0.2" height="15.0" fill="rgb(235,91,39)" rx="2" ry="2" />
<text x="1066.25" y="1967.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (8 samples, 0.05%)</title><rect x="1036.3" y="2005" width="0.6" height="15.0" fill="rgb(227,25,28)" rx="2" ry="2" />
<text x="1039.33" y="2015.5" ></text>
</g>
<g >
<title>node (16 samples, 0.10%)</title><rect x="1063.3" y="2069" width="1.1" height="15.0" fill="rgb(228,43,46)" rx="2" ry="2" />
<text x="1066.25" y="2079.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="36.4" y="2005" width="0.2" height="15.0" fill="rgb(221,26,2)" rx="2" ry="2" />
<text x="39.43" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1023.9" y="1957" width="0.2" height="15.0" fill="rgb(220,26,49)" rx="2" ry="2" />
<text x="1026.93" y="1967.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (50 samples, 0.30%)</title><rect x="1071.7" y="1989" width="3.5" height="15.0" fill="rgb(248,102,21)" rx="2" ry="2" />
<text x="1074.68" y="1999.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (5 samples, 0.03%)</title><rect x="1061.8" y="2005" width="0.3" height="15.0" fill="rgb(251,212,46)" rx="2" ry="2" />
<text x="1064.76" y="2015.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1017.1" y="2005" width="0.1" height="15.0" fill="rgb(209,143,36)" rx="2" ry="2" />
<text x="1020.06" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1061" width="0.2" height="15.0" fill="rgb(252,97,52)" rx="2" ry="2" />
<text x="1048.82" y="1071.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="517" width="0.2" height="15.0" fill="rgb(225,104,42)" rx="2" ry="2" />
<text x="1048.82" y="527.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1269" width="0.5" height="15.0" fill="rgb(209,82,20)" rx="2" ry="2" />
<text x="1061.57" y="1279.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1011.8" y="2037" width="0.3" height="15.0" fill="rgb(222,75,27)" rx="2" ry="2" />
<text x="1014.81" y="2047.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="34.1" y="1957" width="0.1" height="15.0" fill="rgb(225,66,33)" rx="2" ry="2" />
<text x="37.09" y="1967.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1007.0" y="1989" width="0.1" height="15.0" fill="rgb(210,10,36)" rx="2" ry="2" />
<text x="1010.00" y="1999.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="49.0" y="1925" width="0.3" height="15.0" fill="rgb(240,203,34)" rx="2" ry="2" />
<text x="52.04" y="1935.5" ></text>
</g>
<g >
<title>do_syscall_64 (43 samples, 0.26%)</title><rect x="1147.4" y="2021" width="3.1" height="15.0" fill="rgb(206,130,36)" rx="2" ry="2" />
<text x="1150.42" y="2031.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="1008.1" y="2005" width="0.2" height="15.0" fill="rgb(243,136,41)" rx="2" ry="2" />
<text x="1011.06" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1845" width="0.2" height="15.0" fill="rgb(252,168,24)" rx="2" ry="2" />
<text x="1048.82" y="1855.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (20 samples, 0.12%)</title><rect x="1038.6" y="1973" width="1.4" height="15.0" fill="rgb(219,26,48)" rx="2" ry="2" />
<text x="1041.59" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="357" width="0.2" height="15.0" fill="rgb(253,17,43)" rx="2" ry="2" />
<text x="1048.82" y="367.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (10 samples, 0.06%)</title><rect x="1044.0" y="2005" width="0.7" height="15.0" fill="rgb(213,174,18)" rx="2" ry="2" />
<text x="1046.98" y="2015.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1013.9" y="1973" width="0.2" height="15.0" fill="rgb(244,161,54)" rx="2" ry="2" />
<text x="1016.94" y="1983.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (42 samples, 0.25%)</title><rect x="1077.6" y="1989" width="3.0" height="15.0" fill="rgb(226,135,14)" rx="2" ry="2" />
<text x="1080.63" y="1999.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="32.4" y="2005" width="0.3" height="15.0" fill="rgb(217,51,51)" rx="2" ry="2" />
<text x="35.39" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1048.4" y="1941" width="0.1" height="15.0" fill="rgb(216,9,26)" rx="2" ry="2" />
<text x="1051.37" y="1951.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1104.8" y="2021" width="0.3" height="15.0" fill="rgb(221,194,20)" rx="2" ry="2" />
<text x="1107.84" y="2031.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1010.1" y="2037" width="0.2" height="15.0" fill="rgb(225,97,24)" rx="2" ry="2" />
<text x="1013.11" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1749" width="0.2" height="15.0" fill="rgb(241,145,14)" rx="2" ry="2" />
<text x="1048.82" y="1759.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1015.5" y="2037" width="0.1" height="15.0" fill="rgb(250,130,14)" rx="2" ry="2" />
<text x="1018.50" y="2047.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1058.4" y="2021" width="0.2" height="15.0" fill="rgb(238,189,38)" rx="2" ry="2" />
<text x="1061.43" y="2031.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1022.2" y="2005" width="0.2" height="15.0" fill="rgb(232,13,0)" rx="2" ry="2" />
<text x="1025.16" y="2015.5" ></text>
</g>
<g >
<title>__libc_write (10 samples, 0.06%)</title><rect x="981.9" y="2053" width="0.7" height="15.0" fill="rgb(241,68,8)" rx="2" ry="2" />
<text x="984.91" y="2063.5" ></text>
</g>
<g >
<title>clock_gettime@GLIBC_2.2.5 (2 samples, 0.01%)</title><rect x="1045.5" y="2021" width="0.2" height="15.0" fill="rgb(213,4,45)" rx="2" ry="2" />
<text x="1048.54" y="2031.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (217 samples, 1.30%)</title><rect x="991.6" y="2021" width="15.4" height="15.0" fill="rgb(220,7,35)" rx="2" ry="2" />
<text x="994.62" y="2031.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (11 samples, 0.07%)</title><rect x="1103.0" y="1973" width="0.8" height="15.0" fill="rgb(223,88,39)" rx="2" ry="2" />
<text x="1106.00" y="1983.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (5 samples, 0.03%)</title><rect x="1061.4" y="1989" width="0.4" height="15.0" fill="rgb(243,7,49)" rx="2" ry="2" />
<text x="1064.41" y="1999.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="1025.0" y="1973" width="0.3" height="15.0" fill="rgb(223,91,30)" rx="2" ry="2" />
<text x="1027.99" y="1983.5" ></text>
</g>
<g >
<title>[libxul.so] (6 samples, 0.04%)</title><rect x="990.8" y="2037" width="0.5" height="15.0" fill="rgb(247,118,29)" rx="2" ry="2" />
<text x="993.84" y="2047.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (22 samples, 0.13%)</title><rect x="1019.0" y="1989" width="1.6" height="15.0" fill="rgb(246,169,34)" rx="2" ry="2" />
<text x="1022.04" y="1999.5" ></text>
</g>
<g >
<title>clock_gettime@GLIBC_2.2.5 (10 samples, 0.06%)</title><rect x="1044.0" y="2037" width="0.7" height="15.0" fill="rgb(212,49,35)" rx="2" ry="2" />
<text x="1046.98" y="2047.5" ></text>
</g>
<g >
<title>pthread_cond_signal@@GLIBC_2.3.2 (4 samples, 0.02%)</title><rect x="1011.8" y="2053" width="0.3" height="15.0" fill="rgb(205,146,52)" rx="2" ry="2" />
<text x="1014.81" y="2063.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1012.7" y="1973" width="0.2" height="15.0" fill="rgb(248,200,31)" rx="2" ry="2" />
<text x="1015.73" y="1983.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1035.9" y="1989" width="0.2" height="15.0" fill="rgb(249,104,16)" rx="2" ry="2" />
<text x="1038.90" y="1999.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (12 samples, 0.07%)</title><rect x="1145.0" y="2037" width="0.9" height="15.0" fill="rgb(241,164,9)" rx="2" ry="2" />
<text x="1148.01" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1301" width="0.2" height="15.0" fill="rgb(230,141,39)" rx="2" ry="2" />
<text x="1048.82" y="1311.5" ></text>
</g>
<g >
<title>[.electron-wrapped] (26 samples, 0.16%)</title><rect x="10.0" y="1957" width="1.8" height="15.0" fill="rgb(238,178,48)" rx="2" ry="2" />
<text x="13.00" y="1967.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (8 samples, 0.05%)</title><rect x="1106.0" y="2005" width="0.6" height="15.0" fill="rgb(218,111,22)" rx="2" ry="2" />
<text x="1109.04" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="46.8" y="1893" width="0.3" height="15.0" fill="rgb(244,199,36)" rx="2" ry="2" />
<text x="49.84" y="1903.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="11.1" y="1717" width="0.2" height="15.0" fill="rgb(222,207,54)" rx="2" ry="2" />
<text x="14.13" y="1727.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="1067.4" y="2005" width="0.3" height="15.0" fill="rgb(216,128,31)" rx="2" ry="2" />
<text x="1070.43" y="2015.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1048.2" y="1989" width="0.2" height="15.0" fill="rgb(230,78,33)" rx="2" ry="2" />
<text x="1051.16" y="1999.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1035.9" y="2005" width="0.2" height="15.0" fill="rgb(248,103,44)" rx="2" ry="2" />
<text x="1038.90" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (106 samples, 0.64%)</title><rect x="991.6" y="1973" width="7.5" height="15.0" fill="rgb(215,159,16)" rx="2" ry="2" />
<text x="994.62" y="1983.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (13 samples, 0.08%)</title><rect x="1023.0" y="2021" width="0.9" height="15.0" fill="rgb(229,222,23)" rx="2" ry="2" />
<text x="1026.01" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (6 samples, 0.04%)</title><rect x="1014.2" y="2053" width="0.4" height="15.0" fill="rgb(206,169,12)" rx="2" ry="2" />
<text x="1017.22" y="2063.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (16 samples, 0.10%)</title><rect x="1026.8" y="2005" width="1.2" height="15.0" fill="rgb(224,177,1)" rx="2" ry="2" />
<text x="1029.83" y="2015.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="976.7" y="2021" width="0.2" height="15.0" fill="rgb(215,161,36)" rx="2" ry="2" />
<text x="979.74" y="2031.5" ></text>
</g>
<g >
<title>do_syscall_64 (8 samples, 0.05%)</title><rect x="1060.3" y="2005" width="0.5" height="15.0" fill="rgb(215,17,5)" rx="2" ry="2" />
<text x="1063.27" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (10 samples, 0.06%)</title><rect x="1169.2" y="1973" width="0.7" height="15.0" fill="rgb(209,28,51)" rx="2" ry="2" />
<text x="1172.24" y="1983.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1024.3" y="2021" width="0.1" height="15.0" fill="rgb(241,181,0)" rx="2" ry="2" />
<text x="1027.28" y="2031.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1058.9" y="85" width="0.2" height="15.0" fill="rgb(235,202,40)" rx="2" ry="2" />
<text x="1061.86" y="95.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1477" width="0.5" height="15.0" fill="rgb(251,217,54)" rx="2" ry="2" />
<text x="1061.57" y="1487.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1102.0" y="1973" width="0.1" height="15.0" fill="rgb(247,85,45)" rx="2" ry="2" />
<text x="1105.00" y="1983.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (56 samples, 0.34%)</title><rect x="1028.0" y="1957" width="3.9" height="15.0" fill="rgb(244,195,53)" rx="2" ry="2" />
<text x="1030.97" y="1967.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="10.4" y="1685" width="0.3" height="15.0" fill="rgb(209,144,26)" rx="2" ry="2" />
<text x="13.43" y="1695.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1048.4" y="1957" width="0.1" height="15.0" fill="rgb(254,39,2)" rx="2" ry="2" />
<text x="1051.37" y="1967.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (5 samples, 0.03%)</title><rect x="45.5" y="1989" width="0.3" height="15.0" fill="rgb(243,185,40)" rx="2" ry="2" />
<text x="48.50" y="1999.5" ></text>
</g>
<g >
<title>clock_gettime@GLIBC_2.2.5 (4 samples, 0.02%)</title><rect x="1015.2" y="2037" width="0.3" height="15.0" fill="rgb(222,70,22)" rx="2" ry="2" />
<text x="1018.21" y="2047.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (92 samples, 0.55%)</title><rect x="1106.6" y="2037" width="6.5" height="15.0" fill="rgb(236,41,33)" rx="2" ry="2" />
<text x="1109.61" y="2047.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (90 samples, 0.54%)</title><rect x="1174.5" y="2005" width="6.4" height="15.0" fill="rgb(225,52,36)" rx="2" ry="2" />
<text x="1177.48" y="2015.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (10 samples, 0.06%)</title><rect x="45.1" y="2021" width="0.7" height="15.0" fill="rgb(226,132,28)" rx="2" ry="2" />
<text x="48.14" y="2031.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1045.5" y="1989" width="0.2" height="15.0" fill="rgb(240,70,28)" rx="2" ry="2" />
<text x="1048.54" y="1999.5" ></text>
</g>
<g >
<title>main (40 samples, 0.24%)</title><rect x="46.7" y="2021" width="2.8" height="15.0" fill="rgb(213,127,0)" rx="2" ry="2" />
<text x="49.70" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="757" width="0.2" height="15.0" fill="rgb(227,197,16)" rx="2" ry="2" />
<text x="1048.82" y="767.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1014.1" y="2037" width="0.1" height="15.0" fill="rgb(205,114,40)" rx="2" ry="2" />
<text x="1017.08" y="2047.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (84 samples, 0.50%)</title><rect x="1096.1" y="2021" width="5.9" height="15.0" fill="rgb(213,150,41)" rx="2" ry="2" />
<text x="1099.05" y="2031.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="1023.9" y="1973" width="0.2" height="15.0" fill="rgb(254,25,54)" rx="2" ry="2" />
<text x="1026.93" y="1983.5" ></text>
</g>
<g >
<title>__libc_recvmsg (4 samples, 0.02%)</title><rect x="1012.2" y="2037" width="0.3" height="15.0" fill="rgb(232,58,34)" rx="2" ry="2" />
<text x="1015.17" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (6 samples, 0.04%)</title><rect x="1015.9" y="2037" width="0.4" height="15.0" fill="rgb(226,65,45)" rx="2" ry="2" />
<text x="1018.92" y="2047.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1077.5" y="2005" width="0.1" height="15.0" fill="rgb(239,149,46)" rx="2" ry="2" />
<text x="1080.49" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (3 samples, 0.02%)</title><rect x="1064.5" y="2037" width="0.2" height="15.0" fill="rgb(249,39,48)" rx="2" ry="2" />
<text x="1067.53" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1077" width="0.5" height="15.0" fill="rgb(229,45,35)" rx="2" ry="2" />
<text x="1061.57" y="1087.5" ></text>
</g>
<g >
<title>[.electron-wrapped] (14 samples, 0.08%)</title><rect x="1009.1" y="1973" width="1.0" height="15.0" fill="rgb(216,123,37)" rx="2" ry="2" />
<text x="1012.12" y="1983.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (94 samples, 0.56%)</title><rect x="1126.4" y="2037" width="6.7" height="15.0" fill="rgb(251,192,28)" rx="2" ry="2" />
<text x="1129.45" y="2047.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1022.0" y="2005" width="0.2" height="15.0" fill="rgb(218,162,48)" rx="2" ry="2" />
<text x="1025.02" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1009.1" y="1893" width="0.2" height="15.0" fill="rgb(215,151,37)" rx="2" ry="2" />
<text x="1012.12" y="1903.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (8 samples, 0.05%)</title><rect x="47.9" y="1893" width="0.6" height="15.0" fill="rgb(212,6,8)" rx="2" ry="2" />
<text x="50.90" y="1903.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="10.0" y="1381" width="0.2" height="15.0" fill="rgb(240,52,27)" rx="2" ry="2" />
<text x="13.00" y="1391.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (90 samples, 0.54%)</title><rect x="1113.6" y="2005" width="6.3" height="15.0" fill="rgb(222,160,52)" rx="2" ry="2" />
<text x="1116.55" y="2015.5" ></text>
</g>
<g >
<title>do_syscall_64 (8 samples, 0.05%)</title><rect x="1105.5" y="2021" width="0.5" height="15.0" fill="rgb(242,152,51)" rx="2" ry="2" />
<text x="1108.48" y="2031.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1092.4" y="2021" width="0.1" height="15.0" fill="rgb(209,46,23)" rx="2" ry="2" />
<text x="1095.37" y="2031.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="990.7" y="2005" width="0.1" height="15.0" fill="rgb(245,6,8)" rx="2" ry="2" />
<text x="993.70" y="2015.5" ></text>
</g>
<g >
<title>__libc_write (13,087 samples, 78.58%)</title><rect x="49.5" y="2037" width="927.2" height="15.0" fill="rgb(216,183,42)" rx="2" ry="2" />
<text x="52.53" y="2047.5" >__libc_write</text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="1062.1" y="2021" width="0.3" height="15.0" fill="rgb(231,156,53)" rx="2" ry="2" />
<text x="1065.12" y="2031.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (8 samples, 0.05%)</title><rect x="1043.3" y="2005" width="0.5" height="15.0" fill="rgb(247,184,47)" rx="2" ry="2" />
<text x="1046.27" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (25 samples, 0.15%)</title><rect x="37.1" y="1973" width="1.7" height="15.0" fill="rgb(254,89,19)" rx="2" ry="2" />
<text x="40.06" y="1983.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (47 samples, 0.28%)</title><rect x="1129.8" y="2021" width="3.3" height="15.0" fill="rgb(248,218,54)" rx="2" ry="2" />
<text x="1132.78" y="2031.5" ></text>
</g>
<g >
<title>Chrome_ChildIOT (116 samples, 0.70%)</title><rect x="982.6" y="2069" width="8.2" height="15.0" fill="rgb(219,7,2)" rx="2" ry="2" />
<text x="985.62" y="2079.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1397" width="0.5" height="15.0" fill="rgb(226,78,41)" rx="2" ry="2" />
<text x="1061.57" y="1407.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="261" width="0.5" height="15.0" fill="rgb(205,163,2)" rx="2" ry="2" />
<text x="1061.57" y="271.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1010.7" y="1957" width="0.1" height="15.0" fill="rgb(213,60,53)" rx="2" ry="2" />
<text x="1013.68" y="1967.5" ></text>
</g>
<g >
<title>do_syscall_64 (25 samples, 0.15%)</title><rect x="37.1" y="1989" width="1.7" height="15.0" fill="rgb(229,92,19)" rx="2" ry="2" />
<text x="40.06" y="1999.5" ></text>
</g>
<g >
<title>Web_Content (206 samples, 1.24%)</title><rect x="1044.0" y="2069" width="14.6" height="15.0" fill="rgb(223,43,45)" rx="2" ry="2" />
<text x="1046.98" y="2079.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1007.3" y="2005" width="0.2" height="15.0" fill="rgb(207,0,54)" rx="2" ry="2" />
<text x="1010.28" y="2015.5" ></text>
</g>
<g >
<title>do_syscall_64 (27 samples, 0.16%)</title><rect x="1048.5" y="1989" width="1.9" height="15.0" fill="rgb(212,45,38)" rx="2" ry="2" />
<text x="1051.51" y="1999.5" ></text>
</g>
<g >
<title>do_syscall_64 (31 samples, 0.19%)</title><rect x="983.9" y="1989" width="2.2" height="15.0" fill="rgb(247,222,13)" rx="2" ry="2" />
<text x="986.90" y="1999.5" ></text>
</g>
<g >
<title>__libc_write (6 samples, 0.04%)</title><rect x="983.5" y="2037" width="0.4" height="15.0" fill="rgb(226,203,0)" rx="2" ry="2" />
<text x="986.47" y="2047.5" ></text>
</g>
<g >
<title>clock_gettime@GLIBC_2.2.5 (5 samples, 0.03%)</title><rect x="1103.8" y="2037" width="0.4" height="15.0" fill="rgb(221,29,5)" rx="2" ry="2" />
<text x="1106.85" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (5 samples, 0.03%)</title><rect x="991.3" y="2037" width="0.3" height="15.0" fill="rgb(230,153,41)" rx="2" ry="2" />
<text x="994.27" y="2047.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="35.0" y="1973" width="0.2" height="15.0" fill="rgb(246,128,50)" rx="2" ry="2" />
<text x="38.01" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1605" width="0.5" height="15.0" fill="rgb(211,30,12)" rx="2" ry="2" />
<text x="1061.57" y="1615.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (6 samples, 0.04%)</title><rect x="990.8" y="2005" width="0.5" height="15.0" fill="rgb(235,204,38)" rx="2" ry="2" />
<text x="993.84" y="2015.5" ></text>
</g>
<g >
<title>__open64 (86 samples, 0.52%)</title><rect x="1147.4" y="2053" width="6.1" height="15.0" fill="rgb(252,1,6)" rx="2" ry="2" />
<text x="1150.42" y="2063.5" ></text>
</g>
<g >
<title>__libc_start_main (70 samples, 0.42%)</title><rect x="977.0" y="2053" width="4.9" height="15.0" fill="rgb(209,212,19)" rx="2" ry="2" />
<text x="979.96" y="2063.5" ></text>
</g>
<g >
<title>do_syscall_64 (8 samples, 0.05%)</title><rect x="35.3" y="2005" width="0.6" height="15.0" fill="rgb(210,100,24)" rx="2" ry="2" />
<text x="38.29" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="405" width="0.5" height="15.0" fill="rgb(213,173,5)" rx="2" ry="2" />
<text x="1061.57" y="415.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="32.7" y="1989" width="0.3" height="15.0" fill="rgb(206,61,15)" rx="2" ry="2" />
<text x="35.67" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="981" width="0.2" height="15.0" fill="rgb(230,158,35)" rx="2" ry="2" />
<text x="1048.82" y="991.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="11.6" y="1845" width="0.2" height="15.0" fill="rgb(254,215,14)" rx="2" ry="2" />
<text x="14.56" y="1855.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1064.4" y="2005" width="0.1" height="15.0" fill="rgb(245,141,32)" rx="2" ry="2" />
<text x="1067.38" y="2015.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (45 samples, 0.27%)</title><rect x="1177.7" y="1973" width="3.2" height="15.0" fill="rgb(216,88,27)" rx="2" ry="2" />
<text x="1180.67" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1829" width="0.2" height="15.0" fill="rgb(242,180,32)" rx="2" ry="2" />
<text x="1048.82" y="1839.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (11 samples, 0.07%)</title><rect x="1046.2" y="2005" width="0.8" height="15.0" fill="rgb(219,38,33)" rx="2" ry="2" />
<text x="1049.18" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="33.0" y="2005" width="0.2" height="15.0" fill="rgb(227,147,50)" rx="2" ry="2" />
<text x="35.96" y="2015.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (5 samples, 0.03%)</title><rect x="1103.8" y="2021" width="0.4" height="15.0" fill="rgb(206,199,10)" rx="2" ry="2" />
<text x="1106.85" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (5 samples, 0.03%)</title><rect x="33.7" y="2005" width="0.4" height="15.0" fill="rgb(212,70,2)" rx="2" ry="2" />
<text x="36.73" y="2015.5" ></text>
</g>
<g >
<title>__libc_sigaction (12 samples, 0.07%)</title><rect x="1145.0" y="2053" width="0.9" height="15.0" fill="rgb(221,160,45)" rx="2" ry="2" />
<text x="1148.01" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="533" width="0.5" height="15.0" fill="rgb(223,1,27)" rx="2" ry="2" />
<text x="1061.57" y="543.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1022.6" y="2005" width="0.1" height="15.0" fill="rgb(243,102,29)" rx="2" ry="2" />
<text x="1025.58" y="2015.5" ></text>
</g>
<g >
<title>evlist__disable (15 samples, 0.09%)</title><rect x="46.8" y="1973" width="1.1" height="15.0" fill="rgb(227,186,47)" rx="2" ry="2" />
<text x="49.84" y="1983.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (94 samples, 0.56%)</title><rect x="1154.2" y="2005" width="6.7" height="15.0" fill="rgb(212,195,47)" rx="2" ry="2" />
<text x="1157.22" y="2015.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="34.1" y="1973" width="0.1" height="15.0" fill="rgb(219,143,3)" rx="2" ry="2" />
<text x="37.09" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="661" width="0.5" height="15.0" fill="rgb(218,161,43)" rx="2" ry="2" />
<text x="1061.57" y="671.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="949" width="0.5" height="15.0" fill="rgb(238,95,46)" rx="2" ry="2" />
<text x="1061.57" y="959.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1007.0" y="2005" width="0.1" height="15.0" fill="rgb(238,169,8)" rx="2" ry="2" />
<text x="1010.00" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="821" width="0.5" height="15.0" fill="rgb(240,209,12)" rx="2" ry="2" />
<text x="1061.57" y="831.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="789" width="0.5" height="15.0" fill="rgb(230,142,30)" rx="2" ry="2" />
<text x="1061.57" y="799.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (2 samples, 0.01%)</title><rect x="36.7" y="2037" width="0.2" height="15.0" fill="rgb(206,217,20)" rx="2" ry="2" />
<text x="39.71" y="2047.5" ></text>
</g>
<g >
<title>__poll (4 samples, 0.02%)</title><rect x="1011.5" y="2053" width="0.2" height="15.0" fill="rgb(233,113,39)" rx="2" ry="2" />
<text x="1014.46" y="2063.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1022.4" y="2021" width="0.3" height="15.0" fill="rgb(211,157,26)" rx="2" ry="2" />
<text x="1025.44" y="2031.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1036.1" y="2021" width="0.2" height="15.0" fill="rgb(214,204,54)" rx="2" ry="2" />
<text x="1039.11" y="2031.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (17 samples, 0.10%)</title><rect x="1093.6" y="1989" width="1.2" height="15.0" fill="rgb(229,65,26)" rx="2" ry="2" />
<text x="1096.64" y="1999.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1045.3" y="1925" width="0.2" height="15.0" fill="rgb(241,224,53)" rx="2" ry="2" />
<text x="1048.25" y="1935.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (10 samples, 0.06%)</title><rect x="45.1" y="2005" width="0.7" height="15.0" fill="rgb(246,194,27)" rx="2" ry="2" />
<text x="48.14" y="2015.5" ></text>
</g>
<g >
<title>[.electron-wrapped] (6 samples, 0.04%)</title><rect x="10.0" y="1477" width="0.4" height="15.0" fill="rgb(249,111,45)" rx="2" ry="2" />
<text x="13.00" y="1487.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1154.0" y="2021" width="0.2" height="15.0" fill="rgb(223,117,0)" rx="2" ry="2" />
<text x="1157.01" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1109" width="0.2" height="15.0" fill="rgb(252,208,43)" rx="2" ry="2" />
<text x="1048.82" y="1119.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1105.1" y="2005" width="0.2" height="15.0" fill="rgb(213,215,11)" rx="2" ry="2" />
<text x="1108.05" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1925" width="0.2" height="15.0" fill="rgb(220,136,13)" rx="2" ry="2" />
<text x="1048.82" y="1935.5" ></text>
</g>
<g >
<title>clock_gettime@GLIBC_2.2.5 (2 samples, 0.01%)</title><rect x="1046.0" y="2005" width="0.2" height="15.0" fill="rgb(217,173,10)" rx="2" ry="2" />
<text x="1049.03" y="2015.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1022.7" y="2005" width="0.2" height="15.0" fill="rgb(248,191,0)" rx="2" ry="2" />
<text x="1025.72" y="2015.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1007.5" y="2021" width="0.2" height="15.0" fill="rgb(227,93,31)" rx="2" ry="2" />
<text x="1010.49" y="2031.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="1062.7" y="1989" width="0.3" height="15.0" fill="rgb(210,221,35)" rx="2" ry="2" />
<text x="1065.68" y="1999.5" ></text>
</g>
<g >
<title>__fxstat64 (2 samples, 0.01%)</title><rect x="1077.5" y="2021" width="0.1" height="15.0" fill="rgb(211,62,40)" rx="2" ry="2" />
<text x="1080.49" y="2031.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (101 samples, 0.61%)</title><rect x="1048.5" y="2021" width="7.2" height="15.0" fill="rgb(253,145,1)" rx="2" ry="2" />
<text x="1051.51" y="2031.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1017.6" y="2005" width="0.2" height="15.0" fill="rgb(222,88,23)" rx="2" ry="2" />
<text x="1020.55" y="2015.5" ></text>
</g>
<g >
<title>clock_gettime@GLIBC_2.2.5 (77 samples, 0.46%)</title><rect x="37.1" y="2037" width="5.4" height="15.0" fill="rgb(218,87,4)" rx="2" ry="2" />
<text x="40.06" y="2047.5" ></text>
</g>
<g >
<title>pthread_cond_wait@@GLIBC_2.3.2 (11 samples, 0.07%)</title><rect x="1008.3" y="2053" width="0.8" height="15.0" fill="rgb(230,145,36)" rx="2" ry="2" />
<text x="1011.34" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="613" width="0.5" height="15.0" fill="rgb(226,3,5)" rx="2" ry="2" />
<text x="1061.57" y="623.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (12 samples, 0.07%)</title><rect x="1023.1" y="1973" width="0.8" height="15.0" fill="rgb(208,165,18)" rx="2" ry="2" />
<text x="1026.08" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1509" width="0.5" height="15.0" fill="rgb(226,128,1)" rx="2" ry="2" />
<text x="1061.57" y="1519.5" ></text>
</g>
<g >
<title>v8::Function::Call (6 samples, 0.04%)</title><rect x="10.0" y="1637" width="0.4" height="15.0" fill="rgb(215,144,26)" rx="2" ry="2" />
<text x="13.00" y="1647.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="34.1" y="2021" width="0.1" height="15.0" fill="rgb(236,38,36)" rx="2" ry="2" />
<text x="37.09" y="2031.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1047.9" y="1989" width="0.3" height="15.0" fill="rgb(254,187,40)" rx="2" ry="2" />
<text x="1050.95" y="1999.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1011.8" y="2021" width="0.2" height="15.0" fill="rgb(239,180,19)" rx="2" ry="2" />
<text x="1014.81" y="2031.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1014.6" y="2037" width="0.2" height="15.0" fill="rgb(253,172,18)" rx="2" ry="2" />
<text x="1017.65" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1221" width="0.5" height="15.0" fill="rgb(235,186,0)" rx="2" ry="2" />
<text x="1061.57" y="1231.5" ></text>
</g>
<g >
<title>__GI___read_nocancel (2 samples, 0.01%)</title><rect x="1169.1" y="2037" width="0.1" height="15.0" fill="rgb(240,140,2)" rx="2" ry="2" />
<text x="1172.10" y="2047.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (46 samples, 0.28%)</title><rect x="1106.6" y="1989" width="3.3" height="15.0" fill="rgb(234,224,39)" rx="2" ry="2" />
<text x="1109.61" y="1999.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5 samples, 0.03%)</title><rect x="1103.8" y="2005" width="0.4" height="15.0" fill="rgb(243,90,36)" rx="2" ry="2" />
<text x="1106.85" y="2015.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.04%)</title><rect x="1007.3" y="2037" width="0.4" height="15.0" fill="rgb(239,149,54)" rx="2" ry="2" />
<text x="1010.28" y="2047.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (12 samples, 0.07%)</title><rect x="44.3" y="2021" width="0.8" height="15.0" fill="rgb(227,32,44)" rx="2" ry="2" />
<text x="47.29" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1701" width="0.2" height="15.0" fill="rgb(210,83,36)" rx="2" ry="2" />
<text x="1048.82" y="1711.5" ></text>
</g>
<g >
<title>sched_setaffinity@@GLIBC_2.3.4 (5 samples, 0.03%)</title><rect x="49.0" y="1957" width="0.4" height="15.0" fill="rgb(214,52,35)" rx="2" ry="2" />
<text x="52.04" y="1967.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="36.4" y="1989" width="0.2" height="15.0" fill="rgb(229,103,33)" rx="2" ry="2" />
<text x="39.43" y="1999.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1016.1" y="1957" width="0.2" height="15.0" fill="rgb(232,183,54)" rx="2" ry="2" />
<text x="1019.06" y="1967.5" ></text>
</g>
<g >
<title>do_syscall_64 (5 samples, 0.03%)</title><rect x="1061.4" y="2005" width="0.4" height="15.0" fill="rgb(246,81,41)" rx="2" ry="2" />
<text x="1064.41" y="2015.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1169.1" y="2021" width="0.1" height="15.0" fill="rgb(216,212,41)" rx="2" ry="2" />
<text x="1172.10" y="2031.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (10 samples, 0.06%)</title><rect x="1167.5" y="1989" width="0.7" height="15.0" fill="rgb(230,70,40)" rx="2" ry="2" />
<text x="1170.54" y="1999.5" ></text>
</g>
<g >
<title>[.electron-wrapped] (14 samples, 0.08%)</title><rect x="1009.1" y="2021" width="1.0" height="15.0" fill="rgb(217,207,54)" rx="2" ry="2" />
<text x="1012.12" y="2031.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (100 samples, 0.60%)</title><rect x="1068.1" y="2021" width="7.1" height="15.0" fill="rgb(208,4,16)" rx="2" ry="2" />
<text x="1071.14" y="2031.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="10.2" y="1381" width="0.2" height="15.0" fill="rgb(242,54,8)" rx="2" ry="2" />
<text x="13.21" y="1391.5" ></text>
</g>
<g >
<title>llseek@GLIBC_2.2.5 (6 samples, 0.04%)</title><rect x="1182.5" y="2053" width="0.4" height="15.0" fill="rgb(233,10,22)" rx="2" ry="2" />
<text x="1185.49" y="2063.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1015.2" y="1957" width="0.2" height="15.0" fill="rgb(207,201,53)" rx="2" ry="2" />
<text x="1018.21" y="1967.5" ></text>
</g>
<g >
<title>epoll_wait (2 samples, 0.01%)</title><rect x="1013.4" y="2037" width="0.1" height="15.0" fill="rgb(222,215,33)" rx="2" ry="2" />
<text x="1016.37" y="2047.5" ></text>
</g>
<g >
<title>clock_nanosleep@@GLIBC_2.17 (4 samples, 0.02%)</title><rect x="1021.9" y="2053" width="0.3" height="15.0" fill="rgb(253,210,12)" rx="2" ry="2" />
<text x="1024.87" y="2063.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1022.4" y="1989" width="0.2" height="15.0" fill="rgb(224,147,41)" rx="2" ry="2" />
<text x="1025.44" y="1999.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.05%)</title><rect x="1062.1" y="2037" width="0.6" height="15.0" fill="rgb(235,167,30)" rx="2" ry="2" />
<text x="1065.12" y="2047.5" ></text>
</g>
<g >
<title>__gcc_personality_v0 (2 samples, 0.01%)</title><rect x="1077.5" y="2037" width="0.1" height="15.0" fill="rgb(219,120,12)" rx="2" ry="2" />
<text x="1080.49" y="2047.5" ></text>
</g>
<g >
<title>epoll_wait (10 samples, 0.06%)</title><rect x="1061.4" y="2037" width="0.7" height="15.0" fill="rgb(213,37,14)" rx="2" ry="2" />
<text x="1064.41" y="2047.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (42 samples, 0.25%)</title><rect x="1096.1" y="1989" width="2.9" height="15.0" fill="rgb(237,216,38)" rx="2" ry="2" />
<text x="1099.05" y="1999.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1014.4" y="1941" width="0.1" height="15.0" fill="rgb(216,189,45)" rx="2" ry="2" />
<text x="1017.36" y="1951.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1022.0" y="2021" width="0.2" height="15.0" fill="rgb(230,164,0)" rx="2" ry="2" />
<text x="1025.02" y="2031.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (168 samples, 1.01%)</title><rect x="1133.1" y="2037" width="11.9" height="15.0" fill="rgb(227,16,22)" rx="2" ry="2" />
<text x="1136.11" y="2047.5" ></text>
</g>
<g >
<title>__libc_sigaction (124 samples, 0.74%)</title><rect x="1083.6" y="2037" width="8.8" height="15.0" fill="rgb(209,178,15)" rx="2" ry="2" />
<text x="1086.58" y="2047.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (50 samples, 0.30%)</title><rect x="1068.1" y="1973" width="3.6" height="15.0" fill="rgb(207,43,8)" rx="2" ry="2" />
<text x="1071.14" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="485" width="0.5" height="15.0" fill="rgb(213,156,6)" rx="2" ry="2" />
<text x="1061.57" y="495.5" ></text>
</g>
<g >
<title>main (70 samples, 0.42%)</title><rect x="977.0" y="2037" width="4.9" height="15.0" fill="rgb(229,124,24)" rx="2" ry="2" />
<text x="979.96" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="917" width="0.2" height="15.0" fill="rgb(221,112,7)" rx="2" ry="2" />
<text x="1048.82" y="927.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1015.9" y="2005" width="0.2" height="15.0" fill="rgb(205,74,5)" rx="2" ry="2" />
<text x="1018.92" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1055.7" y="1957" width="0.2" height="15.0" fill="rgb(214,65,48)" rx="2" ry="2" />
<text x="1058.74" y="1967.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (8 samples, 0.05%)</title><rect x="1076.9" y="1989" width="0.6" height="15.0" fill="rgb(236,19,10)" rx="2" ry="2" />
<text x="1079.92" y="1999.5" ></text>
</g>
<g >
<title>__libc_read (6 samples, 0.04%)</title><rect x="1025.3" y="2037" width="0.4" height="15.0" fill="rgb(223,140,53)" rx="2" ry="2" />
<text x="1028.27" y="2047.5" ></text>
</g>
<g >
<title>[.electron-wrapped] (6 samples, 0.04%)</title><rect x="10.0" y="1461" width="0.4" height="15.0" fill="rgb(217,173,6)" rx="2" ry="2" />
<text x="13.00" y="1471.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (188 samples, 1.13%)</title><rect x="1154.2" y="2037" width="13.3" height="15.0" fill="rgb(241,130,35)" rx="2" ry="2" />
<text x="1157.22" y="2047.5" ></text>
</g>
<g >
<title>[.electron-wrapped] (26 samples, 0.16%)</title><rect x="10.0" y="1989" width="1.8" height="15.0" fill="rgb(245,88,20)" rx="2" ry="2" />
<text x="13.00" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="565" width="0.2" height="15.0" fill="rgb(252,81,45)" rx="2" ry="2" />
<text x="1048.82" y="575.5" ></text>
</g>
<g >
<title>[unknown] (4 samples, 0.02%)</title><rect x="1058.6" y="101" width="0.3" height="15.0" fill="rgb(236,87,28)" rx="2" ry="2" />
<text x="1061.57" y="111.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (10 samples, 0.06%)</title><rect x="1044.0" y="2021" width="0.7" height="15.0" fill="rgb(236,169,3)" rx="2" ry="2" />
<text x="1046.98" y="2031.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (50 samples, 0.30%)</title><rect x="1068.1" y="1989" width="3.6" height="15.0" fill="rgb(235,8,52)" rx="2" ry="2" />
<text x="1071.14" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1941" width="0.5" height="15.0" fill="rgb(227,69,21)" rx="2" ry="2" />
<text x="1061.57" y="1951.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (56 samples, 0.34%)</title><rect x="1031.9" y="1973" width="4.0" height="15.0" fill="rgb(233,70,14)" rx="2" ry="2" />
<text x="1034.93" y="1983.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1011.2" y="2021" width="0.1" height="15.0" fill="rgb(220,190,46)" rx="2" ry="2" />
<text x="1014.18" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1797" width="0.2" height="15.0" fill="rgb(236,174,0)" rx="2" ry="2" />
<text x="1048.82" y="1807.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="1063.5" y="1973" width="0.3" height="15.0" fill="rgb(239,187,31)" rx="2" ry="2" />
<text x="1066.53" y="1983.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (32 samples, 0.19%)</title><rect x="1025.7" y="2021" width="2.3" height="15.0" fill="rgb(217,100,30)" rx="2" ry="2" />
<text x="1028.70" y="2031.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (7 samples, 0.04%)</title><rect x="1059.6" y="1973" width="0.5" height="15.0" fill="rgb(213,1,2)" rx="2" ry="2" />
<text x="1062.64" y="1983.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (5 samples, 0.03%)</title><rect x="1007.7" y="1989" width="0.4" height="15.0" fill="rgb(237,46,5)" rx="2" ry="2" />
<text x="1010.70" y="1999.5" ></text>
</g>
<g >
<title>clock_gettime@GLIBC_2.2.5 (3 samples, 0.02%)</title><rect x="1016.1" y="2021" width="0.2" height="15.0" fill="rgb(218,39,1)" rx="2" ry="2" />
<text x="1019.06" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1429" width="0.2" height="15.0" fill="rgb(234,55,45)" rx="2" ry="2" />
<text x="1048.82" y="1439.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1044.7" y="1925" width="0.1" height="15.0" fill="rgb(225,200,36)" rx="2" ry="2" />
<text x="1047.69" y="1935.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="33.7" y="1925" width="0.2" height="15.0" fill="rgb(251,77,1)" rx="2" ry="2" />
<text x="36.73" y="1935.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (84 samples, 0.50%)</title><rect x="1139.1" y="2005" width="5.9" height="15.0" fill="rgb(243,30,44)" rx="2" ry="2" />
<text x="1142.06" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1621" width="0.2" height="15.0" fill="rgb(213,126,2)" rx="2" ry="2" />
<text x="1048.82" y="1631.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="117" width="0.5" height="15.0" fill="rgb(226,138,45)" rx="2" ry="2" />
<text x="1061.57" y="127.5" ></text>
</g>
<g >
<title>clock_gettime@GLIBC_2.2.5 (8 samples, 0.05%)</title><rect x="1063.3" y="2037" width="0.5" height="15.0" fill="rgb(239,111,13)" rx="2" ry="2" />
<text x="1066.25" y="2047.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1010.5" y="2021" width="0.2" height="15.0" fill="rgb(231,125,46)" rx="2" ry="2" />
<text x="1013.54" y="2031.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1022.7" y="1973" width="0.2" height="15.0" fill="rgb(226,18,36)" rx="2" ry="2" />
<text x="1025.72" y="1983.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (8 samples, 0.05%)</title><rect x="35.9" y="1989" width="0.5" height="15.0" fill="rgb(243,70,9)" rx="2" ry="2" />
<text x="38.86" y="1999.5" ></text>
</g>
<g >
<title>__GI___ioctl (16 samples, 0.10%)</title><rect x="47.9" y="1957" width="1.1" height="15.0" fill="rgb(254,135,52)" rx="2" ry="2" />
<text x="50.90" y="1967.5" ></text>
</g>
<g >
<title>do_syscall_64 (6 samples, 0.04%)</title><rect x="1047.1" y="2005" width="0.4" height="15.0" fill="rgb(207,219,36)" rx="2" ry="2" />
<text x="1050.10" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (62 samples, 0.37%)</title><rect x="1083.6" y="1989" width="4.4" height="15.0" fill="rgb(221,58,17)" rx="2" ry="2" />
<text x="1086.58" y="1999.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (9 samples, 0.05%)</title><rect x="45.9" y="2037" width="0.7" height="15.0" fill="rgb(225,72,53)" rx="2" ry="2" />
<text x="48.92" y="2047.5" ></text>
</g>
<g >
<title>[.electron-wrapped] (26 samples, 0.16%)</title><rect x="10.0" y="1925" width="1.8" height="15.0" fill="rgb(242,107,41)" rx="2" ry="2" />
<text x="13.00" y="1935.5" ></text>
</g>
<g >
<title>start_thread (14 samples, 0.08%)</title><rect x="1009.1" y="2053" width="1.0" height="15.0" fill="rgb(251,5,5)" rx="2" ry="2" />
<text x="1012.12" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1141" width="0.5" height="15.0" fill="rgb(213,47,45)" rx="2" ry="2" />
<text x="1061.57" y="1151.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="149" width="0.5" height="15.0" fill="rgb(210,190,23)" rx="2" ry="2" />
<text x="1061.57" y="159.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="1058.6" y="53" width="0.3" height="15.0" fill="rgb(245,190,24)" rx="2" ry="2" />
<text x="1061.57" y="63.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1044.7" y="1941" width="0.1" height="15.0" fill="rgb(221,136,6)" rx="2" ry="2" />
<text x="1047.69" y="1951.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="43.7" y="2005" width="0.3" height="15.0" fill="rgb(230,221,39)" rx="2" ry="2" />
<text x="46.72" y="2015.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="10.4" y="1701" width="0.3" height="15.0" fill="rgb(230,194,21)" rx="2" ry="2" />
<text x="13.43" y="1711.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="33.5" y="1989" width="0.2" height="15.0" fill="rgb(207,211,32)" rx="2" ry="2" />
<text x="36.52" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1525" width="0.5" height="15.0" fill="rgb(254,103,8)" rx="2" ry="2" />
<text x="1061.57" y="1535.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="293" width="0.5" height="15.0" fill="rgb(207,118,28)" rx="2" ry="2" />
<text x="1061.57" y="303.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="44.0" y="2005" width="0.1" height="15.0" fill="rgb(234,10,24)" rx="2" ry="2" />
<text x="47.01" y="2015.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.04%)</title><rect x="1113.1" y="2037" width="0.5" height="15.0" fill="rgb(213,3,46)" rx="2" ry="2" />
<text x="1116.13" y="2047.5" ></text>
</g>
<g >
<title>__libc_read (2 samples, 0.01%)</title><rect x="1013.1" y="2037" width="0.1" height="15.0" fill="rgb(241,103,52)" rx="2" ry="2" />
<text x="1016.09" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="213" width="0.2" height="15.0" fill="rgb(237,85,11)" rx="2" ry="2" />
<text x="1048.82" y="223.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (145 samples, 0.87%)</title><rect x="11.8" y="1957" width="10.3" height="15.0" fill="rgb(225,192,8)" rx="2" ry="2" />
<text x="14.84" y="1967.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (8 samples, 0.05%)</title><rect x="48.5" y="1909" width="0.5" height="15.0" fill="rgb(241,214,36)" rx="2" ry="2" />
<text x="51.47" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="901" width="0.5" height="15.0" fill="rgb(250,92,29)" rx="2" ry="2" />
<text x="1061.57" y="911.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="229" width="0.5" height="15.0" fill="rgb(228,139,49)" rx="2" ry="2" />
<text x="1061.57" y="239.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (22 samples, 0.13%)</title><rect x="1172.2" y="1989" width="1.6" height="15.0" fill="rgb(210,160,3)" rx="2" ry="2" />
<text x="1175.22" y="1999.5" ></text>
</g>
<g >
<title>do_syscall_64 (11 samples, 0.07%)</title><rect x="1046.2" y="1973" width="0.8" height="15.0" fill="rgb(243,90,37)" rx="2" ry="2" />
<text x="1049.18" y="1983.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (9 samples, 0.05%)</title><rect x="1180.9" y="1973" width="0.6" height="15.0" fill="rgb(224,46,35)" rx="2" ry="2" />
<text x="1183.86" y="1983.5" ></text>
</g>
<g >
<title>IPC_I/O_Child (14 samples, 0.08%)</title><rect x="1012.1" y="2069" width="1.0" height="15.0" fill="rgb(217,126,3)" rx="2" ry="2" />
<text x="1015.10" y="2079.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (9 samples, 0.05%)</title><rect x="981.9" y="1989" width="0.7" height="15.0" fill="rgb(210,47,45)" rx="2" ry="2" />
<text x="984.91" y="1999.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (6 samples, 0.04%)</title><rect x="983.0" y="2005" width="0.5" height="15.0" fill="rgb(215,130,2)" rx="2" ry="2" />
<text x="986.05" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1104.2" y="1989" width="0.2" height="15.0" fill="rgb(229,27,37)" rx="2" ry="2" />
<text x="1107.20" y="1999.5" ></text>
</g>
<g >
<title>__GI___writev (2 samples, 0.01%)</title><rect x="1015.9" y="2021" width="0.2" height="15.0" fill="rgb(223,119,4)" rx="2" ry="2" />
<text x="1018.92" y="2031.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1011.6" y="2021" width="0.1" height="15.0" fill="rgb(219,208,45)" rx="2" ry="2" />
<text x="1014.60" y="2031.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="33.5" y="1957" width="0.2" height="15.0" fill="rgb(221,78,44)" rx="2" ry="2" />
<text x="36.52" y="1967.5" ></text>
</g>
<g >
<title>__libc_sendmsg (2 samples, 0.01%)</title><rect x="1013.2" y="2037" width="0.2" height="15.0" fill="rgb(234,38,51)" rx="2" ry="2" />
<text x="1016.23" y="2047.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="1063.5" y="1989" width="0.3" height="15.0" fill="rgb(221,27,21)" rx="2" ry="2" />
<text x="1066.53" y="1999.5" ></text>
</g>
<g >
<title>[libxul.so] (10 samples, 0.06%)</title><rect x="1044.0" y="2053" width="0.7" height="15.0" fill="rgb(211,26,2)" rx="2" ry="2" />
<text x="1046.98" y="2063.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="990.8" y="1973" width="0.3" height="15.0" fill="rgb(250,185,30)" rx="2" ry="2" />
<text x="993.84" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="309" width="0.2" height="15.0" fill="rgb(210,200,26)" rx="2" ry="2" />
<text x="1048.82" y="319.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1012.2" y="2021" width="0.3" height="15.0" fill="rgb(254,1,14)" rx="2" ry="2" />
<text x="1015.17" y="2031.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1021.6" y="2005" width="0.1" height="15.0" fill="rgb(211,196,19)" rx="2" ry="2" />
<text x="1024.59" y="2015.5" ></text>
</g>
<g >
<title>__fxstat64 (16 samples, 0.10%)</title><rect x="1076.4" y="2037" width="1.1" height="15.0" fill="rgb(219,210,43)" rx="2" ry="2" />
<text x="1079.36" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1237" width="0.2" height="15.0" fill="rgb(254,2,5)" rx="2" ry="2" />
<text x="1048.82" y="1247.5" ></text>
</g>
<g >
<title>clock_gettime@GLIBC_2.2.5 (4 samples, 0.02%)</title><rect x="1022.2" y="2037" width="0.2" height="15.0" fill="rgb(228,133,34)" rx="2" ry="2" />
<text x="1025.16" y="2047.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="33.5" y="1973" width="0.2" height="15.0" fill="rgb(230,49,21)" rx="2" ry="2" />
<text x="36.52" y="1983.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (8 samples, 0.05%)</title><rect x="11.3" y="1893" width="0.5" height="15.0" fill="rgb(250,24,37)" rx="2" ry="2" />
<text x="14.28" y="1903.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="44.1" y="2005" width="0.2" height="15.0" fill="rgb(233,53,24)" rx="2" ry="2" />
<text x="47.15" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1064.7" y="1957" width="0.2" height="15.0" fill="rgb(225,222,47)" rx="2" ry="2" />
<text x="1067.74" y="1967.5" ></text>
</g>
<g >
<title>[libxul.so] (4 samples, 0.02%)</title><rect x="1015.6" y="2037" width="0.3" height="15.0" fill="rgb(228,149,8)" rx="2" ry="2" />
<text x="1018.64" y="2047.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (18 samples, 0.11%)</title><rect x="1180.9" y="2005" width="1.2" height="15.0" fill="rgb(225,70,2)" rx="2" ry="2" />
<text x="1183.86" y="2015.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (90 samples, 0.54%)</title><rect x="1119.9" y="2005" width="6.4" height="15.0" fill="rgb(210,81,3)" rx="2" ry="2" />
<text x="1122.93" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1717" width="0.5" height="15.0" fill="rgb(230,131,38)" rx="2" ry="2" />
<text x="1061.57" y="1727.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="43.9" y="1973" width="0.1" height="15.0" fill="rgb(238,52,44)" rx="2" ry="2" />
<text x="46.87" y="1983.5" ></text>
</g>
<g >
<title>[.electron-wrapped] (6 samples, 0.04%)</title><rect x="10.0" y="1701" width="0.4" height="15.0" fill="rgb(236,62,27)" rx="2" ry="2" />
<text x="13.00" y="1711.5" ></text>
</g>
<g >
<title>[unknown] (150 samples, 0.90%)</title><rect x="1025.3" y="2053" width="10.6" height="15.0" fill="rgb(219,53,23)" rx="2" ry="2" />
<text x="1028.27" y="2063.5" ></text>
</g>
<g >
<title>do_syscall_64 (7 samples, 0.04%)</title><rect x="1059.1" y="1989" width="0.5" height="15.0" fill="rgb(243,176,9)" rx="2" ry="2" />
<text x="1062.14" y="1999.5" ></text>
</g>
<g >
<title>[.electron-wrapped] (18 samples, 0.11%)</title><rect x="10.0" y="1829" width="1.3" height="15.0" fill="rgb(215,148,8)" rx="2" ry="2" />
<text x="13.00" y="1839.5" ></text>
</g>
<g >
<title>__open64_nocancel (4 samples, 0.02%)</title><rect x="1153.5" y="2053" width="0.3" height="15.0" fill="rgb(209,68,49)" rx="2" ry="2" />
<text x="1156.51" y="2063.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1064.7" y="1973" width="0.2" height="15.0" fill="rgb(216,187,42)" rx="2" ry="2" />
<text x="1067.74" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="277" width="0.2" height="15.0" fill="rgb(254,155,22)" rx="2" ry="2" />
<text x="1048.82" y="287.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (5 samples, 0.03%)</title><rect x="991.3" y="2005" width="0.3" height="15.0" fill="rgb(245,32,37)" rx="2" ry="2" />
<text x="994.27" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1957" width="0.2" height="15.0" fill="rgb(242,174,31)" rx="2" ry="2" />
<text x="1048.82" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1573" width="0.2" height="15.0" fill="rgb(236,89,54)" rx="2" ry="2" />
<text x="1048.82" y="1583.5" ></text>
</g>
<g >
<title>__tls_get_addr (3 samples, 0.02%)</title><rect x="36.9" y="2037" width="0.2" height="15.0" fill="rgb(235,5,30)" rx="2" ry="2" />
<text x="39.85" y="2047.5" ></text>
</g>
<g >
<title>do_syscall_64 (47 samples, 0.28%)</title><rect x="1182.9" y="2021" width="3.3" height="15.0" fill="rgb(235,191,46)" rx="2" ry="2" />
<text x="1185.92" y="2031.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (6 samples, 0.04%)</title><rect x="1047.1" y="1973" width="0.4" height="15.0" fill="rgb(241,82,30)" rx="2" ry="2" />
<text x="1050.10" y="1983.5" ></text>
</g>
<g >
<title>do_syscall_64 (56 samples, 0.34%)</title><rect x="1028.0" y="1989" width="3.9" height="15.0" fill="rgb(251,12,17)" rx="2" ry="2" />
<text x="1030.97" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="549" width="0.2" height="15.0" fill="rgb(210,92,22)" rx="2" ry="2" />
<text x="1048.82" y="559.5" ></text>
</g>
<g >
<title>__GI___writev (4 samples, 0.02%)</title><rect x="43.7" y="2021" width="0.3" height="15.0" fill="rgb(239,162,53)" rx="2" ry="2" />
<text x="46.72" y="2031.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (15 samples, 0.09%)</title><rect x="1057.0" y="2021" width="1.1" height="15.0" fill="rgb(226,117,5)" rx="2" ry="2" />
<text x="1060.02" y="2031.5" ></text>
</g>
<g >
<title>[.electron-wrapped] (14 samples, 0.08%)</title><rect x="1009.1" y="2005" width="1.0" height="15.0" fill="rgb(226,94,12)" rx="2" ry="2" />
<text x="1012.12" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (6 samples, 0.04%)</title><rect x="1047.1" y="1989" width="0.4" height="15.0" fill="rgb(210,171,5)" rx="2" ry="2" />
<text x="1050.10" y="1999.5" ></text>
</g>
<g >
<title>[.electron-wrapped] (6 samples, 0.04%)</title><rect x="10.0" y="1445" width="0.4" height="15.0" fill="rgb(219,91,44)" rx="2" ry="2" />
<text x="13.00" y="1455.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (8 samples, 0.05%)</title><rect x="48.5" y="1925" width="0.5" height="15.0" fill="rgb(246,82,0)" rx="2" ry="2" />
<text x="51.47" y="1935.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1021.4" y="1989" width="0.2" height="15.0" fill="rgb(232,157,16)" rx="2" ry="2" />
<text x="1024.45" y="1999.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (5 samples, 0.03%)</title><rect x="1016.3" y="1973" width="0.4" height="15.0" fill="rgb(254,222,15)" rx="2" ry="2" />
<text x="1019.35" y="1983.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1012.0" y="2005" width="0.1" height="15.0" fill="rgb(246,228,24)" rx="2" ry="2" />
<text x="1014.95" y="2015.5" ></text>
</g>
<g >
<title>pthread_cond_signal@@GLIBC_2.3.2 (4 samples, 0.02%)</title><rect x="1058.3" y="2053" width="0.3" height="15.0" fill="rgb(249,103,2)" rx="2" ry="2" />
<text x="1061.29" y="2063.5" ></text>
</g>
<g >
<title>__sched_yield (16 samples, 0.10%)</title><rect x="1042.7" y="2053" width="1.1" height="15.0" fill="rgb(222,199,29)" rx="2" ry="2" />
<text x="1045.70" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1813" width="0.5" height="15.0" fill="rgb(248,171,45)" rx="2" ry="2" />
<text x="1061.57" y="1823.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1047.0" y="1973" width="0.1" height="15.0" fill="rgb(224,184,47)" rx="2" ry="2" />
<text x="1049.95" y="1983.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (94 samples, 0.56%)</title><rect x="1154.2" y="1989" width="6.7" height="15.0" fill="rgb(246,64,16)" rx="2" ry="2" />
<text x="1157.22" y="1999.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (3 samples, 0.02%)</title><rect x="33.5" y="2021" width="0.2" height="15.0" fill="rgb(245,74,47)" rx="2" ry="2" />
<text x="36.52" y="2031.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (8 samples, 0.05%)</title><rect x="1036.9" y="2021" width="0.6" height="15.0" fill="rgb(244,145,13)" rx="2" ry="2" />
<text x="1039.89" y="2031.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="11.6" y="1861" width="0.2" height="15.0" fill="rgb(226,41,7)" rx="2" ry="2" />
<text x="14.56" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="565" width="0.5" height="15.0" fill="rgb(207,159,25)" rx="2" ry="2" />
<text x="1061.57" y="575.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1797" width="0.5" height="15.0" fill="rgb(231,119,0)" rx="2" ry="2" />
<text x="1061.57" y="1807.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1015.2" y="1989" width="0.2" height="15.0" fill="rgb(234,155,41)" rx="2" ry="2" />
<text x="1018.21" y="1999.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="1009.5" y="1909" width="0.3" height="15.0" fill="rgb(221,43,54)" rx="2" ry="2" />
<text x="1012.55" y="1919.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1022.6" y="1989" width="0.1" height="15.0" fill="rgb(246,74,0)" rx="2" ry="2" />
<text x="1025.58" y="1999.5" ></text>
</g>
<g >
<title>__read_nocancel (34 samples, 0.20%)</title><rect x="1093.6" y="2037" width="2.5" height="15.0" fill="rgb(254,0,41)" rx="2" ry="2" />
<text x="1096.64" y="2047.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1011.5" y="2005" width="0.1" height="15.0" fill="rgb(249,137,30)" rx="2" ry="2" />
<text x="1014.46" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1429" width="0.5" height="15.0" fill="rgb(251,164,48)" rx="2" ry="2" />
<text x="1061.57" y="1439.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1067.7" y="1989" width="0.2" height="15.0" fill="rgb(214,208,20)" rx="2" ry="2" />
<text x="1070.71" y="1999.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1189.9" y="2005" width="0.1" height="15.0" fill="rgb(249,141,12)" rx="2" ry="2" />
<text x="1192.86" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (6 samples, 0.04%)</title><rect x="1045.0" y="2005" width="0.5" height="15.0" fill="rgb(249,87,54)" rx="2" ry="2" />
<text x="1048.04" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (6 samples, 0.04%)</title><rect x="1145.0" y="1989" width="0.4" height="15.0" fill="rgb(212,7,29)" rx="2" ry="2" />
<text x="1148.01" y="1999.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.04%)</title><rect x="1035.9" y="2037" width="0.4" height="15.0" fill="rgb(205,169,38)" rx="2" ry="2" />
<text x="1038.90" y="2047.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (42 samples, 0.25%)</title><rect x="1080.6" y="2005" width="3.0" height="15.0" fill="rgb(248,187,33)" rx="2" ry="2" />
<text x="1083.61" y="2015.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (10 samples, 0.06%)</title><rect x="1061.4" y="2021" width="0.7" height="15.0" fill="rgb(210,176,28)" rx="2" ry="2" />
<text x="1064.41" y="2031.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1017.1" y="2021" width="0.2" height="15.0" fill="rgb(220,86,21)" rx="2" ry="2" />
<text x="1020.06" y="2031.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1012.0" y="2021" width="0.1" height="15.0" fill="rgb(224,15,19)" rx="2" ry="2" />
<text x="1014.95" y="2031.5" ></text>
</g>
<g >
<title>open_path (108 samples, 0.65%)</title><rect x="1174.5" y="2037" width="7.6" height="15.0" fill="rgb(246,135,38)" rx="2" ry="2" />
<text x="1177.48" y="2047.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (290 samples, 1.74%)</title><rect x="11.8" y="2005" width="20.6" height="15.0" fill="rgb(211,176,54)" rx="2" ry="2" />
<text x="14.84" y="2015.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (36 samples, 0.22%)</title><rect x="1040.0" y="1973" width="2.6" height="15.0" fill="rgb(242,100,40)" rx="2" ry="2" />
<text x="1043.01" y="1983.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1104.8" y="2005" width="0.3" height="15.0" fill="rgb(254,140,49)" rx="2" ry="2" />
<text x="1107.84" y="2015.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.04%)</title><rect x="10.0" y="1397" width="0.4" height="15.0" fill="rgb(222,24,53)" rx="2" ry="2" />
<text x="13.00" y="1407.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1105.3" y="2005" width="0.2" height="15.0" fill="rgb(222,31,48)" rx="2" ry="2" />
<text x="1108.26" y="2015.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1064.6" y="1989" width="0.1" height="15.0" fill="rgb(245,160,2)" rx="2" ry="2" />
<text x="1067.60" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="341" width="0.5" height="15.0" fill="rgb(214,229,41)" rx="2" ry="2" />
<text x="1061.57" y="351.5" ></text>
</g>
<g >
<title>mprotect (2 samples, 0.01%)</title><rect x="1064.6" y="2005" width="0.1" height="15.0" fill="rgb(238,132,3)" rx="2" ry="2" />
<text x="1067.60" y="2015.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1153.5" y="2021" width="0.2" height="15.0" fill="rgb(253,218,14)" rx="2" ry="2" />
<text x="1156.51" y="2031.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (39 samples, 0.23%)</title><rect x="1017.8" y="2005" width="2.8" height="15.0" fill="rgb(238,111,40)" rx="2" ry="2" />
<text x="1020.84" y="2015.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1010.8" y="1973" width="0.2" height="15.0" fill="rgb(238,99,21)" rx="2" ry="2" />
<text x="1013.82" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (70 samples, 0.42%)</title><rect x="1015.6" y="2053" width="5.0" height="15.0" fill="rgb(212,151,21)" rx="2" ry="2" />
<text x="1018.64" y="2063.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1058.3" y="2021" width="0.1" height="15.0" fill="rgb(252,223,0)" rx="2" ry="2" />
<text x="1061.29" y="2031.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1007.3" y="1989" width="0.2" height="15.0" fill="rgb(228,82,12)" rx="2" ry="2" />
<text x="1010.28" y="1999.5" ></text>
</g>
<g >
<title>do_syscall_64 (17 samples, 0.10%)</title><rect x="1017.8" y="1989" width="1.2" height="15.0" fill="rgb(222,81,29)" rx="2" ry="2" />
<text x="1020.84" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="917" width="0.5" height="15.0" fill="rgb(241,127,13)" rx="2" ry="2" />
<text x="1061.57" y="927.5" ></text>
</g>
<g >
<title>dl_open_worker (2 samples, 0.01%)</title><rect x="1064.6" y="2021" width="0.1" height="15.0" fill="rgb(230,50,38)" rx="2" ry="2" />
<text x="1067.60" y="2031.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (16 samples, 0.10%)</title><rect x="1036.3" y="2037" width="1.2" height="15.0" fill="rgb(214,105,16)" rx="2" ry="2" />
<text x="1039.33" y="2047.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1009.3" y="1909" width="0.2" height="15.0" fill="rgb(234,153,10)" rx="2" ry="2" />
<text x="1012.33" y="1919.5" ></text>
</g>
<g >
<title>do_syscall_64 (145 samples, 0.87%)</title><rect x="11.8" y="1989" width="10.3" height="15.0" fill="rgb(216,32,20)" rx="2" ry="2" />
<text x="14.84" y="1999.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="1062.4" y="2021" width="0.3" height="15.0" fill="rgb(232,168,39)" rx="2" ry="2" />
<text x="1065.40" y="2031.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1016.1" y="1941" width="0.2" height="15.0" fill="rgb(253,68,19)" rx="2" ry="2" />
<text x="1019.06" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (16 samples, 0.10%)</title><rect x="1063.3" y="2053" width="1.1" height="15.0" fill="rgb(231,159,32)" rx="2" ry="2" />
<text x="1066.25" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1509" width="0.2" height="15.0" fill="rgb(218,141,1)" rx="2" ry="2" />
<text x="1048.82" y="1519.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (2 samples, 0.01%)</title><rect x="1014.6" y="2053" width="0.2" height="15.0" fill="rgb(232,217,18)" rx="2" ry="2" />
<text x="1017.65" y="2063.5" ></text>
</g>
<g >
<title>[.electron-wrapped] (14 samples, 0.08%)</title><rect x="1009.1" y="1989" width="1.0" height="15.0" fill="rgb(209,171,40)" rx="2" ry="2" />
<text x="1012.12" y="1999.5" ></text>
</g>
<g >
<title>[libxul.so] (5 samples, 0.03%)</title><rect x="33.7" y="2037" width="0.4" height="15.0" fill="rgb(235,2,39)" rx="2" ry="2" />
<text x="36.73" y="2047.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (84 samples, 0.50%)</title><rect x="1133.1" y="1989" width="6.0" height="15.0" fill="rgb(237,162,17)" rx="2" ry="2" />
<text x="1136.11" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="613" width="0.2" height="15.0" fill="rgb(224,40,45)" rx="2" ry="2" />
<text x="1048.82" y="623.5" ></text>
</g>
<g >
<title>_nl_find_locale (6 samples, 0.04%)</title><rect x="1189.6" y="2037" width="0.4" height="15.0" fill="rgb(231,43,18)" rx="2" ry="2" />
<text x="1192.57" y="2047.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="11.3" y="1861" width="0.3" height="15.0" fill="rgb(238,47,6)" rx="2" ry="2" />
<text x="14.28" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1221" width="0.2" height="15.0" fill="rgb(214,111,40)" rx="2" ry="2" />
<text x="1048.82" y="1231.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (8 samples, 0.05%)</title><rect x="1042.7" y="2005" width="0.6" height="15.0" fill="rgb(228,153,2)" rx="2" ry="2" />
<text x="1045.70" y="2015.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (5 samples, 0.03%)</title><rect x="1016.7" y="2005" width="0.4" height="15.0" fill="rgb(249,113,18)" rx="2" ry="2" />
<text x="1019.70" y="2015.5" ></text>
</g>
<g >
<title>[libxul.so] (2 samples, 0.01%)</title><rect x="1045.7" y="1973" width="0.1" height="15.0" fill="rgb(243,33,16)" rx="2" ry="2" />
<text x="1048.68" y="1983.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (8 samples, 0.05%)</title><rect x="35.3" y="1989" width="0.6" height="15.0" fill="rgb(230,188,9)" rx="2" ry="2" />
<text x="38.29" y="1999.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1017.1" y="1989" width="0.1" height="15.0" fill="rgb(232,2,16)" rx="2" ry="2" />
<text x="1020.06" y="1999.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1012.3" y="1989" width="0.2" height="15.0" fill="rgb(251,3,16)" rx="2" ry="2" />
<text x="1015.31" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1701" width="0.5" height="15.0" fill="rgb(244,85,4)" rx="2" ry="2" />
<text x="1061.57" y="1711.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (90 samples, 0.54%)</title><rect x="1119.9" y="2021" width="6.4" height="15.0" fill="rgb(215,142,27)" rx="2" ry="2" />
<text x="1122.93" y="2031.5" ></text>
</g>
<g >
<title>do_syscall_64 (6 samples, 0.04%)</title><rect x="1145.0" y="2021" width="0.4" height="15.0" fill="rgb(212,68,53)" rx="2" ry="2" />
<text x="1148.01" y="2031.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1102.0" y="1989" width="0.1" height="15.0" fill="rgb(247,25,45)" rx="2" ry="2" />
<text x="1105.00" y="1999.5" ></text>
</g>
<g >
<title>dl_main (22 samples, 0.13%)</title><rect x="1102.2" y="2021" width="1.6" height="15.0" fill="rgb(247,181,10)" rx="2" ry="2" />
<text x="1105.22" y="2031.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (3 samples, 0.02%)</title><rect x="1045.3" y="1973" width="0.2" height="15.0" fill="rgb(212,126,15)" rx="2" ry="2" />
<text x="1048.25" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="821" width="0.2" height="15.0" fill="rgb(212,76,23)" rx="2" ry="2" />
<text x="1048.82" y="831.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="789" width="0.2" height="15.0" fill="rgb(227,97,9)" rx="2" ry="2" />
<text x="1048.82" y="799.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="44.0" y="1989" width="0.1" height="15.0" fill="rgb(237,82,39)" rx="2" ry="2" />
<text x="47.01" y="1999.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1067.9" y="1989" width="0.2" height="15.0" fill="rgb(251,65,50)" rx="2" ry="2" />
<text x="1070.93" y="1999.5" ></text>
</g>
<g >
<title>__GI___ioctl (8 samples, 0.05%)</title><rect x="1062.1" y="2053" width="0.6" height="15.0" fill="rgb(230,167,34)" rx="2" ry="2" />
<text x="1065.12" y="2063.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (22 samples, 0.13%)</title><rect x="1102.2" y="1989" width="1.6" height="15.0" fill="rgb(223,206,32)" rx="2" ry="2" />
<text x="1105.22" y="1999.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1007.5" y="2005" width="0.2" height="15.0" fill="rgb(244,160,48)" rx="2" ry="2" />
<text x="1010.49" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (568 samples, 3.41%)</title><rect x="1064.4" y="2053" width="40.2" height="15.0" fill="rgb(232,21,2)" rx="2" ry="2" />
<text x="1067.38" y="2063.5" >[un..</text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="197" width="0.5" height="15.0" fill="rgb(221,228,47)" rx="2" ry="2" />
<text x="1061.57" y="207.5" ></text>
</g>
<g >
<title>clock_gettime@GLIBC_2.2.5 (112 samples, 0.67%)</title><rect x="1028.0" y="2037" width="7.9" height="15.0" fill="rgb(230,99,9)" rx="2" ry="2" />
<text x="1030.97" y="2047.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1102.0" y="1957" width="0.1" height="15.0" fill="rgb(250,92,46)" rx="2" ry="2" />
<text x="1105.00" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1925" width="0.5" height="15.0" fill="rgb(216,137,40)" rx="2" ry="2" />
<text x="1061.57" y="1935.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (11 samples, 0.07%)</title><rect x="1046.2" y="1989" width="0.8" height="15.0" fill="rgb(224,212,22)" rx="2" ry="2" />
<text x="1049.18" y="1999.5" ></text>
</g>
<g >
<title>__GI___execve (69 samples, 0.41%)</title><rect x="977.0" y="1973" width="4.9" height="15.0" fill="rgb(246,207,25)" rx="2" ry="2" />
<text x="980.03" y="1983.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (46 samples, 0.28%)</title><rect x="1106.6" y="2005" width="3.3" height="15.0" fill="rgb(236,7,2)" rx="2" ry="2" />
<text x="1109.61" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1109" width="0.5" height="15.0" fill="rgb(250,210,41)" rx="2" ry="2" />
<text x="1061.57" y="1119.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="33.0" y="2021" width="0.2" height="15.0" fill="rgb(254,42,16)" rx="2" ry="2" />
<text x="35.96" y="2031.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (17 samples, 0.10%)</title><rect x="1094.8" y="1989" width="1.3" height="15.0" fill="rgb(230,11,16)" rx="2" ry="2" />
<text x="1097.85" y="1999.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1024.1" y="2021" width="0.2" height="15.0" fill="rgb(218,157,22)" rx="2" ry="2" />
<text x="1027.14" y="2031.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (16 samples, 0.10%)</title><rect x="1042.7" y="2037" width="1.1" height="15.0" fill="rgb(254,39,53)" rx="2" ry="2" />
<text x="1045.70" y="2047.5" ></text>
</g>
<g >
<title>[libxul.so] (4 samples, 0.02%)</title><rect x="1014.2" y="2037" width="0.3" height="15.0" fill="rgb(248,48,31)" rx="2" ry="2" />
<text x="1017.22" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="549" width="0.5" height="15.0" fill="rgb(205,111,49)" rx="2" ry="2" />
<text x="1061.57" y="559.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="1063.8" y="1989" width="0.3" height="15.0" fill="rgb(234,11,49)" rx="2" ry="2" />
<text x="1066.82" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1573" width="0.5" height="15.0" fill="rgb(217,223,42)" rx="2" ry="2" />
<text x="1061.57" y="1583.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1145.9" y="2037" width="0.1" height="15.0" fill="rgb(223,150,17)" rx="2" ry="2" />
<text x="1148.86" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (5 samples, 0.03%)</title><rect x="33.7" y="2021" width="0.4" height="15.0" fill="rgb(219,33,1)" rx="2" ry="2" />
<text x="36.73" y="2031.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="1182.5" y="2021" width="0.2" height="15.0" fill="rgb(232,53,6)" rx="2" ry="2" />
<text x="1185.49" y="2031.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1104.4" y="2005" width="0.2" height="15.0" fill="rgb(227,180,16)" rx="2" ry="2" />
<text x="1107.41" y="2015.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1015.6" y="1989" width="0.2" height="15.0" fill="rgb(223,109,23)" rx="2" ry="2" />
<text x="1018.64" y="1999.5" ></text>
</g>
<g >
<title>__getpid (4 samples, 0.02%)</title><rect x="1011.0" y="2053" width="0.3" height="15.0" fill="rgb(210,140,25)" rx="2" ry="2" />
<text x="1014.03" y="2063.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (31 samples, 0.19%)</title><rect x="983.9" y="1957" width="2.2" height="15.0" fill="rgb(235,79,27)" rx="2" ry="2" />
<text x="986.90" y="1967.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1058.4" y="2005" width="0.2" height="15.0" fill="rgb(244,69,28)" rx="2" ry="2" />
<text x="1061.43" y="2015.5" ></text>
</g>
<g >
<title>mozilla::detail::MutexImpl::unlock (2 samples, 0.01%)</title><rect x="1047.0" y="2021" width="0.1" height="15.0" fill="rgb(225,58,20)" rx="2" ry="2" />
<text x="1049.95" y="2031.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (42 samples, 0.25%)</title><rect x="1099.0" y="1989" width="3.0" height="15.0" fill="rgb(236,185,11)" rx="2" ry="2" />
<text x="1102.03" y="1999.5" ></text>
</g>
<g >
<title>KittyChildMon (10 samples, 0.06%)</title><rect x="1014.9" y="2069" width="0.7" height="15.0" fill="rgb(246,100,48)" rx="2" ry="2" />
<text x="1017.93" y="2079.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (9 samples, 0.05%)</title><rect x="1038.0" y="1989" width="0.6" height="15.0" fill="rgb(222,178,27)" rx="2" ry="2" />
<text x="1040.96" y="1999.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (4 samples, 0.02%)</title><rect x="32.4" y="1989" width="0.3" height="15.0" fill="rgb(224,147,25)" rx="2" ry="2" />
<text x="35.39" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1813" width="0.2" height="15.0" fill="rgb(248,51,19)" rx="2" ry="2" />
<text x="1048.82" y="1823.5" ></text>
</g>
<g >
<title>__xstat64 (84 samples, 0.50%)</title><rect x="1096.1" y="2037" width="5.9" height="15.0" fill="rgb(248,68,42)" rx="2" ry="2" />
<text x="1099.05" y="2047.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="36.9" y="1973" width="0.2" height="15.0" fill="rgb(248,8,49)" rx="2" ry="2" />
<text x="39.85" y="1983.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1042.6" y="2021" width="0.1" height="15.0" fill="rgb(226,190,2)" rx="2" ry="2" />
<text x="1045.56" y="2031.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (16 samples, 0.10%)</title><rect x="1025.7" y="1989" width="1.1" height="15.0" fill="rgb(215,55,26)" rx="2" ry="2" />
<text x="1028.70" y="1999.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1045.5" y="1941" width="0.2" height="15.0" fill="rgb(211,95,31)" rx="2" ry="2" />
<text x="1048.54" y="1951.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="1017.3" y="2005" width="0.3" height="15.0" fill="rgb(248,27,26)" rx="2" ry="2" />
<text x="1020.34" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (6 samples, 0.04%)</title><rect x="1037.5" y="1925" width="0.5" height="15.0" fill="rgb(229,39,26)" rx="2" ry="2" />
<text x="1040.53" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1237" width="0.5" height="15.0" fill="rgb(213,170,27)" rx="2" ry="2" />
<text x="1061.57" y="1247.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.02%)</title><rect x="1063.8" y="2005" width="0.3" height="15.0" fill="rgb(230,75,29)" rx="2" ry="2" />
<text x="1066.82" y="2015.5" ></text>
</g>
<g >
<title>JS_Watchdog (10 samples, 0.06%)</title><rect x="1014.2" y="2069" width="0.7" height="15.0" fill="rgb(223,229,44)" rx="2" ry="2" />
<text x="1017.22" y="2079.5" ></text>
</g>
<g >
<title>[unknown] (4 samples, 0.02%)</title><rect x="1045.7" y="1989" width="0.3" height="15.0" fill="rgb(211,219,48)" rx="2" ry="2" />
<text x="1048.68" y="1999.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3 samples, 0.02%)</title><rect x="1025.5" y="2005" width="0.2" height="15.0" fill="rgb(223,1,42)" rx="2" ry="2" />
<text x="1028.49" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (159 samples, 0.95%)</title><rect x="1044.7" y="2053" width="11.3" height="15.0" fill="rgb(230,50,24)" rx="2" ry="2" />
<text x="1047.69" y="2063.5" ></text>
</g>
<g >
<title>__GI___tcgetattr (100 samples, 0.60%)</title><rect x="1068.1" y="2037" width="7.1" height="15.0" fill="rgb(243,146,49)" rx="2" ry="2" />
<text x="1071.14" y="2047.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1055.7" y="1941" width="0.2" height="15.0" fill="rgb(215,29,39)" rx="2" ry="2" />
<text x="1058.74" y="1951.5" ></text>
</g>
<g >
<title>do_syscall_64 (6,539 samples, 39.26%)</title><rect x="49.5" y="2005" width="463.3" height="15.0" fill="rgb(237,164,43)" rx="2" ry="2" />
<text x="52.53" y="2015.5" >do_syscall_64</text>
</g>
<g >
<title>syscall_exit_to_user_mode (8 samples, 0.05%)</title><rect x="1075.8" y="2005" width="0.6" height="15.0" fill="rgb(214,108,26)" rx="2" ry="2" />
<text x="1078.79" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1717" width="0.2" height="15.0" fill="rgb(251,67,1)" rx="2" ry="2" />
<text x="1048.82" y="1727.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (6 samples, 0.04%)</title><rect x="1008.7" y="2005" width="0.4" height="15.0" fill="rgb(234,126,2)" rx="2" ry="2" />
<text x="1011.70" y="2015.5" ></text>
</g>
<g >
<title>__poll (16 samples, 0.10%)</title><rect x="1036.3" y="2053" width="1.2" height="15.0" fill="rgb(223,26,52)" rx="2" ry="2" />
<text x="1039.33" y="2063.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="1010.7" y="1973" width="0.1" height="15.0" fill="rgb(225,56,49)" rx="2" ry="2" />
<text x="1013.68" y="1983.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1064.7" y="2005" width="0.3" height="15.0" fill="rgb(229,150,10)" rx="2" ry="2" />
<text x="1067.74" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (2 samples, 0.01%)</title><rect x="43.7" y="1973" width="0.2" height="15.0" fill="rgb(229,174,13)" rx="2" ry="2" />
<text x="46.72" y="1983.5" ></text>
</g>
<g >
<title>[.electron-wrapped] (18 samples, 0.11%)</title><rect x="10.0" y="1845" width="1.3" height="15.0" fill="rgb(213,98,5)" rx="2" ry="2" />
<text x="13.00" y="1855.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (20 samples, 0.12%)</title><rect x="1167.5" y="2021" width="1.5" height="15.0" fill="rgb(233,160,6)" rx="2" ry="2" />
<text x="1170.54" y="2031.5" ></text>
</g>
<g >
<title>[.electron-wrapped] (6 samples, 0.04%)</title><rect x="10.0" y="1605" width="0.4" height="15.0" fill="rgb(213,193,53)" rx="2" ry="2" />
<text x="13.00" y="1615.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (2 samples, 0.01%)</title><rect x="1046.0" y="1989" width="0.2" height="15.0" fill="rgb(247,226,14)" rx="2" ry="2" />
<text x="1049.03" y="1999.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (8 samples, 0.05%)</title><rect x="1043.3" y="2021" width="0.5" height="15.0" fill="rgb(241,75,24)" rx="2" ry="2" />
<text x="1046.27" y="2031.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (2 samples, 0.01%)</title><rect x="33.9" y="1973" width="0.2" height="15.0" fill="rgb(213,128,32)" rx="2" ry="2" />
<text x="36.95" y="1983.5" ></text>
</g>
<g >
<title>__libc_recvmsg (16 samples, 0.10%)</title><rect x="1060.3" y="2037" width="1.1" height="15.0" fill="rgb(206,94,43)" rx="2" ry="2" />
<text x="1063.27" y="2047.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="11.0" y="1749" width="0.3" height="15.0" fill="rgb(222,181,42)" rx="2" ry="2" />
<text x="13.99" y="1759.5" ></text>
</g>
<g >
<title>clock_gettime@GLIBC_2.2.5 (13 samples, 0.08%)</title><rect x="1023.0" y="2037" width="0.9" height="15.0" fill="rgb(253,59,4)" rx="2" ry="2" />
<text x="1026.01" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1525" width="0.2" height="15.0" fill="rgb(221,187,5)" rx="2" ry="2" />
<text x="1048.82" y="1535.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (16 samples, 0.10%)</title><rect x="1105.5" y="2037" width="1.1" height="15.0" fill="rgb(207,110,52)" rx="2" ry="2" />
<text x="1108.48" y="2047.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="10.0" y="1349" width="0.2" height="15.0" fill="rgb(235,28,46)" rx="2" ry="2" />
<text x="13.00" y="1359.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (31 samples, 0.19%)</title><rect x="986.1" y="1973" width="2.2" height="15.0" fill="rgb(244,132,21)" rx="2" ry="2" />
<text x="989.09" y="1983.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (5 samples, 0.03%)</title><rect x="1061.8" y="1989" width="0.3" height="15.0" fill="rgb(251,5,35)" rx="2" ry="2" />
<text x="1064.76" y="1999.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1182.2" y="2037" width="0.1" height="15.0" fill="rgb(231,142,54)" rx="2" ry="2" />
<text x="1185.21" y="2047.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="1067.7" y="2005" width="0.2" height="15.0" fill="rgb(225,3,22)" rx="2" ry="2" />
<text x="1070.71" y="2015.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.01%)</title><rect x="1103.8" y="1989" width="0.2" height="15.0" fill="rgb(248,28,43)" rx="2" ry="2" />
<text x="1106.85" y="1999.5" ></text>
</g>
<g >
<title>__fxstat64 (2 samples, 0.01%)</title><rect x="1189.7" y="2021" width="0.2" height="15.0" fill="rgb(247,91,3)" rx="2" ry="2" />
<text x="1192.72" y="2031.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2 samples, 0.01%)</title><rect x="1015.4" y="1973" width="0.1" height="15.0" fill="rgb(207,75,35)" rx="2" ry="2" />
<text x="1018.36" y="1983.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (56 samples, 0.34%)</title><rect x="1031.9" y="1989" width="4.0" height="15.0" fill="rgb(214,102,30)" rx="2" ry="2" />
<text x="1034.93" y="1999.5" ></text>
</g>
<g >
<title>epoll_wait (32 samples, 0.19%)</title><rect x="988.3" y="2037" width="2.3" height="15.0" fill="rgb(217,27,18)" rx="2" ry="2" />
<text x="991.29" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="901" width="0.2" height="15.0" fill="rgb(229,26,19)" rx="2" ry="2" />
<text x="1048.82" y="911.5" ></text>
</g>
<g >
<title>epoll_wait (2 samples, 0.01%)</title><rect x="1012.9" y="2037" width="0.2" height="15.0" fill="rgb(254,32,10)" rx="2" ry="2" />
<text x="1015.95" y="2047.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1045.7" y="1941" width="0.1" height="15.0" fill="rgb(206,55,16)" rx="2" ry="2" />
<text x="1048.68" y="1951.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="46.6" y="2021" width="0.1" height="15.0" fill="rgb(253,87,46)" rx="2" ry="2" />
<text x="49.56" y="2031.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (2 samples, 0.01%)</title><rect x="1015.8" y="2005" width="0.1" height="15.0" fill="rgb(215,97,46)" rx="2" ry="2" />
<text x="1018.78" y="2015.5" ></text>
</g>
<g >
<title>__lxstat64 (4 samples, 0.02%)</title><rect x="1064.7" y="2021" width="0.3" height="15.0" fill="rgb(213,228,44)" rx="2" ry="2" />
<text x="1067.74" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="421" width="0.2" height="15.0" fill="rgb(236,101,3)" rx="2" ry="2" />
<text x="1048.82" y="431.5" ></text>
</g>
<g >
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (2 samples, 0.01%)</title><rect x="1014.8" y="2053" width="0.1" height="15.0" fill="rgb(205,149,37)" rx="2" ry="2" />
<text x="1017.79" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="245" width="0.2" height="15.0" fill="rgb(221,17,10)" rx="2" ry="2" />
<text x="1048.82" y="255.5" ></text>
</g>
<g >
<title>SCTP_timer (4 samples, 0.02%)</title><rect x="1021.9" y="2069" width="0.3" height="15.0" fill="rgb(217,72,52)" rx="2" ry="2" />
<text x="1024.87" y="2079.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (4 samples, 0.02%)</title><rect x="47.6" y="1909" width="0.3" height="15.0" fill="rgb(240,86,41)" rx="2" ry="2" />
<text x="50.62" y="1919.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (8 samples, 0.05%)</title><rect x="1036.3" y="1989" width="0.6" height="15.0" fill="rgb(214,7,49)" rx="2" ry="2" />
<text x="1039.33" y="1999.5" ></text>
</g>
<g >
<title>[libxul.so] (2 samples, 0.01%)</title><rect x="1013.5" y="2037" width="0.2" height="15.0" fill="rgb(243,101,33)" rx="2" ry="2" />
<text x="1016.51" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (8 samples, 0.05%)</title><rect x="1058.6" y="1621" width="0.5" height="15.0" fill="rgb(228,229,12)" rx="2" ry="2" />
<text x="1061.57" y="1631.5" ></text>
</g>
<g >
<title>__getrlimit (2 samples, 0.01%)</title><rect x="1126.3" y="2053" width="0.1" height="15.0" fill="rgb(207,73,51)" rx="2" ry="2" />
<text x="1129.31" y="2063.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (5 samples, 0.03%)</title><rect x="1007.7" y="2005" width="0.4" height="15.0" fill="rgb(212,56,19)" rx="2" ry="2" />
<text x="1010.70" y="2015.5" ></text>
</g>
<g >
<title>pthread_cond_broadcast@@GLIBC_2.3.2 (8 samples, 0.05%)</title><rect x="32.4" y="2037" width="0.6" height="15.0" fill="rgb(209,208,39)" rx="2" ry="2" />
<text x="35.39" y="2047.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (16 samples, 0.10%)</title><rect x="47.9" y="1941" width="1.1" height="15.0" fill="rgb(234,72,17)" rx="2" ry="2" />
<text x="50.90" y="1951.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (2 samples, 0.01%)</title><rect x="1045.5" y="2005" width="0.2" height="15.0" fill="rgb(249,187,3)" rx="2" ry="2" />
<text x="1048.54" y="2015.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1011.5" y="2037" width="0.2" height="15.0" fill="rgb(211,15,23)" rx="2" ry="2" />
<text x="1014.46" y="2047.5" ></text>
</g>
<g >
<title>__libc_write (2 samples, 0.01%)</title><rect x="1145.9" y="2053" width="0.1" height="15.0" fill="rgb(207,16,21)" rx="2" ry="2" />
<text x="1148.86" y="2063.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (9 samples, 0.05%)</title><rect x="1038.0" y="1941" width="0.6" height="15.0" fill="rgb(234,215,1)" rx="2" ry="2" />
<text x="1040.96" y="1951.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="983.5" y="2005" width="0.2" height="15.0" fill="rgb(210,84,8)" rx="2" ry="2" />
<text x="986.47" y="2015.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (3 samples, 0.02%)</title><rect x="1104.2" y="1973" width="0.2" height="15.0" fill="rgb(219,105,13)" rx="2" ry="2" />
<text x="1107.20" y="1983.5" ></text>
</g>
<g >
<title>[.electron-wrapped] (6 samples, 0.04%)</title><rect x="10.0" y="1541" width="0.4" height="15.0" fill="rgb(249,4,22)" rx="2" ry="2" />
<text x="13.00" y="1551.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.01%)</title><rect x="1021.3" y="2037" width="0.1" height="15.0" fill="rgb(222,18,44)" rx="2" ry="2" />
<text x="1024.31" y="2047.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.02%)</title><rect x="1020.6" y="2021" width="0.2" height="15.0" fill="rgb(227,121,35)" rx="2" ry="2" />
<text x="1023.60" y="2031.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (43 samples, 0.26%)</title><rect x="1150.5" y="2005" width="3.0" height="15.0" fill="rgb(237,12,31)" rx="2" ry="2" />
<text x="1153.47" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (2 samples, 0.01%)</title><rect x="1045.8" y="1141" width="0.2" height="15.0" fill="rgb(250,122,24)" rx="2" ry="2" />
<text x="1048.82" y="1151.5" ></text>
</g>
<g >
<title>syscall_trace_enter.constprop.0 (42 samples, 0.25%)</title><rect x="1096.1" y="1973" width="2.9" height="15.0" fill="rgb(206,27,1)" rx="2" ry="2" />
<text x="1099.05" y="1983.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.02%)</title><rect x="1015.2" y="2005" width="0.3" height="15.0" fill="rgb(233,63,45)" rx="2" ry="2" />
<text x="1018.21" y="2015.5" ></text>
</g>
</g>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment