Giter Club home page Giter Club logo

Comments (4)

donaldguy avatar donaldguy commented on August 27, 2024

Since I'd already come this far, I went ahead and built from 2dcf130 on both machines

Windows build
PS ~\synergy-core> function global:prompt { $r = [regex]::Escape($HOME) + "(\\.*)*$"; "PS $($executionContext.SessionState.Path.CurrentLocation.Path -replace $r, '~$1')> "; }
PS ~\synergy-core> git worktree add --no-checkout --detach ..\issue-7444-logs HEAD
Preparing worktree (detached HEAD 2dcf1304)
PS ~\synergy-core> cd ..\issue-7444-logs\
PS ~\issue-7444-logs> git checkout --orphan issue-7444-logs
Switched to a new branch 'issue-7444-logs'
PS ~\issue-7444-logs> git rm -rf * .* | Out-Null
PS ~\issue-7444-logs> mv ..\00_win_build_session.ps1 .
PS ~\issue-7444-logs> git add `

00_win_build_session.ps1

warning: in the working copy of '00_win_build_session.ps1', LF will be replaced by CRLF the next time Git touches it

PS ~\issue-7444-logs> cd ..\synergy-core\
PS ~\synergy-core> & ..\issue-7444-logs\00_win_build_session.ps1
**********************************************************************
** Visual Studio 2022 Developer PowerShell v17.11.1
** Copyright (c) 2022 Microsoft Corporation
**********************************************************************
DEBUG:    5+  >>>> $logdir = "~\issue-7444-logs\";

DEBUG:    7+  >>>> systeminfo > `

https://github.com/symless/synergy-core/blob/61497a847fe264cd4ecd3647d7019a08e0d262fd/2024-08-20-try-2dcf1304/01_systeminfo_out.txt#L1-L81

DEBUG:    9+  >>>> git clean -dfx

Removing 02_win_deps_output.log
Removing build/
Removing scripts/lib/__pycache__/
DEBUG:   10+  >>>> git rev-parse HEAD

2dcf13040c410a16278db88f2e2297ca21f39dcf
DEBUG:   11+  >>>> git status --ignored

On branch master
Your branch is up to date with 'origin/master'.

nothing to commit, working tree clean
DEBUG:   13+  >>>> which python

C:\Users\donald\AppData\Local\Microsoft\WindowsApps\python.EXE
DEBUG:   14+  >>>> python --version

Python 3.11.9
DEBUG:   15+  >>>> python .\scripts\install_deps.py 2>&1 |
              >>>>   Out-File `

https://github.com/symless/synergy-core/blob/61497a847fe264cd4ecd3647d7019a08e0d262fd/2024-08-20-try-2dcf1304/02_win_deps_output.log#L1-L335

DEBUG:   18+  >>>> cmake -B build --preset=windows-release 2>&1 |
              >>>> Out-File `

https://github.com/symless/synergy-core/blob/61497a847fe264cd4ecd3647d7019a08e0d262fd/2024-08-20-try-2dcf1304/03_win_config.log#L1-L50

DEBUG:   21+  >>>> cmake --build build -j8 2>&1 |
              >>>> Out-File `

https://github.com/symless/synergy-core/blob/61497a847fe264cd4ecd3647d7019a08e0d262fd/2024-08-20-try-2dcf1304/04_win_build.log#L1-L401

PS ~\synergy-core> cd ..\issue-7444-logs\
DEBUG:    1+  >>>> cd ..\issue-7444-logs\
PS ~\issue-7444-logs> Set-PSDebug -Off
DEBUG:    1+  >>>> Set-PSDebug -Off
PS ~\issue-7444-logs> mkdir 2024-08-20-try-2dcf1304

    Directory: C:\Users\donald\issue-7444-logs

Mode                 LastWriteTime         Length Name
----                 -------------         ------ ----
d----           8/20/2024  5:58 PM                2024-08-20-try-2dcf1304

PS ~\issue-7444-logs> mv 0* .\2024-08-20-try-2dcf1304\
PS ~\issue-7444-logs> git add .
PS ~\issue-7444-logs> git commit -m "Add windows _build_ logs"
[issue-7444-logs 61497a84] Add windows _build_ logs
 Date: Tue Aug 20 18:01:39 2024 -0600
 5 files changed, 889 insertions(+)
 create mode 100644 2024-08-20-try-2dcf1304/00_win_build_session.ps1
 create mode 100644 2024-08-20-try-2dcf1304/01_systeminfo_out.txt
 create mode 100644 2024-08-20-try-2dcf1304/02_win_deps_output.log
 create mode 100644 2024-08-20-try-2dcf1304/03_win_config.log
 create mode 100644 2024-08-20-try-2dcf1304/04_win_build.log
PS ~\issue-7444-logs> gh repo fork --remote
! donaldguy/synergy-core already exists
✓ Added remote origin
PS ~\issue-7444-logs> git push origin HEAD:issue-7444-logs
Enumerating objects: 8, done.
Counting objects: 100% (8/8), done.
Delta compression using up to 16 threads
Compressing objects: 100% (8/8), done.
Writing objects: 100% (8/8), 10.66 KiB | 5.33 MiB/s, done.
Total 8 (delta 0), reused 0 (delta 0), pack-reused 0 (from 0)
remote:
remote: Create a pull request for 'issue-7444-logs' on GitHub by visiting:
remote:      https://github.com/donaldguy/synergy-core/pull/new/issue-7444-logs
remote:
To https://github.com/donaldguy/synergy-core.git
 * [new branch]        HEAD -> issue-7444-logs
Mac build
~/synergy-core $ export PS1='\w \$ '
~/synergy-core $ git remote -v
origin	[email protected]:donaldguy/synergy-core.git (fetch)
origin	[email protected]:donaldguy/synergy-core.git (push)
upstream	[email protected]:symless/synergy-core.git (fetch)
upstream	[email protected]:symless/synergy-core.git (push)
~/synergy-core $ git fetch origin
remote: Enumerating objects: 8, done.
remote: Counting objects: 100% (8/8), done.
remote: Compressing objects: 100% (8/8), done.
remote: Total 8 (delta 0), reused 8 (delta 0), pack-reused 0 (from 0)
Unpacking objects: 100% (8/8), 10.65 KiB | 1.33 MiB/s, done.
From github.com:donaldguy/synergy-core
 * [new branch]        issue-7444-logs -> origin/issue-7444-logs
 * [new branch]        master          -> origin/master
 * [new branch]        release/1.15.0  -> origin/release/1.15.0
~/synergy-core $ git worktree add ../issue-7444-logs origin/issue-7444-logs

~/synergy-core $ cd ../issue-7444-logs/2024-08-20-try-2dcf1304
~/synergy-core $ export PS1='\$ '

$ brew info sd | head -3
==> sd: stable 1.0.0 (bottled)
Intuitive find & replace CLI
https://github.com/chmln/sd

$ (echo "
eval "$(/usr/libexec/path_helper -s)"
eval "$(/opt/homebrew/bin/brew shellenv bash)"

export logdir=\"${PWD/$HOME/\$HOME}\"

set -x

system_profiler -detailLevel mini > \"\$logdir/11_system_profiler_out.txt\""
tail -n +8 00_win_build_session.ps1 |
sd '\\' '/'                    | # 1. fix the path separator 
sd 'Out-File' 'tee &>/dev/null'| # 2. Swap file redirection operation
sd '0(.)_win' '1${1}_mac'      | # 3. fix the output file prefixes
sd 'python' 'python3'          | # 4. macOS + brew don't provide a `python`
sd 'windows-rel' 'macos-rel'     # 5. specify correct preset to make
) > 10_mac_build.sh

$ export PS1='\w \$ '
~/issue-7444-logs/2024-08-20-try-2dcf1304 $ cd -
~/synergy-core $ ~/synergy-core $ env -i HOME=$HOME bash --norc $OLDPWD/10_mac_build.sh
+ system_profiler -detailLevel mini
2024-08-20 20:04:40.485 system_profiler[91015:3589607] WARNING: AVCaptureDeviceTypeExternal is deprecated for Continuity Cameras. Please use AVCaptureDeviceTypeContinuityCamera and add NSCameraUseContinuityCameraDeviceType to your Info.plist.

https://github.com/symless/synergy-core/blob/951c95a8e5974404aa416b0a3dc7d32b1c92f85d/2024-08-20-try-2dcf1304/11_system_profiler_out.txt#L1-L697

+ git clean -dfx
Removing build/
Removing scripts/lib/__pycache__/
+ git rev-parse HEAD
2dcf13040c410a16278db88f2e2297ca21f39dcf
+ git status --ignored
On branch master
Your branch is up to date with 'upstream/master'.

nothing to commit, working tree clean
+ which python3
/opt/homebrew/bin/python3
+ python3 --version
Python 3.12.5
+ python3 ./scripts/install_deps.py
+ tee \

https://github.com/symless/synergy-core/blob/951c95a8e5974404aa416b0a3dc7d32b1c92f85d/2024-08-20-try-2dcf1304/12_mac_deps_output.log#L1-L166

+ cmake -B build --preset=macos-release
+ tee \

https://github.com/symless/synergy-core/blob/951c95a8e5974404aa416b0a3dc7d32b1c92f85d/2024-08-20-try-2dcf1304/13_mac_config.log#L1-L102

+ cmake --build build -j8
+ tee \

https://github.com/symless/synergy-core/blob/951c95a8e5974404aa416b0a3dc7d32b1c92f85d/2024-08-20-try-2dcf1304/14_mac_build.log#L1-L2945

~/synergy-core $ cd -
~/issue-7444-logs/2024-08-20-try-2dcf1304 $ git add .
~/issue-7444-logs/2024-08-20-try-2dcf1304 $ git commit -m "add mac logs"
[detached HEAD 951c95a8] add mac logs
 5 files changed, 3935 insertions(+)
 create mode 100644 2024-08-20-try-2dcf1304/10_mac_build.sh
 create mode 100644 2024-08-20-try-2dcf1304/11_system_profiler_out.txt
 create mode 100644 2024-08-20-try-2dcf1304/12_mac_deps_output.log
 create mode 100644 2024-08-20-try-2dcf1304/13_mac_config.log
 create mode 100644 2024-08-20-try-2dcf1304/14_mac_build.log
~/issue-7444-logs/2024-08-20-try-2dcf1304 $ git push origin HEAD:issue-7444-logs
Enumerating objects: 10, done.
Counting objects: 100% (10/10), done.
Delta compression using up to 8 threads
Compressing objects: 100% (8/8), done.
Writing objects: 100% (8/8), 36.07 KiB | 4.51 MiB/s, done.
Total 8 (delta 0), reused 0 (delta 0), pack-reused 0
To github.com:donaldguy/synergy-core.git
   61497a84..951c95a8  HEAD -> issue-7444-logs

from synergy.

donaldguy avatar donaldguy commented on August 27, 2024

It does not work any better/different

Windows configure and synergysrun
PS ~\synergy-core> New-Item synergy.sgc

    Directory: C:\Users\donald\synergy-core

Mode                 LastWriteTime         Length Name
----                 -------------         ------ ----
-a---           8/20/2024  9:35 PM              0 synergy.sgc

PS ~\synergy-core> Add-Content -Path .\synergy.sgc -Value "
∙ section: screens
∙   windows:
∙   mac:
∙ end

∙ section: links
∙   windows:
∙     right(15,81) = mac(0,100)
∙   mac:
∙     left(0,100) = windows(15,81)
∙ end
"
PS ~\synergy-core> Get-Process | ? { $_.Name -like 'synergy*'}

 NPM(K)    PM(M)      WS(M)     CPU(s)      Id  SI ProcessName
 ------    -----      -----     ------      --  -- -----------
     19    54.04       2.81       3.75   58128   1 Synergy
     31   194.70       1.99       7.72   67824   1 Synergy
     14    16.00       0.45       0.80   68096   1 Synergy
     19    18.71       1.12       0.30   69072   1 Synergy
     35    66.20       6.02       9.61   70048   1 Synergy
     17     3.40       1.71      38.36   73996   1 synergy-core
     12     1.80       0.48       0.98   73900   0 synergy-daemon
     97    69.00      13.41      11.59   72448   1 synergy-service
     10     6.38       0.48       1.44   70068   1 synergy-tray

PS ~\synergy-core> Get-Process | ? { $_.Name -like 'synergy*'}

 NPM(K)    PM(M)      WS(M)     CPU(s)      Id  SI ProcessName
 ------    -----      -----     ------      --  -- -----------
     11     1.80       1.74       1.02   73900   0 synergy-daemon

PS ~\synergy-core> Stop-Service -Name 'Synergy 3 Daemon'
WARNING: Waiting for service 'Synergy 3 Daemon (Synergy 3 Daemon)' to stop...
WARNING: Waiting for service 'Synergy 3 Daemon (Synergy 3 Daemon)' to stop...
WARNING: Waiting for service 'Synergy 3 Daemon (Synergy 3 Daemon)' to stop...
WARNING: Waiting for service 'Synergy 3 Daemon (Synergy 3 Daemon)' to stop...
WARNING: Waiting for service 'Synergy 3 Daemon (Synergy 3 Daemon)' to stop...
PS ~\synergy-core> Get-Process | ? { $_.Name -like 'synergy*'}
PS ~\synergy-core> .\build\bin\synergys -f -n windows --no-tray -d DEBUG1 -c .\synergy.sgc
[2024-08-20T21:43:26] DEBUG: opening configuration ".\synergy.sgc"
[2024-08-20T21:43:26] DEBUG: configuration read successfully
[2024-08-20T21:43:26] DEBUG1: starting server
[2024-08-20T21:43:26] DEBUG1: thread 0x000133f0 entry
[2024-08-20T21:43:26] DEBUG: screen shape: 0,0 2560x2880
[2024-08-20T21:43:26] DEBUG: window is 0x016c14a6
[2024-08-20T21:43:26] DEBUG: using desktop for file drag-drop target: C:\Users\donald\Desktop
[2024-08-20T21:43:26] DEBUG: adopting new buffer
[2024-08-20T21:43:26] DEBUG: opened display
[2024-08-20T21:43:26] DEBUG1: registered event type IScreenEvents::error as 4
[2024-08-20T21:43:26] DEBUG1: registered event type IScreenEvents::suspend as 5
[2024-08-20T21:43:26] DEBUG1: registered event type IScreenEvents::resume as 6
[2024-08-20T21:43:26] DEBUG1: creating primary screen
[2024-08-20T21:43:26] DEBUG1: registered event type IListenSocketEvents::connecting as 7
[2024-08-20T21:43:26] DEBUG1: binding listen socket
[2024-08-20T21:43:26] DEBUG1: listening for clients
[2024-08-20T21:43:26] DEBUG1: registered event type ClientListenerEvents::connected as 8
[2024-08-20T21:43:26] DEBUG1: registered event type IKeyStateEvents::keyDown as 9
[2024-08-20T21:43:26] DEBUG1: registered event type IKeyStateEvents::keyUp as 10
[2024-08-20T21:43:26] DEBUG1: registered event type IKeyStateEvents::keyRepeat as 11
[2024-08-20T21:43:26] DEBUG1: registered event type IPrimaryScreenEvents::buttonDown as 12
[2024-08-20T21:43:26] DEBUG1: registered event type IPrimaryScreenEvents::buttonUp as 13
[2024-08-20T21:43:26] DEBUG1: registered event type IPrimaryScreenEvents::motionOnPrimary as 14
[2024-08-20T21:43:26] DEBUG1: registered event type IPrimaryScreenEvents::motionOnSecondary as 15
[2024-08-20T21:43:26] DEBUG1: registered event type IPrimaryScreenEvents::wheel as 16
[2024-08-20T21:43:26] DEBUG1: registered event type IPrimaryScreenEvents::screensaverActivated as 17
[2024-08-20T21:43:26] DEBUG1: registered event type IPrimaryScreenEvents::screensaverDeactivated as 18
[2024-08-20T21:43:26] DEBUG1: registered event type ServerEvents::switchToScreen as 19
[2024-08-20T21:43:26] DEBUG1: registered event type ServerEvents::switchInDirection as 20
[2024-08-20T21:43:26] DEBUG1: registered event type ServerEvents::keyboardBroadcast as 21
[2024-08-20T21:43:26] DEBUG1: registered event type ServerEvents::lockCursorToScreen as 22
[2024-08-20T21:43:26] DEBUG1: registered event type IPrimaryScreenEvents::fakeInputBegin as 23
[2024-08-20T21:43:26] DEBUG1: registered event type IPrimaryScreenEvents::fakeInputEnd as 24
[2024-08-20T21:43:26] DEBUG1: registered event type IScreenEvents::shapeChanged as 25
[2024-08-20T21:43:26] DEBUG1: registered event type ClipboardEvents::clipboardGrabbed as 26
[2024-08-20T21:43:26] DEBUG1: registered event type ClipboardEvents::clipboardChanged as 27
[2024-08-20T21:43:26] DEBUG: active sides: 4
[2024-08-20T21:43:26] DEBUG: active sides: 4
[2024-08-20T21:43:26] DEBUG1: modifiers on update: 0x2000
[2024-08-20T21:43:26] DEBUG1: thread 0x00013c10 entry
[2024-08-20T21:43:26] DEBUG: desk Default window is 0x00841408
[2024-08-20T21:43:26] DEBUG: switched to desk "Default"
[2024-08-20T21:43:26] DEBUG: desktop is now accessible
[2024-08-20T21:43:26] DEBUG1: modifiers on update: 0x2000
[2024-08-20T21:43:26] DEBUG1: modifiers on update: 0x2000
[2024-08-20T21:43:26] DEBUG1: registered event type IPrimaryScreenEvents::hotKeyDown as 28
[2024-08-20T21:43:26] DEBUG1: registered event type IPrimaryScreenEvents::hotKeyUp as 29
[2024-08-20T21:43:26] DEBUG1: registered event type ServerEvents::connected as 30
[2024-08-20T21:43:26] DEBUG: registered hotkey ScrollLock (id=ef14 mask=0000) as id=1
[2024-08-20T21:43:26] DEBUG1: registered event type ServerEvents::disconnected as 31
[2024-08-20T21:43:26] DEBUG1: registered event type ServerEvents::screenSwitched as 32
[2024-08-20T21:43:26] NOTE: started server, waiting for clients
[2024-08-20T21:43:26] DEBUG1: registered event type ServerAppEvents::reloadConfig as 33
[2024-08-20T21:43:26] DEBUG1: registered event type ServerAppEvents::forceReconnect as 34
[2024-08-20T21:43:26] DEBUG1: registered event type ServerAppEvents::resetServer as 35
[2024-08-20T21:43:26] DEBUG: event queue is ready
[2024-08-20T21:43:26] DEBUG: add pending events to buffer
[2024-08-20T21:43:26] DEBUG: screen "windows" shape changed
[2024-08-20T21:43:36] DEBUG: opening new socket: 28568180
[2024-08-20T21:43:36] DEBUG1: registered event type ClientListenerEvents::accepted as 36
[2024-08-20T21:43:36] NOTE: accepted client connection
[2024-08-20T21:43:36] DEBUG1: registered event type IStreamEvents::inputReady as 37
[2024-08-20T21:43:36] DEBUG1: registered event type IStreamEvents::outputError as 38
[2024-08-20T21:43:36] DEBUG1: registered event type IStreamEvents::inputShutdown as 39
[2024-08-20T21:43:36] DEBUG1: registered event type IStreamEvents::outputShutdown as 40
[2024-08-20T21:43:36] DEBUG1: saying hello
[2024-08-20T21:43:36] DEBUG1: registered event type ClientProxyUnknownEvents::success as 41
[2024-08-20T21:43:36] DEBUG1: registered event type ClientProxyUnknownEvents::failure as 42
[2024-08-20T21:43:36] DEBUG1: registered event type IStreamEvents::outputFlushed as 43
[2024-08-20T21:43:36] DEBUG1: parsing hello reply
[2024-08-20T21:43:36] DEBUG1: querying client "mac" info
[2024-08-20T21:43:36] DEBUG1: registered event type FileEvents::keepAlive as 44
[2024-08-20T21:43:36] DEBUG1: registered event type ClipboardEvents::clipboardSending as 45
[2024-08-20T21:43:36] INFO: local languages: en
[2024-08-20T21:43:36] DEBUG1: send server languages to the client: en
[2024-08-20T21:43:36] DEBUG1: created proxy for client "mac" version 1.8
[2024-08-20T21:43:36] DEBUG1: registered event type ClientProxyEvents::ready as 46
[2024-08-20T21:43:36] DEBUG1: registered event type ClientProxyEvents::disconnected as 47
[2024-08-20T21:43:36] DEBUG: received client "mac" info shape=0,0 3072x864 at 813,549
[2024-08-20T21:43:36] DEBUG1: send info ack to "mac"
[2024-08-20T21:43:36] DEBUG: active sides: 4
[2024-08-20T21:43:36] NOTE: client "mac" has connected
[2024-08-20T21:43:36] DEBUG1: send reset options to "mac"
[2024-08-20T21:43:36] DEBUG1: send set options to "mac" size=0
[2024-08-20T21:43:43] DEBUG1: try to leave "windows" on right
[2024-08-20T21:43:43] INFO: switch from "windows" to "mac" at 0,432
[2024-08-20T21:43:43] INFO: leaving screen
[2024-08-20T21:43:44] DEBUG1: warping cursor to center: +1280, +1440
[2024-08-20T21:43:44] DEBUG1: modifiers on update: 0x2000
[2024-08-20T21:43:44] DEBUG: open clipboard
[2024-08-20T21:43:44] DEBUG: close clipboard
[2024-08-20T21:43:44] INFO: screen "windows" updated clipboard 0
[2024-08-20T21:43:44] DEBUG: open clipboard
[2024-08-20T21:43:44] DEBUG: close clipboard
[2024-08-20T21:43:44] INFO: screen "windows" updated clipboard 1
[2024-08-20T21:43:44] DEBUG1: send enter to "mac", 0,432 1 2000
[2024-08-20T21:43:44] DEBUG: sending clipboard 0 to "mac"
[2024-08-20T21:43:44] DEBUG: sent clipboard size=1525
[2024-08-20T21:43:44] DEBUG: sending clipboard 1 to "mac"
[2024-08-20T21:43:44] DEBUG: sent clipboard size=1525
[2024-08-20T21:43:44] DEBUG1: sending clipboard chunk
[2024-08-20T21:43:44] DEBUG1: sending clipboard chunk
[2024-08-20T21:43:44] DEBUG1: sending clipboard chunk
[2024-08-20T21:43:44] DEBUG1: sending clipboard chunk
[2024-08-20T21:43:44] DEBUG1: sending clipboard chunk
[2024-08-20T21:43:44] DEBUG1: sending clipboard chunk
[2024-08-20T21:43:44] DEBUG: dropped bogus delta motion: +1338,-55
[2024-08-20T21:43:44] DEBUG1: try to leave "mac" on left
[2024-08-20T21:43:44] INFO: switch from "mac" to "windows" at 2544,1398
[2024-08-20T21:43:44] DEBUG1: send leave to "mac"
[2024-08-20T21:43:44] INFO: entering screen
[2024-08-20T21:43:44] DEBUG1: try to leave "windows" on right
[2024-08-20T21:43:44] INFO: switch from "windows" to "mac" at 0,438
[2024-08-20T21:43:44] INFO: leaving screen
[2024-08-20T21:43:44] DEBUG1: warping cursor to center: +1280, +1440
[2024-08-20T21:43:44] DEBUG1: modifiers on update: 0x2000
[2024-08-20T21:43:44] DEBUG: open clipboard
[2024-08-20T21:43:44] DEBUG: close clipboard
[2024-08-20T21:43:44] DEBUG: ignored screen "windows" update of clipboard 0 (unchanged)
[2024-08-20T21:43:44] DEBUG: open clipboard
[2024-08-20T21:43:44] DEBUG: close clipboard
[2024-08-20T21:43:44] DEBUG: ignored screen "windows" update of clipboard 1 (unchanged)
[2024-08-20T21:43:44] DEBUG1: send enter to "mac", 0,438 3 2000
[2024-08-20T21:43:45] DEBUG1: event: button press button=1
[2024-08-20T21:43:45] DEBUG1: onMouseDown id=1
[2024-08-20T21:43:45] DEBUG1: send mouse down to "mac" id=1
[2024-08-20T21:43:45] DEBUG1: event: button release button=1
[2024-08-20T21:43:45] DEBUG1: onMouseUp id=1
[2024-08-20T21:43:45] DEBUG1: send mouse up to "mac" id=1
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:48] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:48] DEBUG1: no neighbor down
[2024-08-20T21:43:52] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:52] DEBUG1: no neighbor down
[2024-08-20T21:43:52] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:52] DEBUG1: no neighbor down
[2024-08-20T21:43:53] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:53] DEBUG1: no neighbor down
[2024-08-20T21:43:53] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:53] DEBUG1: no neighbor down
[2024-08-20T21:43:53] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:53] DEBUG1: no neighbor down
[2024-08-20T21:43:53] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:53] DEBUG1: no neighbor down
[2024-08-20T21:43:53] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:53] DEBUG1: no neighbor down
[2024-08-20T21:43:53] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:53] DEBUG1: no neighbor down
[2024-08-20T21:43:53] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:53] DEBUG1: no neighbor down
[2024-08-20T21:43:53] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:53] DEBUG1: no neighbor down
[2024-08-20T21:43:53] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:53] DEBUG1: no neighbor down
[2024-08-20T21:43:53] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:53] DEBUG1: no neighbor down
[2024-08-20T21:43:53] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:53] DEBUG1: no neighbor down
[2024-08-20T21:43:53] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:53] DEBUG1: no neighbor down
[2024-08-20T21:43:53] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:53] DEBUG1: no neighbor down
[2024-08-20T21:43:53] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:53] DEBUG1: no neighbor down
[2024-08-20T21:43:53] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:53] DEBUG1: no neighbor down
[2024-08-20T21:43:53] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:53] DEBUG1: no neighbor down
[2024-08-20T21:43:53] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:53] DEBUG1: no neighbor down
[2024-08-20T21:43:53] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:53] DEBUG1: no neighbor down
[2024-08-20T21:43:53] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:53] DEBUG1: no neighbor down
[2024-08-20T21:43:53] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:53] DEBUG1: no neighbor down
[2024-08-20T21:43:53] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:53] DEBUG1: no neighbor down
[2024-08-20T21:43:53] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:53] DEBUG1: no neighbor down
[2024-08-20T21:43:53] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:53] DEBUG1: no neighbor down
[2024-08-20T21:43:53] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:53] DEBUG1: no neighbor down
[2024-08-20T21:43:53] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:53] DEBUG1: no neighbor down
[2024-08-20T21:43:53] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:53] DEBUG1: no neighbor down
[2024-08-20T21:43:53] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:53] DEBUG1: no neighbor down
[2024-08-20T21:43:53] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:53] DEBUG1: no neighbor down
[2024-08-20T21:43:53] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:53] DEBUG1: no neighbor down
[2024-08-20T21:43:53] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:53] DEBUG1: no neighbor down
[2024-08-20T21:43:53] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:53] DEBUG1: no neighbor down
[2024-08-20T21:43:53] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:53] DEBUG1: no neighbor down
[2024-08-20T21:43:53] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:53] DEBUG1: no neighbor down
[2024-08-20T21:43:53] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:53] DEBUG1: no neighbor down
[2024-08-20T21:43:53] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:53] DEBUG1: no neighbor down
[2024-08-20T21:43:53] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:53] DEBUG1: no neighbor down
[2024-08-20T21:43:53] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:53] DEBUG1: no neighbor down
[2024-08-20T21:43:53] DEBUG1: try to leave "mac" on down
[2024-08-20T21:43:53] DEBUG1: no neighbor down
[2024-08-20T21:43:54] DEBUG1: event: button press button=1
[2024-08-20T21:43:54] DEBUG1: onMouseDown id=1
[2024-08-20T21:43:54] DEBUG1: send mouse down to "mac" id=1
[2024-08-20T21:43:54] DEBUG1: event: button release button=1
[2024-08-20T21:43:54] DEBUG1: onMouseUp id=1
[2024-08-20T21:43:54] DEBUG1: send mouse up to "mac" id=1
[2024-08-20T21:44:04] DEBUG1: event: button press button=1
[2024-08-20T21:44:04] DEBUG1: onMouseDown id=1
[2024-08-20T21:44:04] DEBUG1: send mouse down to "mac" id=1
[2024-08-20T21:44:04] DEBUG1: event: button release button=1
[2024-08-20T21:44:04] DEBUG1: onMouseUp id=1
[2024-08-20T21:44:04] DEBUG1: send mouse up to "mac" id=1
[2024-08-20T21:44:05] DEBUG1: event: button press button=1
[2024-08-20T21:44:05] DEBUG1: onMouseDown id=1
[2024-08-20T21:44:05] DEBUG1: send mouse down to "mac" id=1
[2024-08-20T21:44:05] DEBUG1: event: button release button=1
[2024-08-20T21:44:05] DEBUG1: onMouseUp id=1
[2024-08-20T21:44:05] DEBUG1: send mouse up to "mac" id=1
[2024-08-20T21:44:06] DEBUG1: event: button press button=1
[2024-08-20T21:44:06] DEBUG1: onMouseDown id=1
[2024-08-20T21:44:06] DEBUG1: send mouse down to "mac" id=1
[2024-08-20T21:44:07] DEBUG1: event: button release button=1
[2024-08-20T21:44:07] DEBUG1: onMouseUp id=1
[2024-08-20T21:44:07] DEBUG1: send mouse up to "mac" id=1
[2024-08-20T21:44:10] DEBUG1: event: button press button=1
[2024-08-20T21:44:10] DEBUG1: onMouseDown id=1
[2024-08-20T21:44:10] DEBUG1: send mouse down to "mac" id=1
[2024-08-20T21:44:10] DEBUG1: event: button release button=1
[2024-08-20T21:44:10] DEBUG1: onMouseUp id=1
[2024-08-20T21:44:10] DEBUG1: send mouse up to "mac" id=1
[2024-08-20T21:44:10] DEBUG1: event: button press button=1
[2024-08-20T21:44:10] DEBUG1: onMouseDown id=1
[2024-08-20T21:44:10] DEBUG1: send mouse down to "mac" id=1
[2024-08-20T21:44:10] DEBUG1: event: button release button=1
[2024-08-20T21:44:10] DEBUG1: onMouseUp id=1
[2024-08-20T21:44:10] DEBUG1: send mouse up to "mac" id=1
[2024-08-20T21:44:11] DEBUG1: event: button press button=1
[2024-08-20T21:44:11] DEBUG1: onMouseDown id=1
[2024-08-20T21:44:11] DEBUG1: send mouse down to "mac" id=1
[2024-08-20T21:44:11] DEBUG1: event: button release button=1
[2024-08-20T21:44:11] DEBUG1: onMouseUp id=1
[2024-08-20T21:44:11] DEBUG1: send mouse up to "mac" id=1
[2024-08-20T21:44:12] DEBUG1: event: button press button=1
[2024-08-20T21:44:12] DEBUG1: onMouseDown id=1
[2024-08-20T21:44:12] DEBUG1: send mouse down to "mac" id=1
[2024-08-20T21:44:12] DEBUG1: event: button release button=1
[2024-08-20T21:44:12] DEBUG1: onMouseUp id=1
[2024-08-20T21:44:12] DEBUG1: send mouse up to "mac" id=1
[2024-08-20T21:44:15] DEBUG1: try to leave "mac" on down
[2024-08-20T21:44:15] DEBUG1: no neighbor down
[2024-08-20T21:44:15] DEBUG1: try to leave "mac" on down
[2024-08-20T21:44:15] DEBUG1: no neighbor down
[2024-08-20T21:44:15] DEBUG1: try to leave "mac" on down
[2024-08-20T21:44:15] DEBUG1: no neighbor down
[2024-08-20T21:44:15] DEBUG1: try to leave "mac" on down
[2024-08-20T21:44:15] DEBUG1: no neighbor down
[2024-08-20T21:44:16] DEBUG1: try to leave "mac" on down
[2024-08-20T21:44:16] DEBUG1: no neighbor down
[2024-08-20T21:44:16] DEBUG1: try to leave "mac" on down
[2024-08-20T21:44:16] DEBUG1: no neighbor down
[2024-08-20T21:44:20] DEBUG1: try to leave "mac" on down
[2024-08-20T21:44:20] DEBUG1: no neighbor down
[2024-08-20T21:44:20] DEBUG1: try to leave "mac" on down
[2024-08-20T21:44:20] DEBUG1: no neighbor down
[2024-08-20T21:44:21] DEBUG1: hook: 0x000000a2 0x001d0001
[2024-08-20T21:44:21] DEBUG1: hook: 0x60a20000 0x001d0001
[2024-08-20T21:44:21] DEBUG1: hook: 0x07a20000 0x001d0001
[2024-08-20T21:44:21] DEBUG1: event: Key char=0, vk=0xa2, nagr=0, lParam=0x001d0001
[2024-08-20T21:44:21] DEBUG1: new mask: 0x2000
[2024-08-20T21:44:21] DEBUG1: new mask: 0x2002
[2024-08-20T21:44:21] DEBUG1: onKeyDown id=61411 mask=0x2002 button=0x001d lang=en
[2024-08-20T21:44:21] DEBUG1: send key down to "mac" id=61411, mask=0x2002, button=0x001d, language=en
[2024-08-20T21:44:21] DEBUG1: hook: 0x000000a2 0x801d0001
[2024-08-20T21:44:21] DEBUG1: hook: 0x60a20000 0x801d0001
[2024-08-20T21:44:21] DEBUG1: hook: 0x07a20000 0x801d0001
[2024-08-20T21:44:21] DEBUG1: event: Key char=0, vk=0xa2, nagr=0, lParam=0x801d0001
[2024-08-20T21:44:21] DEBUG1: new mask: 0x2002
[2024-08-20T21:44:21] DEBUG1: new mask: 0x2000
[2024-08-20T21:44:21] DEBUG1: onKeyUp id=61411 mask=0x2000 button=0x001d
[2024-08-20T21:44:21] DEBUG1: send key up to "mac" id=61411, mask=0x2000, button=0x001d
[2024-08-20T21:44:21] DEBUG1: hook: 0x000000a2 0x001d0001
[2024-08-20T21:44:21] DEBUG1: hook: 0x60a20000 0x001d0001
[2024-08-20T21:44:21] DEBUG1: hook: 0x07a20000 0x001d0001
[2024-08-20T21:44:21] DEBUG1: event: Key char=0, vk=0xa2, nagr=0, lParam=0x001d0001
[2024-08-20T21:44:21] DEBUG1: new mask: 0x2000
[2024-08-20T21:44:21] DEBUG1: new mask: 0x2002
[2024-08-20T21:44:21] DEBUG1: onKeyDown id=61411 mask=0x2002 button=0x001d lang=en
[2024-08-20T21:44:21] DEBUG1: send key down to "mac" id=61411, mask=0x2002, button=0x001d, language=en
[2024-08-20T21:44:21] DEBUG1: hook: 0x000000a2 0x801d0001
[2024-08-20T21:44:21] DEBUG1: hook: 0x60a20000 0x801d0001
[2024-08-20T21:44:21] DEBUG1: hook: 0x07a20000 0x801d0001
[2024-08-20T21:44:21] DEBUG1: event: Key char=0, vk=0xa2, nagr=0, lParam=0x801d0001
[2024-08-20T21:44:21] DEBUG1: new mask: 0x2002
[2024-08-20T21:44:21] DEBUG1: new mask: 0x2000
[2024-08-20T21:44:21] DEBUG1: onKeyUp id=61411 mask=0x2000 button=0x001d
[2024-08-20T21:44:21] DEBUG1: send key up to "mac" id=61411, mask=0x2000, button=0x001d
[2024-08-20T21:44:22] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:22] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:22] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:22] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:22] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:22] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:22] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:22] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:22] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:22] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:22] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:22] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:23] DEBUG1: event: button wheel delta=+0,-120
[2024-08-20T21:44:23] DEBUG1: onMouseWheel +0,-120
[2024-08-20T21:44:27] DEBUG1: hook: 0x000000a2 0x001d0001
[2024-08-20T21:44:27] DEBUG1: hook: 0x60a20000 0x001d0001
[2024-08-20T21:44:27] DEBUG1: hook: 0x07a20000 0x001d0001
[2024-08-20T21:44:27] DEBUG1: event: Key char=0, vk=0xa2, nagr=0, lParam=0x001d0001
[2024-08-20T21:44:27] DEBUG1: new mask: 0x2000
[2024-08-20T21:44:27] DEBUG1: new mask: 0x2002
[2024-08-20T21:44:27] DEBUG1: onKeyDown id=61411 mask=0x2002 button=0x001d lang=en
[2024-08-20T21:44:27] DEBUG1: send key down to "mac" id=61411, mask=0x2002, button=0x001d, language=en
[2024-08-20T21:44:27] DEBUG1: hook: 0x000000a2 0x001d0001
[2024-08-20T21:44:27] DEBUG1: hook: 0x60a20000 0x001d0001
[2024-08-20T21:44:27] DEBUG1: hook: 0x07a20000 0x001d0001
[2024-08-20T21:44:27] DEBUG1: event: Key char=0, vk=0xa2, nagr=0, lParam=0x001d0001
[2024-08-20T21:44:27] DEBUG1: new mask: 0x2002
[2024-08-20T21:44:27] DEBUG1: new mask: 0x2002
[2024-08-20T21:44:27] DEBUG1: hook: 0x000000a2 0x001d0001
[2024-08-20T21:44:27] DEBUG1: hook: 0x60a20000 0x001d0001
[2024-08-20T21:44:27] DEBUG1: hook: 0x07a20000 0x001d0001
[2024-08-20T21:44:27] DEBUG1: event: Key char=0, vk=0xa2, nagr=0, lParam=0x001d0001
[2024-08-20T21:44:27] DEBUG1: new mask: 0x2002
[2024-08-20T21:44:27] DEBUG1: new mask: 0x2002
[2024-08-20T21:44:27] DEBUG1: hook: 0x000000a2 0x001d0001
[2024-08-20T21:44:27] DEBUG1: hook: 0x60a20000 0x001d0001
[2024-08-20T21:44:27] DEBUG1: hook: 0x07a20000 0x001d0001
[2024-08-20T21:44:27] DEBUG1: event: Key char=0, vk=0xa2, nagr=0, lParam=0x001d0001
[2024-08-20T21:44:27] DEBUG1: new mask: 0x2002
[2024-08-20T21:44:27] DEBUG1: new mask: 0x2002
[2024-08-20T21:44:27] DEBUG1: hook: 0x000000a2 0x001d0001
[2024-08-20T21:44:27] DEBUG1: hook: 0x60a20000 0x001d0001
[2024-08-20T21:44:27] DEBUG1: hook: 0x07a20000 0x001d0001
[2024-08-20T21:44:27] DEBUG1: event: Key char=0, vk=0xa2, nagr=0, lParam=0x001d0001
[2024-08-20T21:44:27] DEBUG1: new mask: 0x2002
[2024-08-20T21:44:27] DEBUG1: new mask: 0x2002
[2024-08-20T21:44:27] DEBUG1: hook: 0x000000a2 0x001d0001
[2024-08-20T21:44:27] DEBUG1: hook: 0x60a20000 0x001d0001
[2024-08-20T21:44:27] DEBUG1: hook: 0x07a20000 0x001d0001
[2024-08-20T21:44:27] DEBUG1: event: Key char=0, vk=0xa2, nagr=0, lParam=0x001d0001
[2024-08-20T21:44:27] DEBUG1: new mask: 0x2002
[2024-08-20T21:44:27] DEBUG1: new mask: 0x2002
[2024-08-20T21:44:27] DEBUG1: hook: 0x000000a2 0x001d0001
[2024-08-20T21:44:27] DEBUG1: hook: 0x60a20000 0x001d0001
[2024-08-20T21:44:27] DEBUG1: hook: 0x07a20000 0x001d0001
[2024-08-20T21:44:27] DEBUG1: event: Key char=0, vk=0xa2, nagr=0, lParam=0x001d0001
[2024-08-20T21:44:27] DEBUG1: new mask: 0x2002
[2024-08-20T21:44:27] DEBUG1: new mask: 0x2002
[2024-08-20T21:44:27] DEBUG1: hook: 0x000000a2 0x001d0001
[2024-08-20T21:44:27] DEBUG1: hook: 0x60a20000 0x001d0001
[2024-08-20T21:44:27] DEBUG1: hook: 0x07a20000 0x001d0001
[2024-08-20T21:44:27] DEBUG1: event: Key char=0, vk=0xa2, nagr=0, lParam=0x001d0001
[2024-08-20T21:44:27] DEBUG1: new mask: 0x2002
[2024-08-20T21:44:27] DEBUG1: new mask: 0x2002
[2024-08-20T21:44:27] DEBUG1: hook: 0x000000a2 0x001d0001
[2024-08-20T21:44:27] DEBUG1: hook: 0x60a20000 0x001d0001
[2024-08-20T21:44:27] DEBUG1: hook: 0x07a20000 0x001d0001
[2024-08-20T21:44:27] DEBUG1: event: Key char=0, vk=0xa2, nagr=0, lParam=0x001d0001
[2024-08-20T21:44:27] DEBUG1: new mask: 0x2002
[2024-08-20T21:44:27] DEBUG1: new mask: 0x2002
[2024-08-20T21:44:28] DEBUG1: hook: 0x00000043 0x002e0001
[2024-08-20T21:44:28] DEBUG1: hook: 0x61430063 0x002e0001
[2024-08-20T21:44:28] DEBUG1: hook: 0x07430063 0x002e0001
[2024-08-20T21:44:28] DEBUG1: event: Key char=99, vk=0x43, nagr=0, lParam=0x002e0001
[2024-08-20T21:44:28] DEBUG1: new mask: 0x2002
[2024-08-20T21:44:28] DEBUG1: new mask: 0x2002
[2024-08-20T21:44:28] DEBUG1: onKeyDown id=99 mask=0x2002 button=0x002e lang=en
[2024-08-20T21:44:28] DEBUG1: send key down to "mac" id=99, mask=0x2002, button=0x002e, language=en
[2024-08-20T21:44:28] NOTE: client "mac" has disconnected
[2024-08-20T21:44:28] DEBUG: closing socket: 28568180
[2024-08-20T21:44:28] DEBUG1: registered event type ISocketEvents::disconnected as 48
[2024-08-20T21:44:28] INFO: jump from "mac" to "windows" at 1280,1440
[2024-08-20T21:44:28] INFO: entering screen
[2024-08-20T21:44:28] DEBUG: active sides: 4
[2024-08-20T21:44:28] DEBUG1: hook: 0x00000043 0x802e0001
[2024-08-20T21:44:28] DEBUG1: hook: 0x61430063 0x802e0001
[2024-08-20T21:44:28] DEBUG1: hook: 0x07430063 0x802e0001
[2024-08-20T21:44:28] DEBUG1: event: Key char=99, vk=0x43, nagr=0, lParam=0x802e0001
[2024-08-20T21:44:28] DEBUG1: new mask: 0x2002
[2024-08-20T21:44:28] DEBUG1: new mask: 0x2002
[2024-08-20T21:44:28] DEBUG1: hook: 0x000000a2 0x801d0001
[2024-08-20T21:44:28] DEBUG1: hook: 0x60a20000 0x801d0001
[2024-08-20T21:44:28] DEBUG1: hook: 0x07a20000 0x801d0001
[2024-08-20T21:44:28] DEBUG1: event: Key char=0, vk=0xa2, nagr=0, lParam=0x801d0001
[2024-08-20T21:44:28] DEBUG1: new mask: 0x2002
[2024-08-20T21:44:28] DEBUG1: new mask: 0x2000
[2024-08-20T21:44:28] DEBUG1: onKeyUp id=61411 mask=0x2000 button=0x001d
[2024-08-20T21:44:29] DEBUG1: event: button press button=1
[2024-08-20T21:44:29] DEBUG1: onMouseDown id=1
[2024-08-20T21:44:29] DEBUG1: event: button release button=1
[2024-08-20T21:44:29] DEBUG1: onMouseUp id=1
[2024-08-20T21:44:32] DEBUG1: event: button press button=1
[2024-08-20T21:44:32] DEBUG1: onMouseDown id=1
[2024-08-20T21:44:32] DEBUG1: event: button release button=1
[2024-08-20T21:44:32] DEBUG1: onMouseUp id=1
[2024-08-20T21:44:36] DEBUG1: hook: 0x000000a2 0x001d0001
[2024-08-20T21:44:36] DEBUG1: hook: 0x60a20000 0x001d0001
[2024-08-20T21:44:36] DEBUG1: hook: 0x07a20000 0x001d0001
[2024-08-20T21:44:36] DEBUG1: event: Key char=0, vk=0xa2, nagr=0, lParam=0x001d0001
[2024-08-20T21:44:36] DEBUG1: new mask: 0x2000
[2024-08-20T21:44:36] DEBUG1: new mask: 0x2002
[2024-08-20T21:44:36] DEBUG1: onKeyDown id=61411 mask=0x2002 button=0x001d lang=en
[2024-08-20T21:44:36] DEBUG1: hook: 0x00000043 0x002e0001
[2024-08-20T21:44:36] DEBUG1: hook: 0x61430063 0x002e0001
[2024-08-20T21:44:36] DEBUG1: hook: 0x07430063 0x002e0001
[2024-08-20T21:44:36] DEBUG1: event: Key char=99, vk=0x43, nagr=0, lParam=0x002e0001
[2024-08-20T21:44:36] DEBUG1: new mask: 0x2002
[2024-08-20T21:44:36] DEBUG1: new mask: 0x2002
[2024-08-20T21:44:36] DEBUG1: onKeyDown id=99 mask=0x2002 button=0x002e lang=en
[2024-08-20T21:44:37] DEBUG1: hook: 0x00000043 0x802e0001
[2024-08-20T21:44:37] DEBUG1: hook: 0x61430063 0x802e0001
[2024-08-20T21:44:37] DEBUG1: hook: 0x07430063 0x802e0001
[2024-08-20T21:44:37] DEBUG1: event: Key char=99, vk=0x43, nagr=0, lParam=0x802e0001
[2024-08-20T21:44:37] DEBUG1: new mask: 0x2002
[2024-08-20T21:44:37] DEBUG1: new mask: 0x2002
[2024-08-20T21:44:37] DEBUG1: onKeyUp id=99 mask=0x2002 button=0x002e
[2024-08-20T21:44:37] DEBUG1: hook: 0x000000a2 0x801d0001
[2024-08-20T21:44:37] DEBUG1: hook: 0x60a20000 0x801d0001
[2024-08-20T21:44:37] DEBUG1: hook: 0x07a20000 0x801d0001
[2024-08-20T21:44:37] DEBUG1: event: Key char=0, vk=0xa2, nagr=0, lParam=0x801d0001
[2024-08-20T21:44:37] DEBUG1: new mask: 0x2002
[2024-08-20T21:44:37] DEBUG1: new mask: 0x2000
[2024-08-20T21:44:37] DEBUG1: onKeyUp id=61411 mask=0x2000 button=0x001d
[2024-08-20T21:44:38] DEBUG1: hook: 0x000000a2 0x001d0001
[2024-08-20T21:44:38] DEBUG1: hook: 0x60a20000 0x001d0001
[2024-08-20T21:44:38] DEBUG1: hook: 0x07a20000 0x001d0001
[2024-08-20T21:44:38] DEBUG1: event: Key char=0, vk=0xa2, nagr=0, lParam=0x001d0001
[2024-08-20T21:44:38] DEBUG1: new mask: 0x2000
[2024-08-20T21:44:38] DEBUG1: new mask: 0x2002
[2024-08-20T21:44:38] DEBUG1: onKeyDown id=61411 mask=0x2002 button=0x001d lang=en
[2024-08-20T21:44:38] DEBUG1: hook: 0x00000043 0x002e0001
[2024-08-20T21:44:38] DEBUG1: hook: 0x61430063 0x002e0001
[2024-08-20T21:44:38] DEBUG1: hook: 0x07430063 0x002e0001
[2024-08-20T21:44:38] DEBUG1: event: Key char=99, vk=0x43, nagr=0, lParam=0x002e0001
[2024-08-20T21:44:38] DEBUG1: new mask: 0x2002
[2024-08-20T21:44:38] DEBUG1: new mask: 0x2002
[2024-08-20T21:44:38] DEBUG1: onKeyDown id=99 mask=0x2002 button=0x002e lang=en
[2024-08-20T21:44:38] INFO: got shutdown signal
[2024-08-20T21:44:38] DEBUG1: stopping server
[2024-08-20T21:44:38] DEBUG: event queue is ready
[2024-08-20T21:44:38] DEBUG: unregistered hotkey id=1
[2024-08-20T21:44:38] DEBUG1: thread 0x00013c10 exit
[2024-08-20T21:44:38] DEBUG1: stop listening for clients
[2024-08-20T21:44:38] DEBUG: closing socket: 00000000
[2024-08-20T21:44:38] DEBUG: current screen: entered=yes, primary=yes
[2024-08-20T21:44:38] WARNING: current primary screen is not entered on shutdown
[2024-08-20T21:44:38] DEBUG: adopting new buffer
[2024-08-20T21:44:38] DEBUG: discarding 1 event(s)
[2024-08-20T21:44:38] DEBUG: closed display
[2024-08-20T21:44:38] NOTE: stopped server
[2024-08-20T21:44:38] DEBUG1: caught cancel on thread 0x000133f0
Mac synergycrun
~/synergy-core $ pgrep -fl synergy
~/synergy-core $ ./build/bin/synergyc -d DEBUG1 -f --no-tray -n mac Theletos.local
[2024-08-20T21:43:37] DEBUG1: starting client
[2024-08-20T21:43:37] DEBUG1: thread 0x00000002 entry
[2024-08-20T21:43:37] DEBUG1: registered event type shapeChanged as 4
[2024-08-20T21:43:37] DEBUG: screen shape: center=0,0 size=3072x864 on 1 display
[2024-08-20T21:43:37] DEBUG1: registered event type confirmSleep as 5
[2024-08-20T21:43:37] DEBUG: starting watchSystemPowerThread
[2024-08-20T21:43:37] DEBUG: adopting new buffer
[2024-08-20T21:43:37] DEBUG1: thread 0x00000003 entry
[2024-08-20T21:43:37] DEBUG: started watchSystemPowerThread
[2024-08-20T21:43:37] DEBUG: waiting for event loop
[2024-08-20T21:43:37] DEBUG: opened display
[2024-08-20T21:43:37] DEBUG1: registered event type error as 6
[2024-08-20T21:43:37] DEBUG1: registered event type suspend as 7
[2024-08-20T21:43:37] DEBUG1: registered event type resume as 8
[2024-08-20T21:43:37] DEBUG1: registered event type connected as 9
[2024-08-20T21:43:37] DEBUG1: registered event type connectionFailed as 10
[2024-08-20T21:43:37] DEBUG1: registered event type connectionRefused as 11
[2024-08-20T21:43:37] DEBUG1: registered event type disconnected as 12
[2024-08-20T21:43:37] NOTE: started client
[2024-08-20T21:43:37] NOTE: connecting to 'Theletos.local': 10.8.3.1:24800
[2024-08-20T21:43:37] DEBUG: opening new socket: 01B14480
[2024-08-20T21:43:37] DEBUG1: connecting to server
[2024-08-20T21:43:37] DEBUG1: registered event type connected as 13
[2024-08-20T21:43:37] DEBUG1: registered event type connectionFailed as 14
[2024-08-20T21:43:37] DEBUG1: thread 0x00000004 entry
[2024-08-20T21:43:37] DEBUG: waiting for carbon loop
[2024-08-20T21:43:37] DEBUG: event queue is ready
[2024-08-20T21:43:37] DEBUG: add pending events to buffer
[2024-08-20T21:43:37] DEBUG: signalling carbon loop ready
[2024-08-20T21:43:37] DEBUG: starting carbon loop
[2024-08-20T21:43:37] DEBUG: carbon loop ready
[2024-08-20T21:43:37] DEBUG1: registered event type inputReady as 15
[2024-08-20T21:43:37] DEBUG1: registered event type inputShutdown as 16
[2024-08-20T21:43:37] DEBUG1: connected;  wait for hello
[2024-08-20T21:43:37] DEBUG1: registered event type disconnected as 17
[2024-08-20T21:43:37] DEBUG1: registered event type outputError as 18
[2024-08-20T21:43:37] DEBUG1: registered event type outputShutdown as 19
[2024-08-20T21:43:37] DEBUG1: registered event type stopRetry as 20
[2024-08-20T21:43:37] DEBUG1: got hello version 1.8
[2024-08-20T21:43:37] DEBUG1: say hello version 1.8
[2024-08-20T21:43:37] INFO: local languages: en
[2024-08-20T21:43:37] DEBUG1: registered event type clipboardSending as 21
[2024-08-20T21:43:37] DEBUG1: registered event type clipboardGrabbed as 22
[2024-08-20T21:43:37] DEBUG1: registered event type outputFlushed as 23
[2024-08-20T21:43:37] DEBUG1: sending info shape=0,0 3072x864
[2024-08-20T21:43:37] INFO: remote languages: en
[2024-08-20T21:43:37] DEBUG1: recv info acknowledgment
[2024-08-20T21:43:37] DEBUG1: recv reset options
[2024-08-20T21:43:37] DEBUG1: recv set options size=0
[2024-08-20T21:43:37] DEBUG1: using uchr resource for group 0
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=40000 outMask=0002
[2024-08-20T21:43:37] DEBUG1: mask=60000 outMask=0003
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=c0000 outMask=0006
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=40000 outMask=0002
[2024-08-20T21:43:37] DEBUG1: mask=60000 outMask=0003
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=c0000 outMask=0006
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=40000 outMask=0002
[2024-08-20T21:43:37] DEBUG1: mask=60000 outMask=0003
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=c0000 outMask=0006
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=40000 outMask=0002
[2024-08-20T21:43:37] DEBUG1: mask=60000 outMask=0003
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=c0000 outMask=0006
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=40000 outMask=0002
[2024-08-20T21:43:37] DEBUG1: mask=60000 outMask=0003
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=c0000 outMask=0006
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=40000 outMask=0002
[2024-08-20T21:43:37] DEBUG1: mask=60000 outMask=0003
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=40000 outMask=0002
[2024-08-20T21:43:37] DEBUG1: mask=60000 outMask=0003
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=40000 outMask=0002
[2024-08-20T21:43:37] DEBUG1: mask=60000 outMask=0003
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=40000 outMask=0002
[2024-08-20T21:43:37] DEBUG1: mask=60000 outMask=0003
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=c0000 outMask=0006
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=40000 outMask=0002
[2024-08-20T21:43:37] DEBUG1: mask=60000 outMask=0003
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=40000 outMask=0002
[2024-08-20T21:43:37] DEBUG1: mask=60000 outMask=0003
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=c0000 outMask=0006
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=40000 outMask=0002
[2024-08-20T21:43:37] DEBUG1: mask=60000 outMask=0003
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=c0000 outMask=0006
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=40000 outMask=0002
[2024-08-20T21:43:37] DEBUG1: mask=60000 outMask=0003
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=40000 outMask=0002
[2024-08-20T21:43:37] DEBUG1: mask=60000 outMask=0003
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=c0000 outMask=0006
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=40000 outMask=0002
[2024-08-20T21:43:37] DEBUG1: mask=60000 outMask=0003
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=40000 outMask=0002
[2024-08-20T21:43:37] DEBUG1: mask=60000 outMask=0003
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=c0000 outMask=0006
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=40000 outMask=0002
[2024-08-20T21:43:37] DEBUG1: mask=60000 outMask=0003
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=40000 outMask=0002
[2024-08-20T21:43:37] DEBUG1: mask=60000 outMask=0003
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=c0000 outMask=0006
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=40000 outMask=0002
[2024-08-20T21:43:37] DEBUG1: mask=60000 outMask=0003
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=c0000 outMask=0006
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=40000 outMask=0002
[2024-08-20T21:43:37] DEBUG1: mask=60000 outMask=0003
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=c0000 outMask=0006
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=40000 outMask=0002
[2024-08-20T21:43:37] DEBUG1: mask=60000 outMask=0003
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=c0000 outMask=0006
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=40000 outMask=0002
[2024-08-20T21:43:37] DEBUG1: mask=60000 outMask=0003
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=c0000 outMask=0006
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=40000 outMask=0002
[2024-08-20T21:43:37] DEBUG1: mask=60000 outMask=0003
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=c0000 outMask=0006
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=c0000 outMask=0006
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=40000 outMask=0002
[2024-08-20T21:43:37] DEBUG1: mask=60000 outMask=0003
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=40000 outMask=0002
[2024-08-20T21:43:37] DEBUG1: mask=60000 outMask=0003
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=c0000 outMask=0006
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=40000 outMask=0002
[2024-08-20T21:43:37] DEBUG1: mask=60000 outMask=0003
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=c0000 outMask=0006
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=40000 outMask=0002
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=c0000 outMask=0006
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=e0000 outMask=0007
[2024-08-20T21:43:37] DEBUG1: mask=80000 outMask=0004
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=20000 outMask=0001
[2024-08-20T21:43:37] DEBUG1: mask=a0000 outMask=0005
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:37] DEBUG1: modifiers on update: 0x0000
[2024-08-20T21:43:37] DEBUG: hiding cursor
[2024-08-20T21:43:37] WARNING: cursor may not be visible
[2024-08-20T21:43:37] NOTE: connected to server
2024-08-20 21:43:37.177 synergyc[10700:3744511] starting cocoa loop
[2024-08-20T21:43:44] DEBUG1: recv enter, 0,432 1 2000
[2024-08-20T21:43:44] INFO: entering screen
[2024-08-20T21:43:44] DEBUG: showing cursor
[2024-08-20T21:43:44] WARNING: cursor may not be visible
[2024-08-20T21:43:44] DEBUG: start receiving clipboard data
[2024-08-20T21:43:44] DEBUG: receiving clipboard 0 size=1525
[2024-08-20T21:43:44] DEBUG: received clipboard 0 size=1525
[2024-08-20T21:43:44] DEBUG: setting clipboard
[2024-08-20T21:43:44] DEBUG: opening clipboard
[2024-08-20T21:43:44] DEBUG: emptying clipboard
[2024-08-20T21:43:44] DEBUG: add 1513 bytes to clipboard format: 0
[2024-08-20T21:43:44] DEBUG: format of data to be added to clipboard was kText
[2024-08-20T21:43:44] DEBUG: added 1513 bytes to clipboard format: 0
[2024-08-20T21:43:44] DEBUG: added 1513 bytes to clipboard format: 0
[2024-08-20T21:43:44] DEBUG: added 1513 bytes to clipboard format: 0
[2024-08-20T21:43:44] DEBUG: closing clipboard
[2024-08-20T21:43:44] INFO: clipboard was updated
[2024-08-20T21:43:44] DEBUG: start receiving clipboard data
[2024-08-20T21:43:44] DEBUG: receiving clipboard 1 size=1525
[2024-08-20T21:43:44] DEBUG: received clipboard 1 size=1525
[2024-08-20T21:43:44] DEBUG: setting clipboard
[2024-08-20T21:43:44] DEBUG: opening clipboard
[2024-08-20T21:43:44] DEBUG: emptying clipboard
[2024-08-20T21:43:44] DEBUG: add 1513 bytes to clipboard format: 0
[2024-08-20T21:43:44] DEBUG: format of data to be added to clipboard was kText
[2024-08-20T21:43:44] DEBUG: added 1513 bytes to clipboard format: 0
[2024-08-20T21:43:44] DEBUG: added 1513 bytes to clipboard format: 0
[2024-08-20T21:43:44] DEBUG: added 1513 bytes to clipboard format: 0
[2024-08-20T21:43:44] DEBUG: closing clipboard
[2024-08-20T21:43:44] INFO: clipboard was updated
[2024-08-20T21:43:44] DEBUG1: recv leave
[2024-08-20T21:43:44] INFO: leaving screen
[2024-08-20T21:43:44] DEBUG: hiding cursor
[2024-08-20T21:43:44] WARNING: cursor may not be visible
[2024-08-20T21:43:44] DEBUG1: mask=0000 outMask=0000
[2024-08-20T21:43:44] DEBUG1: recv enter, 0,438 3 2000
[2024-08-20T21:43:44] INFO: entering screen
[2024-08-20T21:43:44] DEBUG: showing cursor
[2024-08-20T21:43:44] WARNING: cursor may not be visible
[2024-08-20T21:43:45] DEBUG1: recv mouse down id=1
[2024-08-20T21:43:45] DEBUG1: faking mouse button id: 0 press: pressed
[2024-08-20T21:43:45] DEBUG1: recv mouse up id=1
[2024-08-20T21:43:45] DEBUG1: faking mouse button id: 0 press: released
[2024-08-20T21:43:54] DEBUG1: recv mouse down id=1
[2024-08-20T21:43:54] DEBUG1: faking mouse button id: 0 press: pressed
[2024-08-20T21:43:54] DEBUG1: recv mouse up id=1
[2024-08-20T21:43:54] DEBUG1: faking mouse button id: 0 press: released
[2024-08-20T21:44:04] DEBUG1: recv mouse down id=1
[2024-08-20T21:44:04] DEBUG1: faking mouse button id: 0 press: pressed
[2024-08-20T21:44:05] DEBUG1: recv mouse up id=1
[2024-08-20T21:44:05] DEBUG1: faking mouse button id: 0 press: released
[2024-08-20T21:44:05] DEBUG1: recv mouse down id=1
[2024-08-20T21:44:05] DEBUG1: faking mouse button id: 0 press: pressed
[2024-08-20T21:44:05] DEBUG1: recv mouse up id=1
[2024-08-20T21:44:05] DEBUG1: faking mouse button id: 0 press: released
[2024-08-20T21:44:07] DEBUG1: recv mouse down id=1
[2024-08-20T21:44:07] DEBUG1: faking mouse button id: 0 press: pressed
[2024-08-20T21:44:07] DEBUG1: recv mouse up id=1
[2024-08-20T21:44:07] DEBUG1: faking mouse button id: 0 press: released
[2024-08-20T21:44:10] DEBUG1: recv mouse down id=1
[2024-08-20T21:44:10] DEBUG1: faking mouse button id: 0 press: pressed
[2024-08-20T21:44:10] DEBUG1: recv mouse up id=1
[2024-08-20T21:44:10] DEBUG1: faking mouse button id: 0 press: released
[2024-08-20T21:44:10] DEBUG1: recv mouse down id=1
[2024-08-20T21:44:10] DEBUG1: faking mouse button id: 0 press: pressed
[2024-08-20T21:44:11] DEBUG1: recv mouse up id=1
[2024-08-20T21:44:11] DEBUG1: faking mouse button id: 0 press: released
[2024-08-20T21:44:11] DEBUG1: recv mouse down id=1
[2024-08-20T21:44:11] DEBUG1: faking mouse button id: 0 press: pressed
[2024-08-20T21:44:11] DEBUG1: recv mouse up id=1
[2024-08-20T21:44:11] DEBUG1: faking mouse button id: 0 press: released
[2024-08-20T21:44:12] DEBUG1: recv mouse down id=1
[2024-08-20T21:44:12] DEBUG1: faking mouse button id: 0 press: pressed
[2024-08-20T21:44:12] DEBUG1: recv mouse up id=1
[2024-08-20T21:44:12] DEBUG1: faking mouse button id: 0 press: released
[2024-08-20T21:44:21] DEBUG1: recv key down id=0x0000efe3, mask=0x2002, button=0x001d, lang="en"
[2024-08-20T21:44:21] DEBUG1: mapKey efe3 (61411) with mask 2002, start state: 0000, group: 0
[2024-08-20T21:44:21] DEBUG1: language en has group id 0
[2024-08-20T21:44:21] DEBUG1: best key index 1 of 1 (exact)
[2024-08-20T21:44:21] DEBUG1: found key in group 0
[2024-08-20T21:44:21] DEBUG1: state: 0000,0000,0000
[2024-08-20T21:44:21] DEBUG1: flip: 0000 (0000 vs 0000 in 0000 - 0000)
[2024-08-20T21:44:21] DEBUG1: desired state: 2002 0000,0000,0000
[2024-08-20T21:44:21] DEBUG1: flip: 0000 (0000 vs 2002 in fffd - 6020)
[2024-08-20T21:44:21] DEBUG1: mapped to 03c, new state 0002
[2024-08-20T21:44:21] DEBUG1: keystrokes:
[2024-08-20T21:44:21] DEBUG1:   button=0x003c virtualKey=0x003b keyDown=down client=0x0000
[2024-08-20T21:44:21] DEBUG1: recv key up id=0x0000efe3, mask=0x2000, button=0x001d
[2024-08-20T21:44:21] DEBUG1: new state 0000
[2024-08-20T21:44:21] DEBUG1: keystrokes:
[2024-08-20T21:44:21] DEBUG1:   button=0x003c virtualKey=0x003b keyDown=up client=0x0000
[2024-08-20T21:44:21] DEBUG1: recv key down id=0x0000efe3, mask=0x2002, button=0x001d, lang="en"
[2024-08-20T21:44:21] DEBUG1: mapKey efe3 (61411) with mask 2002, start state: 0000, group: 0
[2024-08-20T21:44:21] DEBUG1: language en has group id 0
[2024-08-20T21:44:21] DEBUG1: best key index 1 of 1 (exact)
[2024-08-20T21:44:21] DEBUG1: found key in group 0
[2024-08-20T21:44:21] DEBUG1: state: 0000,0000,0000
[2024-08-20T21:44:21] DEBUG1: flip: 0000 (0000 vs 0000 in 0000 - 0000)
[2024-08-20T21:44:21] DEBUG1: desired state: 2002 0000,0000,0000
[2024-08-20T21:44:21] DEBUG1: flip: 0000 (0000 vs 2002 in fffd - 6020)
[2024-08-20T21:44:21] DEBUG1: mapped to 03c, new state 0002
[2024-08-20T21:44:21] DEBUG1: keystrokes:
[2024-08-20T21:44:21] DEBUG1:   button=0x003c virtualKey=0x003b keyDown=down client=0x0000
[2024-08-20T21:44:21] DEBUG1: recv key up id=0x0000efe3, mask=0x2000, button=0x001d
[2024-08-20T21:44:21] DEBUG1: new state 0000
[2024-08-20T21:44:21] DEBUG1: keystrokes:
[2024-08-20T21:44:21] DEBUG1:   button=0x003c virtualKey=0x003b keyDown=up client=0x0000
[2024-08-20T21:44:27] DEBUG1: recv key down id=0x0000efe3, mask=0x2002, button=0x001d, lang="en"
[2024-08-20T21:44:27] DEBUG1: mapKey efe3 (61411) with mask 2002, start state: 0000, group: 0
[2024-08-20T21:44:27] DEBUG1: language en has group id 0
[2024-08-20T21:44:27] DEBUG1: best key index 1 of 1 (exact)
[2024-08-20T21:44:27] DEBUG1: found key in group 0
[2024-08-20T21:44:27] DEBUG1: state: 0000,0000,0000
[2024-08-20T21:44:27] DEBUG1: flip: 0000 (0000 vs 0000 in 0000 - 0000)
[2024-08-20T21:44:27] DEBUG1: desired state: 2002 0000,0000,0000
[2024-08-20T21:44:27] DEBUG1: flip: 0000 (0000 vs 2002 in fffd - 6020)
[2024-08-20T21:44:27] DEBUG1: mapped to 03c, new state 0002
[2024-08-20T21:44:27] DEBUG1: keystrokes:
[2024-08-20T21:44:27] DEBUG1:   button=0x003c virtualKey=0x003b keyDown=down client=0x0000
[2024-08-20T21:44:28] DEBUG1: recv key down id=0x00000063, mask=0x2002, button=0x002e, lang="en"
[2024-08-20T21:44:28] DEBUG1: mapKey 0063 (99) with mask 2002, start state: 0002, group: 0
[2024-08-20T21:44:28] DEBUG1: found key in group 0
[2024-08-20T21:44:28] DEBUG1: state: 0002,0000,0000
[2024-08-20T21:44:28] DEBUG1: flip: 0000 (0002 vs 0000 in 0000 - 0000)
[2024-08-20T21:44:28] DEBUG1: desired state: 2002 0002,0000,0007
[2024-08-20T21:44:28] DEBUG1: flip: 0000 (0002 vs 2002 in ffff - 6020)
[2024-08-20T21:44:28] DEBUG1: mapped to 009, new state 0002
[2024-08-20T21:44:28] DEBUG1: keystrokes:
[2024-08-20T21:44:28] DEBUG1:   button=0x0009 virtualKey=0x0008 keyDown=down client=0x0000
[2024-08-20T21:44:28] DEBUG1: the key is not a modifier
^C[2024-08-20T21:44:28] DEBUG1: thread 0x00000004 exit
Segmentation fault: 11

(During which I opened up the iPhone mirroring and confirmed it continues to not work with this 1.15.0, as with 1.14.7 )

from synergy.

nbolton avatar nbolton commented on August 27, 2024

Thanks for digging into this issue. I believe this is something we should fix. I shall try to reproduce this soon.

from synergy.

donaldguy avatar donaldguy commented on August 27, 2024

Hmmm as of this afternoon I abruptly realized the mouse interactions with the iPhone screen via Synergy were working in fact 🤨 (in synergy 3 / so the 1.14 core)

the keyboard via synergy remains not working, [and initially the mac-local (via monitor USB hub) keyboard seemed to not be working now either — but when I explicitly was checking if stopping synergy made it work again, it apparently did (and then still after re-starting synergy client, the local one, not the synergy proxied one)]

So what changed?

  1. I did upgrade from macOS 15 Beta 6 (24A5320a) to Beta 7 (24A5327a) ; that would be the most obvious option

  2. I re-installed the DisplayLink Login Screen extension

    $ plutil -p /Library/LaunchAgents/com.displaylink.loginscreen.plist
    
     {
       "AssociatedBundleIdentifiers" => "com.displaylink.DisplayLinkUserAgent"
       "CFBundleVersion" => "163"
       "Disabled" => 0
       "KeepAlive" => 1
       "Label" => "com.displaylink.DisplayLinkUserAgent"
       "LimitLoadToSessionType" => "LoginWindow"
       "ProcessType" => "Interactive"
       "ProgramArguments" => [
         0 => "/usr/bin/open"
         1 => "-W"
         2 => "/Applications/DisplayLink Manager.app"
       ]
       "RunAtLoad" => 1
       "ThrottleInterval" => 5
       "Umask" => 0
     }
     

    and this might have somehow incidentally opened up part of [but closed another part of] the I/O chain more (something is forwarding artificial events more forcefully? or something else is listening more permissively)

    I have not found a process that killing makes a difference though (and the plist does have LimitLoadToSessionType" => "LoginWindow")

    and for what its worth, the logger in Karabiner-EventViewer still doesn't see events from the Synergy mouse or keyboard (but does still see events for the keyboard-connected-to-mac-through-monitor-usb-hub)

    but given that it seems to effect some what HID works on the login screen it didn't seem out of the realm of possibility (of how permissively something gets initialized?)

  3. When I first noticed this it was the case that I had migrated (pressed toggle button on bottom of Logitech MX Master 3) to move that mouse from the mac (via "Unified Receiver" 2.4Ghz dongle) to PC (via bluetooth) - so I'd say there was no mouse actually homed to the mac, except there was still magic trackpad

    (It would be surprising if it were doing any event forwarding in the absence of "Flow" being enabled; but I also double checked killing off the logioptionsplus processes on both sides and that did not immediately appear to make a difference)

I tried a few basic restarts of synergy and the iPhone Mirroring.app with or without /Applications/DisplayLink Manager.app/Contents/MacOS/DisplayLinkUserAgent running first, with the Logitech mouse on the PC vs mac, etc. and have not gotten it back to not working ... so far

(like I said, the beta 6 to beta 7 upgrade is the obvious reason; I vaguely recall having checked if it had started working sometime earlier in the 4.25 days since I'd done it - and it still wasn't; but I'm not 100% sure that happened [if it did, I should have clarified that here])


Honestly I have just a whole uncomfortable mess of stuff with accessibility permissions or Input Monitoring permissions

so it won't be shocking if you can't reproduce (either this working edge case or the original not-working case for that matter);

but anyway ... there's that for what it is

from synergy.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.