From ae1bcc909da8d69c3e5c642715a4f57468fb5ddd Mon Sep 17 00:00:00 2001 From: Sebastian Ouellette Date: Sun, 19 Jun 2022 16:07:41 -0400 Subject: [PATCH 01/49] Invisible cursors are constrained to center This is a first version of my test to properly constrain cursors. This is mostly working in the buggy applications I had before, but I feel that the cursor needs to actually move around, instead of being locked to the center of the window. This may cause problems when locking to the edge, but yeah. --- src/managers/input/InputManager.cpp | 38 ++++++++++++++++++----------- 1 file changed, 24 insertions(+), 14 deletions(-) diff --git a/src/managers/input/InputManager.cpp b/src/managers/input/InputManager.cpp index 003535f7..ab8e3563 100644 --- a/src/managers/input/InputManager.cpp +++ b/src/managers/input/InputManager.cpp @@ -4,7 +4,7 @@ void CInputManager::onMouseMoved(wlr_pointer_motion_event* e) { float sensitivity = g_pConfigManager->getFloat("general:sensitivity"); - const auto DELTA = g_pConfigManager->getInt("input:force_no_accel") == 1 ? Vector2D(e->unaccel_dx, e->unaccel_dy) : Vector2D(e->delta_x, e->delta_y); + const auto DELTA = g_pConfigManager->getInt("input:force_no_accel") != 1 ? Vector2D(e->unaccel_dx, e->unaccel_dy) : Vector2D(e->delta_x, e->delta_y); if (g_pConfigManager->getInt("general:apply_sens_to_raw") == 1) wlr_relative_pointer_manager_v1_send_relative_motion(g_pCompositor->m_sWLRRelPointerMgr, g_pCompositor->m_sSeat.seat, (uint64_t)e->time_msec * 1000, DELTA.x * sensitivity, DELTA.y * sensitivity, e->unaccel_dx * sensitivity, e->unaccel_dy * sensitivity); @@ -32,6 +32,12 @@ void CInputManager::mouseMoveUnified(uint32_t time, bool refocus) { return; } + // Update stuff + //updateDragIcon(); + + //g_pLayoutManager->getCurrentLayout()->onMouseMove(getMouseCoordsInternal()); + + Vector2D mouseCoords = getMouseCoordsInternal(); const auto PMONITOR = g_pCompositor->getMonitorFromCursor(); @@ -47,24 +53,28 @@ void CInputManager::mouseMoveUnified(uint32_t time, bool refocus) { } else { // Native Wayland apps know how 2 constrain themselves. // XWayland, we just have to accept them. Might cause issues, but thats XWayland for ya. - const auto CONSTRAINTPOS = CONSTRAINTWINDOW->m_bIsX11 ? Vector2D(CONSTRAINTWINDOW->m_uSurface.xwayland->x, CONSTRAINTWINDOW->m_uSurface.xwayland->y) : CONSTRAINTWINDOW->m_vRealPosition.vec(); - const auto CONSTRAINTSIZE = CONSTRAINTWINDOW->m_bIsX11 ? Vector2D(CONSTRAINTWINDOW->m_uSurface.xwayland->width, CONSTRAINTWINDOW->m_uSurface.xwayland->height) : CONSTRAINTWINDOW->m_vRealSize.vec(); + + const auto CONSTRAINTSIZE = CONSTRAINTWINDOW->m_bIsX11 ? Vector2D(CONSTRAINTWINDOW->m_uSurface.xwayland->width, CONSTRAINTWINDOW->m_uSurface.xwayland->height) : CONSTRAINTWINDOW->m_vRealSize.vec(); + const auto CONSTRAINTPOS = Vector2D((CONSTRAINTWINDOW->m_uSurface.xwayland->x + CONSTRAINTSIZE.x) / 2.0, (CONSTRAINTWINDOW->m_uSurface.xwayland->y + CONSTRAINTSIZE.y)); + - if (!VECINRECT(mouseCoords, CONSTRAINTPOS.x, CONSTRAINTPOS.y, CONSTRAINTPOS.x + CONSTRAINTSIZE.x, CONSTRAINTPOS.y + CONSTRAINTSIZE.y)) { + // I'm a worm and I added some code to override some annoying stuff :) + // CONSTRAINTSIZE = Vector2D(0.0, 0.0); + + if (!VECINRECT(mouseCoords, CONSTRAINTPOS.x, CONSTRAINTPOS.y, CONSTRAINTPOS.x/* + CONSTRAINTSIZE.x*/, CONSTRAINTPOS.y/* + CONSTRAINTSIZE.y*/)) { if (g_pCompositor->m_sSeat.mouse->constraintActive) { Vector2D deltaToFit; - if (mouseCoords.x < CONSTRAINTPOS.x) - deltaToFit.x = CONSTRAINTPOS.x - mouseCoords.x; - else if (mouseCoords.x > CONSTRAINTPOS.x + CONSTRAINTSIZE.x) - deltaToFit.x = CONSTRAINTPOS.x + CONSTRAINTSIZE.x - mouseCoords.x; + + deltaToFit.x = CONSTRAINTPOS.x - mouseCoords.x; - if (mouseCoords.y < CONSTRAINTPOS.y) - deltaToFit.y = CONSTRAINTPOS.y - mouseCoords.y; - else if (mouseCoords.y > CONSTRAINTPOS.y + CONSTRAINTSIZE.y) - deltaToFit.y = CONSTRAINTPOS.y + CONSTRAINTSIZE.y - mouseCoords.y; - - wlr_cursor_move(g_pCompositor->m_sWLRCursor, g_pCompositor->m_sSeat.mouse->mouse, deltaToFit.x, deltaToFit.y); + + deltaToFit.y = CONSTRAINTPOS.y - mouseCoords.y; + + // Deadzone... necessary ig + if (deltaToFit.x * deltaToFit.x > 2 && deltaToFit.y * deltaToFit.y > 2) { + wlr_cursor_warp_closest(g_pCompositor->m_sWLRCursor, g_pCompositor->m_sSeat.mouse->mouse, CONSTRAINTPOS.x, CONSTRAINTPOS.y); + } mouseCoords = mouseCoords + deltaToFit; } From 5058a74453148bb1b476c362ecc5ea27203c202a Mon Sep 17 00:00:00 2001 From: SebOuellette Date: Sun, 19 Jun 2022 16:23:49 -0400 Subject: [PATCH 02/49] Cleaned up some old debug --- log.txt | 6367 +++++++++++++++++++++++++++ src/managers/input/InputManager.cpp | 24 +- 2 files changed, 6375 insertions(+), 16 deletions(-) create mode 100644 log.txt diff --git a/log.txt b/log.txt new file mode 100644 index 00000000..c6c72aa9 --- /dev/null +++ b/log.txt @@ -0,0 +1,6367 @@ +00:00:00.000 [ERROR] [libseat] [libseat/backend/seatd.c:66] Could not connect to socket /run/seatd.sock: Permission denied +00:00:00.041 [ERROR] [EGL] command: eglQueryDevicesEXT, error: EGL_BAD_ALLOC (0x3003), message: "EGL_BAD_ALLOC error: In eglQueryDevicesEXT: Failed to allocate device list. +" +00:00:00.042 [ERROR] [EGL] command: eglQueryDevicesEXT, error: EGL_BAD_ALLOC (0x3003), message: "EGL_BAD_ALLOC error: In eglQueryDevicesEXT: Failed to allocate device list. +" +00:00:00.062 [ERROR] [EGL] command: eglQueryDevicesEXT, error: EGL_BAD_ALLOC (0x3003), message: "EGL_BAD_ALLOC error: In eglQueryDevicesEXT: Failed to allocate device list. +" +00:00:00.062 [ERROR] [EGL] command: eglQueryDevicesEXT, error: EGL_BAD_ALLOC (0x3003), message: "EGL_BAD_ALLOC error: In eglQueryDevicesEXT: Failed to allocate device list. +" +00:00:00.072 [ERROR] [xwayland/sockets.c:63] Failed to bind socket @/tmp/.X11-unix/X0: Address already in use +Welcome to Hyprland! +Instance Signature: _1655669871 +Hyprland init finished. +Creating the CHyprError! +Creating the KeybindManager! +Creating the AnimationManager! +Created a bezier curve, baked 200 points, mem usage: 3.20kB, time to bake: 11.88µs. Estimated average calc time: 0.00µs. +Creating the ConfigManager! +Creating the ThreadManager! +Creating the InputManager! +Creating the CHyprOpenGLImpl! +Creating the Hypr OpenGL Renderer! +Reloading the config! +Using: OpenGL ES 3.2 Mesa 22.1.1 +Vendor: AMD +Renderer: AMD Radeon RX 6900 XT (sienna_cichlid, LLVM 13.0.1, DRM 3.46, 5.18.5-arch1-1) +Supported extensions size: 147 +Created a bezier curve, baked 200 points, mem usage: 3.20kB, time to bake: 5.68µs. Estimated average calc time: 0.00µs. +Hypr socket started at /tmp/hypr/_1655669871/.socket.sock +Shaders initialized successfully. +Creating the HyprRenderer! +Creating the XWaylandManager! +Registered signal for owner 6b4bc470: 6b4bc4a8 -> 696a1520 (owner: XWayland Manager) +Registered signal for owner 6b4bc470: 6b4bc4b8 -> 696a1500 (owner: XWayland Manager) +CHyprXWaylandManager started on display :1 +Creating the LayoutManager! +Creating the EventManager! +Creating the HyprDebugOverlay! +Registered signal for owner 6aaee160: 6aaee188 -> 696a10b0 (owner: Backend) +Registered signal for owner 6b47d4e0: 6b47d530 -> 696a1070 (owner: XDG Shell) +Registered signal for owner 6b47d5b0: 6b47d5c8 -> 696a1050 (owner: WLRCursor) +Registered signal for owner 6b47d5b0: 6b47d5d8 -> 696a1030 (owner: WLRCursor) +Registered signal for owner 6b47d5b0: 6b47d5e8 -> 696a1010 (owner: WLRCursor) +Registered signal for owner 6b47d5b0: 6b47d5f8 -> 696a0ff0 (owner: WLRCursor) +Registered signal for owner 6b47d5b0: 6b47d608 -> 696a0fd0 (owner: WLRCursor) +Registered signal for owner 6aaee160: 6aaee178 -> 696a0fb0 (owner: Backend) +Registered signal for owner 6aaee910: 6b4813a8 -> 696a0f50 (owner: Seat) +Registered signal for owner 6aaee910: 6b4813b8 -> 696a0f30 (owner: Seat) +Hypr socket 2 started at /tmp/hypr/_1655669871/.socket2.sockRegistered signal for owner 6aaee910: 6b4813f8 -> 696a0ed0 (owner: Seat) + +Registered signal for owner 6aaee910: 6b481408 -> 696a0eb0 (owner: Seat) +Registered signal for owner 6b47f760: 6b47f780 -> 696a1090 (owner: LayerShell) +Registered signal for owner 6b47d340: 6b47d360 -> 696a10d0 (owner: OutputLayout) +Registered signal for owner 6b4816b0: 6b4816e8 -> 696a0f10 (owner: OutputMgr) +Registered signal for owner 6b4816b0: 6b4816f8 -> 696a0ef0 (owner: OutputMgr) +Registered signal for owner 6b481790: 6b4817c0 -> 696a0e90 (owner: InhibitMgr) +Registered signal for owner 6b481790: 6b4817d0 -> 696a0e70 (owner: InhibitMgr) +Registered signal for owner 6b4819d0: 6b4819e8 -> 696a0f70 (owner: PointerConstraints) +Registered signal for owner 6b481510: 6b481540 -> 696a0e50 (owner: XDGDecoMgr) +Registered signal for owner 6b481bd0: 6b481c00 -> 696a0f90 (owner: VirtPtrMgr) +Registered signal for owner 6b3f5680: 6b3f5690 -> 696a0e30 (owner: WLRRenderer) +Running on WAYLAND_DISPLAY: wayland-0 +Attached a keyboard with name Power Button +Registered signal for owner 6b59ddf0: 6b4ef618 -> 6b59ddf8 (owner: Keyboard) +Registered signal for owner 6b59ddf0: 6b4ef608 -> 6b59de60 (owner: Keyboard) +Registered signal for owner 6b59ddf0: 6b4ef4e8 -> 6b59dec8 (owner: Keyboard) +Set the keyboard layout to and variant to +New keyboard created, pointers Hypr: 6b59ddf0 and WLR: 6b4ef4c8 +Attached a keyboard with name Video Bus +Registered signal for owner 6b50f910: 6b529948 -> 6b50f918 (owner: Keyboard) +Registered signal for owner 6b50f910: 6b529938 -> 6b50f980 (owner: Keyboard) +Registered signal for owner 6b50f910: 6b529818 -> 6b50f9e8 (owner: Keyboard) +Set the keyboard layout to and variant to +New keyboard created, pointers Hypr: 6b50f910 and WLR: 6b5297f8 +Attached a keyboard with name Power Button +Registered signal for owner 6b5b7590: 6b5b7178 -> 6b5b7598 (owner: Keyboard) +Registered signal for owner 6b5b7590: 6b5b7168 -> 6b5b7600 (owner: Keyboard) +Registered signal for owner 6b5b7590: 6b5b7048 -> 6b5b7668 (owner: Keyboard) +Set the keyboard layout to and variant to +New keyboard created, pointers Hypr: 6b5b7590 and WLR: 6b5b7028 +Attached a keyboard with name Sleep Button +Registered signal for owner 6b4b2790: 6b615468 -> 6b4b2798 (owner: Keyboard) +Registered signal for owner 6b4b2790: 6b615458 -> 6b4b2800 (owner: Keyboard) +Registered signal for owner 6b4b2790: 6b615338 -> 6b4b2868 (owner: Keyboard) +Set the keyboard layout to and variant to +New keyboard created, pointers Hypr: 6b4b2790 and WLR: 6b615318 +Attached a keyboard with name Hoksi Technology DURGOD Taurus K310 +Registered signal for owner 6b62a150: 6b651288 -> 6b62a158 (owner: Keyboard) +Registered signal for owner 6b62a150: 6b651278 -> 6b62a1c0 (owner: Keyboard) +Registered signal for owner 6b62a150: 6b651158 -> 6b62a228 (owner: Keyboard) +Set the keyboard layout to and variant to +New keyboard created, pointers Hypr: 6b62a150 and WLR: 6b651138 +Attached a keyboard with name Hoksi Technology DURGOD Taurus K310 System Control +Registered signal for owner 6b664570: 6b68ac28 -> 6b664578 (owner: Keyboard) +Registered signal for owner 6b664570: 6b68ac18 -> 6b6645e0 (owner: Keyboard) +Registered signal for owner 6b664570: 6b68aaf8 -> 6b664648 (owner: Keyboard) +Set the keyboard layout to and variant to +New keyboard created, pointers Hypr: 6b664570 and WLR: 6b68aad8 +Attached a keyboard with name Hoksi Technology DURGOD Taurus K310 Consumer Control +Registered signal for owner 6b69d860: 6b6c3f18 -> 6b69d868 (owner: Keyboard) +Registered signal for owner 6b69d860: 6b6c3f08 -> 6b69d8d0 (owner: Keyboard) +Registered signal for owner 6b69d860: 6b6c3de8 -> 6b69d938 (owner: Keyboard) +Set the keyboard layout to and variant to +New keyboard created, pointers Hypr: 6b69d860 and WLR: 6b6c3dc8 +Attached a mouse with name Hoksi Technology DURGOD Taurus K310 Consumer Control +Registered signal for owner 6b2de1d0: 6b6c3f70 -> 6b2de268 (owner: Mouse) +New mouse created, pointer WLR: 6b6c3f50 +Attached a keyboard with name Hoksi Technology DURGOD Taurus K310 Keyboard +Registered signal for owner 6b6d5480: 6b6fd218 -> 6b6d5488 (owner: Keyboard) +Registered signal for owner 6b6d5480: 6b6fd208 -> 6b6d54f0 (owner: Keyboard) +Registered signal for owner 6b6d5480: 6b6fd0e8 -> 6b6d5558 (owner: Keyboard) +Set the keyboard layout to and variant to +New keyboard created, pointers Hypr: 6b6d5480 and WLR: 6b6fd0c8 +Attached a mouse with name Hoksi Technology DURGOD Taurus K310 Mouse +Registered signal for owner 6b709e90: 6b7360e0 -> 6b709f28 (owner: Mouse) +New mouse created, pointer WLR: 6b7360c0 +Attached a keyboard with name NexiGo N60 FHD Webcam: NexiGo N +Registered signal for owner 6b727510: 6b736858 -> 6b727518 (owner: Keyboard) +Registered signal for owner 6b727510: 6b736848 -> 6b727580 (owner: Keyboard) +Registered signal for owner 6b727510: 6b736728 -> 6b7275e8 (owner: Keyboard) +Set the keyboard layout to and variant to +New keyboard created, pointers Hypr: 6b727510 and WLR: 6b736708 +Attached a keyboard with name ckb1: Corsair Gaming HARPOON RGB Mouse vKB +Registered signal for owner 6b761330: 6b770cd8 -> 6b761338 (owner: Keyboard) +Registered signal for owner 6b761330: 6b770cc8 -> 6b7613a0 (owner: Keyboard) +Registered signal for owner 6b761330: 6b770ba8 -> 6b761408 (owner: Keyboard) +Set the keyboard layout to and variant to +New keyboard created, pointers Hypr: 6b761330 and WLR: 6b770b88 +Attached a mouse with name ckb1: Corsair Gaming HARPOON RGB Mouse vM +Registered signal for owner 6b743fd0: 6b7a9710 -> 6b744068 (owner: Mouse) +New mouse created, pointer WLR: 6b7a96f0 +Registered signal for owner 6b783620: 6b7a9e70 -> 6b783740 (owner: ) +Registered signal for owner 6b783620: 6b7a9f10 -> 6b7837a8 (owner: ) +Applying monitor rule for DP-3 +Monitor DP-3: requested 2560x1440@165.000000, found available mode: 2560x1440@164835mHz, applying. +Monitor DP-3 -> destroyed all render data +Monitor DP-3 layers arranged: reserved: 0.000000 0.000000 0.000000 0.000000 +Added new monitor with name DP-3 at 0,0 with size 2560x1440, pointer 6b7a9d30 +New monitor: WORKSPACEID 1, exists: 0 +Registered signal for owner 6b6fe870: 6b7aa1a0 -> 6b6fe990 (owner: ) +Registered signal for owner 6b6fe870: 6b7aa240 -> 6b6fe9f8 (*** BUG *** +In pixman_region32_init_rect: Invalid rectangle passed +Set a breakpoint on '_pixman_log_error' to debug + +*** BUG *** +In pixman_region32_init_rect: Invalid rectangle passed +Set a breakpoint on '_pixman_log_error' to debug + +The XKEYBOARD keymap compiler (xkbcomp) reports: +> Warning: Unsupported maximum keycode 708, clipping. +> X11 cannot support keycodes above 255. +Errors from xkbcomp are not fatal to the X server +owner: ) +Applying monitor rule for DP-4 +Monitor DP-4: requested 1920x1080@60.000000, found available mode: 1920x1080@60000mHz, applying. +Monitor DP-4 -> destroyed all render data +Monitor DP-4 layers arranged: reserved: 0.000000 0.000000 0.000000 0.000000 +Added new monitor with name DP-4 at 2560,350 with size 1920x1080, pointer 6b7aa060 +New monitor: WORKSPACEID 2, exists: 0 +Hyprland is ready, running the event loop! +Config executing WAYLAND_DISPLAY=wayland-0 DISPLAY=:1 waybar +Process created with pid 101969 +Config executing WAYLAND_DISPLAY=wayland-0 DISPLAY=:1 source $HOME/.wayinitrc +Process created with pid 101971 +Config executing WAYLAND_DISPLAY=wayland-0 DISPLAY=:1 hash dbus-update-activation-environment 2>/dev/null && dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY +Process created with pid 101973 +Framebuffer created, status 36053 +Framebuffer created, status 36053 +Framebuffer created, status 36053 +Allocated texture for BGTex +Background created for monitor DP-3 +Framebuffer created, status 36053 +Framebuffer created, status 36053 +Framebuffer created, status 36053 +Allocated texture for BGTex +Background created for monitor DP-4 +Registered signal for owner 6b8880b0: 6b4a2ff0 -> 6b888200 (owner: layerSurface) +Registered signal for owner 6b8880b0: 6b4a3010 -> 6b8880c8 (owner: layerSurface) +Registered signal for owner 6b8880b0: 6b89bc08 -> 6b888130 (owner: layerSurface) +Registered signal for owner 6b8880b0: 6b89bc18 -> 6b888198 (owner: layerSurface) +Registered signal for owner 6b8880b0: 6b89bc28 -> 6b888268 (owner: layerSurface) +LayerSurface 6b89bb20 (namespace wallpaper layer 0) created on monitor DP-4 +LayerSurface 6b747910 arranged: x: 2560 y: 350 w: 1920 h: 1080 with margins: t: 0 l: 0 r: 0 b: 0 +Monitor DP-4 layers arranged: reserved: 0.000000 0.000000 0.000000 0.000000 +Registered signal for owner 6b8dcd70: 6b4edc80 -> 6b8dcec0 (owner: layerSurface) +Registered signal for owner 6b8dcd70: 6b4edca0 -> 6b8dcd88 (owner: layerSurface) +Registered signal for owner 6b8dcd70: 6b4d8858 -> 6b8dcdf0 (owner: layerSurface) +Registered signal for owner 6b8dcd70: 6b4d8868 -> 6b8dce58 (owner: layerSurface) +Registered signal for owner 6b8dcd70: 6b4d8878 -> 6b8dcf28 (owner: layerSurface) +LayerSurface 6b4d8770 (namespace wallpaper layer 0) created on monitor DP-3 +LayerSurface 6b88c000 arranged: x: 0 y: 0 w: 2560 h: 1440 with margins: t: 0 l: 0 r: 0 b: 0 +Monitor DP-3 layers arranged: reserved: 0.000000 0.000000 0.000000 0.000000 +Registered signal for owner 6b599e30: 6b588250 -> 6b599f80 (owner: layerSurface) +Registered signal for owner 6b599e30: 6b588270 -> 6b599e48 (owner: layerSurface) +Registered signal for owner 6b599e30: 6b586928 -> 6b599eb0 (owner: layerSurface) +Registered signal for owner 6b599e30: 6b586938 -> 6b599f18 (owner: layerSurface) +Registered signal for owner 6b599e30: 6b586948 -> 6b599fe8 (owner: layerSurface) +LayerSurface 6b586840 (namespace waybar layer 2) created on monitor DP-4 +LayerSurface 6b712810 arranged: x: 2570 y: 360 w: 1900 h: 37 with margins: t: 10 l: 10 r: 10 b: 10 +LayerSurface 6b747910 arranged: x: 2560 y: 350 w: 1920 h: 1080 with margins: t: 0 l: 0 r: 0 b: 0 +Monitor DP-4 layers arranged: reserved: 0.000000 57.000000 0.000000 0.000000 +Registered signal for owner 6b58d920: 6b4dd8e0 -> 6b58da70 (owner: layerSurface) +Registered signal for owner 6b58d920: 6b4dd900 -> 6b58d938 (owner: layerSurface) +Registered signal for owner 6b58d920: 6b592398 -> 6b58d9a0 (owner: layerSurface) +Registered signal for owner 6b58d920: 6b5923a8 -> 6b58da08 (owner: layerSurface) +Registered signal for owner 6b58d920: 6b5923b8 -> 6b58dad8 (owner: layerSurface) +LayerSurface 6b5922b0 (namespace waybar layer 2) created on monitor DP-3 +LayerSurface 6b8fe670 arranged: x: 10 y: 10 w: 2540 h: 37 with margins: t: 10 l: 10 r: 10 b: 10 +LayerSurface 6b88c000 arranged: x: 0 y: 0 w: 2560 h: 1440 with margins: t: 0 l: 0 r: 0 b: 0 +Monitor DP-3 layers arranged: reserved: 0.000000 57.000000 0.000000 0.000000 +New XWayland Surface created. +Registered signal for owner 6b901830: 6aaff3a8 -> 6b901898 (owner: XWayland Window) +Registered signal forThe XKEYBOARD keymap compiler (xkbcomp) reports: +> Warning: Unsupported maximum keycode 708, clipping. +> X11 cannot support keycodes above 255. +Errors from xkbcomp are not fatal to the X server +steam.sh[102127]: Running Steam on arch rolling 64-bit +steam.sh[102127]: STEAM_RUNTIME is enabled automatically +setup.sh[102201]: Steam runtime environment up-to-date! +steam.sh[102127]: Steam client's requirements are satisfied +Installing breakpad exception handler for appid(steam)/version(1655513879) + owner 6b901830: 6aaff3b8 -> 6b901900 (owner: XWayland Window) +Registered signal for owner 6b901830: 6aaff328 -> 6b901968 (owner: XWayland Window) +LayerSurface 6b89bb20 mapped +LayerSurface 6b712810 arranged: x: 2570 y: 360 w: 1900 h: 37 with margins: t: 10 l: 10 r: 10 b: 10 +LayerSurface 6b747910 arranged: x: 2560 y: 350 w: 1920 h: 1080 with margins: t: 0 l: 0 r: 0 b: 0 +Monitor DP-4 layers arranged: reserved: 0.000000 57.000000 0.000000 0.000000 +LayerSurface 6b4d8770 mapped +LayerSurface 6b8fe670 arranged: x: 10 y: 10 w: 2540 h: 37 with margins: t: 10 l: 10 r: 10 b: 10 +LayerSurface 6b88c000 arranged: x: 0 y: 0 w: 2560 h: 1440 with margins: t: 0 l: 0 r: 0 b: 0 +Monitor DP-3 layers arranged: reserved: 0.000000 57.000000 0.000000 0.000000 +LayerSurface 6b586840 mapped +LayerSurface 6b712810 arranged: x: 2570 y: 360 w: 1900 h: 37 with margins: t: 10 l: 10 r: 10 b: 10 +LayerSurface 6b747910 arranged: x: 2560 y: 350 w: 1920 h: 1080 with margins: t: 0 l: 0 r: 0 b: 0 +Monitor DP-4 layers arranged: reserved: 0.000000 57.000000 0.000000 0.000000 +LayerSurface 6b5922b0 mapped +LayerSurface 6b8fe670 arranged: x: 10 y: 10 w: 2540 h: 37 with margins: t: 10 l: 10 r: 10 b: 10 +LayerSurface 6b88c000 arranged: x: 0 y: 0 w: 2560 h: 1440 with margins: t: 0 l: 0 r: 0 b: 0 +Monitor DP-3 layers arranged: reserved: 0.000000 57.000000 0.000000 0.000000 +Set keyboard focus to surface 6b4dd620 +Keybind triggered, calling dispatcher (64, 32) +Executing WAYLAND_DISPLAY=wayland-0 DISPLAY=:1 rofi -show run -o DP-3 +Process Created with pid 102094 +New LayerSurface has no preferred monitor. Assigning Monitor DP-3 +Registered signal for owner 6b9467c0: 6b9482a0 -> 6b946910 (owner: layerSurface) +Registered signal for owner 6b9467c0: 6b9482c0 -> 6b9467d8 (owner: layerSurface) +Registered signal for owner 6b9467c0: 6b9484a8 -> 6b946840 (owner: layerSurface) +Registered signal for owner 6b9467c0: 6b9484b8 -> 6b9468a8 (owner: layerSurface) +Registered signal for owner 6b9467c0: 6b9484c8 -> 6b946978 (owner: layerSurface) +LayerSurface 6b9483c0 (namespace rofi layer 3) created on monitor DP-3 +LayerSurface 6b8fe670 arranged: x: 10 y: 10 w: 2540 h: 37 with margins: t: 10 l: 10 r: 10 b: 10 +LayerSurface 6b88c000 arranged: x: 0 y: 0 w: 2560 h: 1440 with margins: t: 0 l: 0 r: 0 b: 0 +LayerSurface 6b948570 arranged: x: 0 y: 57 w: 2560 h: 1383 with margins: t: 0 l: 0 r: 0 b: 0 +Monitor DP-3 layers arranged: reserved: 0.000000 57.000000 0.000000 0.000000 +LayerSurface 6b9483c0 mapped +LayerSurface 6b8fe670 arranged: x: 10 y: 10 w: 2540 h: 37 with margins: t: 10 l: 10 r: 10 b: 10 +LayerSurface 6b88c000 arranged: x: 0 y: 0 w: 2560 h: 1440 with margins: t: 0 l: 0 r: 0 b: 0 +LayerSurface 6b948570 arranged: x: 640 y: 525 w: 1280 h: 446 with margins: t: 0 l: 0 r: 0 b: 0 +Monitor DP-3 layers arranged: reserved: 0.000000 57.000000 0.000000 0.000000 +Set keyboard focus to surface 6b947fe0 +LayerSurface 6b8fe670 arranged: x: 10 y: 10 w: 2540 h: 37 with margins: t: 10 l: 10 r: 10 b: 10 +LayerSurface 6b88c000 arranged: x: 0 y: 0 w: 2560 h: 1440 with margins: t: 0 l: 0 r: 0 b: 0 +LayerSurface 6b948570 arranged: x: 640 y: 525 w: 1280 h: 446 with margins: t: 0 l: 0 r: 0 b: 0 +Monitor DP-3 layers arranged: reserved: 0.000000 57.000000 0.000000 0.000000 +LayerSurface 6b9483c0 unmapped +Framebuffer created, status 36053 +LayerSurface 6b9483c0 destroyed +Callback 3fc245f0 -> 6b9467c0, layerSurface removed. +Callback 3fc245f0 -> 6b9467c0, layerSurface removed. +Callback 3fc245f0 -> 6b9467c0, layerSurface removed. +Callback 3fc245f0 -> 6b9467c0, layerSurface removed. +Callback 3fc245f0 -> 6b9467c0, layerSurface removed. +LayerSurface 6b8fe670 arranged: x: 10 y: 10 w: 2540 h: 37 with margins: t: 10 l: 10 r: 10 b: 10 +LayerSurface 6b88c000 arranged: x: 0 y: 0 w: 2560 h: 1440 with margins: t: 0 l: 0 r: 0 b: 0 +Monitor DP-3 layers arranged: reserved: 0.000000 57.000000 0.000000 0.000000 +New XWayland Surface created. +Registered signal for owner 6b942e20: 6b9533d8 -> 6b942e88 (owner: XWayland Window) +Registered signal for owner 6b942e20: 6b9533e8 -> 6b942ef0 (owner: XWayland Window) +Registered signal for owner 6b942e20: 6b953358 -> 6b942fInstalling breakpad exception handler for appid(steam)/version(1655513879) +Installing breakpad exception handler for appid(steam)/version(1655513879) +00:00:05.844 [ERROR] [xwayland/xwm.c:1546] xcb error: op ConfigureWindow (no minor), code Value (no extension), sequence 166, value 0 +00:00:06.181 [ERROR] [xwayland/xwm.c:1546] xcb error: op ChangeProperty (no minor), code Window (no extension), sequence 353, value 6291458 +00:00:06.181 [ERROR] [xwayland/xwm.c:1546] xcb error: op ChangeProperty (no minor), code Window (no extension), sequence 355, value 6291458 +Loaded SDL version 2.23.1-7331155 +ComputeStartupMode: found registry default startup mode: 0steamwebhelper.sh[102425]: Runtime for steamwebhelper: defaulting to /home/sharkfin/.local/share/Steam/ubuntu12_64/steam-runtime-heavy +Installing breakpad exception handler for appid(steam)/version(1655513879) +steamwebhelper.sh[102425]: glibc >= 2.34, partially disabling sandbox until CEF supports clone3() +58 (owner: XWayland Window) +Cleanup: destroyed a layersurface +Error in getAppIDClass: basic_string: construction from null is not valid +Error in getAppIDClass: basic_string: construction from null is not valid +Set keyboard focus to surface 6b951fc0, with window name: Steam +Error in getAppIDClass: basic_string: construction from null is not valid +Registered signal for owner 6b879390: 6b952290 -> 6b879398 (owner: SurfaceTreeNode) +Registered signal for owner 6b879390: 6b952280 -> 6b879400 (owner: SurfaceTreeNode) +Registered signal for owner 6b879390: 6b9522a0 -> 6b879468 (owner: SurfaceTreeNode) +Creating a surfaceTree Root! (pWindow: 6b942e20) +Window got assigned a surfaceTreeNode 6b879390 +Registered signal for owner 6b942e20: 6b9533b8 -> 6b943028 (owner: XWayland Window Late) +Registered signal for owner 6b942e20: 6b9533c8 -> 6b943310 (owner: XWayland Window Late) +Registered signal for owner 6b942e20: 6b953368 -> 6b943378 (owner: XWayland Window Late) +Registered signal for owner 6b942e20: 6b9533f8 -> 6b942fc0 (owner: XWayland Window Late) +Map request dispatched, monitor DP-3, xywh: 1080.000000 655.500000 400.000000 129.000000 +Window 6b942e20 unmapped +Unregistered late callbacks XWL: 6b943028 6b943310 6b943378 6b942fc0 +Callback 3fc24a90 -> 6b942e20, XWayland Window Late removed. +Callback 3fc24a90 -> 6b942e20, XWayland Window Late removed. +Callback 3fc24a90 -> 6b942e20, XWayland Window Late removed. +Callback 3fc24a90 -> 6b942e20, XWayland Window Late removed. +Framebuffer created, status 36053 +Destroying the SubSurface tree of unmapped window 6b942e20 +Callback 3fc24a20 -> 6b879390, SurfaceTreeNode removed. +Callback 3fc24a20 -> 6b879390, SurfaceTreeNode removed. +Callback 3fc24a20 -> 6b879390, SurfaceTreeNode removed. +SurfaceTree Node removed +Window 6b942e20 destroyed, queueing. +Callback 3fc24b10 -> 6b942e20, XWayland Window removed. +Callback 3fc24b10 -> 6b942e20, XWayland Window removed. +Callback 3fc24b10 -> 6b942e20, XWayland Window removed. +Cleanup: destroyed a window +Keybind triggered, calling dispatcher (64, 81) +Executing WAYLAND_DISPLAY=wayland-0 DISPLAY=:1 alacritty +Process Created with pid 102335 +New XDG Surface created. (0x0 at 0 0) +Registered signal for owner 6b94acd0: 6b94c348 -> 6b94ad38 (owner: XDG Window) +Registered signal for owner 6b94acd0: 6b94c358 -> 6b94ada0 (owner: XDG Window) +Registered signal for owner 6b94acd0: 6b94c318 -> 6b94ae08 (owner: XDG Window) +OPENINGON: 6b59e4c0, Workspace: 2, Monitor: 1 +Set keyboard focus to surface 6b9550a0, with window name: Alacritty +Registered signal for owner 6b879390: 6b955370 -> 6b879398 (owner: SurfaceTreeNode) +Registered signal for owner 6b879390: 6b955360 -> 6b879400 (owner: SurfaceTreeNode) +Registered signal for owner 6b879390: 6b955380 -> 6b879468 (owner: SurfaceTreeNode) +Creating a surfaceTree Root! (pWindow: 6b94acd0) +Window got assigned a surfaceTreeNode 6b879390 +Registered signal for owner 6b94acd0: 6b955360 -> 6b94acd0 (owner: XDG Window Late) +Registered signal for owner 6b94acd0: 6b89b4c0 -> 6b94ae70 (owner: XDG Window Late) +Registered signal for owner 6b94acd0: 6b89b460 -> 6b94aed8 (owner: XDG Window Late) +Registered signal for owner 6b94acd0: 6b94c338 -> 6b94af40 (owner: XDG Window Late) +Map request dispatched, monitor DP-4, xywh: 2571.000000 418.000000 1898.000000 1001.000000 +New XWayland Surface created. +Registered signal for owner 6b9472e0: 6b94d5a8 -> 6b947348 (owner: XWayland Window) +Registered signal for owner 6b9472e0: 6b94d5b8 -> 6b9473b0 (owner: XWayland Window) +Registered signal for owner 6b9472e0: 6b94d528 -> 6b947418 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b9746e0: 6b972e98 -> 6b974748 (owner: XWayland Window) +Registered signal for owner 6b9746e0: 6b972ea8 -> 6b9747b0 (owner: XWayland Window) +Registered signal for owner 6b9746e0: 6b972e18 -> 6b974818 (owner: XWayland Window) +Window 6b9746e0 destroyed, queueing. +Callback 3fc24b10 -> 6b9746e0, XWayland Window removed. +Callback 3fc24b10 -> 6b9746e0, XWayland Window removed. +Callback 3fc24b10 -> 6b9746e0, XWayland Window removed. +New XWayland Surface created.Installing breakpad exception handler for appid(steam)/version(1655513879) +Installing breakpad exception handler for appid(steam)/version(1655513879) +Installing breakpad exception handler for appid(steam)/version(1655513879) +Installing breakpad exception handler for appid(steam)/version(1655513879) +Installing breakpad exception handler for appid(steam)/version(1655513879) +Installing breakpad exception handler for appid(steam)/version(1655513879) +Installing breakpad exception handler for appid(steam)/version(1655513879) +Installing breakpad exception handler for appid(steam)/version(1655513879) +Installing breakpad exception handler for appid(steam)/version(1655513879) +Installing breakpad exception handler for appid(steam)/version(1655513879) +Installing breakpad exception handler for appid(steam)/version(1655513879) +Installing breakpad exception handler for appid(steam)/version(1655513879) +Installing breakpad exception handler for appid(steam)/version(1655513879) +Installing breakpad exception handler for appid(steam)/version(1655513879) +Installing breakpad exception handler for appid(steam)/version(1655513879) +Installing breakpad exception handler for appid(steam)/version(1655513879) +CAppInfoCacheReadFromDiskThread took 82 milliseconds to initialize +Installing breakpad exception handler for appid(steam)/version(1655513879) +*** MESA_GLSL_CACHE_DIR is deprecated; use MESA_SHADER_CACHE_DIR instead *** +*** MESA_GLSL_CACHE_MAX_SIZE is deprecated; use MESA_SHADER_CACHE_MAX_SIZE instead *** +00:00:09.919 [ERROR] [xwayland/xwm.c:1546] xcb error: op ConfigureWindow (no minor), code Value (no extension), sequence 453, value 0 + +(steam:102309): Gtk-WARNING **: 16:18:01.235: gtk_disable_setlocale() must be called before gtk_init() +*** MESA_GLSL_CACHE_DIR is deprecated; use MESA_SHADER_CACHE_DIR instead *** +*** MESA_GLSL_CACHE_MAX_SIZE is deprecated; use MESA_SHADER_CACHE_MAX_SIZE instead *** +Installing breakpad exception handler for appid(steam)/version(1655513879) +Installing breakpad exception handler for appid(steam)/version(1655513879) +local (potentially out of sync) copy of roaming config loaded - 16034 bytes. +roaming config store loaded successfully - 16034 bytes. +migrating temporary roaming config store +Installing breakpad exception handler for appid(steam)/version(1655513879) +[2022-06-19 16:17:56] Startup - updater built Jun 18 2022 00:17:09 +[2022-06-19 16:17:56] Opted in to client beta 'publicbeta' via beta file +You are in the 'publicbeta' client beta. +Looks like steam didn't shutdown cleanly, scheduling immediate update check +[2022-06-19 16:17:56] Loading cached metrics from disk (/home/sharkfin/.local/share/Steam/package/steam_client_metrics.bin) +[2022-06-19 16:17:56] Using the following download hosts for Public, Realm steamglobal +[2022-06-19 16:17:56] 1. https://cdn.cloudflare.steamstatic.com, /client/, Realm 'steamglobal', weight was 100, source = 'update_hosts_cached.vdf' +[2022-06-19 16:17:56] 2. https://cdn.akamai.steamstatic.com, /client/, Realm 'steamglobal', weight was 100, source = 'update_hosts_cached.vdf' +[2022-06-19 16:17:56] 3. http://media.steampowered.com, /client/, Realm 'steamglobal', weight was 1, source = 'baked in' +[2022-06-19 16:17:56] Checking for update on startup +[2022-06-19 16:17:56] Checking for available updates... +[2022-06-19 16:17:56] Downloading manifest: https://cdn.cloudflare.steamstatic.com/client/steam_client_publicbeta_ubuntu12 +[2022-06-19 16:17:56] Manifest download: send request +[2022-06-19 16:17:56] Manifest download: waiting for download to finish +[2022-06-19 16:17:57] Manifest download: finished +[2022-06-19 16:17:57] Download skipped by HTTP 304 Not Modified +[2022-06-19 16:17:57] Nothing to do +[2022-06-19 16:17:57] Verifying installation... +[2022-06-19 16:17:57] Performing checksum verification of executable files +[2022-06-19 16:17:57] Verification complete +src/clientdll/compatmanager.cpp (991) : GetCompatibilityToolCommandLineInternal on dependent tool failed +src/clientdll/compatmanager.cpp (991) : GetCompatibilityToolCommandLineInternal on dependent tool failed +Installing breakpad exception handler for appid(steam)/version(1655513879) +assert_20220619161802_27.dmp[102620]: Uploading dump (out-of-process) +/tmp/dumps/assert_20220619161802_27.dmp +src/clientdll/compatmanager.cpp (991) : GetCompatibilityToolCommandLineInternal on dependent tool failed +src/clientdll/compatmanager.cpp (991) : GetCompatibilityToolCommandLineInternal on dependent tool failed +src/clientdll/compatmanager.cpp (991) : GetCompatibilityToolCommandLineInternal on dependent tool failed +src/clientdll/compatmanager.cpp (991) : GetCompatibilityToolCommandLineInternal on dependent tool failed +src/clientdll/compatmanager.cpp (991) : GetCompatibilityToolCommandLineInternal on dependent tool failed +src/clientdll/compatmanager.cpp (991) : GetCompatibilityToolCommandLineInternal on dependent tool failed +BRefreshApplicationsInLibrary 1: 6ms + +Registered signal for owner 6b974f00: 6b952208 -> 6b974f68 (owner: XWayland Window) +Registered signal for owner 6b974f00: 6b952218 -> 6b974fd0 (owner: XWayland Window) +Registered signal for owner 6b974f00: 6b952188 -> 6b975038 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b975720: 6b947c78 -> 6b975788 (owner: XWayland Window) +Registered signal for owner 6b975720: 6b947c88 -> 6b9757f0 (owner: XWayland Window) +Registered signal for owner 6b975720: 6b947bf8 -> 6b975858 (owner: XWayland Window) +Window 6b975720 destroyed, queueing. +Callback 3fc24b10 -> 6b975720, XWayland Window removed. +Callback 3fc24b10 -> 6b975720, XWayland Window removed. +Callback 3fc24b10 -> 6b975720, XWayland Window removed. +New XWayland Surface created. +Registered signal for owner 6b975f40: 6b947c78 -> 6b975fa8 (owner: XWayland Window) +Registered signal for owner 6b975f40: 6b947c88 -> 6b976010 (owner: XWayland Window) +Registered signal for owner 6b975f40: 6b947bf8 -> 6b976078 (owner: XWayland Window) +Window 6b975f40 destroyed, queueing. +Callback 3fc24b10 -> 6b975f40, XWayland Window removed. +Callback 3fc24b10 -> 6b975f40, XWayland Window removed. +Callback 3fc24b10 -> 6b975f40, XWayland Window removed. +New XWayland Surface created. +Registered signal for owner 6b976760: 6b947c78 -> 6b9767c8 (owner: XWayland Window) +Registered signal for owner 6b976760: 6b947c88 -> 6b976830 (owner: XWayland Window) +Registered signal for owner 6b976760: 6b947bf8 -> 6b976898 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b976f80: 6b949ec8 -> 6b976fe8 (owner: XWayland Window) +Registered signal for owner 6b976f80: 6b949ed8 -> 6b977050 (owner: XWayland Window) +Registered signal for owner 6b976f80: 6b949e48 -> 6b9770b8 (owner: XWayland Window) +Set keyboard focus to surface 6b94bc40, with window name: Steam +Registered signal for owner 6b8ad4f0: 6b94bf10 -> 6b8ad4f8 (owner: SurfaceTreeNode) +Registered signal for owner 6b8ad4f0: 6b94bf00 -> 6b8ad560 (owner: SurfaceTreeNode) +Registered signal for owner 6b8ad4f0: 6b94bf20 -> 6b8ad5c8 (owner: SurfaceTreeNode) +Creating a surfaceTree Root! (pWindow: 6b976760) +Window got assigned a surfaceTreeNode 6b8ad4f0 +Registered signal for owner 6b976760: 6b947c58 -> 6b976968 (owner: XWayland Window Late) +Registered signal for owner 6b976760: 6b947c68 -> 6b976c50 (owner: XWayland Window Late) +Registered signal for owner 6b976760: 6b947c08 -> 6b976cb8 (owner: XWayland Window Late) +Registered signal for owner 6b976760: 6b947c98 -> 6b976900 (owner: XWayland Window Late) +Map request dispatched, monitor DP-4, xywh: 3488.000000 878.000000 64.000000 24.000000 +Set keyboard focus to surface 6b9550a0, with window name: Alacritty +New XWayland Surface created. +Registered signal for owner 6b97b200: 6b97b0e8 -> 6b97b268 (owner: XWayland Window) +Registered signal for owner 6b97b200: 6b97b0f8 -> 6b97b2d0 (owner: XWayland Window) +Registered signal for owner 6b97b200: 6b97b068 -> 6b97b338 (owner: XWayland Window) +Window 6b97b200 destroyed, queueing. +Callback 3fc24b10 -> 6b97b200, XWayland Window removed. +Callback 3fc24b10 -> 6b97b200, XWayland Window removed. +Callback 3fc24b10 -> 6b97b200, XWayland Window removed. +New XWayland Surface created. +Registered signal for owner 6b97ba20: 6b97b0e8 -> 6b97ba88 (owner: XWayland Window) +Registered signal for owner 6b97ba20: 6b97b0f8 -> 6b97baf0 (owner: XWayland Window) +Registered signal for owner 6b97ba20: 6b97b068 -> 6b97bb58 (owner: XWayland Window) +Window 6b97ba20 destroyed, queueing. +Callback 3fc24b10 -> 6b97ba20, XWayland Window removed. +Callback 3fc24b10 -> 6b97ba20, XWayland Window removed. +Callback 3fc24b10 -> 6b97ba20, XWayland Window removed. +Window 6b976760 unmapped +Unregistered late callbacks XWL: 6b976968 6b976c50 6b976cb8 6b976900 +Callback 3fc24a90 -> 6b976760, XWayland Window Late removed. +Callback 3fc24a90 -> 6b976760, XWayland Window Late removed. +Callback 3fc24a90 -> 6b976760, XWayland Window Late removed. +Callback 3fc24a90 -> 6b976760, XWayland Window Late removed. +Framebuffer created, status 36053 +Destroying the SubSurface tree of unmapped window 6b976760 +Callback 3fc24a20 -> 6b8ad4f0, SurfaceTreeNode removed. +Callback 3fc24a20 -> 6b8ad4f0, SurfaceTreeNode removed. +Callback 3fc24a20 -> 6b8ad4f0, SurfaceTreeNode removed. +SurfaceTree Node removed +New XWayland Surface created. +Registered signal for owner 6b97a190: 6b97e918 -> 6b97a1f8 (owner: XWayland Window) +Registered signal for owner 6b97a190: 6b97e928 -> 6b97a260 (owner: XWayland Window) +Registered signal for owner 6b97a190: 6b97e898 -> 6b97a2c8 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b97ecc0: 6b97eba8 -> 6b97ed28 (owner: XWayland Window) +Registered signal for owner 6b97ecc0: 6b97ebb8 -> 6b97ed90 (owner: XWayland Window) +Registered signal for owner 6b97ecc0: 6b97eb28 -> 6b97edf8 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b97f980: 6b97f868 -> 6b97f9e8 (owner: XWayland Window) +Registered signal for owner 6b97f980: 6b97f878 -> 6b97fa50 (owner: XWayland Window) +Registered signal for owner 6b97f980: 6b97f7e8 -> 6b97fab8 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b980660: 6b980548 -> 6b9806c8 (owner: XWayland Window) +Registered signal for owner 6b980660: 6b980558 -> 6b980730 (owner: XWayland Window) +Registered signal for owner 6b980660: 6b9804c8 -> 6b980798 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b9813e0: 6b9812c8 -> 6b981448 (owner: XWayland Window) +Registered signal for owner 6b9813e0: 6b9812d8 -> 6b9814b0 (owner: XWayland Window) +Registered signal for owner 6b9813e0: 6b981248 -> 6b981518 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b982140: 6b982028 -> 6b9821a8 (owner: XWayland Window) +Registered signal for owner 6b982140: 6b982038 -> 6b982210 (owner: XWayland Window) +Registered signal for owner 6b982140: 6b981fa8 -> 6b982278 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b982f00: 6b982de8 -> 6b982f68 (owner: XWayland Window) +Registered signal for owner 6b982f00: 6b982df8 -> 6b982fd0 (owner: XWayland Window) +Registered signal for owner 6b982f00: 6b982d68 -> 6b983038 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b983e60: 6b983d48 -> 6b983ec8 (owner: XWayland Window) +Registered signal for owner 6b983e60: 6b983d58 -> 6b983f30 (owner: XWayland Window) +Registered signal for owner 6b983e60: 6b983cc8 -> 6b983f98 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b984c00: 6b984ae8 -> 6b984c68 (owner: XWayland Window) +Registered signal for owner 6b984c00: 6b984af8 -> 6b984cd0 (owner: XWayland Window) +Registered signal for owner 6b984c00: 6b984a68 -> 6b984d38 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b9858c0: 6b9857a8 -> 6b985928 (owner: XWayland Window) +Registered signal for owner 6b9858c0: 6b9857b8 -> 6b985990 (owner: XWayland Window) +Registered signal for owner 6b9858c0: 6b985728 -> 6b9859f8 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b986600: 6b9864e8 -> 6b986668 (owner: XWayland Window) +Registered signal for owner 6b986600: 6b9864f8 -> 6b9866d0 (owner: XWayland Window) +Registered signal for owner 6b986600: 6b986468 -> 6b986738 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b987340: 6b987228 -> 6b9873a8 (owner: XWayland Window) +Registered signal for owner 6b987340: 6b987238 -> 6b987410 (owner: XWayland Window) +Registered signal for owner 6b987340: 6b9871a8 -> 6b987478 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b98ac60: 6b98ab48 -> 6b98acc8 (owner: XWayland Window) +Registered signal for owner 6b98ac60: 6b98ab58 -> 6b98ad30 (owner: XWayland Window) +Registered signal for owner 6b98ac60: 6b98aac8 -> 6b98ad98 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b98b920: 6b98b808 -> 6b98b988 (owner: XWayland Window) +Registered signal for owner 6b98b920: 6b98b818 -> 6b98b9f0 (owner: XWayland Window) +Registered signaInstalling breakpad exception handler for appid(steam)/version(1655513879) +l for owner 6b98b920: 6b98b788 -> 6b98ba58 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b98c5e0: 6b98c4c8 -> 6b98c648 (owner: XWayland Window) +Registered signal for owner 6b98c5e0: 6b98c4d8 -> 6b98c6b0 (owner: XWayland Window) +Registered signal for owner 6b98c5e0: 6b98c448 -> 6b98c718 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b98d2a0: 6b98d188 -> 6b98d308 (owner: XWayland Window) +Registered signal for owner 6b98d2a0: 6b98d198 -> 6b98d370 (owner: XWayland Window) +Registered signal for owner 6b98d2a0: 6b98d108 -> 6b98d3d8 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b98df60: 6b98de48 -> 6b98dfc8 (owner: XWayland Window) +Registered signal for owner 6b98df60: 6b98de58 -> 6b98e030 (owner: XWayland Window) +Registered signal for owner 6b98df60: 6b98ddc8 -> 6b98e098 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b98ec20: 6b98eb08 -> 6b98ec88 (owner: XWayland Window) +Registered signal for owner 6b98ec20: 6b98eb18 -> 6b98ecf0 (owner: XWayland Window) +Registered signal for owner 6b98ec20: 6b98ea88 -> 6b98ed58 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b98f8e0: 6b98f7c8 -> 6b98f948 (owner: XWayland Window) +Registered signal for owner 6b98f8e0: 6b98f7d8 -> 6b98f9b0 (owner: XWayland Window) +Registered signal for owner 6b98f8e0: 6b98f748 -> 6b98fa18 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b9905a0: 6b990488 -> 6b990608 (owner: XWayland Window) +Registered signal for owner 6b9905a0: 6b990498 -> 6b990670 (owner: XWayland Window) +Registered signal for owner 6b9905a0: 6b990408 -> 6b9906d8 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b991260: 6b991148 -> 6b9912c8 (owner: XWayland Window) +Registered signal for owner 6b991260: 6b991158 -> 6b991330 (owner: XWayland Window) +Registered signal for owner 6b991260: 6b9910c8 -> 6b991398 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b992130: 6b991e08 -> 6b992198 (owner: XWayland Window) +Registered signal for owner 6b992130: 6b991e18 -> 6b992200 (owner: XWayland Window) +Registered signal for owner 6b992130: 6b991d88 -> 6b992268 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b992df0: 6b992cd8 -> 6b992e58 (owner: XWayland Window) +Registered signal for owner 6b992df0: 6b992ce8 -> 6b992ec0 (owner: XWayland Window) +Registered signal for owner 6b992df0: 6b992c58 -> 6b992f28 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b993bd0: 6b993ab8 -> 6b993c38 (owner: XWayland Window) +Registered signal for owner 6b993bd0: 6b993ac8 -> 6b993ca0 (owner: XWayland Window) +Registered signal for owner 6b993bd0: 6b993a38 -> 6b993d08 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b994a30: 6b994918 -> 6b994a98 (owner: XWayland Window) +Registered signal for owner 6b994a30: 6b994928 -> 6b994b00 (owner: XWayland Window) +Registered signal for owner 6b994a30: 6b994898 -> 6b994b68 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b995930: 6b995778 -> 6b995998 (owner: XWayland Window) +Registered signal for owner 6b995930: 6b995788 -> 6b995a00 (owner: XWayland Window) +Registered signal for owner 6b995930: 6b9956f8 -> 6b995a68 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b996660: 6b997c08 -> 6b9966c8 (owner: XWayland Window) +Registered signal for owner 6b996660: 6b997c18 -> 6b996730 (owner: XWayland Window) +Registered signal for owner 6b996660: 6b997b88 -> 6b996798 (owner: XWayland Window) +Window 6b996660 destroyed, queueing. +Callback 3fc24b10 -> 6b996660, XWayland Window removed. +Callback 3fc24b10 -> 6b996660, XWayland Window removed. +Callback 3fc24b10 -> 6b996660, XWayland Window removed. +New XWayland Surface created. +Registered signal for owner 6b998450: 6b9980a8 -> 6b9984b8 (owner: XWayland Window) +Registered signal for owner 6b998450: 6b998ExecCommandLine: "'/home/sharkfin/.local/share/Steam/ubuntu12_32/steam'" +0b8 -> 6b998520 (owner: XWayland Window) +Registered signal for owner 6b998450: 6b998028 -> 6b998588 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b998c70: 6b997378 -> 6b998cd8 (owner: XWayland Window) +Registered signal for owner 6b998c70: 6b997388 -> 6b998d40 (owner: XWayland Window) +Registered signal for owner 6b998c70: 6b9972f8 -> 6b998da8 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b999930: 6b999818 -> 6b999998 (owner: XWayland Window) +Registered signal for owner 6b999930: 6b999828 -> 6b999a00 (owner: XWayland Window) +Registered signal for owner 6b999930: 6b999798 -> 6b999a68 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b99a5f0: 6b99a4d8 -> 6b99a658 (owner: XWayland Window) +Registered signal for owner 6b99a5f0: 6b99a4e8 -> 6b99a6c0 (owner: XWayland Window) +Registered signal for owner 6b99a5f0: 6b99a458 -> 6b99a728 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b99b2b0: 6b99b198 -> 6b99b318 (owner: XWayland Window) +Registered signal for owner 6b99b2b0: 6b99b1a8 -> 6b99b380 (owner: XWayland Window) +Registered signal for owner 6b99b2b0: 6b99b118 -> 6b99b3e8 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b99bf90: 6b99be78 -> 6b99bff8 (owner: XWayland Window) +Registered signal for owner 6b99bf90: 6b99be88 -> 6b99c060 (owner: XWayland Window) +Registered signal for owner 6b99bf90: 6b99bdf8 -> 6b99c0c8 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b99cc90: 6b99cb78 -> 6b99ccf8 (owner: XWayland Window) +Registered signal for owner 6b99cc90: 6b99cb88 -> 6b99cd60 (owner: XWayland Window) +Registered signal for owner 6b99cc90: 6b99caf8 -> 6b99cdc8 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b99d990: 6b99d878 -> 6b99d9f8 (owner: XWayland Window) +Registered signal for owner 6b99d990: 6b99d888 -> 6b99da60 (owner: XWayland Window) +Registered signal for owner 6b99d990: 6b99d7f8 -> 6b99dac8 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b99e780: 6b99e668 -> 6b99e7e8 (owner: XWayland Window) +Registered signal for owner 6b99e780: 6b99e678 -> 6b99e850 (owner: XWayland Window) +Registered signal for owner 6b99e780: 6b99e5e8 -> 6b99e8b8 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b99f770: 6b99f438 -> 6b99f7d8 (owner: XWayland Window) +Registered signal for owner 6b99f770: 6b99f448 -> 6b99f840 (owner: XWayland Window) +Registered signal for owner 6b99f770: 6b99f3b8 -> 6b99f8a8 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b9a0430: 6b9a0318 -> 6b9a0498 (owner: XWayland Window) +Registered signal for owner 6b9a0430: 6b9a0328 -> 6b9a0500 (owner: XWayland Window) +Registered signal for owner 6b9a0430: 6b9a0298 -> 6b9a0568 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b9a10f0: 6b9a0fd8 -> 6b9a1158 (owner: XWayland Window) +Registered signal for owner 6b9a10f0: 6b9a0fe8 -> 6b9a11c0 (owner: XWayland Window) +Registered signal for owner 6b9a10f0: 6b9a0f58 -> 6b9a1228 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b9a1df0: 6b9a1cd8 -> 6b9a1e58 (owner: XWayland Window) +Registered signal for owner 6b9a1df0: 6b9a1ce8 -> 6b9a1ec0 (owner: XWayland Window) +Registered signal for owner 6b9a1df0: 6b9a1c58 -> 6b9a1f28 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b9a2be0: 6b9a2ac8 -> 6b9a2c48 (owner: XWayland Window) +Registered signal for owner 6b9a2be0: 6b9a2ad8 -> 6b9a2cb0 (owner: XWayland Window) +Registered signal for owner 6b9a2be0: 6b9a2a48 -> 6b9a2d18 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b9a3bd0: 6b9a3898 -> 6b9a3c38 (owner: XWayland Window) +Registered signal for owner 6b9a3bd0: 6b9a38a8 -> 6b9a3ca0 (owner: XWayland Window) +Registered signal for owner 6b9a3bd0: 6b9a3818 -> 6b9a3d08 (owner: XWayland Window) +New XWayland Surface crassert_20220619161802_27.dmp[102620]: Finished uploading minidump (out-of-process): success = yes +assert_20220619161802_27.dmp[102620]: response: CrashID=bp-2036a3e1-9fbc-49e5-956f-2b5672220619 +assert_20220619161802_27.dmp[102620]: file ''/tmp/dumps/assert_20220619161802_27.dmp'', upload yes: ''CrashID=bp-2036a3e1-9fbc-49e5-956f-2b5672220619'' +System startup time: 6.43 seconds +BuildCompleteAppOverviewChange: 437 + +(steam:102309): Gtk-WARNING **: 16:18:04.484: gtk_disable_setlocale() must be called before gtk_init() + +(steam:102309): Gtk-WARNING **: 16:18:04.486: gtk_disable_setlocale() must be called before gtk_init() +RegisterForAppOverview 1: 21ms +RegisterForAppOverview 2: 21ms + +(steam:102309): Gtk-WARNING **: 16:18:04.982: gtk_disable_setlocale() must be called before gtk_init() +Installing breakpad exception handler for appid(steam)/version(1655513879) +The XKEYBOARD keymap compiler (xkbcomp) reports: +> Warning: Unsupported maximum keycode 708, clipping. +> X11 cannot support keycodes above 255. +Errors from xkbcomp are not fatal to the X server +eated. +Registered signal for owner 6b9a4890: 6b9a4778 -> 6b9a48f8 (owner: XWayland Window) +Registered signal for owner 6b9a4890: 6b9a4788 -> 6b9a4960 (owner: XWayland Window) +Registered signal for owner 6b9a4890: 6b9a46f8 -> 6b9a49c8 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b9a5550: 6b9a5438 -> 6b9a55b8 (owner: XWayland Window) +Registered signal for owner 6b9a5550: 6b9a5448 -> 6b9a5620 (owner: XWayland Window) +Registered signal for owner 6b9a5550: 6b9a53b8 -> 6b9a5688 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b9a6260: 6b9a6148 -> 6b9a62c8 (owner: XWayland Window) +Registered signal for owner 6b9a6260: 6b9a6158 -> 6b9a6330 (owner: XWayland Window) +Registered signal for owner 6b9a6260: 6b9a60c8 -> 6b9a6398 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b9a7050: 6b9a6f38 -> 6b9a70b8 (owner: XWayland Window) +Registered signal for owner 6b9a7050: 6b9a6f48 -> 6b9a7120 (owner: XWayland Window) +Registered signal for owner 6b9a7050: 6b9a6eb8 -> 6b9a7188 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b9a8040: 6b9a7d08 -> 6b9a80a8 (owner: XWayland Window) +Registered signal for owner 6b9a8040: 6b9a7d18 -> 6b9a8110 (owner: XWayland Window) +Registered signal for owner 6b9a8040: 6b9a7c88 -> 6b9a8178 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b9a8d00: 6b9a8be8 -> 6b9a8d68 (owner: XWayland Window) +Registered signal for owner 6b9a8d00: 6b9a8bf8 -> 6b9a8dd0 (owner: XWayland Window) +Registered signal for owner 6b9a8d00: 6b9a8b68 -> 6b9a8e38 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b9a99c0: 6b9a98a8 -> 6b9a9a28 (owner: XWayland Window) +Registered signal for owner 6b9a99c0: 6b9a98b8 -> 6b9a9a90 (owner: XWayland Window) +Registered signal for owner 6b9a99c0: 6b9a9828 -> 6b9a9af8 (owner: XWayland Window) +OPENINGON: 6b59e4c0, Workspace: 2, Monitor: 1 +Set keyboard focus to surface 6b9abe40, with window name: Steam +Registered signal for owner 6b8ad4f0: 6b9ac110 -> 6b8ad4f8 (owner: SurfaceTreeNode) +Registered signal for owner 6b8ad4f0: 6b9ac100 -> 6b8ad560 (owner: SurfaceTreeNode) +Registered signal for owner 6b8ad4f0: 6b9ac120 -> 6b8ad5c8 (owner: SurfaceTreeNode) +Creating a surfaceTree Root! (pWindow: 6b984c00) +Window got assigned a surfaceTreeNode 6b8ad4f0 +Registered signal for owner 6b984c00: 6b984ac8 -> 6b984e08 (owner: XWayland Window Late) +Registered signal for owner 6b984c00: 6b984ad8 -> 6b9850f0 (owner: XWayland Window Late) +Registered signal for owner 6b984c00: 6b984a78 -> 6b985158 (owner: XWayland Window Late) +Registered signal for owner 6b984c00: 6b984b08 -> 6b984da0 (owner: XWayland Window Late) +Map request dispatched, monitor DP-4, xywh: 2571.000000 418.000000 943.000000 1001.000000 +Window 6b976f80 destroyed, queueing. +Callback 3fc24b10 -> 6b976f80, XWayland Window removed. +Callback 3fc24b10 -> 6b976f80, XWayland Window removed. +Callback 3fc24b10 -> 6b976f80, XWayland Window removed. +Window 6b976760 destroyed, queueing. +Callback 3fc24b10 -> 6b976760, XWayland Window removed. +Callback 3fc24b10 -> 6b976760, XWayland Window removed. +Callback 3fc24b10 -> 6b976760, XWayland Window removed. +Cleanup: destroyed a window +Set keyboard focus to surface 6b9550a0, with window name: Alacritty +Window 6b984c00 set title to Steam +Window 6b94acd0 set title to Alacritty +Window 6b94acd0 set title to Alacritty +Window 6b94acd0 set title to Alacritty +Reloading the config! +Created a bezier curve, baked 200 points, mem usage: 3.20kB, time to bake: 38.81µs. Estimated average calc time: 0.02µs. +Set the keyboard layout to and variant to +Applying monitor rule for DP-3 +Not applying a new rule to DP-3 because it's already applied! +Applying monitor rule for DP-4 +Not applying a new rule to DP-4 because it's already applied! +New XWayland Surface created. +Registered signal for owner 6b7710f0: 6b7a64c8 -> 6b771158 (owner: XWayland Window) +Registered signal for owner 6b7710f0: 6b7a64d8 -> 6b7711c0 (owner: XWayland Window) +Registered signal for owner 6b7710f0: 6b7a6448 -> 6b771228 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b7a8300: 6b9ad558 -> 6b7a8368 (owner: XWayland Window) +Registered signal for owner 6b7a8300: 6b9ad568 -> 6b7a83d0 (owner: XWayland Window) +Registered signal for owner 6b7a8300: 6b9ad4d8 -> 6b7a8438 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b7a8b20: 6b9adec8 -> 6b7a8b88 (owner: XWayland Window) +Registered signal for owner 6b7a8b20: 6b9aded8 -> 6b7a8bf0 (owner: XWayland Window) +Registered signal for owner 6b7a8b20: 6b9ade48 -> 6b7a8c58 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b79ad20: 6b7828e8 -> 6b79ad88 (owner: XWayland Window) +Registered signal for owner 6b79ad20: 6b7828f8 -> 6b79adf0 (owner: XWayland Window) +Registered signal for owner 6b79ad20: 6b782868 -> 6b79ae58 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b79b540: 6b9aa778 -> 6b79b5a8 (owner: XWayland Window) +Registered signal for owner 6b79b540: 6b9aa788 -> 6b79b610 (owner: XWayland Window) +Registered signal for owner 6b79b540: 6b9aa6f8 -> 6b79b678 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b79bd60: 6b9ab048 -> 6b79bdc8 (owner: XWayland Window) +Registered signal for owner 6b79bd60: 6b9ab058 -> 6b79be30 (owner: XWayland Window) +Registered signal for owner 6b79bd60: 6b9aafc8 -> 6b79be98 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b79c580: 6b771a88 -> 6b79c5e8 (owner: XWayland Window) +Registered signal for owner 6b79c580: 6b771a98 -> 6b79c650 (owner: XWayland Window) +Registered signal for owner 6b79c580: 6b771a08 -> 6b79c6b8 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b79d440: 6b79cf18 -> 6b79d4a8 (owner: XWayland Window) +Registered signal for owner 6b79d440: 6b79cf28 -> 6b79d510 (owner: XWayland Window) +Registered signal for owner 6b79d440: 6b79ce98 -> 6b79d578 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b79def0: 6b79ddd8 -> 6b79df58 (owner: XWayland Window) +Registered signal for owner 6b79def0: 6b79dde8 -> 6b79dfc0 (owner: XWayland Window) +Registered signal for owner 6b79def0: 6b79dd58 -> 6b79e028 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b79ebb0: 6b79ea98 -> 6b79ec18 (owner: XWayland Window) +Registered signal for owner 6b79ebb0: 6b79eaa8 -> 6b79ec80 (owner: XWayland Window) +Registered signal for owner 6b79ebb0: 6b79ea18 -> 6b79ece8 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b79f870: 6b79f758 -> 6b79f8d8 (owner: XWayland Window) +Registered signal for owner 6b79f870: 6b79f768 -> 6b79f940 (owner: XWayland Window) +Registered signal for owner 6b79f870: 6b79f6d8 -> 6b79f9a8 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b7a0530: 6b7a0418 -> 6b7a0598 (owner: XWayland Window) +Registered signal for owner 6b7a0530: 6b7a0428 -> 6b7a0600 (owner: XWayland Window) +Registered signal for owner 6b7a0530: 6b7a0398 -> 6b7a0668 (owner: XWayland Window) +Window 6b79d440 destroyed, queueing. +Callback 3fc24b10 -> 6b79d440, XWayland Window removed. +Callback 3fc24b10 -> 6b79d440, XWayland Window removed. +Callback 3fc24b10 -> 6b79d440, XWayland Window removed. +Window 6b79c580 destroyed, queueing. +Callback 3fc24b10 -> 6b79c580, XWayland Window removed. +Callback 3fc24b10 -> 6b79c580, XWayland Window removed. +Callback 3fc24b10 -> 6b79c580, XWayland Window removed. +Window 6b79bd60 destroyed, queueing. +Callback 3fc24b10 -> 6b79bd60, XWayland Window removed. +Callback 3fc24b10 -> 6b79bd60, XWayland Window removed. +Callback 3fc24b10 -> 6b79bd60, XWayland Window removed. +Window 6b79b540 destroyed, queueing. +Callback 3fc24b10 -> 6b79b540, XWayland Window removed. +Callback 3fc24b10 -> 6b79b540, XWayland Window removed. +Callback 3fc24b10 -> 6b79b540, XWayland Window removed. +Window 6b79ebb0 destroyed, queueing. +Callback 3fc24b10 -> 6b79ebb0, XWayland Window removed. +CallbacThe XKEYBOARD keymap compiler (xkbcomp) reports: +> Warning: Unsupported maximum keycode 708, clipping. +> X11 cannot support keycodes above 255. +Errors from xkbcomp are not fatal to the X server +k 3fc24b10 -> 6b79ebb0, XWayland Window removed. +Callback 3fc24b10 -> 6b79ebb0, XWayland Window removed. +Window 6b7a0530 destroyed, queueing. +Callback 3fc24b10 -> 6b7a0530, XWayland Window removed. +Callback 3fc24b10 -> 6b7a0530, XWayland Window removed. +Callback 3fc24b10 -> 6b7a0530, XWayland Window removed. +Window 6b79f870 destroyed, queueing. +Callback 3fc24b10 -> 6b79f870, XWayland Window removed. +Callback 3fc24b10 -> 6b79f870, XWayland Window removed. +Callback 3fc24b10 -> 6b79f870, XWayland Window removed. +Window 6b79def0 destroyed, queueing. +Callback 3fc24b10 -> 6b79def0, XWayland Window removed. +Callback 3fc24b10 -> 6b79def0, XWayland Window removed. +Callback 3fc24b10 -> 6b79def0, XWayland Window removed. +Window 6b7710f0 destroyed, queueing. +Callback 3fc24b10 -> 6b7710f0, XWayland Window removed. +Callback 3fc24b10 -> 6b7710f0, XWayland Window removed. +Callback 3fc24b10 -> 6b7710f0, XWayland Window removed. +Window 6b7a8300 destroyed, queueing. +Callback 3fc24b10 -> 6b7a8300, XWayland Window removed. +Callback 3fc24b10 -> 6b7a8300, XWayland Window removed. +Callback 3fc24b10 -> 6b7a8300, XWayland Window removed. +Window 6b79ad20 destroyed, queueing. +Callback 3fc24b10 -> 6b79ad20, XWayland Window removed. +Callback 3fc24b10 -> 6b79ad20, XWayland Window removed. +Callback 3fc24b10 -> 6b79ad20, XWayland Window removed. +Window 6b7a8b20 destroyed, queueing. +Callback 3fc24b10 -> 6b7a8b20, XWayland Window removed. +Callback 3fc24b10 -> 6b7a8b20, XWayland Window removed. +Callback 3fc24b10 -> 6b7a8b20, XWayland Window removed. +Set keyboard focus to surface 6b9abe40, with window name: Steam +OPENINGON: 6b95a420, Workspace: 1, Monitor: 0 +Set keyboard focus to surface 6b976ba0, with window name: +Registered signal for owner 6b87d8f0: 6b976e70 -> 6b87d8f8 (owner: SurfaceTreeNode) +Registered signal for owner 6b87d8f0: 6b976e60 -> 6b87d960 (owner: SurfaceTreeNode) +Registered signal for owner 6b87d8f0: 6b976e80 -> 6b87d9c8 (owner: SurfaceTreeNode) +Creating a surfaceTree Root! (pWindow: 6b98ec20) +Window got assigned a surfaceTreeNode 6b87d8f0 +Registered signal for owner 6b98ec20: 6b98eae8 -> 6b98ee28 (owner: XWayland Window Late) +Registered signal for owner 6b98ec20: 6b98eaf8 -> 6b98f110 (owner: XWayland Window Late) +Registered signal for owner 6b98ec20: 6b98ea98 -> 6b98f178 (owner: XWayland Window Late) +Registered signal for owner 6b98ec20: 6b98eb28 -> 6b98edc0 (owner: XWayland Window Late) +Map request dispatched, monitor DP-3, xywh: 211.000000 140.000000 120.000000 75.000000 +Set keyboard focus to surface 6b9abe40, with window name: Steam +Window 6b98ec20 unmapped +Unregistered late callbacks XWL: 6b98ee28 6b98f110 6b98f178 6b98edc0 +Callback 3fc24a90 -> 6b98ec20, XWayland Window Late removed. +Callback 3fc24a90 -> 6b98ec20, XWayland Window Late removed. +Callback 3fc24a90 -> 6b98ec20, XWayland Window Late removed. +Callback 3fc24a90 -> 6b98ec20, XWayland Window Late removed. +Framebuffer created, status 36053 +Destroying the SubSurface tree of unmapped window 6b98ec20 +Callback 3fc24a20 -> 6b87d8f0, SurfaceTreeNode removed. +Callback 3fc24a20 -> 6b87d8f0, SurfaceTreeNode removed. +Callback 3fc24a20 -> 6b87d8f0, SurfaceTreeNode removed. +SurfaceTree Node removed +Set keyboard focus to surface 6b9aca20, with window name: +Registered signal for owner 6b87d8f0: 6b9accf0 -> 6b87d8f8 (owner: SurfaceTreeNode) +Registered signal for owner 6b87d8f0: 6b9acce0 -> 6b87d960 (owner: SurfaceTreeNode) +Registered signal for owner 6b87d8f0: 6b9acd00 -> 6b87d9c8 (owner: SurfaceTreeNode) +Creating a surfaceTree Root! (pWindow: 6b98ec20) +Window got assigned a surfaceTreeNode 6b87d8f0 +Registered signal for owner 6b98ec20: 6b98eae8 -> 6b98ee28 (owner: XWayland Window Late) +Registered signal for owner 6b98ec20: 6b98eaf8 -> 6b98f110 (owner: XWayland Window Late) +Registered signal for owner 6b98ec20: 6b98ea98 -> 6b98f178 (owner: XWayland Window Late) +Registered signal for owner 6b98ec20: 6b98eb28 -> 6b98edc0 (owner: XWayland Window Late) +Map request dispatched, monitor DP-3, xywh: 187.000000 135.000000 120.000000 75.000000 +Set keyboard focus to surface 6b9abe40, with window name: GameAction [AppID 677620, ActionID 1] : LaunchApp changed task to ProcessingInstallScript with "" +00:00:20.606 [ERROR] [xwayland/xwm.c:1546] xcb error: op ConfigureWindow (no minor), code Value (no extension), sequence 2356, value 0 +GameAction [AppID 677620, ActionID 1] : LaunchApp changed task to SynchronizingCloud with "" +GameAction [AppID 677620, ActionID 1] : LaunchApp changed task to SynchronizingControllerConfig with "" +GameAction [AppID 677620, ActionID 1] : LaunchApp changed task to SiteLicenseSeatCheckout with "" +GameAction [AppID 677620, ActionID 1] : LaunchApp changed task to CreatingProcess with "" +GameAction [AppID 677620, ActionID 1] : LaunchApp waiting for user response to CreatingProcess "" +GameAction [AppID 677620, ActionID 1] : LaunchApp continues with user response "CreatingProcess" +/bin/sh\0-c\0/home/sharkfin/.local/share/Steam/ubuntu12_32/reaper SteamLaunch AppId=677620 -- '/mnt/games/steamLibrary/steamapps/common/Splitgate/PortalWars.sh'\0 +Game process added : AppID 677620 "/home/sharkfin/.local/share/Steam/ubuntu12_32/reaper SteamLaunch AppId=677620 -- '/mnt/games/steamLibrary/steamapps/common/Splitgate/PortalWars.sh'", ProcID 103234, IP 0.0.0.0:0 +ERROR: ld.so: object '/home/sharkfin/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored. +ERROR: ld.so: object '/home/sharkfin/.local/share/Steam/ubuntu12_64/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS64): ignored. +ERROR: ld.so: object '/home/sharkfin/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored. +pid 103237 != 103235, skipping destruction (fork without exec?) +ERROR: ld.so: object '/home/sharkfin/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored. +GameAction [AppID 677620, ActionID 1] : LaunchApp changed task to WaitingGameWindow with "" +GameAction [AppID 677620, ActionID 1] : LaunchApp changed task to Completed with "" +ERROR: ld.so: object '/home/sharkfin/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored. +pid 103236 != 103235, skipping destruction (fork without exec?) +ERROR: ld.so: object '/home/sharkfin/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored. +ERROR: ld.so: object '/home/sharkfin/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored. +ERROR: ld.so: object '/home/sharkfin/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored. +Looking for binary: ../../../PortalWars/Config/BinaryConfig.ini +4.27.2-8813+++PortalWars+Main 522 0 +Disabling core dumps. +LogConsoleResponse: Display: Failed to find resolution value strings in scalability ini. Falling back to default. +LogConsoleResponse: Display: Failed to find resolution value strings in scalability ini. Falling back to default. +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/global.utoc +LogIoDispatcher: Display: Mounting container 'global' in location slot 0 +LogPakFile: Display: Initialized I/O dispatcher +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk66_s4-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk66_s4-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk66_s4-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk66_s4-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk66_s4-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk66_s4-LinuxNoEditor.pak' (chunk index 66, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:66 Root:/ File:../../../PortalWars/Content/Paks/pakchunk66_s4-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000006 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk66_s3-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk66_s3-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk66_s3-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk66_s3-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk66_s3-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk66_s3-LinuxNoEditor.pak' (chunk index 66, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:66 Root:/ File:../../../PortalWars/Content/Paks/pakchunk66_s3-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000003 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk66_s2-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk66_s2-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk66_s2-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk66_s2-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk66_s2-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk66_s2-LinuxNoEditor.pak' (chunk index 66, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:66 Root:/ File:../../../PortalWars/Content/Paks/pakchunk66_s2-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk66_s1-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk66_s1-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk66_s1-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk66_s1-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk66_s1-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk66_s1-LinuxNoEditor.pak' (chunk index 66, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:66 Root:/ File:../../../PortalWars/Content/Paks/pakchunk66_s1-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000003 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk66-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk66-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk66-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk66-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk66-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk66-LinuxNoEditor.pak' (chunk index 66, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:66 Root:/ File:../../../PortalWars/Content/Paks/pakchunk66-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000003 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk65_s4-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk65_s4-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk65_s4-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk65_s4-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk65_s4-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk65_s4-LinuxNoEditor.pak' (chunk index 65, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:65 Root:/ File:../../../PortalWars/Content/Paks/pakchunk65_s4-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk65_s3-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk65_s3-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk65_s3-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk65_s3-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk65_s3-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk65_s3-LinuxNoEditor.pak' (chunk index 65, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:65 Root:/ File:../../../PortalWars/Content/Paks/pakchunk65_s3-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk65_s2-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk65_s2-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk65_s2-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk65_s2-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk65_s2-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk65_s2-LinuxNoEditor.pak' (chunk index 65, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:65 Root:/ File:../../../PortalWars/Content/Paks/pakchunk65_s2-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk65_s1-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk65_s1-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk65_s1-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk65_s1-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk65_s1-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk65_s1-LinuxNoEditor.pak' (chunk index 65, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:65 Root:/ File:../../../PortalWars/Content/Paks/pakchunk65_s1-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk65-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk65-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk65-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk65-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk65-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk65-LinuxNoEditor.pak' (chunk index 65, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:65 Root:/ File:../../../PortalWars/Content/Paks/pakchunk65-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk64_s4-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk64_s4-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk64_s4-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk64_s4-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk64_s4-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk64_s4-LinuxNoEditor.pak' (chunk index 64, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:64 Root:/ File:../../../PortalWars/Content/Paks/pakchunk64_s4-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000003 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk64_s3-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk64_s3-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk64_s3-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk64_s3-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk64_s3-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk64_s3-LinuxNoEditor.pak' (chunk index 64, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:64 Root:/ File:../../../PortalWars/Content/Paks/pakchunk64_s3-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk64_s2-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk64_s2-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk64_s2-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk64_s2-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk64_s2-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk64_s2-LinuxNoEditor.pak' (chunk index 64, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:64 Root:/ File:../../../PortalWars/Content/Paks/pakchunk64_s2-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk64_s1-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk64_s1-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk64_s1-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk64_s1-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk64_s1-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk64_s1-LinuxNoEditor.pak' (chunk index 64, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:64 Root:/ File:../../../PortalWars/Content/Paks/pakchunk64_s1-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk64-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk64-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk64-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk64-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk64-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk64-LinuxNoEditor.pak' (chunk index 64, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:64 Root:/ File:../../../PortalWars/Content/Paks/pakchunk64-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk63_s2-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk63_s2-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk63_s2-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk63_s2-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk63_s2-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk63_s2-LinuxNoEditor.pak' (chunk index 63, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:63 Root:/ File:../../../PortalWars/Content/Paks/pakchunk63_s2-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk63_s1-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk63_s1-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk63_s1-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk63_s1-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk63_s1-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk63_s1-LinuxNoEditor.pak' (chunk index 63, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:63 Root:/ File:../../../PortalWars/Content/Paks/pakchunk63_s1-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk63-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk63-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk63-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk63-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk63-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk63-LinuxNoEditor.pak' (chunk index 63, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:63 Root:/ File:../../../PortalWars/Content/Paks/pakchunk63-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000007 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk62_s4-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk62_s4-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk62_s4-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk62_s4-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk62_s4-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk62_s4-LinuxNoEditor.pak' (chunk index 62, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:62 Root:/ File:../../../PortalWars/Content/Paks/pakchunk62_s4-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000003 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk62_s3-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk62_s3-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk62_s3-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk62_s3-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk62_s3-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk62_s3-LinuxNoEditor.pak' (chunk index 62, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:62 Root:/ File:../../../PortalWars/Content/Paks/pakchunk62_s3-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk62_s2-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk62_s2-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk62_s2-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk62_s2-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk62_s2-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk62_s2-LinuxNoEditor.pak' (chunk index 62, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:62 Root:/ File:../../../PortalWars/Content/Paks/pakchunk62_s2-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk62_s1-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk62_s1-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk62_s1-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk62_s1-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk62_s1-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk62_s1-LinuxNoEditor.pak' (chunk index 62, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:62 Root:/ File:../../../PortalWars/Content/Paks/pakchunk62_s1-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk62-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk62-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk62-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk62-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk62-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk62-LinuxNoEditor.pak' (chunk index 62, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:62 Root:/ File:../../../PortalWars/Content/Paks/pakchunk62-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk61_s3-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk61_s3-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk61_s3-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk61_s3-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk61_s3-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk61_s3-LinuxNoEditor.pak' (chunk index 61, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:61 Root:/ File:../../../PortalWars/Content/Paks/pakchunk61_s3-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk61_s2-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk61_s2-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk61_s2-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk61_s2-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk61_s2-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk61_s2-LinuxNoEditor.pak' (chunk index 61, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:61 Root:/ File:../../../PortalWars/Content/Paks/pakchunk61_s2-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000003 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk61_s1-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk61_s1-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk61_s1-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk61_s1-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk61_s1-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk61_s1-LinuxNoEditor.pak' (chunk index 61, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:61 Root:/ File:../../../PortalWars/Content/Paks/pakchunk61_s1-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk61-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk61-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk61-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk61-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk61-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk61-LinuxNoEditor.pak' (chunk index 61, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:61 Root:/ File:../../../PortalWars/Content/Paks/pakchunk61-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk60_s3-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk60_s3-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk60_s3-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk60_s3-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk60_s3-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk60_s3-LinuxNoEditor.pak' (chunk index 60, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:60 Root:/ File:../../../PortalWars/Content/Paks/pakchunk60_s3-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk60_s2-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk60_s2-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk60_s2-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk60_s2-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk60_s2-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk60_s2-LinuxNoEditor.pak' (chunk index 60, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:60 Root:/ File:../../../PortalWars/Content/Paks/pakchunk60_s2-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000003 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk60_s1-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk60_s1-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk60_s1-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk60_s1-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk60_s1-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk60_s1-LinuxNoEditor.pak' (chunk index 60, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:60 Root:/ File:../../../PortalWars/Content/Paks/pakchunk60_s1-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk60-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk60-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk60-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk60-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk60-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk60-LinuxNoEditor.pak' (chunk index 60, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:60 Root:/ File:../../../PortalWars/Content/Paks/pakchunk60-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk59_s3-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk59_s3-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk59_s3-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk59_s3-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk59_s3-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk59_s3-LinuxNoEditor.pak' (chunk index 59, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:59 Root:/ File:../../../PortalWars/Content/Paks/pakchunk59_s3-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk59_s2-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk59_s2-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk59_s2-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk59_s2-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk59_s2-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk59_s2-LinuxNoEditor.pak' (chunk index 59, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:59 Root:/ File:../../../PortalWars/Content/Paks/pakchunk59_s2-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk59_s1-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk59_s1-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk59_s1-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk59_s1-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk59_s1-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk59_s1-LinuxNoEditor.pak' (chunk index 59, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:59 Root:/ File:../../../PortalWars/Content/Paks/pakchunk59_s1-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk59-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk59-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk59-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk59-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk59-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk59-LinuxNoEditor.pak' (chunk index 59, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:59 Root:/ File:../../../PortalWars/Content/Paks/pakchunk59-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk58_s2-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk58_s2-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk58_s2-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk58_s2-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk58_s2-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk58_s2-LinuxNoEditor.pak' (chunk index 58, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:58 Root:/ File:../../../PortalWars/Content/Paks/pakchunk58_s2-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk58_s1-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk58_s1-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk58_s1-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk58_s1-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk58_s1-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk58_s1-LinuxNoEditor.pak' (chunk index 58, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:58 Root:/ File:../../../PortalWars/Content/Paks/pakchunk58_s1-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk58-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk58-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk58-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk58-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk58-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk58-LinuxNoEditor.pak' (chunk index 58, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:58 Root:/ File:../../../PortalWars/Content/Paks/pakchunk58-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk57_s2-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk57_s2-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk57_s2-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk57_s2-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk57_s2-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk57_s2-LinuxNoEditor.pak' (chunk index 57, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:57 Root:/ File:../../../PortalWars/Content/Paks/pakchunk57_s2-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk57_s1-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk57_s1-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk57_s1-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk57_s1-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk57_s1-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk57_s1-LinuxNoEditor.pak' (chunk index 57, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:57 Root:/ File:../../../PortalWars/Content/Paks/pakchunk57_s1-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000003 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk57-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk57-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk57-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk57-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk57-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk57-LinuxNoEditor.pak' (chunk index 57, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:57 Root:/ File:../../../PortalWars/Content/Paks/pakchunk57-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk56_s3-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk56_s3-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk56_s3-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk56_s3-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk56_s3-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk56_s3-LinuxNoEditor.pak' (chunk index 56, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:56 Root:/ File:../../../PortalWars/Content/Paks/pakchunk56_s3-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk56_s2-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk56_s2-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk56_s2-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk56_s2-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk56_s2-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk56_s2-LinuxNoEditor.pak' (chunk index 56, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:56 Root:/ File:../../../PortalWars/Content/Paks/pakchunk56_s2-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk56_s1-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk56_s1-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk56_s1-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk56_s1-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk56_s1-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk56_s1-LinuxNoEditor.pak' (chunk index 56, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:56 Root:/ File:../../../PortalWars/Content/Paks/pakchunk56_s1-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk56-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk56-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk56-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk56-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk56-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk56-LinuxNoEditor.pak' (chunk index 56, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:56 Root:/ File:../../../PortalWars/Content/Paks/pakchunk56-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk55_s3-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk55_s3-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk55_s3-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk55_s3-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk55_s3-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk55_s3-LinuxNoEditor.pak' (chunk index 55, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:55 Root:/ File:../../../PortalWars/Content/Paks/pakchunk55_s3-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000003 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk55_s2-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk55_s2-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk55_s2-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk55_s2-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk55_s2-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk55_s2-LinuxNoEditor.pak' (chunk index 55, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:55 Root:/ File:../../../PortalWars/Content/Paks/pakchunk55_s2-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000003 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk55_s1-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk55_s1-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk55_s1-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk55_s1-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk55_s1-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk55_s1-LinuxNoEditor.pak' (chunk index 55, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:55 Root:/ File:../../../PortalWars/Content/Paks/pakchunk55_s1-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk55-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk55-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk55-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk55-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk55-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk55-LinuxNoEditor.pak' (chunk index 55, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:55 Root:/ File:../../../PortalWars/Content/Paks/pakchunk55-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk54_s3-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk54_s3-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk54_s3-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk54_s3-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk54_s3-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk54_s3-LinuxNoEditor.pak' (chunk index 54, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:54 Root:/ File:../../../PortalWars/Content/Paks/pakchunk54_s3-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000017 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk54_s2-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk54_s2-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk54_s2-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk54_s2-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk54_s2-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk54_s2-LinuxNoEditor.pak' (chunk index 54, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:54 Root:/ File:../../../PortalWars/Content/Paks/pakchunk54_s2-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk54_s1-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk54_s1-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk54_s1-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk54_s1-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk54_s1-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk54_s1-LinuxNoEditor.pak' (chunk index 54, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:54 Root:/ File:../../../PortalWars/Content/Paks/pakchunk54_s1-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000003 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk54-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk54-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk54-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk54-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk54-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk54-LinuxNoEditor.pak' (chunk index 54, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:54 Root:/ File:../../../PortalWars/Content/Paks/pakchunk54-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk53_s2-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk53_s2-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk53_s2-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk53_s2-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk53_s2-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk53_s2-LinuxNoEditor.pak' (chunk index 53, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:53 Root:/ File:../../../PortalWars/Content/Paks/pakchunk53_s2-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk53_s1-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk53_s1-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk53_s1-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk53_s1-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk53_s1-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk53_s1-LinuxNoEditor.pak' (chunk index 53, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:53 Root:/ File:../../../PortalWars/Content/Paks/pakchunk53_s1-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000003 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk53-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk53-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk53-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk53-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk53-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk53-LinuxNoEditor.pak' (chunk index 53, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:53 Root:/ File:../../../PortalWars/Content/Paks/pakchunk53-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk52_s2-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk52_s2-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk52_s2-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk52_s2-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk52_s2-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk52_s2-LinuxNoEditor.pak' (chunk index 52, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:52 Root:/ File:../../../PortalWars/Content/Paks/pakchunk52_s2-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000003 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk52_s1-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk52_s1-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk52_s1-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk52_s1-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk52_s1-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk52_s1-LinuxNoEditor.pak' (chunk index 52, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:52 Root:/ File:../../../PortalWars/Content/Paks/pakchunk52_s1-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk52-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk52-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk52-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk52-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk52-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk52-LinuxNoEditor.pak' (chunk index 52, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:52 Root:/ File:../../../PortalWars/Content/Paks/pakchunk52-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk51_s1-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk51_s1-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk51_s1-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk51_s1-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk51_s1-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk51_s1-LinuxNoEditor.pak' (chunk index 51, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:51 Root:/ File:../../../PortalWars/Content/Paks/pakchunk51_s1-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk51-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk51-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk51-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk51-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk51-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk51-LinuxNoEditor.pak' (chunk index 51, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:51 Root:/ File:../../../PortalWars/Content/Paks/pakchunk51-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk50-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk50-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk50-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk50-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk50-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk50-LinuxNoEditor.pak' (chunk index 50, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:50 Root:/ File:../../../PortalWars/Content/Paks/pakchunk50-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk42_s1-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk42_s1-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk42_s1-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk42_s1-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk42_s1-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk42_s1-LinuxNoEditor.pak' (chunk index 42, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:42 Root:/ File:../../../PortalWars/Content/Paks/pakchunk42_s1-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk42-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk42-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk42-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk42-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk42-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk42-LinuxNoEditor.pak' (chunk index 42, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:42 Root:/ File:../../../PortalWars/Content/Paks/pakchunk42-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk41-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk41-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk41-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk41-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk41-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk41-LinuxNoEditor.pak' (chunk index 41, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:41 Root:/ File:../../../PortalWars/Content/Paks/pakchunk41-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000003 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk40_s2-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk40_s2-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk40_s2-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk40_s2-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk40_s2-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk40_s2-LinuxNoEditor.pak' (chunk index 40, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:40 Root:/ File:../../../PortalWars/Content/Paks/pakchunk40_s2-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000003 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk40_s1-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk40_s1-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk40_s1-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk40_s1-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk40_s1-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk40_s1-LinuxNoEditor.pak' (chunk index 40, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:40 Root:/ File:../../../PortalWars/Content/Paks/pakchunk40_s1-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk40-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk40-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk40-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk40-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk40-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk40-LinuxNoEditor.pak' (chunk index 40, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:40 Root:/ File:../../../PortalWars/Content/Paks/pakchunk40-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk35-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk35-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk35-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk35-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk35-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk35-LinuxNoEditor.pak' (chunk index 35, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:35 Root:/ File:../../../PortalWars/Content/Paks/pakchunk35-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk3-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk3-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=8624 +LogPakFile: PakFile PathHashIndexSize=3392 +LogPakFile: PakFile FullDirectoryIndexSize=6592 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk3-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk3-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk3-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk3-LinuxNoEditor.pak' (chunk index 3, root '../../../PortalWars/Content/WwiseAudio/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:3 Root:../../../PortalWars/Content/WwiseAudio/ File:../../../PortalWars/Content/Paks/pakchunk3-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000003 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk28-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk28-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk28-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk28-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk28-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk28-LinuxNoEditor.pak' (chunk index 28, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:28 Root:/ File:../../../PortalWars/Content/Paks/pakchunk28-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk27-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk27-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk27-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk27-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk27-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk27-LinuxNoEditor.pak' (chunk index 27, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:27 Root:/ File:../../../PortalWars/Content/Paks/pakchunk27-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s9-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s9-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s9-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk26_s9-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s9-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s9-LinuxNoEditor.pak' (chunk index 26, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s9-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s8-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s8-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s8-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk26_s8-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s8-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s8-LinuxNoEditor.pak' (chunk index 26, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s8-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000003 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s7-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s7-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s7-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk26_s7-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s7-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s7-LinuxNoEditor.pak' (chunk index 26, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s7-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s6-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s6-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s6-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk26_s6-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s6-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s6-LinuxNoEditor.pak' (chunk index 26, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s6-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s5-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s5-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s5-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk26_s5-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s5-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s5-LinuxNoEditor.pak' (chunk index 26, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s5-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000003 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s4-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s4-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s4-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk26_s4-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s4-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s4-LinuxNoEditor.pak' (chunk index 26, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s4-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000003 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s39-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s39-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s39-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk26_s39-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s39-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s39-LinuxNoEditor.pak' (chunk index 26, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s39-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s38-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s38-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s38-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk26_s38-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s38-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s38-LinuxNoEditor.pak' (chunk index 26, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s38-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s37-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s37-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s37-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk26_s37-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s37-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s37-LinuxNoEditor.pak' (chunk index 26, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s37-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s36-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s36-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s36-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk26_s36-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s36-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s36-LinuxNoEditor.pak' (chunk index 26, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s36-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000003 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s35-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s35-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s35-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk26_s35-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s35-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s35-LinuxNoEditor.pak' (chunk index 26, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s35-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s34-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s34-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s34-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk26_s34-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s34-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s34-LinuxNoEditor.pak' (chunk index 26, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s34-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000003 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s33-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s33-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s33-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk26_s33-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s33-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s33-LinuxNoEditor.pak' (chunk index 26, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s33-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s32-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s32-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s32-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk26_s32-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s32-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s32-LinuxNoEditor.pak' (chunk index 26, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s32-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s31-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s31-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s31-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk26_s31-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s31-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s31-LinuxNoEditor.pak' (chunk index 26, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s31-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s30-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s30-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s30-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk26_s30-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s30-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s30-LinuxNoEditor.pak' (chunk index 26, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s30-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s3-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s3-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s3-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk26_s3-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s3-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s3-LinuxNoEditor.pak' (chunk index 26, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s3-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s29-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s29-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s29-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk26_s29-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s29-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s29-LinuxNoEditor.pak' (chunk index 26, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s29-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s28-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s28-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s28-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk26_s28-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s28-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s28-LinuxNoEditor.pak' (chunk index 26, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s28-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000003 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s27-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s27-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s27-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk26_s27-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s27-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s27-LinuxNoEditor.pak' (chunk index 26, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s27-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000004 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s26-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s26-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s26-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk26_s26-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s26-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s26-LinuxNoEditor.pak' (chunk index 26, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s26-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s25-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s25-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s25-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk26_s25-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s25-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s25-LinuxNoEditor.pak' (chunk index 26, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s25-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s24-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s24-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s24-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk26_s24-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s24-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s24-LinuxNoEditor.pak' (chunk index 26, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s24-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s23-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s23-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s23-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk26_s23-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s23-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s23-LinuxNoEditor.pak' (chunk index 26, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s23-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s22-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s22-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s22-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk26_s22-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s22-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s22-LinuxNoEditor.pak' (chunk index 26, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s22-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s21-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s21-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s21-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk26_s21-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s21-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s21-LinuxNoEditor.pak' (chunk index 26, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s21-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s20-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s20-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s20-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk26_s20-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s20-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s20-LinuxNoEditor.pak' (chunk index 26, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s20-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s2-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s2-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s2-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk26_s2-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s2-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s2-LinuxNoEditor.pak' (chunk index 26, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s2-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s19-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s19-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s19-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk26_s19-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s19-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s19-LinuxNoEditor.pak' (chunk index 26, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s19-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s18-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s18-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s18-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk26_s18-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s18-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s18-LinuxNoEditor.pak' (chunk index 26, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s18-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s17-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s17-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s17-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk26_s17-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s17-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s17-LinuxNoEditor.pak' (chunk index 26, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s17-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s16-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s16-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s16-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk26_s16-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s16-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s16-LinuxNoEditor.pak' (chunk index 26, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s16-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s15-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s15-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s15-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk26_s15-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s15-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s15-LinuxNoEditor.pak' (chunk index 26, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s15-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s14-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s14-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s14-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk26_s14-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s14-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s14-LinuxNoEditor.pak' (chunk index 26, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s14-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s13-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s13-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s13-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk26_s13-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s13-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s13-LinuxNoEditor.pak' (chunk index 26, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s13-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000003 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s12-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s12-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s12-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk26_s12-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s12-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s12-LinuxNoEditor.pak' (chunk index 26, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s12-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s11-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s11-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s11-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk26_s11-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s11-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s11-LinuxNoEditor.pak' (chunk index 26, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s11-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000003 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s10-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s10-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s10-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk26_s10-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s10-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s10-LinuxNoEditor.pak' (chunk index 26, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s10-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000004 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk26-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26-LinuxNoEditor.pak' (chunk index 26, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk25optional-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk25optional-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk25optional-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk25optional-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk25optional-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk25optional-LinuxNoEditor.pak' (chunk index 25, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:25 Root:/ File:../../../PortalWars/Content/Paks/pakchunk25optional-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk25_s2-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk25_s2-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk25_s2-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk25_s2-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk25_s2-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk25_s2-LinuxNoEditor.pak' (chunk index 25, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:25 Root:/ File:../../../PortalWars/Content/Paks/pakchunk25_s2-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk25_s1-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk25_s1-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=736 +LogPakFile: PakFile PathHashIndexSize=368 +LogPakFile: PakFile FullDirectoryIndexSize=1184 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk25_s1-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk25_s1-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk25_s1-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk25_s1-LinuxNoEditor.pak' (chunk index 25, root '../../../PortalWars/Content/UI/Fonts/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:25 Root:../../../PortalWars/Content/UI/Fonts/ File:../../../PortalWars/Content/Paks/pakchunk25_s1-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000039 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk25-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk25-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk25-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk25-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk25-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk25-LinuxNoEditor.pak' (chunk index 25, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:25 Root:/ File:../../../PortalWars/Content/Paks/pakchunk25-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk20_s3-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk20_s3-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk20_s3-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk20_s3-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk20_s3-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk20_s3-LinuxNoEditor.pak' (chunk index 20, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:20 Root:/ File:../../../PortalWars/Content/Paks/pakchunk20_s3-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000003 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk20_s2-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk20_s2-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk20_s2-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk20_s2-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk20_s2-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk20_s2-LinuxNoEditor.pak' (chunk index 20, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:20 Root:/ File:../../../PortalWars/Content/Paks/pakchunk20_s2-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000004 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk20_s1-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk20_s1-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk20_s1-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk20_s1-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk20_s1-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk20_s1-LinuxNoEditor.pak' (chunk index 20, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:20 Root:/ File:../../../PortalWars/Content/Paks/pakchunk20_s1-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk20-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk20-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk20-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk20-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk20-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk20-LinuxNoEditor.pak' (chunk index 20, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:20 Root:/ File:../../../PortalWars/Content/Paks/pakchunk20-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk2-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk2-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=464 +LogPakFile: PakFile PathHashIndexSize=736 +LogPakFile: PakFile FullDirectoryIndexSize=528 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk2-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk2-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk2-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk2-LinuxNoEditor.pak' (chunk index 2, root '../../../PortalWars/Content/Localization/Game/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:2 Root:../../../PortalWars/Content/Localization/Game/ File:../../../PortalWars/Content/Paks/pakchunk2-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000003 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk18-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk18-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=496 +LogPakFile: PakFile PathHashIndexSize=224 +LogPakFile: PakFile FullDirectoryIndexSize=624 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk18-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk18-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk18-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk18-LinuxNoEditor.pak' (chunk index 18, root '../../../PortalWars/Content/UI/Fonts/Montserrat/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:18 Root:../../../PortalWars/Content/UI/Fonts/Montserrat/ File:../../../PortalWars/Content/Paks/pakchunk18-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk17_s9-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk17_s9-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk17_s9-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk17_s9-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk17_s9-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk17_s9-LinuxNoEditor.pak' (chunk index 17, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:17 Root:/ File:../../../PortalWars/Content/Paks/pakchunk17_s9-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk17_s8-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk17_s8-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk17_s8-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk17_s8-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk17_s8-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk17_s8-LinuxNoEditor.pak' (chunk index 17, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:17 Root:/ File:../../../PortalWars/Content/Paks/pakchunk17_s8-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk17_s7-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk17_s7-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk17_s7-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk17_s7-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk17_s7-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk17_s7-LinuxNoEditor.pak' (chunk index 17, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:17 Root:/ File:../../../PortalWars/Content/Paks/pakchunk17_s7-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk17_s6-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk17_s6-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk17_s6-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk17_s6-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk17_s6-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk17_s6-LinuxNoEditor.pak' (chunk index 17, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:17 Root:/ File:../../../PortalWars/Content/Paks/pakchunk17_s6-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk17_s5-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk17_s5-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk17_s5-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk17_s5-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk17_s5-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk17_s5-LinuxNoEditor.pak' (chunk index 17, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:17 Root:/ File:../../../PortalWars/Content/Paks/pakchunk17_s5-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk17_s4-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk17_s4-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk17_s4-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk17_s4-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk17_s4-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk17_s4-LinuxNoEditor.pak' (chunk index 17, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:17 Root:/ File:../../../PortalWars/Content/Paks/pakchunk17_s4-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk17_s3-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk17_s3-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk17_s3-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk17_s3-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk17_s3-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk17_s3-LinuxNoEditor.pak' (chunk index 17, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:17 Root:/ File:../../../PortalWars/Content/Paks/pakchunk17_s3-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk17_s2-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk17_s2-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk17_s2-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk17_s2-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk17_s2-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk17_s2-LinuxNoEditor.pak' (chunk index 17, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:17 Root:/ File:../../../PortalWars/Content/Paks/pakchunk17_s2-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk17_s1-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk17_s1-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk17_s1-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk17_s1-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk17_s1-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk17_s1-LinuxNoEditor.pak' (chunk index 17, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:17 Root:/ File:../../../PortalWars/Content/Paks/pakchunk17_s1-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000003 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk17-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk17-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk17-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk17-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk17-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk17-LinuxNoEditor.pak' (chunk index 17, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:17 Root:/ File:../../../PortalWars/Content/Paks/pakchunk17-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s9-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s9-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s9-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk16_s9-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s9-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s9-LinuxNoEditor.pak' (chunk index 16, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s9-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s8-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s8-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s8-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk16_s8-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s8-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s8-LinuxNoEditor.pak' (chunk index 16, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s8-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s7-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s7-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s7-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk16_s7-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s7-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s7-LinuxNoEditor.pak' (chunk index 16, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s7-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s6-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s6-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s6-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk16_s6-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s6-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s6-LinuxNoEditor.pak' (chunk index 16, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s6-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s5-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s5-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s5-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk16_s5-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s5-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s5-LinuxNoEditor.pak' (chunk index 16, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s5-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s4-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s4-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s4-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk16_s4-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s4-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s4-LinuxNoEditor.pak' (chunk index 16, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s4-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000003 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s33-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s33-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s33-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk16_s33-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s33-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s33-LinuxNoEditor.pak' (chunk index 16, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s33-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s32-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s32-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s32-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk16_s32-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s32-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s32-LinuxNoEditor.pak' (chunk index 16, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s32-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s31-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s31-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s31-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk16_s31-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s31-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s31-LinuxNoEditor.pak' (chunk index 16, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s31-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000003 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s30optional-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s30optional-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s30optional-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk16_s30optional-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s30optional-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s30optional-LinuxNoEditor.pak' (chunk index 16, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s30optional-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s30-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s30-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s30-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk16_s30-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s30-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s30-LinuxNoEditor.pak' (chunk index 16, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s30-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s3-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s3-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s3-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk16_s3-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s3-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s3-LinuxNoEditor.pak' (chunk index 16, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s3-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000003 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s29-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s29-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s29-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk16_s29-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s29-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s29-LinuxNoEditor.pak' (chunk index 16, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s29-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s28-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s28-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s28-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk16_s28-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s28-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s28-LinuxNoEditor.pak' (chunk index 16, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s28-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s27-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s27-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s27-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk16_s27-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s27-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s27-LinuxNoEditor.pak' (chunk index 16, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s27-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s26-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s26-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s26-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk16_s26-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s26-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s26-LinuxNoEditor.pak' (chunk index 16, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s26-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s25-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s25-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s25-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk16_s25-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s25-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s25-LinuxNoEditor.pak' (chunk index 16, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s25-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000004 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s24-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s24-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s24-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk16_s24-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s24-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s24-LinuxNoEditor.pak' (chunk index 16, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s24-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s23-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s23-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s23-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk16_s23-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s23-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s23-LinuxNoEditor.pak' (chunk index 16, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s23-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s22-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s22-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s22-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk16_s22-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s22-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s22-LinuxNoEditor.pak' (chunk index 16, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s22-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s21-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s21-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s21-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk16_s21-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s21-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s21-LinuxNoEditor.pak' (chunk index 16, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s21-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000003 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s20-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s20-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s20-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk16_s20-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s20-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s20-LinuxNoEditor.pak' (chunk index 16, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s20-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s2-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s2-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s2-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk16_s2-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s2-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s2-LinuxNoEditor.pak' (chunk index 16, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s2-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s19-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s19-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s19-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk16_s19-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s19-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s19-LinuxNoEditor.pak' (chunk index 16, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s19-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s18-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s18-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s18-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk16_s18-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s18-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s18-LinuxNoEditor.pak' (chunk index 16, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s18-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000003 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s17-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s17-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s17-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk16_s17-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s17-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s17-LinuxNoEditor.pak' (chunk index 16, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s17-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s16-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s16-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s16-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk16_s16-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s16-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s16-LinuxNoEditor.pak' (chunk index 16, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s16-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000008 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s15-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s15-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s15-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk16_s15-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s15-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s15-LinuxNoEditor.pak' (chunk index 16, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s15-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s14-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s14-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s14-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk16_s14-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s14-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s14-LinuxNoEditor.pak' (chunk index 16, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s14-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s13-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s13-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s13-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk16_s13-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s13-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s13-LinuxNoEditor.pak' (chunk index 16, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s13-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s12-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s12-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s12-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk16_s12-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s12-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s12-LinuxNoEditor.pak' (chunk index 16, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s12-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000003 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s11-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s11-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s11-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk16_s11-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s11-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s11-LinuxNoEditor.pak' (chunk index 16, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s11-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s10-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s10-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s10-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk16_s10-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s10-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s10-LinuxNoEditor.pak' (chunk index 16, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s10-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s1-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s1-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s1-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk16_s1-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s1-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s1-LinuxNoEditor.pak' (chunk index 16, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s1-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk16-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16-LinuxNoEditor.pak' (chunk index 16, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk15_s1-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk15_s1-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk15_s1-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk15_s1-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk15_s1-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk15_s1-LinuxNoEditor.pak' (chunk index 15, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:15 Root:/ File:../../../PortalWars/Content/Paks/pakchunk15_s1-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk15-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk15-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk15-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk15-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk15-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk15-LinuxNoEditor.pak' (chunk index 15, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:15 Root:/ File:../../../PortalWars/Content/Paks/pakchunk15-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk10-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk10-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk10-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk10-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk10-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk10-LinuxNoEditor.pak' (chunk index 10, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:10 Root:/ File:../../../PortalWars/Content/Paks/pakchunk10-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000003 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk1-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk1-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=160 +LogPakFile: PakFile PathHashIndexSize=64 +LogPakFile: PakFile FullDirectoryIndexSize=48 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk1-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk1-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk1-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk1-LinuxNoEditor.pak' (chunk index 1, root '../../../PortalWars/Config/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:1 Root:../../../PortalWars/Config/ File:../../../PortalWars/Content/Paks/pakchunk1-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000003 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk0_s3-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk0_s3-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk0_s3-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk0_s3-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk0_s3-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk0_s3-LinuxNoEditor.pak' (chunk index 0, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:0 Root:/ File:../../../PortalWars/Content/Paks/pakchunk0_s3-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk0_s2-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk0_s2-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk0_s2-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk0_s2-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk0_s2-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile ERROR: ld.so: object '/home/sharkfin/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored. +ERROR: ld.so: object '/home/sharkfin/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored. +'../../../PortalWars/Content/Paks/pakchunk0_s2-LinuxNoEditor.pak' (chunk index 0, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:0 Root:/ File:../../../PortalWars/Content/Paks/pakchunk0_s2-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000003 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk0_s1-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk0_s1-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=112 +LogPakFile: PakFile PathHashIndexSize=16 +LogPakFile: PakFile FullDirectoryIndexSize=16 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk0_s1-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk0_s1-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk0_s1-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk0_s1-LinuxNoEditor.pak' (chunk index 0, root '/') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:0 Root:/ File:../../../PortalWars/Content/Paks/pakchunk0_s1-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000002 +LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk0-LinuxNoEditor.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk0-LinuxNoEditor.pak. +LogPakFile: PakFile PrimaryIndexSize=57968 +LogPakFile: PakFile PathHashIndexSize=124544 +LogPakFile: PakFile FullDirectoryIndexSize=87552 +LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk0-LinuxNoEditor.utoc +LogIoDispatcher: Display: Mounting container 'pakchunk0-LinuxNoEditor' in location slot 0 +LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk0-LinuxNoEditor" +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk0-LinuxNoEditor.pak' (chunk index 0, root '../../../') mounted +LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:0 Root:../../../ File:../../../PortalWars/Content/Paks/pakchunk0-LinuxNoEditor.pak) +LogPakFile: OnPakFileMounted2Time == 0.000003 +LogPlatformFile: Using cached read wrapper +LogTaskGraph: Started task graph with 4 named threads and 16 total threads with 3 sets of task threads. +LogICUInternationalization: ICU TimeZone Detection - Raw Offset: -5:00, Platform Override: '' +LogInit: Display: Loading text-based GConfig.... +LogPluginManager: Mounting plugin OnlineSubsystemSteam +LogPluginManager: Mounting plugin OnlineSubsystem +LogPluginManager: Mounting plugin OnlineSubsystemUtils +LogPluginManager: Mounting plugin SteamShared +LogPluginManager: Mounting plugin WindowsMoviePlayer +LogPluginManager: Mounting plugin OWGameEvents +LogPluginManager: Mounting plugin VivoxCore +LogPluginManager: Mounting plugin NVIDIAGfeSDK +LogPluginManager: Mounting plugin ElectronicNodes +LogPluginManager: Mounting plugin DTLSHandlerComponent +LogPluginManager: Mounting plugin ElectraPlayer +LogPluginManager: Mounting plugin ElectraUtil +LogPluginManager: Mounting plugin ElectraCDM +LogPluginManager: Mounting plugin AccelByteUe4Sdk +LogPluginManager: Mounting plugin AccelByteCustomization +LogPluginManager: Mounting plugin OnlineSubsystemAccelByte +LogPluginManager: Mounting plugin AccelByteNetworkUtilities +LogPluginManager: Mounting plugin Reflex +LogPluginManager: Mounting plugin Niagara +LogPluginManager: Mounting plugin PythonScriptPlugin +LogPluginManager: Mounting plugin Ansel +LogPluginManager: Mounting plugin EditorScriptingUtilities +LogPluginManager: Mounting plugin MDFastBinding +LogPluginManager: Mounting plugin NiagaraUIRenderer +LogPluginManager: Mounting plugin Landmass +LogPluginManager: Mounting plugin Water +LogPluginManager: Mounting plugin GeometryProcessing +LogPluginManager: Mounting plugin BlueprintMaterialTextureNodes +LogPluginManager: Mounting plugin SunPosition +LogPluginManager: Mounting plugin Volumetrics +LogPluginManager: Mounting plugin CommonLoadingScreen +LogPluginManager: Mounting plugin MovieRenderPipeline +LogPluginManager: Mounting plugin ActorLayerUtilities +LogPluginManager: Mounting plugin LevelSequenceEditor +LogPluginManager: Mounting plugin OpenColorIO +LogPluginManager: Mounting plugin SequencerScripting +LogPluginManager: Mounting plugin TemplateSequence +LogPluginManager: Mounting plugin DiscordRpc +LogPluginManager: Mounting plugin EQU8 +LogPluginManager: Mounting plugin Nexus +LogPluginManager: Mounting plugin Wwise +LogPluginManager: Mounting plugin AISupport +LogPluginManager: Mounting plugin EnvironmentQueryEditor +LogPluginManager: Mounting plugin LightPropagationVolume +LogPluginManager: Mounting plugin CameraShakePreviewer +LogPluginManager: Mounting plugin GameplayCameras +LogPluginManager: Mounting plugin OodleData +LogPluginManager: Mounting plugin OodleNetwork +LogPluginManager: Mounting plugin AnimationSharing +LogPluginManager: Mounting plugin SignificanceManager +LogPluginManager: Mounting plugin PluginUtils +LogPluginManager: Mounting plugin PropertyAccessEditor +LogPluginManager: Mounting plugin AssetManagerEditor +LogPluginManager: Mounting plugin FacialAnimation +LogPluginManager: Mounting plugin GeometryMode +LogPluginManager: Mounting plugin SpeedTreeImporter +LogPluginManager: Mounting plugin DatasmithContent +LogPluginManager: Mounting plugin VariantManagerContent +LogPluginManager: Mounting plugin AutomationUtils +LogPluginManager: Mounting plugin ScreenshotTools +LogPluginManager: Mounting plugin BackChannel +LogPluginManager: Mounting plugin ChaosClothEditor +LogPluginManager: Mounting plugin ChaosCloth +LogPluginManager: Mounting plugin ChaosEditor +LogPluginManager: Mounting plugin PlanarCut +LogPluginManager: Mounting plugin EditableMesh +LogPluginManager: Mounting plugin GeometryCollectionPlugin +LogPluginManager: Mounting plugin ProceduralMeshComponent +LogPluginManager: Mounting plugin ChaosSolverPlugin +LogPluginManager: Mounting plugin CharacterAI +LogPluginManager: Mounting plugin GeometryCache +LogPluginManager: Mounting plugin MotoSynth +LogPluginManager: Mounting plugin PlatformCrypto +LogPluginManager: Mounting plugin ImgMedia +LogPluginManager: Mounting plugin MediaCompositing +LogPluginManager: Mounting plugin WmfMedia +LogPluginManager: Mounting plugin MeshPainting +LogPluginManager: Mounting plugin TcpMessaging +LogPluginManager: Mounting plugin UdpMessaging +LogPluginManager: Mounting plugin ActorSequence +LogPluginManager: Mounting plugin MatineeToLevelSequence +LogPluginManager: Mounting plugin OnlineSubsystemNull +LogPluginManager: Mounting plugin LauncherChunkInstaller +LogPluginManager: Mounting plugin AppleImageUtils +LogPluginManager: Mounting plugin AssetTags +LogPluginManager: Mounting plugin CableComponent +LogPluginManager: Mounting plugin ChunkDownloader +LogPluginManager: Mounting plugin CustomMeshComponent +LogPluginManager: Mounting plugin ExampleDeviceProfileSelector +LogPluginManager: Mounting plugin GooglePAD +LogPluginManager: Mounting plugin PhysXVehicles +LogPluginManager: Mounting plugin RuntimePhysXCooking +LogPluginManager: Mounting plugin SoundFields +LogPluginManager: Mounting plugin Synthesis +LogPluginManager: Mounting plugin AudioSynesthesia +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'Map_Practice_Range'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'Map_Simulation_Alpha'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'Map_Simulation_Bravo'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'Map_Simulation_Charlie'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'Map_Simulation_Delta'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'Map_Simulation_Echo'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'Map_Simulation_Foxtrot'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'Map_Simulation_Golf'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'Map_Simulation_Hotel'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_Tutorial'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'XpFromKills'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'DailyPlayStreak'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'EnemyPortalsDestroyed'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'WinnerWinnerPortalDinner'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'HeadshotKills'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Kills'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'PortalAssassin'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Level'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BadgePerfectTakedowns'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BadgeRankedGamesWon'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'RankedKills'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Season2BattlePass'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'PuttingtheMeinTeamwork'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Empty'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' '90s'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Aberration'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Acrylic'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Arrows'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Autumn'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Bang'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Beta'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaFish'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Blocks'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BorkJr'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Clouds'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ConsoleWarrior'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'CrazyEyes'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Crimson'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'DrDisrespect'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Elektro'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Flare'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Flow'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Forest'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Gold'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Grid'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'HandsOnJack'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Haze'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Hexo'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Lockdown'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Lowpoly'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Maximus'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'MostHated'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Nebula'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ocean'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'OrangeWave'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Planetary'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'PlanetSurfer'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Playmaker'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'PurpleHaze'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Racer'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Radia'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Rainbow'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'RedSkull'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Retro'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'RocketMan'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sealife'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Shroud'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Skyfall'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Splitgate'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Splitter'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Spring'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sprinkles'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Starlight'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Summit1G'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Tortuga'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Trance'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Tusk'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Vaporwave'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Waspy'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GeneralBannerDescription'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Xtreme'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Default'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_Contamination'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_CapturetheFlag'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_NeutralCapturetheFlag'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_OneFlagCTF'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_RankedCapturetheFlag'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_RankedNeutralCapturetheFlag'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_FFADeathmatch'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_TeamDeathmatch'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_BigHeadSnipers'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_KillEnemyTeamToScore'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_CompetitiveTeamDeathmatch'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_KillEnemyTeamToScore_NoRadar'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_Fiesta'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_FiestaTDM'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_FightOrFlight'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_FreeforAll'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_FudgeSlayer'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_Instagib'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_LaserTag'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_OldSchoolSlayer'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_PistolSWAT'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_PortalTDM'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_RankedFreeforAll'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_RankedTeamDeathmatch'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_RankedWaitingArea'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_RankedTeamDeathmatch2v2'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_SpeedBats'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_TeamBRs'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_TeamDoubles'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_TeamInstagib'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_TeamRockets'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_TeamShottySnipers'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_TeamSnipers'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_TeamSWAT'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_UnfairSWAT'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_WaitingArea'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_Domination'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_BigHeadSnipersDomination'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_CompetitiveDomination'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_ScorePointsByCapturingThreeHillsNoRadar'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_ScorePointsByCapturingThreeHills'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_FiestaDOM'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_RankedDomination'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_RocketDomination'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_SWATDOM'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_MapCreator'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_GunGame'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_Hotzone'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_FiestaHotzone'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_ScorePointsByStandingOnHill'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_RankedHotzone'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_SuperHotzone'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_SWATHotzone'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'Gamemodes_Juggernaut'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_KingoftheHill'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_BigHeadSnipersKingoftheHill'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_CompetitiveKingoftheHill'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_ScorePointsByStandingOnHillNoRadar'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_FiestaKOTH'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_RankedKingoftheHill'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_RankedKingoftheHill2v2'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_SuperKingofHill'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_SWATKOTH'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_Lockdown'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_SplitBall'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_FlyingSplitball'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_GrabBallAndRun'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_TeamSplitball'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_OneintheChamper'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_TeamOneintheChamber'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_Race'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_PracticeRange'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_Survival'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_BatRoyale'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_Evolution'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_Showdown'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_SWATShowdown'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_Takedown'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_RankedTakedown'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_VIPTakedown'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_TeabagConfirmed'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_VIP'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_ZombieVIP'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Adam'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GeneralArmorDescription'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Apple'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Aeon'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Hina'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Kawaii'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sakura'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'UVChecker'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Yui'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Yuki'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Alabastra'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Africa'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'AfricaExecutive'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Arid'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Atlantis'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Barbecue'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Bear'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BigBang'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Bleh'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BlueZebra'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Brainmatter'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Bright'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Bubblegum'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Candy'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Cauldron'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Cheese'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Circuit'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Cloud'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Coral'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Crystalized'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Daisy'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Dawn'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Forge'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Fractured'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Gel20'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Glitter'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'GoldInverse'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Grandy'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'GrayM90'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Green'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Grit'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Guardian'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Hellfire'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Hexy'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'High'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Hive'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Illusion'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Industrial'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Jugger'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Juggernaut'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Lightning20'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Low'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'M90'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Marine'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Mason'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Mecha'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Melting'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Microbes'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Midnight'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Moss'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'NewAge'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'NGC'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Northern'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Orange'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Picasso'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Pink'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Plugger'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Pointy'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Psychedelic'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Purple'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Rain'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Red'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Reflex'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ROFL'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Rose'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Scrap'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sentient'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Shift'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sierra'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Silver'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sinkhole'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Smiles'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Smooth'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SoftPurple'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Spicy'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Splatter'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Storm'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sunflower'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sunrise'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sunset'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Swirls'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ultra'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Valton'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Wind'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Yellow'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Yikes'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Zam'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Zenith'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Blue'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Andor'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Embers'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Aqua'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Drone'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Hunter'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Lia'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Meer'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Queen'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Assassin'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BabaYaga'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Eternal'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Helga'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Swamp'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Witch'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Wort'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Babu'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Marionette'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Nia'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Stringler'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Wifu'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Yoyo'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BananaSplit'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Cream'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ripe'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Strawberry'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Whipped'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'YinYang'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Bard'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'CandyCane'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Gia'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Lute'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Somber'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Tamber'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Viola'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Blitz'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Bulldogs'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Charlie'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Coyote'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'League'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Supreme'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Yeti'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BlitzII'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BunnyHop'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Butcher'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'DeadHog'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Demon'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Hog'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Undead'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'CactilliousVIII'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Cac'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Flesh'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Juice'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Needles'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Spike'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Gunslinger'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'CactilliousX'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Binder'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Burning'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Exodus'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Mulch'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Runner'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Watcher'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Chance'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' '5th'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Gutter'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Legion'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Major'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Recruit'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Deadeye'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Boot'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Chester'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Jack'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'OneEyedJoe'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Strapper'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Diego'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Pounce'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Predator'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Savanah'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Prowler'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Dweller'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Blaze'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Camo'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ferdinand'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Deon'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Jude'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Kite'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Leon'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Mufasa'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Firlock'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Blossom'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Fallen'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Overgrowth'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Root'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Vine'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Firlow'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Xmas'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Gangster'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Gigabot'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Hawk'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'LEE414'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Love'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Spanner'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Vic'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Boujee'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Bubblegumption'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Honeypot'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Invictus'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Kelvin'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Kicker'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Reptilia'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Worzer'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Yoy'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BananaStand'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Coal'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Cobalt'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Diamond'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Iron'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Uranium'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Hannya'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Henrick'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Count'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Duke'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'King'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Lancer'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Marquis'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ido'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Darkness'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Earth'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Fire'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Water'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Interceptor'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Intel'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ironside'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Arne'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Bjorn'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Erik'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Gorm'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ragna'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Jacko'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Lantern'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Jaiden'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Amber'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Blackout'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Bumper'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Fury'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Jade'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Master'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ninja'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'OP'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Soul'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Jed'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ded'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Led'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ned'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ved'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Zed'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Leaf'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Buddy'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Kassandra'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Lya'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ray'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Letto'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Lucky'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Bassnard'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Grey'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Mau'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Shawn'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sid'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Lue'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Elf'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ice'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Rth'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Maelstrom'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Don'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'General'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Jo'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Krimzon'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Skll'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Zero'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Marshall'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Alpha'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'East'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Jungle'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Marsh'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Vice'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Boss'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Soldier'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SpecOps'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Taunt'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Misty'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Fy'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Kel'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Stella'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Moegoth'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Eruption'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Magma'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Rumble'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Siesmic'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'TheRock'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Mr66'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Agent'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Fireman'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Pedestrian'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Policeman'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Worker'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Murice'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Olof'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'MusicHead'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Insck'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Lep'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Party'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'OldBones'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Oliver'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Bobby'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Clay'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Garfield'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Jarred'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Tim'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Operator'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Armadillo'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Bing'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Bozz'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Hurwitz'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Legierung'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Miyagi'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Mushi'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sundae'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'TopBrass'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Primordial'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Paladin'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Buffer'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Fade'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Horus'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Liger'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Raven'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Valiant'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Rexy'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Dug'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'MT'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Prehistoric'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Rex'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Stomper'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Rhino'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Blazing'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'MrAttitude'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sharpened'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'XFACTOR'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'XTREME'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sable'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Cii'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Howler'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Lord'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Nath'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Rumi'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Santa'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sasha'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Adventurer'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'KickBoxer'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Moon'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Mystic'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sun'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Shane'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Bbop'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Joe'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Pop'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Spaceman'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Vigilante'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Shogun'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Clan'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Elite'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Rogue'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Samurai'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Tempered'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Whisper'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SigmaDark'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Arcubus'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Electrum'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Phixsas'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Nightjump'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Singe'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Skullbones'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Dregg'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Tin'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'T200'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Choc'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Lul'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ravager'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'T201'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'TeamSeas'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Tinhead'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Amazon'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Apocalypse'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ashes'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Chrome'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'MK3'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Snow'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Unholy'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Toxic'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Dark'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Fuzz'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Gorge'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Numb'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Rez'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Shade'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Loth'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Volta'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Crayon'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Vulture'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' '360BullRider'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'AtYourService'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ballerina'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BattlePose'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BootyShake'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Boxing'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BreakitDown'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BullRider'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ButtSlap'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'CallMe'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Cheers'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ChestBeat'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ChickenDance'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Comeatme'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'CrossedArms'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'CrotchChop'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'CrowdNoise'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Dab'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'DeathThreat'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'DramaQueen'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Draw'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'DustOff'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Exhausted'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Eyesonyou'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'FacePalm'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Fight'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'FingerGun'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'FingerWave'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Fishing'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'FistPump'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Flexing'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ForwardLean'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'GameTime'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Glorious'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'GoingDown'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'GroinChop'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Gunshow'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Halt'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Hands'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'HandsonHead'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'HandsonHips'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'HatsOff'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' '3'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'HeroPose'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Honor'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Hooligan'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ImtheBest'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Joy'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'KaPOW'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'KnuckleSandwich'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Lasso'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Levitate'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'LockedandLoaded'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'LookattheTime'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Loser'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Macarena'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Mime'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Monkey'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'MrUniverse'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Noooo'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ok'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Olympia'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'OMG'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'PowerHold'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'PowerUp'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'PraisetheLord'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Pray'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Pulse'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ReportingforDuty'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ReverseButtSlap'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Robogangsta'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'RockBow'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'RockOn'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sassy'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Shielded'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ShoulderRoll'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ShoulderWave'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Shrug'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SlicingandDicing'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SoSo'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SplitgateShuffle'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'StageBow'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Stretch'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'TaDa'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Tantrum'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Thinking'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Thoughtful'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ThumbsDown'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Thumbsup'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'UpYours'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Victory'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Wave'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Welcome'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Yaaaass'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'You'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Director'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GeneralJetpackDescription'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Egg'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'GoldenEgg'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ChainofDeath'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'DemonFire'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Unchained'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Executioner'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Foregone'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Estranged'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'HEX'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Mourning'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Mumbai'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Rocket'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Souless'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Stinger'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Warden'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'AmateurChamp'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaRecruiter'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS0Champion'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS0Master'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS0Noob'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS0Recruiter'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS0Streaker'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS0Veteran'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS1Challenger'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS1Champion'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS1Contestant'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS1Master'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS1Noob'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS1Recruiter'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS1Streaker'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS1Veteran'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaTester'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'CHAMPIONSCLUB'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'CommunityCoach'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ContentCreator'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Developer'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'FeaturedBuilder'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Fragger'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Gunner'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Hillboy'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Hillgirl'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'LeagueChampion'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Legacy'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'LegacyStreaker'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'MapBuilder'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Moderator'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'MovieoftheWeek'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'None'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'NOOB'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'PartneredStreamer'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Playtester'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ProChampion'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Recruiter'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SemiProChamp'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SpaceCadet'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Splitgang'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SplitgateMVP'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SPLITMAS'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SPSPro'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Streamer'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SuperModerator'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'TournamentChampion'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'TrickshotChamp'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'WormholeWarrior'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GeneralPortalGunDescription'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Beatle'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Black'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Caution'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Cyber'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Deep'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Dodo'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'FlamingYong'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Frost'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Gel'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Grudge'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Hacker'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'HeartBeat'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'JetStream'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Leet'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Lollipop'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Mink'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Peace'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Pond'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Razzle'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Rift'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ripple'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sacred'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sandstorm'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sangria'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SnakeSkin'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Swirlpool'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Vortex'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Watt'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Fodder'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'FTL'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Lightsout'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Lynch'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Mender'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SideWinder'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SilverTongue'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Cannon'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'TrueShot'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Beyond'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Breach'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Christmas'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Cyan'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'DejaVu'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Divide'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'FALLOUT'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Flower'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Holy'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Honeycomb'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Indie'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Inverse'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Lumen'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Return'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ROYAL'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sunder'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Treasure'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Void'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'War'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Webs'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'WONDER'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' '1stBlue'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' '1stRed'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' '3KV'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Absolutely'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'AceDolo'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Advanced'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'AirForceGaming'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Alphawolvestt'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ampfy'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Andy'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'AndyBanana'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Arch'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Atomikgamez'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Audriix'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Baby'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Banana'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Base'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Bat'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Beefcake'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BlastOff'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Bomb'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Boom'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BudgeUp'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Bug'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Butterfly'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Button'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'CANAS1AN'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'CardinalSoldier'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Chasen'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ClickFPS'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Cloh'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'COG'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'cole'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'CoolPrickles'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Cozy'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'CrazyClown'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Croc'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'CX7VN'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'CyBplays'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'DaddyGus'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Dailey'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'DANGERKIDS'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'DashTag'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'DeJay'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Dezignful'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'DipAndDrip'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'DiscoBall'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Dom'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'DrewPDrawers'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Dylrooo'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'E'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Electra'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Emblem'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'EmilioITA'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Endo'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Eskay'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'FakeUniformM'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'FigureBlue'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'FigureRed'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'FruitSalad'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Fusion'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Future'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Fuzk'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Gabs'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'GaGOD'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Gamesager'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'GFuel'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'GG'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'GGFizz'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'GiantPanda'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Gibbon'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'GoatsAndGlory'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'GoofyCat'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Greyhatz'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'HandPrint'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'HappyMemeLord'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Harry'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Hayward'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Hazard'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'HeadShotChick'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Heis'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Hersh'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'iLootGames'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Indy'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'IronPanda'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ISurvived'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'j0nathan'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'JazzMittenz'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'JequalsJosh'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Jexodus'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Jib'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Jonzzy'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Joshy'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'JZ'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'k9z'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Kev'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'KingMcdev'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'KJewls'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'kowzzz'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Loochy'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Lost'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Luna'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'mansuit'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'MarineCorpsGaming'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Mask'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Meatloaf'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'MemeLord'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Merl'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Mikaveli'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Mucki'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Muerte'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'MWZ'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Nadestraight'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Nana'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'NeoNess007'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Nexz'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Nolliewog'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Nomad'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Noob'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Nova'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Nugget'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Nvidia'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Oatsngoats'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Oni'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Panda'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Panther'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Patty'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Pootato'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Portal'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Pow'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Precious'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'PreFusion'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Present'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Pwnstar'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Radar'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Rara'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'RGB'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Robot'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'RobotGiggles'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'RocketPop'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Rocky'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Rorn'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ruby'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Russ'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ryanandsnoop'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SaltSlinger'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sam'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Scope'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Scribbleh'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sephy'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Shark'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Shmoople'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sillymurp'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Six'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Skull'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SliverTV'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SliverTVWhite'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Smile'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Smixyraptor'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SMKGaming05'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SoonTM'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SpaceMonkey'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SplitgateRetro'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SplitgirlNo1'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Spurley'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Squiggle'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Stallion'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Static'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Strifer'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Strike'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Strotnium'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Tanner'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Tatted'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Technobug'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'TFuel'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ThinkPortal'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ThonkAR'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Thor'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Thriving'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'TipOfTheSpear'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ToiletPaper'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Trainer'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Tummy'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Tunes'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Turtle'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'UniverseDivide'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'USArmyESports'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'VibeFail'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Vostik'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Vowwels'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'WAX'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'WWBucks'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Yousif'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Zeus'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Abominable'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Alternate'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ambient'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Aquascape'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Astro'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Aurora'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Aviator'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS1Brass'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS1Bronze'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS1Diamond'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS1Gold'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS1Platinum'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS1Silver'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Bind'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Bloo'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'CandyCorn'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Cardboard'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Chrysalis'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ChrysalisWhite'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'CloudVibes'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Danger'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Dank'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Desert'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'DragonBone'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'DrunkBone'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'DrunkRaider'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'DrunkStein'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Eel'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'EmulsionBone'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'EmulsionRaider'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'EmulsionStein'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'eUnited'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ex'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Fold'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ForGlory'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Frostbite'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Frozen'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Full'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Gel2.0'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'GiftWrapped'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Gingerbread'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Glitch'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'GoldenHour'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'GoreBone'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'GoreRaider'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'GoreStein'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'G-Shock'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Intrepid'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Jam'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Juicy'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Jumper'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Kovaak'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Lightning2.0'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Luminosity'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Macro'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Merica'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'MOBO'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Moist'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Molten'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'MoltenBone'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'MoltenRaider'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'MoltenStein'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Motherboard'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Neon'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'PurplyPink'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Recon'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'RedSpawn'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Rosary'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Scotch'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GeneralAssaultRifleDescription'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Scuttle'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Serum'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Shatter'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ShinyCrystal'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Shocker'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Skullcrusher'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Slurry'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SnowRifle'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sonoran'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Spaz'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Split'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Squirt'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SSG'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Steampunk'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Summit'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Super'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Supersonic'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sweet'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Swirly'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Synth'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'T1'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'TechnicalBlue'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'TechnicalNeon'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'TheGoodestBoy'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Thompson'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Tripz'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'TriShot'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Virtue'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Volt'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Warp'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'WW1'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'XSET'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'XYZ'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Zen'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Zion'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Arc'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Cobb'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'DeadlyVibes'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Glitchgate'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GeneralBatDescription'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Krafty'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Leak'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sigmator'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SnowflakeAxe'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BlueFlower'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'DigitalDownpour'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Fission'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Hunt'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Kingdom'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'PsyonicHolo'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GeneralBattleRifleDescription'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Watergun'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' '100T'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Advansplosion'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Alienware'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS0Brass'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS0Bronze'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS0Diamond'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS0Gold'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS0Platinum'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS0Silver'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Chopper'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Chroma'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Code'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Foresight'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'HaroldBronze'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'HaroldGold'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'HaroldPurple'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'HaroldSilver'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Hoot'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Necrosis'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Organic'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GeneralCarbineDescription'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Slimey'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Toy'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'TRN'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Acorn'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Beachball'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Blacktop'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Discornament'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'GateSplitter'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'IO'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Regulation'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SAWCCER'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SnowCage'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Bird'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Chum'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Clown'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Egypt'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Electric'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ESportGreen'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ESportPearl'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ESportPurple'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ESportRed'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ESportTactical'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Evergreen'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Magnum'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'PantherBlue'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GeneralPistolDescription'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'PantherRed'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'PixelSpook'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'RabidBlue'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'RabidRainbow'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Serpent'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SparklePony'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'VoidStuff'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' '90sTrip'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'DeadVelvet'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Lines'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Medieval'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Heiferizer'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GeneralPlasmaRifleDescription'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Pagan'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ritual'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SnowBurner'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'HMMMMM'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'InnerTech'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GeneralRailgunDescription'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Champain'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Crikey'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'CubincPlunder'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GeneralRocketLauncherDescription'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Scorpio'. Did you forget to add a string table redirector? +LogStringTable: Warning: Fail[S_API] SteamAPI_Init(): Loaded '/home/sharkfin/.local/share/Steam/linux64/steamclient.so' OK. +Game process updated : AppID 677620 "/home/sharkfin/.local/share/Steam/ubuntu12_32/reaper SteamLaunch AppId=677620 -- '/mnt/games/steamLibrary/steamapps/common/Splitgate/PortalWars.sh'", ProcID 103242, IP 0.0.0.0:0 +Setting breakpad minidump AppID = 677620 +SteamInternal_SetMinidumpSteamID: Caching Steam ID: 76561198272891864 [API loaded no] +ed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Spud'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ThePondPlunderer'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'WompWompRegal'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'OldMagic'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GeneralShotgunDescription'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Shoctopus'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SpinelessBeat'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'LiquidIllusion'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Poker'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GeneralSMGDescription'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Wildfire'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'CampingWins'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GeneralSniperDescription'. Did you forget to add a string table redirector? +LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SymphonySniper'. Did you forget to add a string table redirector? +LogInit: Using libcurl 7.65.3-DEV +LogInit: - built for x86_64-unknown-linux-gnu +LogInit: - supports SSL with OpenSSL/1.1.1c +LogInit: - supports HTTP deflate (compression) using libz 1.2.8 +LogInit: - other features: +LogInit: CURL_VERSION_SSL +LogInit: CURL_VERSION_LIBZ +LogInit: CURL_VERSION_IPV6 +LogInit: CURL_VERSION_ASYNCHDNS +LogInit: CURL_VERSION_LARGEFILE +LogInit: CURL_VERSION_TLSAUTH_SRP +LogInit: CurlRequestOptions (configurable via config and command line): +LogInit: - bVerifyPeer = true - Libcurl will verify peer certificate +LogInit: - bUseHttpProxy = false - Libcurl will NOT use HTTP proxy +LogInit: - bDontReuseConnections = true - Libcurl will NOT reuse connections +LogInit: - MaxHostConnections = 16 - Libcurl will limit the number of connections to a host +LogInit: - LocalHostAddr = Default +LogInit: - BufferSize = 65536 +LogOnline: OSS: Creating online subsystem instance for: AccelByte +LogOnline: OSS: Creating online subsystem instance for: Steam +LogOnline: STEAM: Steam User is subscribed 1 +LogOnline: STEAM: [AppId: 677620] Client API initialized 1 +LogOnline: STEAM: Initializing SteamNetworking Layer +LogOnline: STEAM: Missing P2PCleanupTimeout key in OnlineSubsystemSteam of DefaultEngine.ini, using default +LogOnline: OSS: TryLoadSubsystemAndSetDefault: Loaded subsystem for module [AccelByte] +LogInit: Build: ++PortalWars+Main-CL-8813 +LogInit: Engine Version: 4.27.2-8813+++PortalWars+Main +LogInit: Compatible Engine Version: 4.27.0-17155196+++PortalWars+Main +LogInit: Net CL: 17155196 +LogInit: OS: GenericOSVersionLabel (GenericOSSubVersionLabel), CPU: 12th Gen Intel(R) Core(TM) i5-12600K, GPU: GenericGPUBrand +LogInit: Compiled (64-bit): Jun 11 2022 11:51:03 +LogInit: Compiled with Clang: 11.0.1 (https://github.com/llvm/llvm-project 43ff75f2c3feef64f9d73328230d34dac8832a91) +LogInit: Build Configuration: Shipping +LogInit: Branch Name: ++PortalWars+Main +LogInit: Command Line: +LogInit: Base Directory: /mnt/games/steamLibrary/steamapps/common/Splitgate/PortalWars/Binaries/Linux/ +LogInit: Allocator: binned2 +LogInit: Installed Engine Build: 1 +LogInit: Presizing for max 2097152 objects, including 1 objects not considered by GC, pre-allocating 0 bytes for permanent pool. +LogStreaming: Display: AsyncLoading2 - Created: Event Driven Loader: true, Async Loading Thread: true, Async Post Load: true +LogStreaming: Display: AsyncLoading2 - Initialized +LogInit: Object subsystem initialized +LogConfig: Setting CVar [[r.setres:1280x720]] +LogConfig: Setting CVar [[fx.NiagaraAllowRuntimeScalabilityChanges:1]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.setres:1280x720]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[fx.NiagaraAllowRuntimeScalabilityChanges:1]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererSettings] File [/home/sharkfin/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor/Engine.ini] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.GPUCrashDebugging:0]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.AllowGlobalClipPlane:0]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.CustomDepth:3]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.DefaultFeature.MotionBlur:0]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.ForwardShading:1]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.DefaultFeature.AmbientOcclusion:0]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.EarlyZPass:2]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.ReflectionCaptureResolution:128]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.SeparateTranslucency:0]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.SelectiveBasePassOutputs:1]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.DefaultFeature.AntiAliasing:2]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.EnableDebugSpam_GetObjectPositionAndScale:0]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.PostProcessing.PropagateAlpha:2]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.EarlyZPassOnlyMaterialMasking:1]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.DefaultFeature.AutoExposure.Bias:1.000000]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.SupportSkyAtmosphereAffectsHeightFog:0]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.SupportStationarySkylight:0]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.SupportSkyAtmosphere:0]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.SupportAtmosphericFog:1]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.SupportPointLightWholeSceneShadows:1]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.SupportLowQualityLightmaps:0]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.Mobile.AllowMovableDirectionalLights:0]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.Mobile.EnableStaticAndCSMShadowReceivers:0]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.Mobile.AllowDistanceFieldShadows:0]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.MobileNumDynamicPointLights:0]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.DiscardUnusedQuality:0]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererOverrideSettings] File [/home/sharkfin/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor/Engine.ini] +[2022.06.19-20.18.13:397][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.StreamingSettings] File [/home/sharkfin/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor/Engine.inInstalling breakpad exception handler for appid(steam)/version(1655513879) +i] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[s.MinBulkDataSizeForAsyncLoading:131072]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[s.AsyncLoadingThreadEnabled:1]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[s.EventDrivenLoaderEnabled:1]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[s.WarnIfTimeLimitExceeded:0]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[s.TimeLimitExceededMultiplier:1.5]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[s.TimeLimitExceededMinTime:0.005]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[s.UseBackgroundLevelStreaming:1]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[s.PriorityAsyncLoadingExtraTime:15.0]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[s.LevelStreamingActorsUpdateTimeLimit:5.0]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[s.PriorityLevelStreamingActorsUpdateExtraTime:5.0]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[s.LevelStreamingComponentsRegistrationGranularity:10]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[s.UnregisterComponentsTimeLimit:1.0]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[s.LevelStreamingComponentsUnregistrationGranularity:5]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[s.FlushStreamingOnExit:1]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.GarbageCollectionSettings] File [/home/sharkfin/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor/Engine.ini] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[gc.MaxObjectsNotConsideredByGC:1]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[gc.SizeOfPermanentObjectPool:0]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[gc.FlushStreamingOnGC:0]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[gc.NumRetriesBeforeForcingGC:10]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[gc.AllowParallelGC:1]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[gc.TimeBetweenPurgingPendingKillObjects:61.1]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[gc.MaxObjectsInEditor:25165824]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[gc.IncrementalBeginDestroyEnabled:1]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[gc.CreateGCClusters:1]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[gc.MinGCClusterSize:5]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[gc.ActorClusteringEnabled:0]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[gc.BlueprintClusteringEnabled:0]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[gc.UseDisregardForGCOnDedicatedServers:0]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[gc.MultithreadedDestructionEnabled:1]] +[2022.06.19-20.18.13:397][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.NetworkSettings] File [/home/sharkfin/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor/Engine.ini] +[2022.06.19-20.18.13:397][ 0]LogInit: Initializing SDL. +[2022.06.19-20.18.15:310][ 0]LogInit: Initialized SDL 2.0.12 revision: 13609 (hg-13609:34cc7d3b69d3) (compiled against 2.0.12) +[2022.06.19-20.18.15:310][ 0]LogInit: Using SDL video driver 'x11' +[2022.06.19-20.18.15:311][ 0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@3] File [/home/sharkfin/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor/Scalability.ini] +[2022.06.19-20.18.15:311][ 0]LogConfig: Setting CVar [[r.SkeletalMeshLODBias:0]] +[2022.06.19-20.18.15:311][ 0]LogConfig: Setting CVar [[r.ViewDistanceScale:1.0]] +[2022.06.19-20.18.15:311][ 0]LogConfig: Setting CVar [[r.StaticMeshLODDistanceScale:1]] +[2022.06.19-20.18.15:311][ 0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@3] File [/home/sharkfin/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor/Scalability.ini] +[2022.06.19-20.18.15:311][ 0]LogConfig: Setting CVar [[r.PostProcessAAQuality:4]] +[2022.06.19-20.18.15:311][ 0]LogConfig: Applying CVar settings from Section [ShadowQuality@3] File [/home/sharkfin/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor/Scalability.ini] +[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.LightFunctionQuality:1]] +[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.ShadowQuality:5]] +[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.Shadow.CSM.MaxCascades:10]] +[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.Shadow.MaxResolution:2048]] +[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.Shadow.MaxCSMResolution:2048]] +[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.Shadow.RadiusThreshold:0.01]] +[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.Shadow.DistanceScale:1.0]] +[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.Shadow.CSM.TransitionScale:1.0]] +[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.Shadow.PreShadowResolutionFactor:1.0]] +[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.DistanceFieldShadowing:1]] +[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.DistanceFieldAO:1]] +[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.AOQuality:2]] +[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.VolumetricFog:0]] +[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.VolumetricFog.GridPixelSize:8]] +[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.VolumetricFog.GridSizeZ:128]] +[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.VolumetricFog.HistoryMissSupersampleCount:4]] +[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.LightMaxDrawDistanceScale:1]] +[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.CapsuleShadows:1]] +[2022.06.19-20.18.15:312][ 0]LogConfig: Applying CVar settings from Section [PostProcessQuality@3] File [/home/sharkfin/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor/Scalability.ini] +[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.MotionBlurQuality:4]] +[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.AmbientOcclusionMipLevelFactor:0.4]] +[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.AmbientOcclusionMaxQuality:100]] +[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.AmbientOcclusionLevels:0]] +[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.AmbientOcclusionRadiusScale:1.0]] +[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.DepthOfFieldQuality:2]] +[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.RenderTargetPoolMin:400]] +[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.LensFlareQuality:2]] +[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.SceneColorFringeQuality:1]] +[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.EyeAdaptationQuality:2]] +[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.BloomQuality:5]] +[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.FastBlurThreshold:100]] +[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.Upscale.Quality:3]] +[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.Tonemapper.GrainQuantization:1]] +[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.LightShaftQuality:1]] +[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.Filter.SizeScale:1]] +[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.Tonemapper.Quality:5]] +[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.DOF.Gather.AccumulatorQuality:1 ; higher gathering accumulator quality]] +[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.DOF.Gather.PostfilterMethod:1 ; Median3x3 postfilering method]] +[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.DOF.Gather.EnableBokehSettings:0 ; no bokeh simulation when gathering]] +[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.DOF.Gather.RingCount:4 ; medium number of samples when gathering]] +[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.DOF.Scatter.ForegroundCompositing:1 ; additive foreground scattering]] +[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.DOF.Scatter.BackgroundCompositing:2 ; additive background scattering]] +[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.DOF.Scatter.EnableBokehSettings:1 ; bokeh simulation when scattering]] +[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.DOF.Scatter.MaxSpriteRatio:0.1 ; only a maximum of 10% of scattered bokeh]] +[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.DOF.Recombine.Quality:1 ; cheap slight out of focus]] +[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.DOF.Recombine.EnableBokehSettings:0 ; no bokeh simulation on slight out of focus]] +[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.DOF.TemporalAAQuality:1 ; more stable temporal accumulation]] +[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.DOF.Kernel.MaxForegroundRadius:0.025]] +[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.025]] +[2022.06.19-20.18.15:313][ 0]LogConfig: Applying CVar settings from Section [TextureQuality@3] File [/home/sharkfin/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor/Scalability.ini] +[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.Streaming.MipBias:0]] +[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.Streaming.AmortizeCPUToGPUCopy:0]] +[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.Streaming.MaxNumTexturesToStreamPerFrame:0]] +[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.Streaming.Boost:1]] +[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.MaxAnisotropy:8]] +[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.VT.MaxAnisotropy:8]] +[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.Streaming.LimitPoolSizeToVRAM:0]] +[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.Streaming.PoolSize:1000]] +[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.Streaming.MaxEffectiveScreenSize:0]] +[2022.06.19-20.18.15:313][ 0]LogConfig: Applying CVar settings from Section [EffectsQuality@3] File [/home/sharkfin/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor/Scalability.ini] +[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.TranslucencyLightingVolumeDim:64]] +[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.RefractionQuality:2]] +[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.SSR.Quality:3]] +[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.SSR.HalfResSceneColor:0]] +[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.SceneColorFormat:4]] +[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.DetailMode:2]] +[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.TranslucencyVolumeBlur:1]] +[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.MaterialQualityLevel:1 ; High quality]] +[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.AnisotropicMaterials:1]] +[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.SSS.Scale:1]] +[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.SSS.SampleSet:2]] +[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.SSS.Quality:1]] +[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.SSS.HalfRes:0]] +[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.SSGI.Quality:3]] +[2022.06.19-20.18.15:314][ 0]LogConfig: Setting CVar [[r.EmitterSpawnRateScale:1.0]] +[2022.06.19-20.18.15:314][ 0]LogConfig: Setting CVar [[r.ParticleLightQuality:2]] +[2022.06.19-20.18.15:314][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.FastApplyOnOpaque:1 ; Always have FastSkyLUT 1 in this case to avoid wrong sky]] +[2022.06.19-20.18.15:314][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.SampleCountMaxPerSlice:4]] +[2022.06.19-20.18.15:314][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.DepthResolution:16.0]] +[2022.06.19-20.18.15:314][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.FastSkyLUT:1]] +[2022.06.19-20.18.15:314][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMin:4.0]] +[2022.06.19-20.18.15:314][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMax:128.0]] +[2022.06.19-20.18.15:314][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.SampleCountMin:4.0]] +[2022.06.19-20.18.15:314][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.SampleCountMax:128.0]] +[2022.06.19-20.18.15:314][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.TransmittanceLUT.UseSmallFormat:0]] +[2022.06.19-20.18.15:314][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.TransmittanceLUT.SampleCount:10.0]] +[2022.06.19-20.18.15:314][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.MultiScatteringLUT.SampleCount:15.0]] +[2022.06.19-20.18.15:314][ 0]LogConfig: Setting CVar [[r.SkyLight.RealTimeReflectionCapture:1]] +[2022.06.19-20.18.15:314][ 0]LogConfig: Setting CVar [[fx.Niagara.QualityLevel:3]] +[2022.06.19-20.18.15:314][ 0]LogConfig: Applying CVar settings from Section [FoliageQuality@3] File [/home/sharkfin/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor/Scalability.ini] +[2022.06.19-20.18.15:314][ 0]LogConfig: Setting CVar [[foliage.DensityScale:1.0]] +[2022.06.19-20.18.15:314][ 0]LogConfig: Setting CVar [[grass.DensityScale:1.0]] +[2022.06.19-20.18.15:314][ 0]LogConfig: Applying CVar settings from Section [ShadingQuality@3] File [/home/sharkfin/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor/Scalability.ini] +[2022.06.19-20.18.15:314][ 0]LogConfig: Setting CVar [[r.HairStrands.SkyLighting.IntegrationType:2]] +[2022.06.19-20.18.15:314][ 0]LogConfig: Setting CVar [[r.HairStrands.SkyAO.SampleCount:4]] +[2022.06.19-20.18.15:314][ 0]LogConfig: Setting CVar [[r.HairStrands.Visibility.MSAA.SamplePerPixel:4]] +[2022.06.19-20.18.15:314][ 0]LogModuleManager: Warning: ModuleManager: Module 'LinuxDeviceProfileSelector' not found - its StaticallyLinkedModuleInitializers function is null. +[2022.06.19-20.18.15:314][ 0]LogInit: Applying CVar settings loaded from the selected device profile: [LinuxNoEditor] +[2022.06.19-20.18.15:315][ 0]LogHAL: Display: Platform has ~ 4 GB [33446559744 / 4294967296 / 32], which maps to Smallest [LargestMinGB=32, LargerMinGB=12, DefaultMinGB=8, SmallerMinGB=6, SmallestMinGB=0) +[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.RHICmdBypass:0]] +[2022.06.19-20.18.15:315][ 0]LogInit: Going up to parent DeviceProfile [Linux] +[2022.06.19-20.18.15:315][ 0]LogInit: Going up to parent DeviceProfile [] +[2022.06.19-20.18.15:315][ 0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@3] File [/home/sharkfin/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor/Scalability.ini] +[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.SkeletalMeshLODBias:0]] +[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.ViewDistanceScale:1.0]] +[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.StaticMeshLODDistanceScale:1]] +[2022.06.19-20.18.15:315][ 0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@3] File [/home/sharkfin/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor/Scalability.ini] +[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.PostProcessAAQuality:4]] +[2022.06.19-20.18.15:315][ 0]LogConfig: Applying CVar settings from Section [ShadowQuality@3] File [/home/sharkfin/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor/Scalability.ini] +[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.LightFunctionQuality:1]] +[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.ShadowQuality:5]] +[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.Shadow.CSM.MaxCascades:10]] +[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.Shadow.MaxResolution:2048]] +[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.Shadow.MaxCSMResolution:2048]] +[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.Shadow.RadiusThreshold:0.01]] +[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.Shadow.DistanceScale:1.0]] +[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.Shadow.CSM.TransitionScale:1.0]] +[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.Shadow.PreShadowResolutionFactor:1.0]] +[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.DistanceFieldShadowing:1]] +[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.DistanceFieldAO:1]] +[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.AOQuality:2]] +[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.VolumetricFog:0]] +[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.VolumetricFog.GridPixelSize:8]] +[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.VolumetricFog.GridSizeZ:128]] +[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.VolumetricFog.HistoryMissSupersampleCount:4]] +[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.LightMaxDrawDistanceScale:1]] +[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.CapsuleShadows:1]] +[2022.06.19-20.18.15:315][ 0]LogConfig: Applying CVar settings from Section [PostProcessQuality@3] File [/home/sharkfin/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor/Scalability.ini] +[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.MotionBlurQuality:4]] +[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.AmbientOcclusionMipLevelFactor:0.4]] +[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.AmbientOcclusionMaxQuality:100]] +[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.AmbientOcclusionLevels:0]] +[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.AmbientOcclusionRadiusScale:1.0]] +[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.DepthOfFieldQuality:2]] +[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.RenderTargetPoolMin:400]] +[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.LensFlareQuality:2]] +[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.SceneColorFringeQuality:1]] +[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.EyeAdaptationQuality:2]] +[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.BloomQuality:5]] +[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.FastBlurThreshold:100]] +[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.Upscale.Quality:3]] +[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.Tonemapper.GrainQuantization:1]] +[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.LightShaftQuality:1]] +[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.Filter.SizeScale:1]] +[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.Tonemapper.Quality:5]] +[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.DOF.Gather.AccumulatorQuality:1 ; higher gathering accumulator quality]] +[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.DOF.Gather.PostfilterMethod:1 ; Median3x3 postfilering method]] +[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.DOF.Gather.EnableBokehSettings:0 ; no bokeh simulation when gathering]] +[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.DOF.Gather.RingCount:4 ; medium number of samples when gathering]] +[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.DOF.Scatter.ForegroundCompositing:1 ; additive foreground scattering]] +[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.DOF.Scatter.BackgroundCompositing:2 ; additive background scattering]] +[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.DOF.Scatter.EnableBokehSettings:1 ; bokeh simulation when scattering]] +[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.DOF.Scatter.MaxSpriteRatio:0.1 ; only a maximum of 10% of scattered bokeh]] +[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.DOF.Recombine.Quality:1 ; cheap slight out of focus]] +[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.DOF.Recombine.EnableBokehSettings:0 ; no bokeh simulation on slight out of focus]] +[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.DOF.TemporalAAQuality:1 ; more stable temporal accumulation]] +[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.DOF.Kernel.MaxForegroundRadius:0.025]] +[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.025]] +[2022.06.19-20.18.15:317][ 0]LogConfig: Applying CVar settings from Section [TextureQuality@3] File [/home/sharkfin/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor/Scalability.ini] +[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.Streaming.MipBias:0]] +[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.Streaming.AmortizeCPUToGPUCopy:0]] +[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.Streaming.MaxNumTexturesToStreamPerFrame:0]] +[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.Streaming.Boost:1]] +[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.MaxAnisotropy:8]] +[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.VT.MaxAnisotropy:8]] +[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.Streaming.LimitPoolSizeToVRAM:0]] +[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.Streaming.PoolSize:1000]] +[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.Streaming.MaxEffectiveScreenSize:0]] +[2022.06.19-20.18.15:317][ 0]LogConfig: Applying CVar settings from Section [EffectsQuality@3] File [/home/sharkfin/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor/Scalability.ini] +[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.TranslucencyLightingVolumeDim:64]] +[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.RefractionQuality:2]] +[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.SSR.Quality:3]] +[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.SSR.HalfResSceneColor:0]] +[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.SceneColorFormat:4]] +[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.DetailMode:2]] +[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.TranslucencyVolumeBlur:1]] +[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.MaterialQualityLevel:1 ; High quality]] +[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.AnisotropicMaterials:1]] +[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.SSS.Scale:1]] +[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.SSS.SampleSet:2]] +[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.SSS.Quality:1]] +[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.SSS.HalfRes:0]] +[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.SSGI.Quality:3]] +[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.EmitterSpawnRateScale:1.0]] +[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.ParticleLightQuality:2]] +[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.FastApplyOnOpaque:1 ; Always have FastSkyLUT 1 in this case to avoid wrong sky]] +[2022.06.19-20.18.15:318][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.SampleCountMaxPerSlice:4]] +[2022.06.19-20.18.15:318][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.DepthResolution:16.0]] +[2022.06.19-20.18.15:318][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.FastSkyLUT:1]] +[2022.06.19-20.18.15:318][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMin:4.0]] +[2022.06.19-20.18.15:318][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMax:128.0]] +[2022.06.19-20.18.15:318][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.SampleCountMin:4.0]] +[2022.06.19-20.18.15:318][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.SampleCountMax:128.0]] +[2022.06.19-20.18.15:318][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.TransmittanceLUT.UseSmallFormat:0]] +[2022.06.19-20.18.15:318][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.TransmittanceLUT.SampleCount:10.0]] +[2022.06.19-20.18.15:318][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.MultiScatteringLUT.SampleCount:15.0]] +[2022.06.19-20.18.15:318][ 0]LogConfig: Setting CVar [[r.SkyLight.RealTimeReflectionCapture:1]] +[2022.06.19-20.18.15:318][ 0]LogConfig: Setting CVar [[fx.Niagara.QualityLevel:3]] +[2022.06.19-20.18.15:318][ 0]LogConfig: Applying CVar settings from Section [FoliageQuality@3] File [/home/sharkfin/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor/Scalability.ini] +[2022.06.19-20.18.15:318][ 0]LogConfig: Setting CVar [[foliage.DensityScale:1.0]] +[2022.06.19-20.18.15:318][ 0]LogConfig: Setting CVar [[grass.DensityScale:1.0]] +[2022.06.19-20.18.15:318][ 0]LogConfig: Applying CVar settings from Section [ShadingQuality@3] File [/home/sharkfin/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor/Scalability.ini] +[2022.06.19-20.18.15:318][ 0]LogConfig: Setting CVar [[r.HairStrands.SkyLighting.IntegrationType:2]] +[2022.06.19-20.18.15:318][ 0]LogConfig: Setting CVar [[r.HairStrands.SkyAO.SampleCount:4]] +[2022.06.19-20.18.15:318][ 0]LogConfig: Setting CVar [[r.HairStrands.Visibility.MSAA.SamplePerPixel:4]] +[2022.06.19-20.18.15:318][ 0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [/home/sharkfin/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor/Engine.ini] +[2022.06.19-20.18.15:318][ 0]LogConfig: Setting CVar [[CommonLoadingScreen.HoldLoadingScreenAdditionalSecs:0.500000]] +[2022.06.19-20.18.15:318][ 0]LogConfig: Setting CVar [[g.TimeoutForBlockOnRenderFence:60000]] +[2022.06.19-20.18.15:318][ 0]LogInit: Unix hardware info: +[2022.06.19-20.18.15:318][ 0]LogInit: - we are the first instance of this executable +[2022.06.19-20.18.15:318][ 0]LogInit: - this process' id (pid) is 103242, parent process' id (ppid) is 103235 +[2022.06.19-20.18.15:318][ 0]LogInit: - we are not running under debugger +[2022.06.19-20.18.15:318][ 0]LogInit: - machine network name is 'archfin' +[2022.06.19-20.18.15:318][ 0]LogInit: - user name is 'sharkfin' (sharkfin) +[2022.06.19-20.18.15:318][ 0]LogInit: - we're logged in locally +[2022.06.19-20.18.15:318][ 0]LogInit: - we're running with rendering +[2022.06.19-20.18.15:318][ 0]LogInit: - CPU: GenuineIntel '12th Gen Intel(R) Core(TM) i5-12600K' (signature: 0x90672) +[2022.06.19-20.18.15:318][ 0]LogInit: - Number of physical cores available for the process: 10 +[2022.06.19-20.18.15:318][ 0]LogInit: - Number of logical cores available for the process: 16 +[2022.06.19-20.18.15:319][ 0]LogInit: - Cache line size: 64 +[2022.06.19-20.18.15:319][ 0]LogInit: - Memory allocator used: binned2 +[2022.06.19-20.18.15:319][ 0]LogInit: - This binary is optimized with LTO: no, PGO: no, instrumented for PGO data collection: no +[2022.06.19-20.18.15:319][ 0]LogInit: - This is an internal build. +[2022.06.19-20.18.15:319][ 0]LogCore: Benchmarking clocks: +[2022.06.19-20.18.15:319][ 0]LogCore: - CLOCK_MONOTONIC (id=1) can sustain 91495660 (91496K, 91M) calls per second without zero deltas. +[2022.06.19-20.18.15:319][ 0]LogCore: - CLOCK_MONOTONIC_RAW (id=4) can sustain 88955761 (88956K, 89M) calls per second without zero deltas. +[2022.06.19-20.18.15:319][ 0]LogCore: - CLOCK_MONOTONIC_COARSE (id=6) can sustain 288020308 (288020K, 288M) calls per second with 99.999892% zero deltas. +[2022.06.19-20.18.15:319][ 0]LogCore: Selected clock_id 1 (CLOCK_MONOTONIC) since it is the fastest support clock without zero deltas. +[2022.06.19-20.18.15:319][ 0]LogInit: Unix-specific commandline switches: +[2022.06.19-20.18.15:319][ 0]LogInit: -ansimalloc - use malloc()/free() from libc (useful for tools like valgrind and electric fence) +[2022.06.19-20.18.15:319][ 0]LogInit: -jemalloc - use jemalloc for all memory allocation +[2022.06.19-20.18.15:319][ 0]LogInit: -binnedmalloc - use binned malloc for all memory allocation +[2022.06.19-20.18.15:319][ 0]LogInit: -filemapcachesize=NUMBER - set the size for case-sensitive file mapping cache +[2022.06.19-20.18.15:319][ 0]LogInit: -useksm - uses kernel same-page mapping (KSM) for mapped memory (OFF) +[2022.06.19-20.18.15:319][ 0]LogInit: -ksmmergeall - marks all mmap'd memory pages suitable for KSM (OFF) +[2022.06.19-20.18.15:319][ 0]LogInit: -preloadmodulesymbols - Loads the main module symbols file into memory (OFF) +[2022.06.19-20.18.15:319][ 0]LogInit: -sigdfl=SIGNAL - Allows a specific signal to be set to its default handler rather then ignoring the signal +[2022.06.19-20.18.15:319][ 0]LogInit: -httpproxy=ADDRESS:PORT - redirects HTTP requests to a proxy (only supported if compiled with libcurl) +[2022.06.19-20.18.15:319][ 0]LogInit: -reuseconn - allow libcurl to reuse HTTP connections (only matters if compiled with libcurl) +[2022.06.19-20.18.15:319][ 0]LogInit: -virtmemkb=NUMBER - sets process virtual memory (address space) limit (overrides VirtualMemoryLimitInKB value from .ini) +[2022.06.19-20.18.15:319][ 0]LogInit: - Physical RAM available (not considering process quota): 32 GB (31897 MB, 32662656 KB, 33446559744 byteSteam +Window 6b98ec20 unmapped +Unregistered late callbacks XWL: 6b98ee28 6b98f110 6b98f178 6b98edc0 +Callback 3fc24a90 -> 6b98ec20, XWayland Window Late removed. +Callback 3fc24a90 -> 6b98ec20, XWayland Window Late removed. +Callback 3fc24a90 -> 6b98ec20, XWayland Window Late removed. +Callback 3fc24a90 -> 6b98ec20, XWayland Window Late removed. +Destroying the SubSurface tree of unmapped window 6b98ec20 +Callback 3fc24a20 -> 6b87d8f0, SurfaceTreeNode removed. +Callback 3fc24a20 -> 6b87d8f0, SurfaceTreeNode removed. +Callback 3fc24a20 -> 6b87d8f0, SurfaceTreeNode removed. +SurfaceTree Node removed +New XWayland Surface created. +Registered signal for owner 6b7a0f90: 6b979948 -> 6b7a0ff8 (owner: XWayland Window) +Registered signal for owner 6b7a0f90: 6b979958 -> 6b7a1060 (owner: XWayland Window) +Registered signal for owner 6b7a0f90: 6b9798c8 -> 6b7a10c8 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b7a4360: 6b7828e8 -> 6b7a43c8 (owner: XWayland Window) +Registered signal for owner 6b7a4360: 6b7828f8 -> 6b7a4430 (owner: XWayland Window) +Registered signal for owner 6b7a4360: 6b782868 -> 6b7a4498 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b7a4b80: 6b7a2098 -> 6b7a4be8 (owner: XWayland Window) +Registered signal for owner 6b7a4b80: 6b7a20a8 -> 6b7a4c50 (owner: XWayland Window) +Registered signal for owner 6b7a4b80: 6b7a2018 -> 6b7a4cb8 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b7a53a0: 6b9ad098 -> 6b7a5408 (owner: XWayland Window) +Registered signal for owner 6b7a53a0: 6b9ad0a8 -> 6b7a5470 (owner: XWayland Window) +Registered signal for owner 6b7a53a0: 6b9ad018 -> 6b7a54d8 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b7c3bc0: 6b7a3a38 -> 6b7c3c28 (owner: XWayland Window) +Registered signal for owner 6b7c3bc0: 6b7a3a48 -> 6b7c3c90 (owner: XWayland Window) +Registered signal for owner 6b7c3bc0: 6b7a39b8 -> 6b7c3cf8 (owner: XWayland Window) +Set keyboard focus to surface 6b9ad490, with window name: Splitgate - Steam +Registered signal for owner 6b945650: 6b9ad760 -> 6b945658 (owner: SurfaceTreeNode) +Registered signal for owner 6b945650: 6b9ad750 -> 6b9456c0 (owner: SurfaceTreeNode) +Registered signal for owner 6b945650: 6b9ad770 -> 6b945728 (owner: SurfaceTreeNode) +Creating a surfaceTree Root! (pWindow: 6b7a0f90) +Window got assigned a surfaceTreeNode 6b945650 +Registered signal for owner 6b7a0f90: 6b979928 -> 6b7a1198 (owner: XWayland Window Late) +Registered signal for owner 6b7a0f90: 6b979938 -> 6b7a1480 (owner: XWayland Window Late) +Registered signal for owner 6b7a0f90: 6b9798d8 -> 6b7a14e8 (owner: XWayland Window Late) +Registered signal for owner 6b7a0f90: 6b979968 -> 6b7a1130 (owner: XWayland Window Late) +Map request dispatched, monitor DP-3, xywh: 1248.000000 708.000000 64.000000 24.000000 +Set keyboard focus to surface 6b9abe40, with window name: Steam +Window 6b7a0f90 unmapped +Unregistered late callbacks XWL: 6b7a1198 6b7a1480 6b7a14e8 6b7a1130 +Callback 3fc24a90 -> 6b7a0f90, XWayland Window Late removed. +Callback 3fc24a90 -> 6b7a0f90, XWayland Window Late removed. +Callback 3fc24a90 -> 6b7a0f90, XWayland Window Late removed. +Callback 3fc24a90 -> 6b7a0f90, XWayland Window Late removed. +Framebuffer created, status 36053 +Destroying the SubSurface tree of unmapped window 6b7a0f90 +Callback 3fc24a20 -> 6b945650, SurfaceTreeNode removed. +Callback 3fc24a20 -> 6b945650, SurfaceTreeNode removed. +Callback 3fc24a20 -> 6b945650, SurfaceTreeNode removed. +SurfaceTree Node removed +Window 6b7a4360 destroyed, queueing. +Callback 3fc24b10 -> 6b7a4360, XWayland Window removed. +Callback 3fc24b10 -> 6b7a4360, XWayland Window removed. +Callback 3fc24b10 -> 6b7a4360, XWayland Window removed. +Window 6b7a0f90 destroyed, queueing. +Callback 3fc24b10 -> 6b7a0f90, XWayland Window removed. +Callback 3fc24b10 -> 6b7a0f90, XWayland Window removed. +Callback 3fc24b10 -> 6b7a0f90, XWayland Window removed. +Cleanup: destroyed a window +New XWayland Surface created. +Registered signal for owner 6b7a0f90: 6b7828e8 -> 6b7a0ff8 (owner: 00:00:24.090 [ERROR] [xwayland/xwm.c:1546] xcb error: op ConfigureWindow (no minor), code Value (no extension), sequence 2640, value 0 +Installing breakpad exception handler for appid(gameoverlayui)/version(20220618001721) +Installing breakpad exception handler for appid(gameoverlayui)/version(1.0) +Installing breakpad exception handler for appid(gameoverlayui)/version(1.0) +s) +[2022.06.19-20.18.15:319][ 0]LogInit: - VirtualMemoryAllocator pools will grow at scale 1.4 +[2022.06.19-20.18.15:319][ 0]LogInit: - MemoryRangeDecommit() will be a no-op (re-run with -vmapoolevict to change) +[2022.06.19-20.18.15:332][ 0]LogInit: Physics initialised using underlying interface: PhysX +[2022.06.19-20.18.15:332][ 0]LogInit: Using OS detected language (en-US-POSIX). +[2022.06.19-20.18.15:332][ 0]LogInit: Using OS detected locale (en-US-POSIX). +[2022.06.19-20.18.15:333][ 0]LogTextLocalizationManager: No specific localization for 'en-US-POSIX' exists, so the 'en' localization will be used. +[2022.06.19-20.18.15:346][ 0]LogHAL: Warning: Game icon not found. +[2022.06.19-20.18.15:386][ 0]LogSlate: New Slate User Created. User Index 0, Is Virtual User: 0 +[2022.06.19-20.18.15:386][ 0]LogSlate: Slate User Registered. User Index 0, Is Virtual User: 0 +[2022.06.19-20.18.15:387][ 0]LogInit: Using SDL_WINDOW_VULKAN +[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: - Found 8 instance layers +[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_LAYER_AMD_switchable_graphics_32 +[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_LAYER_AMD_switchable_graphics_64 +[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_LAYER_KHRONOS_validation +[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_LAYER_NV_optimus +[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_LAYER_VALVE_steam_fossilize_32 +[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_LAYER_VALVE_steam_fossilize_64 +[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_LAYER_VALVE_steam_overlay_32 +[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_LAYER_VALVE_steam_overlay_64 +[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: - Found 19 instance extensions +[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_EXT_acquire_xlib_display +[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_EXT_debug_report +[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_EXT_debug_utils +[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_EXT_direct_mode_display +[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_EXT_display_surface_counter +[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_EXT_validation_features +[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_KHR_device_group_creation +[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_KHR_display +[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_KHR_external_fence_capabilities +[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_KHR_external_memory_capabilities +[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_KHR_external_semaphore_capabilities +[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_KHR_get_display_properties2 +[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_KHR_get_physical_device_properties2 +[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_KHR_get_surface_capabilities2 +[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_KHR_portability_enumeration +[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_KHR_surface +[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_KHR_wayland_surface +[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_KHR_xcb_surface +[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_KHR_xlib_surface +[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: Not using instance layers +[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: Using instance extensions +[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_KHR_surface +[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_KHR_xlib_surface +[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_KHR_external_memory_capabilities +[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_KHR_get_physical_device_properties2 +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: Found 1 device(s) +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: Device 0: AMD Radeon RX 6900 XT +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - API 1.3.212(0x4030d4) Driver 0x8000e2 VendorId 0x1002 +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - DeviceID 0x73bf Type Discrete GPU +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Max Descriptor Sets Bound 32 Timestamps 1 +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Device Properties driverName: AMD open-source driver +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Device Properties driverInfo: 2022.Q2.2 +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device layer VK_LAYER_AMD_switchable_graphics_32 +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device layer VK_LAYER_AMD_switchable_graphics_64 +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device layer VK_LAYER_VALVE_steam_overlay_32 +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device layer VK_LAYER_VALVE_steam_overlay_64 +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_AMD_buffer_marker +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_AMD_device_coherent_memory +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_AMD_draw_indirect_count +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_AMD_gcn_shader +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_AMD_gpa_interface +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_AMD_gpu_shader_half_float +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_AMD_gpu_shader_int16 +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_AMD_memory_overallocation_behavior +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_AMD_mixed_attachment_samples +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_AMD_shader_ballot +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_AMD_shader_core_properties +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_AMD_shader_core_properties2 +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_AMD_shader_explicit_vertex_parameter +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_AMD_shader_fragment_mask +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_AMD_shader_image_load_store_lod +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_AMD_shader_info +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_AMD_shader_trinary_minmax +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_AMD_texture_gather_bias_lod +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_4444_formats +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_border_color_swizzle +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_calibrated_timestamps +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_color_write_enable +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_conditional_rendering +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_conservative_rasterization +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_custom_border_color +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_depth_clip_control +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_depth_clip_enable +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_depth_range_unrestricted +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_descriptor_indexing +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_extended_dynamic_state +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_extended_dynamic_state2 +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_external_memory_dma_buf +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_external_memory_host +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_global_priority +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_global_priority_query +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_hdr_metadata +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_host_query_reset +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_image_robustness +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_image_view_min_lod +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_index_type_uint8 +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_inline_uniform_block +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_line_rasterization +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_load_store_op_none +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_memory_budget +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_memory_priority +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_pageable_device_local_memory +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_pci_bus_info +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_pipeline_creation_cache_control +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_pipeline_creation_feedback +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_post_depth_coverage +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_primitive_topology_list_restart +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_private_data +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_provoking_vertex +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_queue_family_foreign +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_robustness2 +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_sample_locations +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_sampler_filter_minmax +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_scalar_block_layout +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_separate_stencil_usage +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_shader_atomic_float +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_shader_atomic_float2 +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_shader_demote_to_helper_invocation +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_shader_image_atomic_int64 +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_shader_stencil_export +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_shader_subgroup_ballot +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_shader_subgroup_vote +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_shader_viewport_index_layer +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_subgroup_size_control +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_texel_buffer_alignment +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_tooling_info +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_transform_feedback +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_vertex_attribute_divisor +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_ycbcr_image_arrays +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_GOOGLE_decorate_string +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_GOOGLE_hlsl_functionality1 +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_GOOGLE_user_type +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_16bit_storage +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_8bit_storage +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_bind_memory2 +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_buffer_device_address +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_copy_commands2 +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_create_renderpass2 +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_dedicated_allocation +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_depth_stencil_resolve +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_descriptor_update_template +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_device_group +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_draw_indirect_count +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_driver_properties +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_dynamic_rendering +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_external_fence +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_external_fence_fd +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_external_memory +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_external_memory_fd +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_external_semaphore +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_external_semaphore_fd +[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_format_feature_flags2 +[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_fragment_shading_rate +[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_get_memory_requirements2 +[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_global_priority +[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_image_format_list +[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_imageless_framebuffer +[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_maintenance1 +[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_maintenance2 +[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_maintenance3 +[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_maintenance4 +[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_multiview +[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_pipeline_executable_properties +[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_pipeline_library +[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_relaxed_block_layout +[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_sampler_mirror_clamp_to_edge +[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_sampler_ycbcr_conversion +[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_separate_depth_stencil_layouts +[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_atomic_int64 +[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_clock +[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_draw_parameters +[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_float16_int8 +[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_float_controls +[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_integer_dot_product +[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_non_semantic_info +[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_subgroup_extended_types +[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_subgroup_uniform_control_flow +[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_terminate_invocation +[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_spirv_1_4 +[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_storage_buffer_storage_class +[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_swapchain +[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_swapchain_mutable_format +[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_synchronization2 +[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_timeline_semaphore +[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_uniform_buffer_standard_layout +[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_variable_pointers +[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_vulkan_memory_model +[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_workgroup_memory_explicit_layout +[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_zero_initialize_workgroup_memory +[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: Using Device 0: Geometry 1 Tessellation 1 BufferAtomic64 1 +[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: Found 3 Queue Families +[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: Initializing Queue Family 0: 1 queues Gfx Compute Xfer Sparse +[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: Skipping unnecessary Queue Family 1: 4 queues Compute Xfer Sparse +[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: Initializing Queue Family 2: 2 queues Xfer Sparse +[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: Using device layers +[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: Using device extensions +[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: * VK_KHR_driver_properties +[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: * VK_KHR_get_memory_requirements2 +[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: * VK_KHR_dedicated_allocation +[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: * VK_KHR_swapchain +[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: * VK_KHR_maintenance1 +[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: * VK_KHR_maintenance2 +[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: * VK_EXT_memory_budget +[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: * VK_EXT_scalar_block_layout +[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: * VK_EXT_memory_priority +[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: * VK_KHR_shader_atomic_int64 +[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: * VK_KHR_image_format_list +[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: MapFormatSupport: D24 (images) is not supported with Vk format 125, falling back to Vk format 128 +[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: MapFormatSupport: D24 (images) is not supported with Vk format 125, falling back to Vk format 126 +[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: MapFormatSupport: D24 (images) is not supported with Vk format 125, falling back to Vk format 130 +[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: 2 Device Memory Heaps; Max memory allocations -1 +[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: 0: Flags 0x0 Size 33446428672 (31897.00 MB) +[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: 1: Flags 0x3 Size 17163091968 (16368.00 MB) GPU +[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: 8 Device Memory Types (Not unified) +[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: 1: Flags 0x00006 Heap 0 HostVisible HostCoherent +[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: 3: Flags 0x0000e Heap 0 HostVisible HostCoherent HostCached +[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: 5: Flags 0x000c6 Heap 0 HostVisible HostCoherent +[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: 7: Flags 0x000ce Heap 0 HostVisible HostCoherent HostCached +[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: 0: Flags 0x00001 Heap 1 Local +[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: 2: Flags 0x00007 Heap 1 Local HostVisible HostCoherent +[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: 4: Flags 0x000c1 Heap 1 Local +[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: 6: Flags 0x000c7 Heap 1 Local HostVisible HostCoherent +[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: Host Allocation Percentage 0.00% - 0.00MB / 15549.600MB +[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: Memory Budget +[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: | Usage | Budget | Size | +[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: ---------|---------------------------------------------------------------| +[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: HEAP 00 | 0.00% / 0.000mb | 30302.150mb | 31897.000mb | +[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: HEAP 01 | 0.00% / 0.000mb | 15549.600mb | 16368.000mb | +[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: ---------|---------------------------------------------------------------| +[2022.06.19-20.18.15:443][ 0]LogVulkanRHI: Display: FVulkanPipelineStateCacheManager: Binary pipeline cache '/home/sharkfin/.config/Epic/PortalWars/Saved/VulkanPSO.cache.1002.73bf' not found. +[2022.06.19-20.18.15:445][ 0]LogRHI: Texture pool is 11457 MB (70% of 16368 MB) +[2022.06.19-20.18.15:445][ 0]LogRendererCore: Ray tracing is disabled. Reason: r.RayTracing=0. +[2022.06.19-20.18.15:459][ 0]LogSlate: Using FreeType 2.10.0 +[2022.06.19-20.18.15:460][ 0]LogSlate: SlateFontServices - WITH_FREETYPE: 1, WITH_HARFBUZZ: 1 +[2022.06.19-20.18.15:477][ 0]LogInit: Using OS detected language (en-US-POSIX). +[2022.06.19-20.18.15:477][ 0]LogInit: Using OS detected locale (en-US-POSIX). +[2022.06.19-20.18.15:477][ 0]LogTextLocalizationManager: No specific localization for 'en-US-POSIX' exists, so the 'en' localization will be used. +[2022.06.19-20.18.15:493][ 0]LogTextLocalizationManager: Compacting localization data took 0.85ms +[XWayland Window) +Registered signal for owner 6b7a0f90: 6b7828f8 -> 6b7a1060 (owner: XWayland Window) +Registered signal for owner 6b7a0f90: 6b782868 -> 6b7a10c8 (owner: XWayland Window) +Window 6b7a0f90 destroyed, queueing. +Callback 3fc24b10 -> 6b7a0f90, XWayland Window removed. +Callback 3fc24b10 -> 6b7a0f90, XWayland Window removed. +Callback 3fc24b10 -> 6b7a0f90, XWayland Window removed. +New XWayland Surface created. +Registered signal for owner 6b7c61c0: 6b7828e8 -> 6b7c6228 (owner: XWayland Window) +Registered signal for owner 6b7c61c0: 6b7828f8 -> 6b7c6290 (owner: XWayland Window) +Registered signal for owner 6b7c61c0: 6b782868 -> 6b7c62f8 (owner: XWayland Window) +Window 6b7c61c0 destroyed, queueing. +Callback 3fc24b10 -> 6b7c61c0, XWayland Window removed. +Callback 3fc24b10 -> 6b7c61c0, XWayland Window removed. +Callback 3fc24b10 -> 6b7c61c0, XWayland Window removed. +New XWayland Surface created. +Registered signal for owner 6b7c69e0: 6b7828e8 -> 6b7c6a48 (owner: XWayland Window) +Registered signal for owner 6b7c69e0: 6b7828f8 -> 6b7c6ab0 (owner: XWayland Window) +Registered signal for owner 6b7c69e0: 6b782868 -> 6b7c6b18 (owner: XWayland Window) +Set keyboard focus to surface 6b979cd0, with window name: +Registered signal for owner 6b945650: 6b979fa0 -> 6b945658 (owner: SurfaceTreeNode) +Registered signal for owner 6b945650: 6b979f90 -> 6b9456c0 (owner: SurfaceTreeNode) +Registered signal for owner 6b945650: 6b979fb0 -> 6b945728 (owner: SurfaceTreeNode) +Creating a surfaceTree Root! (pWindow: 6b7c69e0) +Window got assigned a surfaceTreeNode 6b945650 +Registered signal for owner 6b7c69e0: 6b7828c8 -> 6b7c6be8 (owner: XWayland Window Late) +Registered signal for owner 6b7c69e0: 6b7828d8 -> 6b7c6ed0 (owner: XWayland Window Late) +Registered signal for owner 6b7c69e0: 6b782878 -> 6b7c6f38 (owner: XWayland Window Late) +Registered signal for owner 6b7c69e0: 6b782908 -> 6b7c6b80 (owner: XWayland Window Late) +Map request dispatched, monitor DP-3, xywh: 640.000000 360.000000 1280.000000 720.000000 +New XWayland Surface created. +Registered signal for owner 6b7c90a0: 6b7c8f88 -> 6b7c9108 (owner: XWayland Window) +Registered signal for owner 6b7c90a0: 6b7c8f98 -> 6b7c9170 (owner: XWayland Window) +Registered signal for owner 6b7c90a0: 6b7c8f08 -> 6b7c91d8 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b7c9b50: 6b7c9a38 -> 6b7c9bb8 (owner: XWayland Window) +Registered signal for owner 6b7c9b50: 6b7c9a48 -> 6b7c9c20 (owner: XWayland Window) +Registered signal for owner 6b7c9b50: 6b7c99b8 -> 6b7c9c88 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b7ca810: 6b7ca6f8 -> 6b7ca878 (owner: XWayland Window) +Registered signal for owner 6b7ca810: 6b7ca708 -> 6b7ca8e0 (owner: XWayland Window) +Registered signal for owner 6b7ca810: 6b7ca678 -> 6b7ca948 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b7cb4d0: 6b7cb3b8 -> 6b7cb538 (owner: XWayland Window) +Registered signal for owner 6b7cb4d0: 6b7cb3c8 -> 6b7cb5a0 (owner: XWayland Window) +Registered signal for owner 6b7cb4d0: 6b7cb338 -> 6b7cb608 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b7cc190: 6b7cc078 -> 6b7cc1f8 (owner: XWayland Window) +Registered signal for owner 6b7cc190: 6b7cc088 -> 6b7cc260 (owner: XWayland Window) +Registered signal for owner 6b7cc190: 6b7cbff8 -> 6b7cc2c8 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b7cce50: 6b7ccd38 -> 6b7cceb8 (owner: XWayland Window) +Registered signal for owner 6b7cce50: 6b7ccd48 -> 6b7ccf20 (owner: XWayland Window) +Registered signal for owner 6b7cce50: 6b7cccb8 -> 6b7ccf88 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b7cdb10: 6b7cd9f8 -> 6b7cdb78 (owner: XWayland Window) +Registered signal for owner 6b7cdb10: 6b7cda08 -> 6b7cdbe0 (owner: XWayland Window) +Registered signal for owner 6b7cdb10: 6b7cd978 -> 6b7cdc48 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b7ce7d0: 6b7ce6b8 -> 6b7ce838 (owner: XWayland Windo00:00:24.453 [ERROR] [xwayland/xwm.c:1546] xcb error: op ConfigureWindow (no minor), code Value (no extension), sequence 3180, value 0 +Installing breakpad exception handler for appid(gameoverlayui)/version(1.0) +w) +Registered signal for owner 6b7ce7d0: 6b7ce6c8 -> 6b7ce8a0 (owner: XWayland Window) +Registered signal for owner 6b7ce7d0: 6b7ce638 -> 6b7ce908 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b7cf490: 6b7cf378 -> 6b7cf4f8 (owner: XWayland Window) +Registered signal for owner 6b7cf490: 6b7cf388 -> 6b7cf560 (owner: XWayland Window) +Registered signal for owner 6b7cf490: 6b7cf2f8 -> 6b7cf5c8 (owner: XWayland Window) +Window 6b7c69e0 unmapped +Unregistered late callbacks XWL: 6b7c6be8 6b7c6ed0 6b7c6f38 6b7c6b80 +Callback 3fc24a90 -> 6b7c69e0, XWayland Window Late removed. +Callback 3fc24a90 -> 6b7c69e0, XWayland Window Late removed. +Callback 3fc24a90 -> 6b7c69e0, XWayland Window Late removed. +Callback 3fc24a90 -> 6b7c69e0, XWayland Window Late removed. +Framebuffer created, status 36053 +Set keyboard focus to surface 6b9abe40, with window name: Steam +Destroying the SubSurface tree of unmapped window 6b7c69e0 +Callback 3fc24a20 -> 6b945650, SurfaceTreeNode removed. +Callback 3fc24a20 -> 6b945650, SurfaceTreeNode removed. +Callback 3fc24a20 -> 6b945650, SurfaceTreeNode removed. +SurfaceTree Node removed +New XWayland Surface created. +Registered signal for owner 6b7c7250: 6b979e58 -> 6b7c72b8 (owner: XWayland Window) +Registered signal for owner 6b7c7250: 6b979e68 -> 6b7c7320 (owner: XWayland Window) +Registered signal for owner 6b7c7250: 6b979dd8 -> 6b7c7388 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b7d1460: 6b7a34f8 -> 6b7d14c8 (owner: XWayland Window) +Registered signal for owner 6b7d1460: 6b7a3508 -> 6b7d1530 (owner: XWayland Window) +Registered signal for owner 6b7d1460: 6b7a3478 -> 6b7d1598 (owner: XWayland Window) +Window 6b7c69e0 destroyed, queueing. +Callback 3fc24b10 -> 6b7c69e0, XWayland Window removed. +Callback 3fc24b10 -> 6b7c69e0, XWayland Window removed. +Callback 3fc24b10 -> 6b7c69e0, XWayland Window removed. +New XWayland Surface created. +Registered signal for owner 6b7d1c80: 6b7828e8 -> 6b7d1ce8 (owner: XWayland Window) +Registered signal for owner 6b7d1c80: 6b7828f8 -> 6b7d1d50 (owner: XWayland Window) +Registered signal for owner 6b7d1c80: 6b782868 -> 6b7d1db8 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b7d24a0: 6b7c84b8 -> 6b7d2508 (owner: XWayland Window) +Registered signal for owner 6b7d24a0: 6b7c84c8 -> 6b7d2570 (owner: XWayland Window) +Registered signal for owner 6b7d24a0: 6b7c8438 -> 6b7d25d8 (owner: XWayland Window) +Set keyboard focus to surface 6b9aca20, with window name: PortalWars +Registered signal for owner 6b945650: 6b9accf0 -> 6b945658 (owner: SurfaceTreeNode) +Registered signal for owner 6b945650: 6b9acce0 -> 6b9456c0 (owner: SurfaceTreeNode) +Registered signal for owner 6b945650: 6b9acd00 -> 6b945728 (owner: SurfaceTreeNode) +Creating a surfaceTree Root! (pWindow: 6b7d24a0) +Window got assigned a surfaceTreeNode 6b945650 +Registered signal for owner 6b7d24a0: 6b7c8498 -> 6b7d26a8 (owner: XWayland Window Late) +Registered signal for owner 6b7d24a0: 6b7c84a8 -> 6b7d2990 (owner: XWayland Window Late) +Registered signal for owner 6b7d24a0: 6b7c8448 -> 6b7d29f8 (owner: XWayland Window Late) +Registered signal for owner 6b7d24a0: 6b7c84d8 -> 6b7d2640 (owner: XWayland Window Late) +Map request dispatched, monitor DP-3, xywh: 320.000000 217.000000 1920.000000 1007.000000 +Window 6b7ce7d0 destroyed, queueing. +Callback 3fc24b10 -> 6b7ce7d0, XWayland Window removed. +Callback 3fc24b10 -> 6b7ce7d0, XWayland Window removed. +Callback 3fc24b10 -> 6b7ce7d0, XWayland Window removed. +Window 6b7cdb10 destroyed, queueing. +Callback 3fc24b10 -> 6b7cdb10, XWayland Window removed. +Callback 3fc24b10 -> 6b7cdb10, XWayland Window removed. +Callback 3fc24b10 -> 6b7cdb10, XWayland Window removed. +Window 6b7cce50 destroyed, queueing. +Callback 3fc24b10 -> 6b7cce50, XWayland Window removed. +Callback 3fc24b10 -> 6b7cce50, XWayland Window removed. +Callback 3fc24b10 -> 6b7cce50, XWayland Window removed. +Window 6b7cc190 destroyed, queueing. +Callback 3fc24b10 -> 6b7cc190, XWayland Window removed. +Callback 3fc24b10 -> 6b7cc190, XWayland Window re2022.06.19-20.18.15:493][ 0]LogAssetRegistry: FAssetRegistry took 0.0157 seconds to start up +[2022.06.19-20.18.15:541][ 0]LogStreaming: Display: FlushAsyncLoading: 1 QueuedPackages, 0 AsyncPackages +[2022.06.19-20.18.15:544][ 0]LogSerialization: Display: AllowBulkDataInIoStore: 'true' +[2022.06.19-20.18.15:545][ 0]LogModuleManager: Warning: ModuleManager: Module 'LinuxDeviceProfileSelector' not found - its StaticallyLinkedModuleInitializers function is null. +[2022.06.19-20.18.15:545][ 0]LogInit: Active device profile: [0x7f8eb5065f80][0x7f8eb3819250 49] LinuxNoEditor +[2022.06.19-20.18.15:545][ 0]LogInit: Profiles: [0x7f8eb5065ec0][0x7f8eb3816dc0 49] Linux, [0x7f8eb5065f80][0x7f8eb3819250 49] LinuxNoEditor, +[2022.06.19-20.18.15:546][ 0]LogNetVersion: PortalWars 1.0.0, NetCL: 17155196, EngineNetVer: 17, GameNetVer: 0 (Checksum: 2672213518) +[2022.06.19-20.18.15:569][ 0]LogAkAudio: Wwise(R) SDK Version 2019.1.10 Build 7250. Copyright (c) 2006-2019 Audiokinetic Inc. +[2022.06.19-20.18.15:570][ 0]LogInit: Audiokinetic Audio Device setting bank directory to ../../../PortalWars/Content/WwiseAudio/Linux. +[2022.06.19-20.18.15:571][ 0]LogPakFile: New pak file ../../../PortalWars/Content/Paks/pakchunk3-LinuxNoEditor.pak added to pak precacher. +[2022.06.19-20.18.15:571][ 0]LogInit: Audiokinetic Audio Device initialized. +[2022.06.19-20.18.15:571][ 0]LogPackageLocalizationCache: Processed 31 localized package path(s) for 1 prioritized culture(s) in 0.000034 seconds +[2022.06.19-20.18.15:572][ 0]LogStats: UGameplayTagsManager::InitializeManager - 0.001 s +[2022.06.19-20.18.15:573][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2022.06.19-20.18.15:721][ 0]LogMoviePlayer: Initializing movie player +[2022.06.19-20.18.15:725][ 0]LogVulkanRHI: Display: Requested PixelFormat 18 not supported by this swapchain! Falling back to supported swapchain format... +[2022.06.19-20.18.15:725][ 0]LogVulkanRHI: Display: Queue Family 0: Supports Present +[2022.06.19-20.18.15:725][ 0]LogVulkanRHI: Display: Queue Family 0: Supports Present +[2022.06.19-20.18.15:725][ 0]LogVulkanRHI: Display: Queue Family 2: Supports Present +[2022.06.19-20.18.15:725][ 0]LogVulkanRHI: Creating new VK swapchain with present mode 1, format 44, color space 0, num images 3 +[2022.06.19-20.18.15:750][ 0]AccelByteNetUtil: AccelByteNetworkUtilities startup +[2022.06.19-20.18.15:750][ 0]LogEQU8Client: EQU8 Client Sdk Initialized +[2022.06.19-20.18.15:752][ 0]LogUObjectArray: 20949 objects as part of root set at end of initial load. +[2022.06.19-20.18.15:752][ 0]LogUObjectArray: 2 objects are not in the root set, but can never be destroyed because they are in the DisregardForGC set. +[2022.06.19-20.18.15:752][ 0]LogUObjectAllocator: 5587648 out of 0 bytes used by permanent object pool. +[2022.06.19-20.18.15:752][ 0]LogUObjectArray: CloseDisregardForGC: 20949/20949 objects in disregard for GC pool +[2022.06.19-20.18.15:752][ 0]LogStreaming: Display: AsyncLoading2 - Thread Started: true, IsInitialLoad: false +[2022.06.19-20.18.15:752][ 0]LogEngine: Initializing Engine... +[2022.06.19-20.18.15:874][ 0]LogStreaming: Display: AsyncLoading2 - InitialLoad Finalized: 20383 script object entries in 547.98 KB +[2022.06.19-20.18.15:874][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2022.06.19-20.18.16:004][ 0]LogPakFile: New pak file ../../../PortalWars/Content/Paks/pakchunk0-LinuxNoEditor.pak added to pak precacher. +[2022.06.19-20.18.16:004][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2022.06.19-20.18.16:091][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2022.06.19-20.18.16:329][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2022.06.19-20.18.16:463][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2022.06.19-20.18.16:512][ 0]LogInit: Initializing FReadOnlyCVARCache +[2022.06.19-20.18.16:512][ 0]LogAudio: Display: Initializing Audio Device Manager... +[2022.06.19-20.18.16:512][ 0]LogAudio: Display: Loading Default Audio Settings Objects... +[2022.06.19-20.18.16:513][ 0]LogAudio: Display: No default SoundConcurrencyObject specified (or failed to load). +[2022.06.19-20.18.16:513][ 0]LogAudio: Display: Audio Device Manager Initialized +[2022.06.19-20.18.16:513][ 0]LogAudio: Display: Creating Audio Device: Id: 1, Scope: Shared, Realtime: True +[2022.06.19-20.18.16:513][ 0]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2022.06.19-20.18.16:513][ 0]LogAudioMixer: Display: Sample Rate: 48000 +[2022.06.19-20.18.16:513][ 0]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2022.06.19-20.18.16:513][ 0]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2022.06.19-20.18.16:513][ 0]LogAudioMixer: Display: Number of buffers to queue: 2 +[2022.06.19-20.18.16:513][ 0]LogAudioMixer: Display: Max Channels (voices): 32 +[2022.06.19-20.18.16:513][ 0]LogAudioMixer: Display: Number of Async Source Workers: 0 +[2022.06.19-20.18.16:513][ 0]LogAudio: Display: AudioDevice MaxSources: 32 +[2022.06.19-20.18.16:513][ 0]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2022.06.19-20.18.16:513][ 0]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2022.06.19-20.18.16:513][ 0]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2022.06.19-20.18.16:513][ 0]LogAudioMixer: Display: Initializing audio mixer. +[2022.06.19-20.18.16:517][ 0]LogAudioMixerSDL: Display: Initialized SDL using pulseaudio platform API backend. +[2022.06.19-20.18.16:675][ 0]LogAudioMixerSDL: Opening default audio device (device index -1) +[2022.06.19-20.18.16:706][ 0]LogAudioMixer: Display: Using Audio Device Default Audio Device +[2022.06.19-20.18.16:709][ 0]LogAudioMixer: Display: Initializing Sound Submixes... +[2022.06.19-20.18.16:710][ 0]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2022.06.19-20.18.16:710][ 0]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2022.06.19-20.18.16:711][ 0]LogAudioMixer: Display: Creating Master Submix 'MasterEQSubmixDefault' +[2022.06.19-20.18.16:711][ 0]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=6, Samples=6144 +[2022.06.19-20.18.16:711][ 0]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal() +[2022.06.19-20.18.16:711][ 0]LogInit: FAudioDevice initialized. +[2022.06.19-20.18.16:711][ 0]LogNetVersion: Set ProjectVersion to 7.0.3. Version Checksum will be recalculated on next use. +[2022.06.19-20.18.16:711][ 0]LogInit: Texture streaming: Enabled +[2022.06.19-20.18.16:713][ 0]LogAudio: Display: Audio Device (ID: 1) registered with world 'Untitled'. +[2022.06.19-20.18.16:713][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2022.06.19-20.18.16:716][ 0]LogTemp: Warning: CurrentGameVersion: 7.0.3 - LastGameVersion used: 7.0.3 +[2022.06.19-20.18.16:718][ 0]LogAccelByteOSS: Warning: <<< GetApiClient (DefaultInstance) has finished execution. Failed to retrieve an API client because local user num 0 is not found! +[2022.06.19-20.18.16:718][ 0]LogAccelByteOSS: Warning: <<< GetLobbySessionId (DefaultInstance) has finished execution. Failed to get lobby session ID for user at index 0 as their API client instance is invalid! +[2022.06.19-20.18.16:718][ 0]LogInit: Display: Game Engine Initialized. +[2022.06.19-20.18.16:718][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Runtime/SunPosition/Resources/SunPosition.png' error. +[2022.06.19-20.18.16:718][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Runtime/SunPosition/Resources/SunPosition.png +[2022.06.19-20.18.16:718][ 0]LogInit: Display: Starting Game. +[2022.06.19-20.18.16:718][ 0]LogNet: Browse: /Game/Maps/MainMenu?Name=Player +[2022.06.19-20.18.16:718][ 0]LogLoadingScreen: Showing loading screen when 'IsShowingInitialLoadingScreen()' is false. +[2022.06.19-20.18.16:718][ 0]LogLoadingScreen: GameState hasn't yet replicated (it's null) +[2022.06.19-20.18.16:722][ 0]LogCore: Display: Setting hang detector multiplier to 1.0000s. New hang duration: 0.0000s. New present duration: 0.0000s. +[2022.06.19-20.18.16:726][ 0]LogVulkanRHI: Creating new VK swapchain with present mode 0, format 44, color space 0, num images 3 +[2022.06.19-20.18.16:732][ 0]LogLoadingScreen: Loading screen showing: 1. Reason: GameState hasn't yet replicated (it's null) +[2022.06.19-20.18.16:732][ 0]LogLoad: LoadMap: /Game/Maps/MainMenu?Name=Player +[2022.06.19-20.18.16:732][ 0]LogWorld: BeginTearingDown for /Temp/Untitled_0 +[2022.06.19-20.18.16:734][ 0]LogWorld: UWorld::CleanupWorld for Untitled, bSessionEnded=true, bCleanupResources=true +[2022.06.19-20.18.16:734][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2022.06.19-20.18.16:736][ 0]LogStreaming: Display: 0.011 ms (0.003+0.008) ms for processing 4/73 objects in NotifyUnreachableObjects( Queued=0, Async=0). Removed 1/1 (558->557 tracked) packages and 3/3 (1140->1137 tracked) public exports. +[2022.06.19-20.18.16:736][ 0]LogAudio: Display: Audio Device unregistered from world 'None'. +[2022.06.19-20.18.16:739][ 0]LogUObjectHash: Compacting FUObjectHashTables data took 2.60ms +[2022.06.19-20.18.16:834][ 0]LogAudio: Display: Audio Device (ID: 1) registered with world 'MainMenu'. +[2022.06.19-20.18.16:835][ 0]LogAIModule: Creating AISystem for world MainMenu +[2022.06.19-20.18.16:835][ 0]LogLoad: Game class is 'MainMenuGameMode_BP_C' +[2022.06.19-20.18.16:835][ 0]LogStreaming: Display: ULevelStreaming::RequestLevel(/Game/Environments/MainMenu_Console/Maps/MainMenu_Game) is flushing async loading +[2022.06.19-20.18.16:898][ 0]LogStreaming: Display: ULevelStreaming::RequestLevel(/Game/Environments/MainMenu_Console/Maps/MainMenu_Inspect) is flushing async loading +[2022.06.19-20.18.16:952][ 0]LogStreaming: Display: ULevelStreaming::RequestLevel(/Game/Maps/Sublevels/Rewards) is flushing async loading +[2022.06.19-20.18.16:998][ 0]LogStreaming: Display: ULevelStreaming::RequestLevel(/Game/Maps/Sublevels/Abyss_Main_Menu_BLockout_Char) is flushing async loading +[2022.06.19-20.18.17:076][ 0]LogLevel: Warning: Detected duplicate WorldSettings actor - UE-62934 +[2022.06.19-20.18.17:080][ 0]LogWorld: Bringing World /Game/Maps/MainMenu.MainMenu up for play (max tick rate 165) at 2022.06.19-16.18.17 +[2022.06.19-20.18.17:081][ 0]LogWorld: Bringing up level for play took: 0.000750 +[2022.06.19-20.18.17:082][ 0]LogSkinnedMeshComp: Warning: GetSocketByName(PortalLauncherPoint): No SkeletalMesh for Component(PawnMesh1P) Actor(MyCharacter) +[2022.06.19-20.18.17:082][ 0]LogSkinnedMeshComp: Warning: GetSocketByName(PortalLauncherPoint): No SkeletalMesh for Component(PawnMesh1P) Actor(MyCharacter) +[2022.06.19-20.18.17:082][ 0]LogSkinnedMeshComp: Warning: GetSocketByName(PortalLauncherPoint): No SkeletalMesh for Component(PawnMesh1P) Actor(MyCharacter) +[2022.06.19-20.18.17:083][ 0]LogPlayerController: Setting r.AmbientOcclusionLevels to 1 +[2022.06.19-20.18.17:083][ 0]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> CapturePermanently +[2022.06.19-20.18.17:084][ 0]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2022.06.19-20.18.17:084][ 0]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently -> NoCapture +[2022.06.19-20.18.17:084][ 0]LogPlayerController: Setting r.AmbientOcclusionLevels to 1 +[2022.06.19-20.18.17:084][ 0]LogLoad: Took 0.351774 seconds to LoadMap(/Game/Maps/MainMenu) +[2022.06.19-20.18.17:085][ 0]LogSlate: Took 0.000452 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/Montserrat/Montserrat-SemiBold.ufont' (239K) +[2022.06.19-20.18.17:086][ 0]LogSlate: Took 0.000400 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/Montserrat/Montserrat-Medium.ufont' (238K) +[2022.06.19-20.18.17:086][ 0]LogSlate: Took 0.000141 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/RevolutionGothic/RevolutionGothic_ExtraBold_It.ufont' (41Installing breakpad exception handler for appid(gameoverlayui)/version(20220618001721) +Installing breakpad exception handler for appid(gameoverlayui)/version(1.0) +Installing breakpad exception handler for appid(gameoverlayui)/version(20220618001721) +Installing breakpad exception handler for appid(gameoverlayui)/version(1.0) +Installing breakpad exception handler for appid(gameoverlayui)/version(20220618001721) +Installing breakpad exception handler for appid(gameoverlayui)/version(1.0) +Installing breakpad exception handler for appid(gameoverlayui)/version(20220618001721) +Installing breakpad exception handler for appid(gameoverlayui)/version(1.0) +Installing breakpad exception handler for appid(gameoverlayui)/version(20220618001721) +Installing breakpad exception handler for appid(gameoverlayui)/version(1.0) +Installing breakpad exception handler for appid(gameoverlayui)/version(20220618001721) +Installing breakpad exception handler for appid(gameoverlayui)/version(1.0) +Installing breakpad exception handler for appid(steam)/version(1655513879) +Installing breakpad exception handler for appid(steam)/version(1655513879) +K) +[2022.06.19-20.18.17:087][ 0]LogSlate: Took 0.000195 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/ChakraPetch/ChakraPetch-Regular.ufont' (70K) +[2022.06.19-20.18.17:091][ 0]LogVulkanRHI: Creating new VK swapchain with present mode 1, format 44, color space 0, num images 3 +[2022.06.19-20.18.17:096][ 0]LogVulkanRHI: Creating new VK swapchain with present mode 1, format 44, color space 0, num images 3 +[2022.06.19-20.18.17:105][ 0]LogInit: Display: Engine is initialized. Leaving FEngineLoop::Init() +[2022.06.19-20.18.17:105][ 0]LogLoad: (Engine Initialization) Total time: 3.98 seconds +[2022.06.19-20.18.17:124][ 0]LogStreaming: Display: 0.015 ms (0.004+0.011) ms for processing 123/226 objects in NotifyUnreachableObjects( Queued=0, Async=0). Removed 0/0 (2222->2222 tracked) packages and 123/123 (4707->4584 tracked) public exports. +[2022.06.19-20.18.17:125][ 0]LogContentStreaming: Texture pool size now 1000 MB +[2022.06.19-20.18.17:155][ 2]LogRenderer: Reallocating scene render targets to support 2560x1440 Format 10 NumSamples 1 (Frame:1). +[2022.06.19-20.18.17:625][ 30]LogLoadingScreen: Hiding loading screen when 'IsShowingInitialLoadingScreen()' is false. +[2022.06.19-20.18.17:625][ 30]LogLoadingScreen: (nothing wants to show it anymore) +[2022.06.19-20.18.17:625][ 30]LogLoadingScreen: Garbage Collecting before dropping load screen +[2022.06.19-20.18.17:626][ 30]LogCore: Display: Setting hang detector multiplier to 1.0000s. New hang duration: 0.0000s. New present duration: 0.0000s. +[2022.06.19-20.18.17:626][ 30]LogLoadingScreen: LoadingScreen was visible for 0.91s +[2022.06.19-20.18.17:629][ 30]LogStreaming: Display: 0.016 ms (0.005+0.011) ms for processing 7/125 objects in NotifyUnreachableObjects( Queued=0, Async=0). Removed 3/3 (2222->2219 tracked) packages and 4/4 (4584->4580 tracked) public exports. +[2022.06.19-20.18.17:636][ 30]LogUObjectHash: Compacting FUObjectHashTables data took 6.02ms +[2022.06.19-20.18.18:127][ 61]LogAccelByteOSS: Warning: <<< GetApiClient (DefaultInstance) has finished execution. Failed to retrieve an API client because local user num 0 is not found! +[2022.06.19-20.18.18:128][ 61]LogAccelByte: Warning: "Client ID" is not configured yet. +Check DefaultEngine.ini or Edit/ProjectSettings/Plugins/ +[2022.06.19-20.18.18:128][ 61]LogAccelByte: Warning: "Client Secret" is not configured yet. +Check DefaultEngine.ini or Edit/ProjectSettings/Plugins/ +[2022.06.19-20.18.18:128][ 61]LogAccelByte: Warning: "Base URL" is not configured yet. +Check DefaultEngine.ini or Edit/ProjectSettings/Plugins/ +[2022.06.19-20.18.18:128][ 61]LogAccelByteOSS: Warning: Applied selected environment: 'Default' as backend environment! +[2022.06.19-20.18.18:128][ 61]LogOnlineIdentity: STEAM: Obtained steam authticket +[2022.06.19-20.18.19:043][109]LogVulkanRHI: Creating new VK swapchain with present mode 1, format 44, color space 0, num images 3 +[2022.06.19-20.18.19:061][110]LogRenderer: Reallocating scene render targets to support 1920x1008 Format 10 NumSamples 1 (Frame:111). +[2022.06.19-20.18.19:237][120]LogVulkanRHI: Creating new VK swapchain with present mode 1, format 44, color space 0, num images 3 +[2022.06.19-20.18.19:260][121]LogRenderer: Reallocating scene render targets to support 2560x1440 Format 10 NumSamples 1 (Frame:123). +[2022.06.19-20.18.21:820][275]LogAccelByteOSS: Warning: FOnlineUserStoreAccelByte::QueryUsersByAccelByteIds called with an empty array of IDs, skipping this call! +[2022.06.19-20.18.24:192][416]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2022.06.19-20.18.24:698][447]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.24:699][447]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.24:704][447]LogViewport: Display: Viewport MouseLockMode Changed, DoNotLock -> LockOnCapture +[2022.06.19-20.18.24:704][447]LogViewport: Display: Viewport MouseCaptureMode Changed, NoCapture -> CapturePermanently +[2022.06.19-20.18.24:719][447]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2022.06.19-20.18.24:719][447]LogViewport: Display: Viewport HideCursorDuringCapture Changed, False -> True +[2022.06.19-20.18.24:719][447]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently -> CaptureDuringMouseDown +[2022.06.19-20.18.24:719][447]LogViewport: Display: Player bShowMouseCursor Changed, False -> True +[2022.06.19-20.18.24:719][447]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.24:719][447]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.24:720][447]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.24:720][447]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.24:721][447]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.24:721][447]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.24:721][447]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.24:721][447]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.24:722][447]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.24:722][447]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.24:723][447]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.24:723][447]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.24:730][447]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.24:744][447]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.24:754][447]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.24:755][447]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.24:755][447]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.24:756][447]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.24:756][447]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.24:756][447]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.24:756][447]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.24:763][447]LogSlate: Took 0.000356 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/Montserrat/Montserrat-Black.ufont' (252K) +[2022.06.19-20.18.24:764][447]LogSlate: Took 0.000296 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/Montserrat/Montserrat-Regular.ufont' (240K) +[2022.06.19-20.18.24:765][447]LogSlate: Took 0.000188 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/ChakraPetch/ChakraPetch-Bold.ufont' (70K) +[2022.06.19-20.18.24:775][448]LogOnline: Warning: STEAM: GetUserAvatar: 76561198272891864 - Failed to get Avatar, Retry: #1 +[2022.06.19-20.18.24:781][448]LogSlate: Took 0.000331 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/Montserrat/Montserrat-Bold.ufont' (239K) +[2022.06.19-20.18.24:984][461]LogAccelByte: Warning: HTTP 404 GET https://splitgate.accelbyte.io/sessionmanager/namespaces/splitgate/users/b841870e4bbe4ffab0bfc26a09f84cab/sessions, 0x7f8e19ec52a0 +[2022.06.19-20.18.26:831][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.26:832][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null src/steamexe/main.cpp (254) : Assertion Failed: reaping pid: 103572 -- gameoverlayui + +Installing breakpad exception handler for appid(steam)/version(1655513879) +assert_20220619161827_35.dmp[103596]: Uploading dump (out-of-process) +/tmp/dumps/assert_20220619161827_35.dmp +assert_20220619161827_35.dmp[103596]: Finished uploading minidump (out-of-process): success = yes +assert_20220619161827_35.dmp[103596]: response: CrashID=bp-776fdf0c-046a-4daf-a8e9-d4a052220619 +assert_20220619161827_35.dmp[103596]: file ''/tmp/dumps/assert_20220619161827_35.dmp'', upload yes: ''CrashID=bp-776fdf0c-046a-4daf-a8e9-d4a052220619'' +assets! +[2022.06.19-20.18.26:832][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.26:832][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.26:834][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.26:834][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.26:835][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.26:835][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.26:836][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.26:837][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.26:837][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.26:837][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.26:838][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.26:839][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.26:839][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.26:839][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.26:840][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.26:840][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.26:840][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.26:840][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.26:842][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.26:842][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.26:842][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.26:842][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.27:260][596]LogViewport: Display: Viewport MouseLockMode Changed, DoNotLock -> LockOnCapture +[2022.06.19-20.18.27:260][596]LogViewport: Display: Viewport MouseCaptureMode Changed, CaptureDuringMouseDown -> CapturePermanently +[2022.06.19-20.18.27:260][596]LogViewport: Display: Player bShowMouseCursor Changed, True -> False +[2022.06.19-20.18.27:260][596]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2022.06.19-20.18.27:260][596]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently -> NoCapture +[2022.06.19-20.18.27:269][596]LogSlate: Took 0.000726 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/ChangelingNeoBold/ChangelingNeoRegular.ufont' (121K) +[2022.06.19-20.18.27:612][618]LogOnlineVoice: OSS: Voice interface disabled by config [OnlineSubsystem].bHasVoiceEnabled +[2022.06.19-20.18.28:614][677]LogViewport: Display: Viewport MouseLockMode Changed, DoNotLock -> LockOnCapture +[2022.06.19-20.18.28:614][677]LogViewport: Display: Viewport MouseCaptureMode Changed, NoCapture -> CapturePermanently +[2022.06.19-20.18.28:614][677]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2022.06.19-20.18.28:614][677]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently -> NoCapture +[2022.06.19-20.18.29:202][711]LogSlate: Took 0.000151 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/ChakraPetch/ChakraPetch-Medium.ufont' (70K) +[2022.06.19-20.18.30:244][775]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.30:248][775]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.30:255][775]LogSlate: Took 0.000155 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/ChakraPetch/ChakraPetch-SemiBold.ufont' (70K) +[2022.06.19-20.18.31:260][835]LogSlate: Took 0.000581 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Regular.ttf' (155K) +[2022.06.19-20.18.33:625][977]LogViewport: Display: Viewport MouseLockMode Changed, DoNotLock -> LockOnCapture +[2022.06.19-20.18.33:625][977]LogViewport: Display: Viewport MouseCaptureMode Changed, NoCapture -> CapturePermanently +[2022.06.19-20.18.33:627][977]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.33:628][977]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.33:629][977]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.33:629][977]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.33:632][977]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.33:632][977]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.33:633][977]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.33:633][977]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.33:635][977]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.33:635][977]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.33:635][977]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.33:635][977]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.33:636][977]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2022.06.19-20.18.33:636][977]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently -> CaptureDuringMouseDown +[2022.06.19-20.18.33:636][977]LogViewport: Display: Player bShowMouseCursor Changed, False -> True +[2022.06.19-20.18.34:308][ 18]LogAccelByteOSS: Warning: Unable to handle freeform notification from backend with Topic: customGameReadyNotification since this flow has not been implemented yet. +[2022.06.19-20.18.34:841][ 50]LogNet: Browse: 54.221.69.240:31432/Game/Maps/MainMenu?ADMIN +[2022.06.19-20.18.34:841][ 50]LogNet: Warning: Channel name will be serialized as a string: EQU8 +[2022.06.19-20.18.34:841][ 50]LogInit: BSD IPv4/6: Socket queue. Rx: 65536 (config 32768) Tx: 65536 (config 32768) +[2022.06.19-20.18.34:841][ 50]LogNet: Created socket for bind address: 0.0.0.0 on port 0 +[2022.06.19-20.18.34:841][ 50]LogInit: BSD IPv4/6: Socket queue. Rx: 65536 (config 32768) Tx: 65536 (config 32768) +[2022.06.19-20.18.34:841][ 50]LogNet: Created socket for bind address: 0.0.0.0 on port 0 +[2022.06.19-20.18.34:841][ 50]LogInit: BSD IPv4/6: Socket queue. Rx: 65536 (config 32768) Tx: 65536 (config 32768) +[2022.06.19-20.18.34:841][ 50]LogNet: Created socket for bind address: 0.0.0.0 on port 0 +[2022.06.19-20.18.34:841][ 50]PacketHandlerLog: Loaded PacketHandler component: OodleNetworkHandlerComponent () +[2022.06.19-20.18.34:841][ 50]PacketHandlerLog: Loaded PacketHandler component: DTLSHandlerComponent () +[2022.06.19-20.18.34:841][ 50]PacketHandlerLog: Loaded PacketHandler component: Engine.EngineHandlerComponentFactory (StatelessConnectHandlerComponent) +[2022.06.19-20.18.34:870][ 50]OodleNetworkHandlerComponentLog: Loading dictionary file: ../../../PortalWars/Content/Oodle/PortalWarsOutput.udic +[2022.06.19-20.18.34:928][ 50]OodleNetworkHandlerComponentLog: Loading dictionary file: ../../../PortalWars/Content/Oodle/PortalWarsInput.udic +[2022.06.19-20.18.34:963][ 50]LogNet: Game client on port 31432, rate 15000 +[2022.06.19-20.18.34:963][ 50]LogLoadingScreen: Showing loading screen when 'IsShowingInitialLoadingScreen()' is false. +[2022.06.19-20.18.34:963][ 50]LogLoadingScreen: We are connecting to another server (PendingNetGame != nullptr) +[2022.06.19-20.18.34:963][ 50]LogStreaming: Display: FlushAsyncLoading: 1 QueuedPackages, 0 AsyncPackages +[2022.06.19-20.18.34:964][ 50]LogCore: Display: Setting hang detector multiplier to 1.0000s. New hang duration: 0.0000s. New present duration: 0.0000s. +[2022.06.19-20.18.34:969][ 50]LogSlate: Took 0.004012 seconds to synchronously load lazily loaded font '../../../Engine/Content/EngineFonts/Faces/DroidSansFallback.ufont' (3848K) +[2022.06.19-20.18.34:970][ 50]LogLoadingScreen: Loading screen showing: 1. Reason: We are connecting to another server (PendingNetGame != nullptr) +[2022.06.19-20.18.35:644][ 92]LogOnlineSession: Warning: STEAM: Failed to initialize game server with Steam! +[2022.06.19-20.18.36:072][117]LogNetVersion: Checksum from delegate: 1669758896 +[2022.06.19-20.18.36:072][117]LogNet: UPendingNetGame::SendInitialJoin: Sending hello. [UNetConnection] RemoteAddr: 54.221.69.240:31432, Name: IpConnection_2147481541, Driver: PendingNetDriver IpNetDriver_2147481542, IsServer: NO, PC: NULL, Owner: NULL, UniqueId: INVALID +[2022.06.19-20.18.36:272][129]LogNet: Welcomed by server (Level: /Game/Maps/Lobby, Game: /Game/Blueprints/GameModes/Lobby/LobbyGameMode_BP.LobbyGameMode_BP_C) +[2022.06.19-20.18.36:272][129]LogLoad: LoadMap: 54.221.69.240:31432/Game/Maps/Lobby?ADMIN?game=/Game/Blueprints/GameModes/Lobby/LobbyGameMode_BP.LobbyGameMode_BP_C +[2022.06.19-20.18.36:272][129]LogWorld: BeginTearingDown for /Game/Maps/MainMenu +[2022.06.19-20.18.36:283][129]LogPlayerController: Setting r.AmbientOcclusionLevels to 0 +[2022.06.19-20.18.36:283][129]LogPlayerController: Setting r.AmbientOcclusionLevels to 0 +[2022.06.19-20.18.36:284][129]LogWorld: UWorld::CleanupWorld for MainMenu, bSessionEnded=true, bCleanupResources=true +[2022.06.19-20.18.36:285][129]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2022.06.19-20.18.36:285][129]LogWorld: UWorld::CleanupWorld for MainMenu_Game, bSessionEnded=true, bCleanupResources=true +[2022.06.19-20.18.36:285][129]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2022.06.19-20.18.36:285][129]LogWorld: UWorld::CleanupWorld for MainMenu_Inspect, bSessionEnded=true, bCleanupResources=true +[2022.06.19-20.18.36:285][129]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2022.06.19-20.18.36:285][129]LogWorld: UWorld::CleanupWorld for Rewards, bSessionEnded=true, bCleanupResources=true +[2022.06.19-20.18.36:285][129]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2022.06.19-20.18.36:285][129]LogWorld: UWorld::CleanupWorld for Abyss_Main_Menu_BLockout_Char, bSessionEnded=true, bCleanupResources=true +[2022.06.19-20.18.36:285][129]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2022.06.19-20.18.36:320][129]LogStreaming: Display: 2.119 ms (1.375+0.744) ms for processing 7168/39191 objects in NotifyUnreachableObjects( Queued=0, Async=0). Removed 1412/1412 (2804->1392 tracked) packages and 3161/5756 (5244->2083 tracked) public exports. +[2022.06.19-20.18.36:356][129]LogAudio: Display: Audio Device unregistered from world 'None'. +[2022.06.19-20.18.36:369][129]LogUObjectHash: Compacting FUObjectHashTables data took 1.01ms +[2022.06.19-20.18.36:370][129]LogStreaming: Display: FlushAsyncLoading: 1 QueuedPackages, 0 AsyncPackages +[2022.06.19-20.18.36:535][129]LogAudio: Display: Audio Device (ID: 1) registered with world 'Lobby'. +[2022.06.19-20.18.36:536][129]LogStreaming: Display: ULevelStreaming::RequestLevel(/Game/Maps/Lobby/Sublevels/Lobby_Foregone_Characters) is flushing async loading +[2022.06.19-20.18.36:541][129]LogLevel: Warning: Detected duplicate WorldSettings actor - UE-62934 +[2022.06.19-20.18.36:545][129]LogWorld: Bringing World /Game/Maps/Lobby.Lobby up for play (max tick rate 165) at 2022.06.19-16.18.36 +[2022.06.19-20.18.36:545][129]LogWorld: Bringing up level for play took: 0.004304 +[2022.06.19-20.18.36:545][129]LogLoad: Took 0.273377 seconds to LoadMap(/Game/Maps/Lobby) +[2022.06.19-20.18.36:547][129]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2022.06.19-20.18.36:548][130]LogSlate: Took 0.000129 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/RevolutionGothic/RevolutionGothic_ExtraBold_It.ufont' (41K) +[2022.06.19-20.18.36:548][130]LogSlate: Took 0.000092 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/ChakraPetch/ChakraPetch-Regular.ufont' (70K) +[2022.06.19-20.18.36:552][130]LogSlate: Took 0.003697 seconds to synchronously load lazily loaded font '../../../Engine/Content/EngineFonts/Faces/DroidSansFallback.ufont' (3848K) +[2022.06.19-20.18.36:587][132]LogStreaming: Display: FlushAsyncLoading: 1 QueuedPackages, 0 AsyncPackages +[2022.06.19-20.18.36:617][132]LogViewport: Display: Viewport MouseLockMode Changed, DoNotLock -> LockOnCapture +[2022.06.19-20.18.36:617][132]LogViewport: Display: Viewport MouseCaptureMode Changed, CaptureDuringMouseDown -> CapturePermanently +[2022.06.19-20.18.36:703][138]LogStreaming: Display: FlushAsyncLoading: 1 QueuedPackages, 0 AsyncPackages +[2022.06.19-20.18.36:904][150]LogStreaming: Display: FlushAsyncLoading: 1 QueuedPackages, 0 AsyncPackages +[2022.06.19-20.18.36:908][150]LogPlayerController: Setting r.AmbientOcclusionLevels to 1 +[2022.06.19-20.18.36:908][150]LogTemp: Warning: InputDevice: 0 +[2022.06.19-20.18.36:934][150]LogSlate: Took 0.000274 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Regular.ttf' (155K) +[2022.06.19-20.18.36:937][150]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.36:937][150]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.36:938][150]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.36:939][150]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.18.36:939][150]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2022.06.19-20.18.36:939][150]LogViewport: Display: Viewport HideCursorDuringCapture Changed, True -> False +[2022.06.19-20.18.36:939][150]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently -> CaptureDuringMouseDown +[2022.06.19-20.18.36:939][150]LogViewport: Display: Player bShowMouseCursor Changed, False -> True +[2022.06.19-20.18.36:943][150]LogSlate: Took 0.000107 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/ChakraPetch/ChakraPetch-Medium.ufont' (70K) +[2022.06.19-20.18.36:943][150]LogSlate: Took 0.000177 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/ChakraPetch/ChakraPetch-BoldItalic.ufont' (72K) +[2022.06.19-20.18.36:943][150]LogSlate: Took 0.000121 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/ChakraPetch/ChakraPetch-Bold.ufont' (70K) +[2022.06.19-20.18.36:944][150]LogSlate: Took 0.000245 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/Montserrat/Montserrat-Black.ufont' (252K) +[2022.06.19-20.18.36:944][150]LogSlate: Took 0.000304 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/Montserrat/Montserrat-SemiBold.ufont' (239K) +[2022.06.19-20.18.36:950][151]LogStreaming: Display: 0.046 ms (0.041+0.004) ms for processing 124/412 objects in NotifyUnreachableObjects( Queued=0, Async=0). Removed 0/0 (2218->2218 tracked) packages and 34/124 (3450->3416 tracked) public exports. +[2022.06.19-20.18.37:449][181]LogLoadingScreen: Hiding loading screen when 'IsShowingInitialLoadingScreen()' is false. +[2022.06.19-20.18.37:449][181]LogLoadingScreen: (nothing wants to show it anymore) +[2src/steamexe/main.cpp (254) : Assertion Failed: reaping pid: 103572 -- gameoverlayui + +src/steamexe/main.cpp (254) : Assertion Failed: reaping pid: 103573 -- gameoverlayui + +022.06.19-20.18.37:449][181]LogLoadingScreen: Garbage Collecting before dropping load screen +[2022.06.19-20.18.37:450][181]LogCore: Display: Setting hang detector multiplier to 1.0000s. New hang duration: 0.0000s. New present duration: 0.0000s. +[2022.06.19-20.18.37:450][181]LogLoadingScreen: LoadingScreen was visible for 2.49s +[2022.06.19-20.18.37:453][181]LogStreaming: Display: 0.029 ms (0.007+0.022) ms for processing 17/178 objects in NotifyUnreachableObjects( Queued=0, Async=0). Removed 8/8 (2220->2212 tracked) packages and 9/9 (3418->3409 tracked) public exports. +[2022.06.19-20.18.37:463][181]LogUObjectHash: Compacting FUObjectHashTables data took 2.52ms +[2022.06.19-20.18.38:154][221]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2022.06.19-20.18.38:154][221]LogWorld: SeamlessTravel to: /Game/Maps/Stadium +[2022.06.19-20.18.38:156][221]LogLoadingScreen: Showing loading screen when 'IsShowingInitialLoadingScreen()' is false. +[2022.06.19-20.18.38:156][221]LogLoadingScreen: We are in seamless travel +[2022.06.19-20.18.38:157][221]LogStreaming: Display: FlushAsyncLoading: 1 QueuedPackages, 1 AsyncPackages +[2022.06.19-20.18.38:160][221]LogCore: Display: Setting hang detector multiplier to 1.0000s. New hang duration: 0.0000s. New present duration: 0.0000s. +[2022.06.19-20.18.38:171][222]LogWorld: BeginTearingDown for /Game/Maps/Lobby +[2022.06.19-20.18.38:173][222]LogWorld: UWorld::CleanupWorld for Lobby, bSessionEnded=false, bCleanupResources=true +[2022.06.19-20.18.38:177][222]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2022.06.19-20.18.38:178][222]LogWorld: UWorld::CleanupWorld for Lobby_Foregone_Characters, bSessionEnded=false, bCleanupResources=true +[2022.06.19-20.18.38:178][222]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2022.06.19-20.18.38:178][222]LogAudio: Display: Audio Device (ID: 1) registered with world 'TravelMap'. +[2022.06.19-20.18.38:182][222]LogStreaming: Display: 0.469 ms (0.141+0.328) ms for processing 1262/3255 objects in NotifyUnreachableObjects( Queued=0, Async=0). Removed 567/567 (2217->1650 tracked) packages and 695/695 (3417->2722 tracked) public exports. +[2022.06.19-20.18.38:185][222]LogAudio: Display: Audio Device unregistered from world 'None'. +[2022.06.19-20.18.38:199][222]LogUObjectHash: Compacting FUObjectHashTables data took 2.33ms +[2022.06.19-20.18.38:200][222]LogStreaming: Display: FlushAsyncLoading: 1 QueuedPackages, 0 AsyncPackages +[2022.06.19-20.18.38:201][222]LogStats: SeamlessTravel FlushLevelStreaming - 0.000 s +[2022.06.19-20.18.38:201][222]LogWorld: Bringing World /Game/Maps/TravelMap.TravelMap up for play (max tick rate 60) at 2022.06.19-16.18.38 +[2022.06.19-20.18.38:201][222]LogWorld: Bringing up level for play took: 0.000507 +[2022.06.19-20.18.38:201][222]LogWorld: Sending NotifyLoadedWorld for LP: PortalWarsLocalPlayer_BP_C_2147482570 PC: LobbyPlayerController_BP_C_2147481422 +[2022.06.19-20.18.38:202][222]LogWorld: StartLoadingDestination to: /Game/Maps/Stadium +[2022.06.19-20.18.38:674][247]LogNet: DuplicateLevelWithPrefix. TotalSeconds: 0.00 +[2022.06.19-20.18.38:677][247]LogNet: DuplicateLevelWithPrefix. TotalSeconds: 0.00 +[2022.06.19-20.18.38:677][247]LogWorld: BeginTearingDown for /Game/Maps/TravelMap +[2022.06.19-20.18.38:677][247]LogWorld: UWorld::CleanupWorld for TravelMap, bSessionEnded=true, bCleanupResources=true +[2022.06.19-20.18.38:677][247]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2022.06.19-20.18.38:678][247]LogAudio: Display: Audio Device (ID: 1) registered with world 'Stadium'. +[2022.06.19-20.18.38:679][247]LogStreaming: Display: 0.017 ms (0.003+0.014) ms for processing 78/137 objects in NotifyUnreachableObjects( Queued=0, Async=0). Removed 9/9 (3079->3070 tracked) packages and 69/69 (4560->4491 tracked) public exports. +[2022.06.19-20.18.38:679][247]LogAudio: Display: Audio Device unregistered from world 'None'. +[2022.06.19-20.18.38:680][247]LogUObjectHash: Compacting FUObjectHashTables data took 1.03ms +[2022.06.19-20.18.38:681][247]LogStreaming: Display: FlushAsyncLoading: 1 QueuedPackages, 0 AsyncPackages +[2022.06.19-20.18.38:697][247]LogStats: SeamlessTravel FlushLevelStreaming - 0.015 s +[2022.06.19-20.18.38:699][247]LogWorld: Bringing World /Game/Maps/Stadium.Stadium up for play (max tick rate 60) at 2022.06.19-16.18.38 +[2022.06.19-20.18.38:703][247]LogWorld: Bringing up level for play took: 0.006417 +[2022.06.19-20.18.38:703][247]LogWorld: Sending NotifyLoadedWorld for LP: PortalWarsLocalPlayer_BP_C_2147482570 PC: LobbyPlayerController_BP_C_2147481422 +[2022.06.19-20.18.38:703][247]LogWorld: ----SeamlessTravel finished in 0.55 seconds ------ +[2022.06.19-20.18.38:856][249]LogStreaming: Display: FlushAsyncLoading: 1 QueuedPackages, 0 AsyncPackages +[2022.06.19-20.18.38:859][249]LogTemp: Warning: InputDevice: 0 +[2022.06.19-20.18.38:876][249]LogViewport: Display: Viewport MouseLockMode Changed, DoNotLock -> LockOnCapture +[2022.06.19-20.18.38:876][249]LogViewport: Display: Viewport MouseCaptureMode Changed, CaptureDuringMouseDown -> CapturePermanently +[2022.06.19-20.18.38:896][249]LogLevel: ActivateLevel /Game/Environments/Map8/Maps/Map8_Cinematics 0 0 1 +[2022.06.19-20.18.38:901][249]LogPlayerController: Setting r.AmbientOcclusionLevels to 0 +[2022.06.19-20.18.38:901][249]LogScript: Warning: FLatentActionManager::ProcessLatentActions: Could not find latent action resume point named 'None' on '/Game/Maps/Stadium.Stadium:PersistentLevel.PortalWarsPlayerController_BP_C_2147480902' called by '/Game/Maps/Stadium.Stadium:PersistentLevel.PortalWarsPlayerController_BP_C_2147480902' +[2022.06.19-20.18.39:016][258]LogStreaming: Display: FlushAsyncLoading: 1 QueuedPackages, 0 AsyncPackages +[2022.06.19-20.18.39:026][258]LogNiagara: Disabling Niagara World Manager +[2022.06.19-20.18.39:029][258]LogTemp: Warning: InputDevice: 0 +[2022.06.19-20.18.39:101][262]LogAccelByteOSS: Warning: Attempted to register player '{"id":"b841870e4bbe4ffab0bfc26a09f84cab","platformType":"Steam","platformId":"76561198272891864"}' to session '0945cca411644930ae2e4b562ef9ca27' when player is already registered to the session! +[2022.06.19-20.18.39:102][262]LogAccelByteOSS: Warning: Tried to complete async task while state was already complete! Current complete state: Success; Requested complete state: Success +[2022.06.19-20.18.39:524][288]LogSlate: Took 0.000141 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/RevolutionGothic/RevolutionGothic_Regular_It.ufont' (44K) +[2022.06.19-20.18.39:525][288]LogSlate: Took 0.000145 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/RevolutionGothic/RevolutionGothic_Bold_It.ufont' (45K) +[2022.06.19-20.18.39:525][288]LogSlate: Took 0.000126 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/RevolutionGothic/RevolutionGothic_Light.ufont' (42K) +[2022.06.19-20.18.39:525][288]LogSlate: Took 0.000104 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/RevolutionGothic/RevolutionGothic_Bold.ufont' (43K) +[2022.06.19-20.18.39:541][289]LogLoadingScreen: Hiding loading screen when 'IsShowingInitialLoadingScreen()' is false. +[2022.06.19-20.18.39:541][289]LogLoadingScreen: (nothing wants to show it anymore) +[2022.06.19-20.18.39:541][289]LogLoadingScreen: Garbage Collecting before dropping load screen +[2022.06.19-20.18.39:541][289]LogCore: Display: Setting hang detector multiplier to 1.0000s. New hang duration: 0.0000s. New present duration: 0.0000s. +[2022.06.19-20.18.39:541][289]LogTemp: Warning: Turning global invalidation ON +[2022.06.19-20.18.39:541][289]LogSlate: Toggling fast path. New State: 1 +[2022.06.19-20.18.39:541][289]LogLoadingScreen: LoadingScreen was visible for 1.39s +[2022.06.19-20.18.39:558][290]LogStreaming: Display: 0.012 ms (0.008+0.004) ms for processing 18/583 objects in NotifyUnreachableObjects( Queued=0, Async=102). Removed 6/6 (3722->3716 tracked) packages and 12/12 (5395->5383 tracked) public exports. +[2022.06.19-20.18.39:571][290]LogUObjectHash: Compacting FUObjectHashTables data took 1.07ms +[2022.06.19-20.18.42:776][483]LogSlate: Warning: FontCache flush requested. Reason: Font Atlases Full; 2/1 Pages; frames since last flush: 1483 +[2022.06.19-20.18.42:776][483]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2022.06.19-20.18.42:811][483]LogSlate: Slate font cache was flushed +[2022.06.19-20.18.42:819][484]LogSlate: Took 0.000492 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/RevolutionGothic/RevolutionGothic_Bold.ufont' (43K) +[2022.06.19-20.18.42:820][484]LogSlate: Took 0.000600 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/RevolutionGothic/RevolutionGothic_Regular_It.ufont' (44K) +[2022.06.19-20.18.42:821][484]LogSlate: Took 0.000531 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/RevolutionGothic/RevolutionGothic_Bold_It.ufont' (45K) +[2022.06.19-20.18.42:822][484]LogSlate: Took 0.000467 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/RevolutionGothic/RevolutionGothic_Light.ufont' (42K) +[2022.06.19-20.18.42:823][484]LogSlate: Took 0.000653 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/ChakraPetch/ChakraPetch-Regular.ufont' (70K) +[2022.06.19-20.18.45:798][664]LogLevel: ActivateLevel /Game/Environments/Map8/Maps/Map8_Cinematics 0 0 1 +[2022.06.19-20.18.45:810][664]LogScript: Warning: FLatentActionManager::ProcessLatentActions: Could not find latent action resume point named 'None' on '/Game/Maps/Stadium.Stadium:PersistentLevel.PortalWarsPlayerController_BP_C_2147480902' called by '/Game/Maps/Stadium.Stadium:PersistentLevel.PortalWarsPlayerController_BP_C_2147480902' +[2022.06.19-20.18.46:024][675]LogTemp: Setting replay record rate to 60 +[2022.06.19-20.18.46:025][675]LogNet: ReplicationDriverClass is null! Not using ReplicationDriver. +[2022.06.19-20.18.46:025][675]LogNetCore: DDoS detection status: detection enabled: 1 analytics enabled: 0 +[2022.06.19-20.18.46:026][675]LogNet: AddClientConnection: Added client connection: [UNetConnection] RemoteAddr: UDemoNetConnection, Name: DemoNetConnection_2147479798, Driver: DemoNetDriver DemoNetDriver_2147479799, IsServer: YES, PC: NULL, Owner: NULL, UniqueId: INVALID +[2022.06.19-20.18.46:026][675]LogNetVersion: Replay changelist: 7 +[2022.06.19-20.18.46:026][675]LogLocalFileReplay: Writing replay to '/home/sharkfin/.config/Epic/PortalWars/Saved/Demos/' with 21134.92MB free +[2022.06.19-20.18.46:026][675]LogTemp: Warning: InputDevice: 0 +[2022.06.19-20.18.46:028][675]LogTemp: Warning: Spectator Pawn Destroyed +[2022.06.19-20.18.46:028][675]LogPlayerController: Warning: Failed to spawn spectator with class PWSpectatorPawn +[2022.06.19-20.18.46:028][675]LogDemo: Num Network Actors: 120 +[2022.06.19-20.18.46:028][675]PWLogGameInstance: Replay started recording at 7.338106 seconds +[2022.06.19-20.18.46:037][675]LogSlate: Took 0.000203 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/ChakraPetch/ChakraPetch-Medium.ufont' (70K) +[2022.06.19-20.18.46:038][675]LogSlate: Took 0.000326 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/Politica/Politica_Black_Italic.ufont' (56K) +[2022.06.19-20.18.46:039][675]LogSlate: Took 0.000281 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/ChakraPetch/ChakraPetch-Bold.ufont' (70K) +[2022.06.19-20.18.46:039][675]LogSlate: Took 0.000205 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/Politica/Politica_ExtraBold_Italic.ufont' (61K) +[2022.06.19-20.18.46:040][675]LogSlate: Took 0.000211 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/RevolutionGothic/RevolutionGothic_ExtraBold_It.ufont' (41K) +[2022.06.19-20.18.46:048][675]LogSlate: Took 0.008475 seconds to synchronously load lazily loaded font '../../../Engine/Content/EngineFonts/Faces/DroidSansFallback.ufont' (3848K) +[2022.06.19-20.18.46:049][675]LogSlate: Took 0.000256 ssrc/steamexe/main.cpp (254) : Assertion Failed: reaping pid: 103573 -- gameoverlayui + +src/steamexe/main.cpp (254) : Assertion Failed: reaping pid: 103574 -- gameoverlayui + +Installing breakpad exception handler for appid(steam)/version(1655513879) +Installing breakpad exception handler for appid(steam)/version(1655513879) +src/steamexe/main.cpp (254) : Assertion Failed: reaping pid: 103574 -- gameoverlayui + +src/steamexe/main.cpp (254) : Assertion Failed: reaping pid: 103575 -- gameoverlayui + +00:01:07.317 [ERROR] [libinput] event4 - Hoksi Technology DURGOD Taurus K310: client bug: event processing lagging behind by 25ms, your system is too slow + +moved. +Callback 3fc24b10 -> 6b7cc190, XWayland Window removed. +Window 6b7c7250 destroyed, queueing. +Callback 3fc24b10 -> 6b7c7250, XWayland Window removed. +Callback 3fc24b10 -> 6b7c7250, XWayland Window removed. +Callback 3fc24b10 -> 6b7c7250, XWayland Window removed. +Window 6b7d1c80 destroyed, queueing. +Callback 3fc24b10 -> 6b7d1c80, XWayland Window removed. +Callback 3fc24b10 -> 6b7d1c80, XWayland Window removed. +Callback 3fc24b10 -> 6b7d1c80, XWayland Window removed. +Window 6b7d1460 destroyed, queueing. +Callback 3fc24b10 -> 6b7d1460, XWayland Window removed. +Callback 3fc24b10 -> 6b7d1460, XWayland Window removed. +Callback 3fc24b10 -> 6b7d1460, XWayland Window removed. +Window 6b7cf490 destroyed, queueing. +Callback 3fc24b10 -> 6b7cf490, XWayland Window removed. +Callback 3fc24b10 -> 6b7cf490, XWayland Window removed. +Callback 3fc24b10 -> 6b7cf490, XWayland Window removed. +Window 6b7c90a0 destroyed, queueing. +Callback 3fc24b10 -> 6b7c90a0, XWayland Window removed. +Callback 3fc24b10 -> 6b7c90a0, XWayland Window removed. +Callback 3fc24b10 -> 6b7c90a0, XWayland Window removed. +Window 6b7c9b50 destroyed, queueing. +Callback 3fc24b10 -> 6b7c9b50, XWayland Window removed. +Callback 3fc24b10 -> 6b7c9b50, XWayland Window removed. +Callback 3fc24b10 -> 6b7c9b50, XWayland Window removed. +Window 6b7cb4d0 destroyed, queueing. +Callback 3fc24b10 -> 6b7cb4d0, XWayland Window removed. +Callback 3fc24b10 -> 6b7cb4d0, XWayland Window removed. +Callback 3fc24b10 -> 6b7cb4d0, XWayland Window removed. +Window 6b7ca810 destroyed, queueing. +Callback 3fc24b10 -> 6b7ca810, XWayland Window removed. +Callback 3fc24b10 -> 6b7ca810, XWayland Window removed. +Callback 3fc24b10 -> 6b7ca810, XWayland Window removed. +Cleanup: destroyed a window +Window 6b7d24a0 fullscreen to 1 +Keybind triggered, calling dispatcher (64, 77) +Keybind triggered, calling dispatcher (64, 77) +New mouse constraint at 6b79cd90 +Registered signal for owner 6b94fc60: 6b79ce98 -> 6b94fcd8 (owner: Constraint) +Registered signal for owner 6b94fc60: 6b79ce88 -> 6b94fc70 (owner: Constraint) +Constraint rechecked: 0, 0 to 2560, 1440 for 6b9aca20 (window name: PortalWars ) +Registered signal for owner 6b743fd0: 6b9acce0 -> 6b744000 (owner: Mouse constraint commit) +Constrained mouse to 6b79cd90 +Callback 3fc24650 -> 6b743fd0, Mouse constraint commit removed. +Unconstrained mouse from 6b79cd90 +Callback 3fc24650 -> 6b94fc60, Constraint removed. +Callback 3fc24650 -> 6b94fc60, Constraint removed. +New mouse constraint at 6b79cd90 +Registered signal for owner 6b9599f0: 6b79ce98 -> 6b959a68 (owner: Constraint) +Registered signal for owner 6b9599f0: 6b79ce88 -> 6b959a00 (owner: Constraint) +Constraint rechecked: 0, 0 to 2560, 1440 for 6b9aca20 (window name: PortalWars ) +Registered signal for owner 6b743fd0: 6b9acce0 -> 6b744000 (owner: Mouse constraint commit) +Constrained mouse to 6b79cd90 +Callback 3fc24650 -> 6b743fd0, Mouse constraint commit removed. +Unconstrained mouse from 6b79cd90 +Callback 3fc24650 -> 6b9599f0, Constraint removed. +Callback 3fc24650 -> 6b9599f0, Constraint removed. +New mouse constraint at 6b79cd90 +Registered signal for owner 6b94fc60: 6b79ce98 -> 6b94fcd8 (owner: Constraint) +Registered signal for owner 6b94fc60: 6b79ce88 -> 6b94fc70 (owner: Constraint) +Constraint rechecked: 0, 0 to 2560, 1440 for 6b9aca20 (window name: PortalWars ) +Registered signal for owner 6b743fd0: 6b9acce0 -> 6b744000 (owner: Mouse constraint commit) +Constrained mouse to 6b79cd90 +Callback 3fc24650 -> 6b743fd0, Mouse constraint commit removed. +Unconstrained mouse from 6b79cd90 +Callback 3fc24650 -> 6b94fc60, Constraint removed. +Callback 3fc24650 -> 6b94fc60, Constraint removed. +New mouse constraint at 6b79cd90 +Registered signal for owner 6b9599f0: 6b79ce98 -> 6b959a68 (owner: Constraint) +Registered signal for owner 6b9599f0: 6b79ce88 -> 6b959a00 (owner: Constraint) +Constraint rechecked: 0, 0 to 2560, 1440 for 6b9aca20 (window name: PortalWars ) +Registered signal for owner 6b743fd0: 6b9acce0 -> 6b744000 (owner: Mouse constraint commit) +Constrained mouse to 6b79cd90 +Callback 3fc24650 -> 6b743fd0, Mouse constraint commit remoeconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/RevolutionGothic/RevolutionGothic_ExtraBold.ufont' (41K) +[2022.06.19-20.18.46:053][676]LogSlate: Took 0.000159 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/RevolutionGothic/RevolutionGothic_Light_It.ufont' (44K) +[2022.06.19-20.18.53:301][ 98]LogTemp: Warning: PWPlayWwiseEventOnAkComponent(): No source (AkComponent Does not exist? break_sx_wpn_assaultRifle_fire) +[2022.06.19-20.18.53:353][101]LogTemp: Warning: PWPlayWwiseEventOnAkComponent(): No source (AkComponent Does not exist? break_sx_wpn_assaultRifle_fire) +[2022.06.19-20.18.59:701][466]LogTemp: Warning: PWPlayWwiseEventOnAkComponent(): No source (AkComponent Does not exist? break_sx_wpn_assaultRifle_fire) +[2022.06.19-20.19.00:549][518]LogTemp: Warning: PWPlayWwiseEventOnAkComponent(): No source (AkComponent Does not exist? break_sx_wpn_assaultRifle_fire) +[2022.06.19-20.19.00:811][533]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2022.06.19-20.19.00:811][533]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently -> NoCapture +[2022.06.19-20.19.00:811][533]LogTemp: Warning: Turning global invalidation OFF +[2022.06.19-20.19.00:811][533]LogSlate: Toggling fast path. New State: 0 +[2022.06.19-20.19.01:984][603]LogSlate: Took 0.001710 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/Montserrat/Montserrat-SemiBold.ufont' (239K) +[2022.06.19-20.19.02:895][658]LogTemp: #AB LeaveNativePlatformSession +[2022.06.19-20.19.02:895][658]LogTemp: Warning: Requesting Return to Main Menu +[2022.06.19-20.19.02:965][662]LogNet: UNetConnection::Close: [UNetConnection] RemoteAddr: 54.221.69.240:31432, Name: IpConnection_2147481541, Driver: GameNetDriver IpNetDriver_2147481542, IsServer: NO, PC: PortalWarsPlayerController_BP_C_2147480902, Owner: PortalWarsPlayerController_BP_C_2147480902, UniqueId: AccelByte:{"id":"b841870e4bbe4ffab0bfc26a09f84cab","platformType":"Steam","platformId":"76561198272891864"}, Channels: 143, Time: 2022.06.19-20.19.02 +[2022.06.19-20.19.02:965][662]LogNet: UChannel::Close: Sending CloseBunch. ChIndex == 0. Name: [UChannel] ChIndex: 0, Closing: 0 [UNetConnection] RemoteAddr: 54.221.69.240:31432, Name: IpConnection_2147481541, Driver: GameNetDriver IpNetDriver_2147481542, IsServer: NO, PC: PortalWarsPlayerController_BP_C_2147480902, Owner: PortalWarsPlayerController_BP_C_2147480902, UniqueId: AccelByte:{"id":"b841870e4bbe4ffab0bfc26a09f84cab","platformType":"Steam","platformId":"76561198272891864"} +[2022.06.19-20.19.02:965][662]LogNet: Error: UEngine::BroadcastNetworkFailure: FailureType = ConnectionLost, ErrorString = Your connection to the host has been lost., Driver = GameNetDriver IpNetDriver_2147481542 +[2022.06.19-20.19.02:965][662]LogNet: Warning: Network Failure: GameNetDriver[ConnectionLost]: Your connection to the host has been lost. +[2022.06.19-20.19.02:965][662]LogNet: NetworkFailure: ConnectionLost, Error: 'Your connection to the host has been lost.' +[2022.06.19-20.19.02:966][662]LogLoadingScreen: Showing loading screen when 'IsShowingInitialLoadingScreen()' is false. +[2022.06.19-20.19.02:966][662]LogLoadingScreen: We have pending travel (the TravelURL is not empty) +[2022.06.19-20.19.02:966][662]LogTemp: Warning: Turning global invalidation OFF +[2022.06.19-20.19.02:966][662]LogStreaming: Display: FlushAsyncLoading: 1 QueuedPackages, 0 AsyncPackages +[2022.06.19-20.19.02:969][662]LogCore: Display: Setting hang detector multiplier to 1.0000s. New hang duration: 0.0000s. New present duration: 0.0000s. +[2022.06.19-20.19.02:975][662]LogLoadingScreen: Loading screen showing: 1. Reason: We have pending travel (the TravelURL is not empty) +[2022.06.19-20.19.02:980][663]LogNet: Browse: /Game/Maps/MainMenu?closed +[2022.06.19-20.19.02:980][663]LogNet: Connection failed; returning to Entry +[2022.06.19-20.19.02:980][663]LogLoad: LoadMap: /Game/Maps/MainMenu?closed +[2022.06.19-20.19.02:980][663]LogWorld: BeginTearingDown for /Game/Maps/Stadium +[2022.06.19-20.19.02:981][663]LogNet: World NetDriver shutdown IpNetDriver_2147481542 [GameNetDriver] +[2022.06.19-20.19.02:981][663]LogNet: DestroyNamedNetDriver IpNetDriver_2147481542 [GameNetDriver] +[2022.06.19-20.19.02:981][663]LogExit: GameNetDriver IpNetDriver_2147481542 shut down +[2022.06.19-20.19.02:981][663]LogDemo: StopDemo: Demo Unsaved-2022-06-19-16-18-46 stopped at frame 988 +[2022.06.19-20.19.02:981][663]LogNet: UNetConnection::Close: [UNetConnection] RemoteAddr: UDemoNetConnection, Name: DemoNetConnection_2147479798, Driver: DemoNetDriver DemoNetDriver_2147479799, IsServer: YES, PC: PWReplayPlayerController_BP_C_2147479796, Owner: PWReplayPlayerController_BP_C_2147479796, UniqueId: INVALID, Channels: 124, Time: 2022.06.19-20.19.02 +[2022.06.19-20.19.02:981][663]LogNet: DestroyNamedNetDriver DemoNetDriver_2147479799 [DemoNetDriver] +[2022.06.19-20.19.02:982][663]PIE: Error: Only Local Player Controllers can be assigned to widgets. PortalWarsPlayerController_BP_C_2147480902 is not a Local Player Controller. +[2022.06.19-20.19.02:982][663]PIE: Error: Only Local Player Controllers can be assigned to widgets. PortalWarsPlayerController_BP_C_2147480902 is not a Local Player Controller. +[2022.06.19-20.19.02:982][663]PIE: Error: Only Local Player Controllers can be assigned to widgets. PortalWarsPlayerController_BP_C_2147480902 is not a Local Player Controller. +[2022.06.19-20.19.02:982][663]PIE: Error: Only Local Player Controllers can be assigned to widgets. PortalWarsPlayerController_BP_C_2147480902 is not a Local Player Controller. +[2022.06.19-20.19.02:982][663]PIE: Error: Only Local Player Controllers can be assigned to widgets. PortalWarsPlayerController_BP_C_2147480902 is not a Local Player Controller. +[2022.06.19-20.19.02:982][663]PIE: Error: Only Local Player Controllers can be assigned to widgets. PortalWarsPlayerController_BP_C_2147480902 is not a Local Player Controller. +[2022.06.19-20.19.02:982][663]PIE: Error: Only Local Player Controllers can be assigned to widgets. PortalWarsPlayerController_BP_C_2147480902 is not a Local Player Controller. +[2022.06.19-20.19.02:982][663]PIE: Error: Only Local Player Controllers can be assigned to widgets. PortalWarsPlayerController_BP_C_2147480902 is not a Local Player Controller. +[2022.06.19-20.19.02:984][663]LogTemp: Warning: Turning global invalidation OFF +[2022.06.19-20.19.02:985][663]LogWorld: UWorld::CleanupWorld for Stadium, bSessionEnded=true, bCleanupResources=true +[2022.06.19-20.19.02:988][663]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2022.06.19-20.19.02:988][663]LogWorld: UWorld::CleanupWorld for Map8_New_Content, bSessionEnded=true, bCleanupResources=true +[2022.06.19-20.19.02:988][663]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2022.06.19-20.19.02:988][663]LogWorld: UWorld::CleanupWorld for Map8_Audio, bSessionEnded=true, bCleanupResources=true +[2022.06.19-20.19.02:988][663]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2022.06.19-20.19.02:988][663]LogWorld: UWorld::CleanupWorld for Map8_S01_game, bSessionEnded=true, bCleanupResources=true +[2022.06.19-20.19.02:988][663]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2022.06.19-20.19.02:988][663]LogWorld: UWorld::CleanupWorld for Map8_Lights_S01, bSessionEnded=true, bCleanupResources=true +[2022.06.19-20.19.02:988][663]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2022.06.19-20.19.02:988][663]LogWorld: UWorld::CleanupWorld for Map8_Nav, bSessionEnded=true, bCleanupResources=true +[2022.06.19-20.19.02:988][663]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2022.06.19-20.19.02:988][663]LogWorld: UWorld::CleanupWorld for Map8_Scoreboard, bSessionEnded=true, bCleanupResources=true +[2022.06.19-20.19.02:988][663]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2022.06.19-20.19.02:988][663]LogWorld: UWorld::CleanupWorld for Stadium, bSessionEnded=true, bCleanupResources=true +[2022.06.19-20.19.02:988][663]LogWorld: UWorld::CleanupWorld for Map8_S01_game, bSessionEnded=true, bCleanupResources=true +[2022.06.19-20.19.03:024][663]LogAudio: Display: Waited 35.348133 ms for audio thread. +[2022.06.19-20.19.03:029][663]LogStreaming: Display: 2.087 ms (1.136+0.951) ms for processing 5502/33126 objects in NotifyUnreachableObjects( Queued=0, Async=0). Removed 2046/2046 (4159->2113 tracked) packages and 3033/3456 (6270->3237 tracked) public exports. +[2022.06.19-20.19.03:038][663]LogAudio: Display: Audio Device unregistered from world 'None'. +[2022.06.19-20.19.03:051][663]LogDemo: Cleaned up 0 splitscreen connections with owner deletion +[2022.06.19-20.19.03:063][663]LogUObjectHash: Compacting FUObjectHashTables data took 0.93ms +[2022.06.19-20.19.03:065][663]LogStreaming: Display: FlushAsyncLoading: 1 QueuedPackages, 0 AsyncPackages +[2022.06.19-20.19.03:121][663]LogAudio: Display: Audio Device (ID: 1) registered with world 'MainMenu'. +[2022.06.19-20.19.03:122][663]LogAIModule: Creating AISystem for world MainMenu +[2022.06.19-20.19.03:122][663]LogLoad: Game class is 'MainMenuGameMode_BP_C' +[2022.06.19-20.19.03:122][663]LogStreaming: Display: ULevelStreaming::RequestLevel(/Game/Maps/Sublevels/Abyss_Main_Menu_BLockout_Char) is flushing async loading +[2022.06.19-20.19.03:217][663]LogLevel: Warning: Detected duplicate WorldSettings actor - UE-62934 +[2022.06.19-20.19.03:220][663]LogStreaming: Display: ULevelStreaming::RequestLevel(/Game/Environments/MainMenu_Console/Maps/MainMenu_Inspect) is flushing async loading +[2022.06.19-20.19.03:263][663]LogStreaming: Display: ULevelStreaming::RequestLevel(/Game/Maps/Sublevels/Rewards) is flushing async loading +[2022.06.19-20.19.03:318][663]LogStreaming: Display: ULevelStreaming::RequestLevel(/Game/Environments/MainMenu_Console/Maps/MainMenu_Game) is flushing async loading +[2022.06.19-20.19.03:328][663]LogWorld: Bringing World /Game/Maps/MainMenu.MainMenu up for play (max tick rate 165) at 2022.06.19-16.19.03 +[2022.06.19-20.19.03:329][663]LogWorld: Bringing up level for play took: 0.000510 +[2022.06.19-20.19.03:329][663]LogAccelByteOSS: Error: <<< RegisterPlayers (DefaultInstance) has finished execution. Could not register player as we failed to get session with name 'GameSession'! +[2022.06.19-20.19.03:330][663]LogSkinnedMeshComp: Warning: GetSocketByName(PortalLauncherPoint): No SkeletalMesh for Component(PawnMesh1P) Actor(MyCharacter) +[2022.06.19-20.19.03:330][663]LogSkinnedMeshComp: Warning: GetSocketByName(PortalLauncherPoint): No SkeletalMesh for Component(PawnMesh1P) Actor(MyCharacter) +[2022.06.19-20.19.03:330][663]LogSkinnedMeshComp: Warning: GetSocketByName(PortalLauncherPoint): No SkeletalMesh for Component(PawnMesh1P) Actor(MyCharacter) +[2022.06.19-20.19.03:330][663]LogPlayerController: Setting r.AmbientOcclusionLevels to 1 +[2022.06.19-20.19.03:331][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:331][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:333][663]LogViewport: Display: Viewport MouseLockMode Changed, DoNotLock -> LockOnCapture +[2022.06.19-20.19.03:333][663]LogViewport: Display: Viewport MouseCaptureMode Changed, NoCapture -> CapturePermanently +[2022.06.19-20.19.03:347][663]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2022.06.19-20.19.03:347][663]LogViewport: Display: Viewport HideCursorDuringCapture Changed, False -> True +[2022.06.19-20.19.03:347][663]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently -> CaptureDuringMouseDown +[2022.06.19-20.19.03:347][663]LogViewport: Display: Player bShowMouseCursor Changed, False -> True +[2022.06.19-20.19.03:348][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:348][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:348][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:348][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:349][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:349][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:350][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:350][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:351][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:351][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:351][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:351][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:359][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:374][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:384][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:385][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:385][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:386][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:386][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:386][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:386][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:393][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:393][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:394][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:394][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:395][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:395][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:395][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:395][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:397][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:397][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:397][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:397][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:399][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:399][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:399][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:399][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:400][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:401][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:401][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:401][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:402][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:402][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:402][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:402][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:404][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:404][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:404][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:404][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:405][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:405][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:406][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:406][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:407][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:407][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:407][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:407][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:409][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:409][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:409][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:409][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:410][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:410][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:411][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:411][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:412][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:412][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:412][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:412][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.03:412][663]LogPlayerController: Setting r.AmbientOcclusionLevels to 1 +[2022.06.19-20.19.03:412][663]LogLoad: Took 0.431979 seconds to LoadMap(/Game/Maps/MainMenu) +[2022.06.19-20.19.03:414][663]LogStreaming: Display: 0.040 ms (0.028+0.012) ms for processing 1215/4313 objects in NotifyUnreachableObjects( Queued=0, Async=38). Removed 0/0 (3525->3525 tracked) packages and 123/1215 (6521->6398 tracked) public exports. +[2022.06.19-20.19.03:417][663]LogUObjectHash: Compacting FUObjectHashTables data took 1.06ms +[2022.06.19-20.19.03:421][663]LogSlate: Took 0.000265 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/Montserrat/Montserrat-Black.ufont' (252K) +[2022.06.19-20.19.03:421][663]LogSlate: Took 0.000226 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/Montserrat/Montserrat-Regular.ufont' (240K) +[2022.06.19-20.19.03:433][663]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2022.06.19-20.19.03:436][664]LogStreaming: Display: 0.000 ms for skipping 12 objects in NotifyUnreachableObjects (Queued=0, Async=0). +[2022.06.19-20.19.03:438][664]LogLocalFileReplay: Warning: Deleting network replay stream Unsaved-2022-06-19-16-18-46 that is currently live! +[2022.06.19-20.19.03:438][664]LogSlate: Took 0.000299 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/Montserrat/Montserrat-Black.ufont' (252K) +[2022.06.19-20.19.03:439][664]LogSlate: Took 0.000095 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/ChakraPetch/ChakraPetch-Bold.ufont' (70K) +[2022.06.19-20.19.03:440][664]LogSlate: Took 0.000221 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/Montserrat/Montserrat-Regular.ufont' (240K) +[2022.06.19-20.19.03:445][664]LogSlate: Took 0.000251 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/Montserrat/Montserrat-Bold.ufont' (239K) +[2022.06.19-20.19.03:445][664]LogSlate: Took 0.000073 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/RevolutionGothic/RevolutionGothic_ExtraBold_It.ufont' (41K) +[2022.06.19-20.19.03:445][664]LogSlate: Took 0.000167 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/ChakraPetch/ChakraPetch-Regular.ufont' (70K) +[2022.06.19-20.19.03:447][664]LogSlate: Took 0.000228 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/Montserrat/Montserrat-SemiBold.ufont' (239K) +[2022.06.19-20.19.03:662][677]LogAccelByte: Warning: HTTP 404 GET https://splitgate.accelbyte.io/sessionmanager/namespaces/splitgate/users/b841870e4bbe4ffab0bfc26a09f84cab/sessions, 0x7f8d5c4d64e0 +[2022.06.19-20.19.03:918][692]LogLoadingScreen: Hiding loading screen when 'IsShowingInitialLoadingScreen()' is false. +[2022.06.19-20.19.03:918][692]LogLoadingScreen: (nothing wants to show it anymore) +[2022.06.19-20.19.03:918][692]LogLoadingScreen: Garbage Collecting before dropping load screen +[2022.06.19-20.19.03:919][692]LogCore: Display: Setting hang detector multiplier to 1.0000s. New hang duration: 0.0000s. New present duration: 0.0000s. +[2022.06.19-20.19.03:919][692]LogLoadingScreen: LoadingScreen was visible for 0.95s +[2022.06.19-20.19.03:923][692]LogStreaming: Display: 0.013 ms (0.007+0.006) ms for processing 12/548 objects in NotifyUnreachableObjects( Queued=0, Async=0). Removed 3/3 (3525->3522 tracked) packages and 4/9 (6398->6394 tracked) public exports. +[2022.06.19-20.19.03:926][692]LogUObjectHash: Compacting FUObjectHashTables data took 2.70ms +[2022.06.19-20.19.04:992][757]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.04:993][757]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.04:993][757]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.04:993][757]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.04:994][757]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.04:995][757]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.04:995][757]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.04:995][757]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.04:996][757]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.04:996][757]LogStreamableManager: Error: RequestAsyncLoad called withSignal 11 caught. +Malloc Size=65538 LargeMemoryPoolOffset=65554 +Failed to find symbol file, expected location: +"/mnt/games/steamLibrary/steamapps/common/Splitgate/PortalWars/Binaries/Linux/PortalWars-Linux-Shipping.sym" +Malloc Size=131160 LargeMemoryPoolOffset=196744 +Malloc Size=131160 LargeMemoryPoolOffset=327928 +Malloc Size=543870 LargeMemoryPoolOffset=871822 +ERROR: ld.so: object '/home/sharkfin/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored. +Looking for binary: ../../../Engine/Programs/CrashReportClient/Config/BinaryConfig.ini +ERROR: ld.so: object '/home/sharkfin/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored. +ERROR: ld.so: object '/home/sharkfin/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored. +LogPakFile: Display: Found Pak file ../../../Engine/Programs/CrashReportClient/Content/Paks/CrashReportClient.pak attempting to mount. +LogPakFile: Display: Mounting pak file ../../../Engine/Programs/CrashReportClient/Content/Paks/CrashReportClient.pak. +LogPakFile: PakFile PrimaryIndexSize=77857 +LogPakFile: PakFile PathHashIndexSize=186721 +LogPakFile: PakFile FullDirectoryIndexSize=118918 +LogPakFile: OnPakFileMounted2Time == 0.000000 +LogPlatformFile: Not using cached read wrapper +LogTaskGraph: Started task graph with 4 named threads and 13 total threads with 1 sets of task threads. +LogICUInternationalization: ICU TimeZone Detection - Raw Offset: -5:00, Platform Override: '' +LogInit: Display: Loading text-based GConfig.... +LogInit: Build: ++PortalWars+Main-CL-8813 +LogInit: Engine Version: 4.27.2-8813+++PortalWars+Main +LogInit: Compatible Engine Version: 4.27.0-17155196+++PortalWars+Main +LogInit: Net CL: 17155196 +LogInit: OS: GenericOSVersionLabel (GenericOSSubVersionLabel), CPU: 12th Gen Intel(R) Core(TM) i5-12600K, GPU: GenericGPUBrand +LogInit: Compiled (64-bit): Jun 11 2022 11:47:32 +LogInit: Compiled with Clang: 11.0.1 (https://github.com/llvm/llvm-project 43ff75f2c3feef64f9d73328230d34dac8832a91) +LogInit: Build Configuration: Shipping +LogInit: Branch Name: ++PortalWars+Main +LogInit: Command Line: -Abslog="/home/sharkfin/.config/Epic/PortalWars/Saved/Logs/PortalWars-CRC.log" "/home/sharkfin/.config/Epic/PortalWars/Saved/Crashes/crashinfo-PortalWars-pid-103242-82A1A72327E9409DB8BBE8C66C42FB3B/" +LogInit: Base Directory: /mnt/games/steamLibrary/steamapps/common/Splitgate/Engine/Binaries/Linux/ +LogInit: Allocator: binned2 +LogInit: Installed Engine Build: 1 +LogInit: Presizing for max 100000 objects, including 0 objects not considered by GC, pre-allocating 0 bytes for permanent pool. +LogConfig: Applying CVar settings from Section [/Script/Engine.StreamingSettings] File [/home/sharkfin/.config/Epic/CrashReportClient/Saved/Config/Linux/Engine.ini] +LogInit: Object subsystem initialized +LogConfig: Applying CVar settings from Section [ConsoleVariables] File [/home/sharkfin/.config/Epic/CrashReportClient/Saved/Config/Linux/Engine.ini] +[2022.06.19-20.19.05:316][ 0]LogInit: Unix hardware info: +[2022.06.19-20.19.05:316][ 0]LogInit: - we are the first instance of this executable +[2022.06.19-20.19.05:316][ 0]LogInit: - this process' id (pid) is 103604, parent process' id (ppid) is 103242 +[2022.06.19-20.19.05:316][ 0]LogInit: - we are not running under debugger +[2022.06.19-20.19.05:316][ 0]LogInit: - machine network name is 'archfin' +[2022.06.19-20.19.05:316][ 0]LogInit: - user name is 'sharkfin' (sharkfin) +[2022.06.19-20.19.05:316][ 0]LogInit: - we're logged in locally +[2022.06.19-20.19.05:316][ 0]LogInit: - we're running with rendering +[2022.06.19-20.19.05:316][ 0]LogInit: - CPU: GenuineIntel '12th Gen Intel(R) Core(TM) i5-12600K' (signature: 0x90672) +[2022.06.19-20.19.05:316][ 0]LogInit: - Number of physical cores available for the process: 10 +[2022.06.19-20.19.05:316][ 0]LogInit: - Number of logical cores available for the process: 16 +[2022.06.19-20.19.05:316][ 0]LogInit: - Cache line size: 64 +[2022.06.19-20.19.05:316][ 0]LogInit: - Memory allocator used: binned2 +[2022.06.19-20.19.05:316][ 0]LogInit: - This binary is optimized with LTO: no, PGO: no, instrumented for PGO data collection: no +[2022.06.19-20.19.05:316][ 0]LogInit: - This is an internal build. +[2022.06.19-20.19.05:316][ 0]LogCore: Skipped benchmarking clocks because the engine is running in a standalone program mode - CLOCK_MONOTONIC will be used. +[2022.06.19-20.19.05:316][ 0]LogInit: Unix-specific commandline switches: +[2022.06.19-20.19.05:316][ 0]LogInit: -ansimalloc - use malloc()/free() from libc (useful for tools like valgrind and electric fence) +[2022.06.19-20.19.05:316][ 0]LogInit: -jemalloc - use jemalloc for all memory allocation +[2022.06.19-20.19.05:316][ 0]LogInit: -binnedmalloc - use binned malloc for all memory allocation +[2022.06.19-20.19.05:317][ 0]LogInit: -filemapcachesize=NUMBER - set the size for case-sensitive file mapping cache +[2022.06.19-20.19.05:317][ 0]LogInit: -useksm - uses kernel same-page mapping (KSM) for mapped memory (OFF) +[2022.06.19-20.19.05:317][ 0]LogInit: -ksmmergeall - marks all mmap'd memory pages suitable for KSM (OFF) +[2022.06.19-20.19.05:317][ 0]LogInit: -preloadmodulesymbols - Loads the main module symbols file into memory (OFF) +[2022.06.19-20.19.05:317][ 0]LogInit: -sigdfl=SIGNAL - Allows a specific signal to be set to its default handler rather then ignoring the signal +[2022.06.19-20.19.05:317][ 0]LogInit: -httpproxy=ADDRESS:PORT - redirects HTTP requests to a proxy (only supported if compiled with libcurl) +[2022.06.19-20.19.05:317][ 0]LogInit: -reuseconn - allow libcurl to reuse HTTP connections (only matters if compiled with libcurl) +[2022.06.19-20.19.05:317][ 0]LogInit: -virtmemkb=NUMBER - sets process virtual memory (address space) limit (overrides VirtualMemoryLimitInKB value from .ini) +[2022.06.19-20.19.05:317][ 0]LogInit: - Physical RAM available (not considering process quota): 32 GB (31897 MB, 32662656 KB, 33446559744 bytes) +[2022.06.19-20.19.05:317][ 0]LogInit: - VirtualMemoryAllocator pools will grow at scale 1.4 +[2022.06.19-20.19.05:317][ 0]LogInit: - MemoryRangeDecommit() will be a no-op (re-run with -vmapoolevict to change) +[2022.06.19-20.19.05:321][ 0]LogUObjectArray: 363 objects as part of root set at end of initial load. +[2022.06.19-20.19.05:321][ 0]LogUObjectAllocator: 62768 out of 0 bytes used by permanent object pool. +[2022.06.19-20.19.05:321][ 0]LogUObjectArray: CloseDisregardForGC: 0/0 objects in disregard for GC pool +[2022.06.19-20.19.05:321][ 0]LogPaths: Warning: No paths for game localization data were specifed in the game configuration. +[2022.06.19-20.19.05:321][ 0]LogInit: Using OS detected language (en-US-POSIX). +[2022.06.19-20.19.05:321][ 0]LogInit: Using OS detected locale (en-US-POSIX). +[2022.06.19-20.19.05:321][ 0]LogInit: Warning: No paths for engine localization data were specifed in the engine configuration. +[2022.06.19-20.19.05:321][ 0]LogTextLocalizationManager: No localization for 'en-US-POSIX' exists, so 'en' will be used for the language. +[2022.06.19-20.19.05:321][ 0]LogTextLocalizationManager: No localization for 'en-US-POSIX' exists, so 'en' will be used for the locale. +[2022.06.19-20.19.05:321][ 0]LogInit: Using OS detected language (en-US-POSIX). +[2022.06.19-20.19.05:321][ 0]LogInit: Using OS detected locale (en-US-POSIX). +[2022.06.19-20.19.05:321][ 0]LogTextLocalizationManager: No localization for 'en-US-POSIX' exists, so 'en' will be used for the language. +[2022.06.19-20.19.05:321][ 0]LogTextLocalizationManager: No localization for 'en-US-POSIX' exists, so 'en' will be used for the locale. +[2022.06.19-20.19.05:322][ 0]LogTextLocalizationManager: Compacting localization data took 0.00ms +[2022.06.19-20.19.05:322][ 0]LogPackageLocalizationCache: Processed 2 localized package path(s) for 1 prioritized culture(s) in 0.000223 seconds +[2022.06.19-20.19.05:322][ 0]CrashReportCoreLog: CrashReportClientVersion=1.0 +[2022.06.19-20.19.05:322][ 0]CrashReportCoreLog: CrashReportReceiver disabled +[2022.06.19-20.19.05:322][ 0]CrashReportCoreLog: DataRouterUrl: https://Splitgate.bugsplat.com/post/ue4/production/7.0.3 +[2022.06.19-20.19.05:322][ 0]LogInit: Initializing SDL. +[2022.06.19-20.19.07:283][ 0]LogInit: Initialized SDL 2.0.12 revision: 13609 (hg-13609:34cc7d3b69d3) (compiled against 2.0.12) +[2022.06.19-20.19.07:283][ 0]LogInit: Using SDL video driver 'x11' +[2022.06.19-20.19.07:292][ 0]LogSlate: New Slate User Created. User Index 0, Is Virtual User: 0 +[2022.06.19-20.19.07:292][ 0]LogSlate: Slate User Registered. User Index 0, Is Virtual User: 0 +[2022.06.19-20.19.07:293][ 0]LogSlate: Using FreeType 2.10.0 +[2022.06.19-20.19.07:293][ 0]LogSlate: SlateFontServices - WITH_FREETYPE: 1, WITH_HARFBUZZ: 1 +[2022.06.19-20.19.07:293][ 0]LogInit: Using SDL_WINDOW_OPENGL +[2022.06.19-20.19.07:327][ 0]LogInit: FSlateOpenGLContext::Initialize - creating OpenGL 2.1 context +[2022.06.19-20.19.07:366][ 0]CrashReportCoreLog: Initial state = U00:01:16.083 [ERROR] [xwayland/xwm.c:1546] xcb error: op ConfigureWindow (no minor), code Value (no extension), sequence 4347, value 0 +Installing breakpad exception handler for appid(gameoverlayui)/version(20220618001721) +Installing breakpad exception handler for appid(gameoverlayui)/version(1.0) +Installing breakpad exception handler for appid(gameoverlayui)/version(1.0) +src/steamexe/main.cpp (254) : Assertion Failed: reaping pid: 103575 -- gameoverlayui + +src/steamexe/main.cpp (254) : Assertion Failed: reaping pid: 103576 -- gameoverlayui + +Installing breakpad exception handler for appid(gameoverlayui)/version(1.0) +nknown UploadState value +[2022.06.19-20.19.07:366][ 0]CrashReportCoreLog: Initial state = Unknown UploadState value +[2022.06.19-20.19.07:368][ 0]LogInit: FSlateOpenGLContext::Initialize - creating OpenGL 2.1 context +[2022.06.19-20.19.07:369][ 0]LogSlate: Took 0.000022 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Regular.ttf' (155K) +[2022.06.19-20.19.07:369][ 0]LogSlate: Took 0.000018 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Bold.ttf' (160K) +[2022.06.19-20.19.07:370][ 0]LogSlate: Took 0.000019 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Italic.ttf' (157K) +[2022.06.19-20.19.10:710][ 0]LogSlate: Request Window 'Unreal Engine 4 Crash Reporter' being destroyed +[2022.06.19-20.19.10:710][ 0]LogSlate: Window 'Unreal Engine 4 Crash Reporter' being destroyed +[2022.06.19-20.19.10:713][ 0]LogCore: Engine exit requested (reason: OnRequestExit) +[2022.06.19-20.19.10:714][ 0]CrashReportCoreLog: Final state (Receiver) = Ready +[2022.06.19-20.19.10:714][ 0]CrashReportCoreLog: Final state (Receiver) = Unknown UploadState value +[2022.06.19-20.19.10:723][ 0]LogSlate: Slate User Destroyed. User Index 0, Is Virtual User: 0 +[2022.06.19-20.19.10:723][ 0]LogCore: Engine exit requested (reason: CrashReportClientApp RequestExit; note: exit was already requested) +[2022.06.19-20.19.10:723][ 0]LogExit: Preparing to exit. +[2022.06.19-20.19.10:724][ 0]LogExit: Object subsystem successfully closed. +[2022.06.19-20.19.10:725][ 0]LogModuleManager: Shutting down and abandoning module ImageWrapper (10) +[2022.06.19-20.19.10:725][ 0]LogModuleManager: Shutting down and abandoning module InputCore (8) +[2022.06.19-20.19.10:725][ 0]LogModuleManager: Shutting down and abandoning module CoreUObject (6) +[2022.06.19-20.19.10:725][ 0]LogModuleManager: Shutting down and abandoning module PakFile (4) +[2022.06.19-20.19.10:726][ 0]LogModuleManager: Shutting down and abandoning module RSA (3) +[2022.06.19-20.19.10:726][ 0]LogExit: Exiting. +[2022.06.19-20.19.10:726][ 0]LogInit: Tearing down SDL. + empty or only null assets! +[2022.06.19-20.19.04:997][757]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.04:997][757]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.04:998][757]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.04:998][757]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.04:999][757]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.04:999][757]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.05:000][757]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.05:000][757]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.05:000][757]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.05:000][757]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.05:001][757]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.05:002][757]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.05:002][757]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.05:002][757]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! +[2022.06.19-20.19.05:202][769]LogSlate: Request Window 'PortalWars ' being destroyed +[2022.06.19-20.19.05:204][769]LogSlate: Window 'PortalWars ' being destroyed +CommonUnixCrashHandler: Signal=11 +[2022.06.19-20.19.05:225][769]LogCore: === Critical error: === +Unhandled Exception: SIGSEGV: invalid attempt to write memory at address 0x0000000000000008 + +[2022.06.19-20.19.05:225][769]LogCore: Fatal error! + +0x0000000004f8f946 PortalWars-Linux-Shipping!UnknownFunction(0x4d8f946) +0x0000000004f8fb59 PortalWars-Linux-Shipping!UnknownFunction(0x4d8fb58) +0x00000000050239d8 PortalWars-Linux-Shipping!UnknownFunction(0x4e239d7) +0x000000000507d8c1 PortalWars-Linux-Shipping!UnknownFunction(0x4e7d8c0) +0x000000000507d95a PortalWars-Linux-Shipping!UnknownFunction(0x4e7d959) +0x00000000039e44e6 PortalWars-Linux-Shipping!UnknownFunction(0x37e44e5) +0x00000000039e40fe PortalWars-Linux-Shipping!UnknownFunction(0x37e40fd) +0x000000000506e112 PortalWars-Linux-Shipping!UnknownFunction(0x4e6e111) +0x0000000003a36c23 PortalWars-Linux-Shipping!UnknownFunction(0x3836c22) +0x0000000003a16c80 PortalWars-Linux-Shipping!UnknownFunction(0x3816c7f) +0x00007f8f2bc8c54d libc.so.6!UnknownFunction(0x8c54c) +0x00007f8f2bd11874 libc.so.6!clone(+0x43) + +[2022.06.19-20.19.05:232][769]LogExit: Executing StaticShutdownAfterError +Engine crash handling finished; re-raising signal 11 for the default handler. Good bye. +ved. +Unconstrained mouse from 6b79cd90 +Callback 3fc24650 -> 6b9599f0, Constraint removed. +Callback 3fc24650 -> 6b9599f0, Constraint removed. +Keybind triggered, calling dispatcher (64, 67) +Set keyboard focus to surface 6b587f90 +Set keyboard focus to surface 6b9550a0, with window name: Alacritty +New XWayland Surface created. +Registered signal for owner 6b9b01e0: 6b9af8d8 -> 6b9b0248 (owner: XWayland Window) +Registered signal for owner 6b9b01e0: 6b9af8e8 -> 6b9b02b0 (owner: XWayland Window) +Registered signal for owner 6b9b01e0: 6b9af858 -> 6b9b0318 (owner: XWayland Window) +Window 6b9b01e0 destroyed, queueing. +Callback 3fc24b10 -> 6b9b01e0, XWayland Window removed. +Callback 3fc24b10 -> 6b9b01e0, XWayland Window removed. +Callback 3fc24b10 -> 6b9b01e0, XWayland Window removed. +New XWayland Surface created. +Registered signal for owner 6b9b0a00: 6b9af8d8 -> 6b9b0a68 (owner: XWayland Window) +Registered signal for owner 6b9b0a00: 6b9af8e8 -> 6b9b0ad0 (owner: XWayland Window) +Registered signal for owner 6b9b0a00: 6b9af858 -> 6b9b0b38 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b9b1220: 6b7a5d38 -> 6b9b1288 (owner: XWayland Window) +Registered signal for owner 6b9b1220: 6b7a5d48 -> 6b9b12f0 (owner: XWayland Window) +Registered signal for owner 6b9b1220: 6b7a5cb8 -> 6b9b1358 (owner: XWayland Window) +Set keyboard focus to surface 6b7c5340, with window name: Unreal Engine 4 Crash Reporter +Registered signal for owner 6b7cd880: 6b7c5610 -> 6b7cd888 (owner: SurfaceTreeNode) +Registered signal for owner 6b7cd880: 6b7c5600 -> 6b7cd8f0 (owner: SurfaceTreeNode) +Registered signal for owner 6b7cd880: 6b7c5620 -> 6b7cd958 (owner: SurfaceTreeNode) +Creating a surfaceTree Root! (pWindow: 6b9b1220) +Window got assigned a surfaceTreeNode 6b7cd880 +Registered signal for owner 6b9b1220: 6b7a5d18 -> 6b9b1428 (owner: XWayland Window Late) +Registered signal for owner 6b9b1220: 6b7a5d28 -> 6b9b1710 (owner: XWayland Window Late) +Registered signal for owner 6b9b1220: 6b7a5cc8 -> 6b9b1778 (owner: XWayland Window Late) +Registered signal for owner 6b9b1220: 6b7a5d58 -> 6b9b13c0 (owner: XWayland Window Late) +Map request dispatched, monitor DP-4, xywh: 3465.000000 773.000000 750.000000 594.000000 +Set keyboard focus to surface 6b9550a0, with window name: Alacritty +Set keyboard focus to surface 6b7c5340, with window name: Unreal Engine 4 Crash Reporter +Set keyboard focus to surface 6b9550a0, with window name: Alacritty +Set keyboard focus to surface 6b7c5340, with window name: Unreal Engine 4 Crash Reporter +Set keyboard focus to surface 6b9550a0, with window name: Alacritty +Set keyboard focus to surface 6b7c5340, with window name: Unreal Engine 4 Crash Reporter +Keybind triggered, calling dispatcher (64, 67) +Window 6b9b1220 unmapped +Unregistered late callbacks XWL: 6b9b1428 6b9b1710 6b9b1778 6b9b13c0 +Callback 3fc24a90 -> 6b9b1220, XWayland Window Late removed. +Callback 3fc24a90 -> 6b9b1220, XWayland Window Late removed. +Callback 3fc24a90 -> 6b9b1220, XWayland Window Late removed. +Callback 3fc24a90 -> 6b9b1220, XWayland Window Late removed. +Framebuffer created, status 36053 +Set keyboard focus to surface 6b9550a0, with window name: Alacritty +Destroying the SubSurface tree of unmapped window 6b9b1220 +Callback 3fc24a20 -> 6b7cd880, SurfaceTreeNode removed. +Callback 3fc24a20 -> 6b7cd880, SurfaceTreeNode removed. +Callback 3fc24a20 -> 6b7cd880, SurfaceTreeNode removed. +SurfaceTree Node removed +Set keyboard focus to surface 6b9aca20, with window name: PortalWars +Window 6b9b1220 destroyed, queueing. +Callback 3fc24b10 -> 6b9b1220, XWayland Window removed. +Callback 3fc24b10 -> 6b9b1220, XWayland Window removed. +Callback 3fc24b10 -> 6b9b1220, XWayland Window removed. +Cleanup: destroyed a window +Window 6b9b0a00 destroyed, queueing. +Callback 3fc24b10 -> 6b9b0a00, XWayland Window removed. +Callback 3fc24b10 -> 6b9b0a00, XWayland Window removed. +Callback 3fc24b10 -> 6b9b0a00, XWayland Window removed. +Window 6b7d24a0 unmapped +Unregistered late callbacks XWL: 6b7d26a8 6b7d2990 6b7d29f8 6b7d2640 +Callback 3fc24a90 -> 6b7d24a0, XWayland Window Late rem/mnt/games/steamLibrary/steamapps/common/Splitgate/PortalWars.sh: line 5: 103242 Segmentation fault (core dumped) "$UE4_PROJECT_ROOT/PortalWars/Binaries/Linux/PortalWars-Linux-Shipping" PortalWars "$@" +00:01:20.042 [ERROR] [xwayland/xwm.c:1546] xcb error: op ChangeProperty (no minor), code Window (no extension), sequence 4784, value 33554466 +00:01:20.042 [ERROR] [xwayland/xwm.c:1546] xcb error: op ChangeProperty (no minor), code Window (no extension), sequence 4791, value 33554466 +Game process removed: AppID 677620 "/home/sharkfin/.local/share/Steam/ubuntu12_32/reaper SteamLaunch AppId=677620 -- '/mnt/games/steamLibrary/steamapps/common/Splitgate/PortalWars.sh'", ProcID 103604 +ThreadGetProcessExitCode: no such process 103626 +ThreadGetProcessExitCode: no such process 103604 +ThreadGetProcessExitCode: no such process 103436 +ThreadGetProcessExitCode: no such process 103242 +ThreadGetProcessExitCode: no such process 103241 +ThreadGetProcessExitCode: no such process 103240 +ThreadGetProcessExitCode: no such process 103239 +ThreadGetProcessExitCode: no such process 103238 +ThreadGetProcessExitCode: no such process 103235 +Uploaded AppInterfaceStats to Steam + +(process:103658): GLib-GObject-CRITICAL **: 16:19:12.867: g_object_unref: assertion 'G_IS_OBJECT (object)' failed + +(process:103473): GLib-GObject-CRITICAL **: 16:19:13.491: g_object_unref: assertion 'G_IS_OBJECT (object)' failed +GameAction [AppID 1172620, ActionID 2] : LaunchApp changed task to ProcessingInstallScript with "" +00:01:23.866 [ERROR] [xwayland/xwm.c:1546] xcb error: op ConfigureWindow (no minor), code Value (no extension), sequence 5020, value 0 +fsync: up and running. +wine: RLIMIT_NICE is <= 20, unable to use setpriority safely +src/steamexe/main.cpp (254) : Assertion Failed: reaping pid: 103576 -- gameoverlayui + +src/steamexe/main.cpp (254) : Assertion Failed: reaping pid: 103577 -- gameoverlayui + +oved. +Callback 3fc24a90 -> 6b7d24a0, XWayland Window Late removed. +Callback 3fc24a90 -> 6b7d24a0, XWayland Window Late removed. +Callback 3fc24a90 -> 6b7d24a0, XWayland Window Late removed. +Framebuffer created, status 36053 +Set keyboard focus to surface 6b9abe40, with window name: Steam +Destroying the SubSurface tree of unmapped window 6b7d24a0 +Callback 3fc24a20 -> 6b945650, SurfaceTreeNode removed. +Callback 3fc24a20 -> 6b945650, SurfaceTreeNode removed. +Callback 3fc24a20 -> 6b945650, SurfaceTreeNode removed. +SurfaceTree Node removed +Window 6b7d24a0 destroyed, queueing. +Callback 3fc24b10 -> 6b7d24a0, XWayland Window removed. +Callback 3fc24b10 -> 6b7d24a0, XWayland Window removed. +Callback 3fc24b10 -> 6b7d24a0, XWayland Window removed. +Cleanup: destroyed a window +OPENINGON: 6b9af180, Workspace: 1, Monitor: 0 +New XWayland Surface created. +Registered signal for owner 6b978970: 6b79ea98 -> 6b9789d8 (owner: XWayland Window) +Registered signal for owner 6b978970: 6b79eaa8 -> 6b978a40 (owner: XWayland Window) +Registered signal for owner 6b978970: 6b79ea18 -> 6b978aa8 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b9b1220: 6b7c84b8 -> 6b9b1288 (owner: XWayland Window) +Registered signal for owner 6b9b1220: 6b7c84c8 -> 6b9b12f0 (owner: XWayland Window) +Registered signal for owner 6b9b1220: 6b7c8438 -> 6b9b1358 (owner: XWayland Window) +Set keyboard focus to surface 6b9af750, with window name: Sea of Thieves - Steam +Registered signal for owner 6b7cd880: 6b9afa20 -> 6b7cd888 (owner: SurfaceTreeNode) +Registered signal for owner 6b7cd880: 6b9afa10 -> 6b7cd8f0 (owner: SurfaceTreeNode) +Registered signal for owner 6b7cd880: 6b9afa30 -> 6b7cd958 (owner: SurfaceTreeNode) +Creating a surfaceTree Root! (pWindow: 6b978970) +Window got assigned a surfaceTreeNode 6b7cd880 +Registered signal for owner 6b978970: 6b79ea78 -> 6b978b78 (owner: XWayland Window Late) +Registered signal for owner 6b978970: 6b79ea88 -> 6b978e60 (owner: XWayland Window Late) +Registered signal for owner 6b978970: 6b79ea28 -> 6b978ec8 (owner: XWayland Window Late) +Registered signal for owner 6b978970: 6b79eab8 -> 6b978b10 (owner: XWayland Window Late) +Map request dispatched, monitor DP-3, xywh: 1248.000000 708.000000 64.000000 24.000000 +Set keyboard focus to surface 6b9abe40, with window name: Steam +Window 6b978970 set title to Sea of Thieves - Steam +Window 6b978970 set title to Sea of Thieves - Steam +Window 6b978970 set title to Sea of Thieves - Steam +Window 6b978970 set title to Sea of Thieves - Steam +New XWayland Surface created. +Registered signal for owner 6b7d24a0: 6b7a5d38 -> 6b7d2508 (owner: XWayland Window) +Registered signal for owner 6b7d24a0: 6b7a5d48 -> 6b7d2570 (owner: XWayland Window) +Registered signal for owner 6b7d24a0: 6b7a5cb8 -> 6b7d25d8 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b9b1a40: 6b527ab8 -> 6b9b1aa8 (owner: XWayland Window) +Registered signal for owner 6b9b1a40: 6b527ac8 -> 6b9b1b10 (owner: XWayland Window) +Registered signal for owner 6b9b1a40: 6b527a38 -> 6b9b1b78 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b9b2260: 6b9b4a08 -> 6b9b22c8 (owner: XWayland Window) +Registered signal for owner 6b9b2260: 6b9b4a18 -> 6b9b2330 (owner: XWayland Window) +Registered signal for owner 6b9b2260: 6b9b4988 -> 6b9b2398 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b9b2a80: 6b7d31d8 -> 6b9b2ae8 (owner: XWayland Window) +Registered signal for owner 6b9b2a80: 6b7d31e8 -> 6b9b2b50 (owner: XWayland Window) +Registered signal for owner 6b9b2a80: 6b7d3158 -> 6b9b2bb8 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b9b32a0: 6b7d3468 -> 6b9b3308 (owner: XWayland Window) +Registered signal for owner 6b9b32a0: 6b7d3478 -> 6b9b3370 (owner: XWayland Window) +Registered signal for owner 6b9b32a0: 6b7d33e8 -> 6b9b33d8 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b9b6f10: 6b9acd68 -> 6b9b6f78 (owner: XWayland Window) +Registered signal for owner 6b9b6f10: 6b9acd78 -> 6b9b6fe0 (owner: XWayland Window) +Registered signal for owner 6b9b6f10: 6b9acce8 -> 6b9b7048 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b9b7bd0: 6b9b7ab8 -> 6b9b7c38 (owner: XWayland Window) +Registered signal for owner 6b9b7bd0: 6b9b7ac8 -> 6b9b7ca0 (owner: XWayland Window) +Registered signal for owner 6b9b7bd0: 6b9b7a38 -> 6b9b7d08 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b9b8890: 6b9b8778 -> 6b9b88f8 (owner: XWayland Window) +Registered signal for owner 6b9b8890: 6b9b8788 -> 6b9b8960 (owner: XWayland Window) +Registered signal for owner 6b9b8890: 6b9b86f8 -> 6b9b89c8 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b9b9550: 6b9b9438 -> 6b9b95b8 (owner: XWayland Window) +Registered signal for owner 6b9b9550: 6b9b9448 -> 6b9b9620 (owner: XWayland Window) +Registered signal for owner 6b9b9550: 6b9b93b8 -> 6b9b9688 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b9ba210: 6b9ba0f8 -> 6b9ba278 (owner: XWayland Window) +Registered signal for owner 6b9ba210: 6b9ba108 -> 6b9ba2e0 (owner: XWayland Window) +Registered signal for owner 6b9ba210: 6b9ba078 -> 6b9ba348 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b9baed0: 6b9badb8 -> 6b9baf38 (owner: XWayland Window) +Registered signal for owner 6b9baed0: 6b9badc8 -> 6b9bafa0 (owner: XWayland Window) +Registered signal for owner 6b9baed0: 6b9bad38 -> 6b9bb008 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b9bbb90: 6b9bba78 -> 6b9bbbf8 (owner: XWayland Window) +Registered signal for owner 6b9bbb90: 6b9bba88 -> 6b9bbc60 (owner: XWayland Window) +Registered signal for owner 6b9bbb90: 6b9bb9f8 -> 6b9bbcc8 (owner: XWayland Window) +Window 6b978970 set title to Sea of Thieves - Steam +Window 6b9b8890 destroyed, queueing. +Callback 3fc24b10 -> 6b9b8890, XWayland Window removed. +Callback 3fc24b10 -> 6b9b8890, XWayland Window removed. +Callback 3fc24b10 -> 6b9b8890, XWayland Window removed. +Window 6b9b7bd0 destroyed, queueing. +Callback 3fc24b10 -> 6b9b7bd0, XWayland Window removed. +Callback 3fc24b10 -> 6b9b7bd0, XWayland Window removed. +Callback 3fc24b10 -> 6b9b7bd0, XWayland Window removed. +Window 6b9b6f10 destroyed, queueing. +Callback 3fc24b10 -> 6b9b6f10, XWayland Window removed. +Callback 3fc24b10 -> 6b9b6f10, XWayland Window removed. +Callback 3fc24b10 -> 6b9b6f10, XWayland Window removed. +Window 6b9b32a0 destroyed, queueing. +Callback 3fc24b10 -> 6b9b32a0, XWayland Window removed. +Callback 3fc24b10 -> 6b9b32a0, XWayland Window removed. +Callback 3fc24b10 -> 6b9b32a0, XWayland Window removed. +Window 6b9ba210 destroyed, queueing. +Callback 3fc24b10 -> 6b9ba210, XWayland Window removed. +Callback 3fc24b10 -> 6b9ba210, XWayland Window removed. +Callback 3fc24b10 -> 6b9ba210, XWayland Window removed. +Window 6b9bbb90 destroyed, queueing. +Callback 3fc24b10 -> 6b9bbb90, XWayland Window removed. +Callback 3fc24b10 -> 6b9bbb90, XWayland Window removed. +Callback 3fc24b10 -> 6b9bbb90, XWayland Window removed. +Window 6b9baed0 destroyed, queueing. +Callback 3fc24b10 -> 6b9baed0, XWayland Window removed. +Callback 3fc24b10 -> 6b9baed0, XWayland Window removed. +Callback 3fc24b10 -> 6b9baed0, XWayland Window removed. +Window 6b9b9550 destroyed, queueing. +Callback 3fc24b10 -> 6b9b9550, XWayland Window removed. +Callback 3fc24b10 -> 6b9b9550, XWayland Window removed. +Callback 3fc24b10 -> 6b9b9550, XWayland Window removed. +Window 6b7d24a0 destroyed, queueing. +Callback 3fc24b10 -> 6b7d24a0, XWayland Window removed. +Callback 3fc24b10 -> 6b7d24a0, XWayland Window removed. +Callback 3fc24b10 -> 6b7d24a0, XWayland Window removed. +Window 6b9b1a40 destroyed, queueing. +Callback 3fc24b10 -> 6b9b1a40, XWayland Window removed. +Callback 3fc24b10 -> 6b9b1a40, XWayland Window removed. +Callback 3fc24b10 -> 6b9b1a40, XWayland Window removed. +Window 6b9b2a80 destroyed, queueing. +Callback 3fc24b10 -> 6b9b2a80, XWayland Window removed. +Callback 3fc24b10 -> 6b9b2a80, XWayland Window removed. +Callback 3fc24b10 -> 6b9b2a80, GameAction [AppID 1172620, ActionID 2] : LaunchApp changed task to SynchronizingControllerConfig with "" +GameAction [AppID 1172620, ActionID 2] : LaunchApp changed task to SiteLicenseSeatCheckout with "" +GameAction [AppID 1172620, ActionID 2] : LaunchApp changed task to CreatingProcess with "" +GameAction [AppID 1172620, ActionID 2] : LaunchApp waiting for user response to CreatingProcess "" +GameAction [AppID 1172620, ActionID 2] : LaunchApp continues with user response "CreatingProcess" +/bin/sh\0-c\0/home/sharkfin/.local/share/Steam/ubuntu12_32/reaper SteamLaunch AppId=1172620 -- '/home/sharkfin/.local/share/Steam/steamapps/common/SteamLinuxRuntime_soldier'/_v2-entry-point --verb=waitforexitandrun -- '/mnt/games/steamLibrary/steamapps/common/Proton 7.0'/proton waitforexitandrun '/mnt/games/steamLibrary/steamapps/common/Sea of Thieves/Athena/Binaries/Win64/SoTGame.exe'\0 +Game process added : AppID 1172620 "/home/sharkfin/.local/share/Steam/ubuntu12_32/reaper SteamLaunch AppId=1172620 -- '/home/sharkfin/.local/share/Steam/steamapps/common/SteamLinuxRuntime_soldier'/_v2-entry-point --verb=waitforexitandrun -- '/mnt/games/steamLibrary/steamapps/common/Proton 7.0'/proton waitforexitandrun '/mnt/games/steamLibrary/steamapps/common/Sea of Thieves/Athena/Binaries/Win64/SoTGame.exe'", ProcID 103953, IP 0.0.0.0:0 +ERROR: ld.so: object '/home/sharkfin/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored. +ERROR: ld.so: object '/home/sharkfin/.local/share/Steam/ubuntu12_64/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS64): ignored. +ERROR: ld.so: object '/home/sharkfin/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored. +GameAction [AppID 1172620, ActionID 2] : LaunchApp changed task to WaitingGameWindow with "" +ERROR: ld.so: object '/home/sharkfin/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored. +ERROR: ld.so: object '/home/sharkfin/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored. +GameAction [AppID 1172620, ActionID 2] : LaunchApp changed task to Completed with "" +00:01:30.869 [ERROR] [xwayland/xwm.c:1546] xcb error: op ChangeProperty (no minor), code Window (no extension), sequence 5482, value 6291753 +00:01:30.869 [ERROR] [xwayland/xwm.c:1546] xcb error: op ChangeProperty (no minor), code Window (no extension), sequence 5483, value 6291753 +00:01:30.869 [ERROR] [xwayland/xwm.c:1546] xcb error: op ChangeProperty (no minor), code Window (no extension), sequence 5485, value 6291753 +pid 103957 != 103954, skipping destruction (fork without exec?) +fsync: up and running. +wine: RLIMIT_NICE is <= 20, unable to use setpriority safely +ThreadGetProcessExitCode: no such process 104127 +ThreadGetProcessExitCode: no such process 104125 +ThreadGetProcessExitCode: no such process 103955 +Game process updated : AppID 1172620 "/home/sharkfin/.local/share/Steam/ubuntu12_32/reaper SteamLaunch AppId=1172620 -- '/home/sharkfin/.local/share/Steam/steamapps/common/SteamLinuxRuntime_soldier'/_v2-entry-point --verb=waitforexitandrun -- '/mnt/games/steamLibrary/steamapps/common/Proton 7.0'/proton waitforexitandrun '/mnt/games/steamLibrary/steamapps/common/Sea of Thieves/Athena/Binaries/Win64/SoTGame.exe'", ProcID 104126, IP 0.0.0.0:0 +Setting breakpad minidump AppID = 1172620 +Steam_SetMinidumpSteamID: Caching Steam ID: 76561198272891864 [API loaded no] +XWayland Window removed. +Window 6b9b2260 destroyed, queueing. +Callback 3fc24b10 -> 6b9b2260, XWayland Window removed. +Callback 3fc24b10 -> 6b9b2260, XWayland Window removed. +Callback 3fc24b10 -> 6b9b2260, XWayland Window removed. +Window 6b978970 set title to Sea of Thieves - Steam +Window 6b978970 unmapped +Unregistered late callbacks XWL: 6b978b78 6b978e60 6b978ec8 6b978b10 +Callback 3fc24a90 -> 6b978970, XWayland Window Late removed. +Callback 3fc24a90 -> 6b978970, XWayland Window Late removed. +Callback 3fc24a90 -> 6b978970, XWayland Window Late removed. +Callback 3fc24a90 -> 6b978970, XWayland Window Late removed. +Framebuffer created, status 36053 +Destroying the SubSurface tree of unmapped window 6b978970 +Callback 3fc24a20 -> 6b7cd880, SurfaceTreeNode removed. +Callback 3fc24a20 -> 6b7cd880, SurfaceTreeNode removed. +Callback 3fc24a20 -> 6b7cd880, SurfaceTreeNode removed. +SurfaceTree Node removed +Window 6b9b1220 destroyed, queueing. +Callback 3fc24b10 -> 6b9b1220, XWayland Window removed. +Callback 3fc24b10 -> 6b9b1220, XWayland Window removed. +Callback 3fc24b10 -> 6b9b1220, XWayland Window removed. +Window 6b978970 destroyed, queueing. +Callback 3fc24b10 -> 6b978970, XWayland Window removed. +Callback 3fc24b10 -> 6b978970, XWayland Window removed. +Callback 3fc24b10 -> 6b978970, XWayland Window removed. +Cleanup: destroyed a window +New XWayland Surface created. +Registered signal for owner 6b9bd9a0: 6b9b8778 -> 6b9bda08 (owner: XWayland Window) +Registered signal for owner 6b9bd9a0: 6b9b8788 -> 6b9bda70 (owner: XWayland Window) +Registered signal for owner 6b9bd9a0: 6b9b86f8 -> 6b9bdad8 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b7d3060: 6b9b7ab8 -> 6b7d30c8 (owner: XWayland Window) +Registered signal for owner 6b7d3060: 6b9b7ac8 -> 6b7d3130 (owner: XWayland Window) +Registered signal for owner 6b7d3060: 6b9b7a38 -> 6b7d3198 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b978510: 6b9ba0f8 -> 6b978578 (owner: XWayland Window) +Registered signal for owner 6b978510: 6b9ba108 -> 6b9785e0 (owner: XWayland Window) +Registered signal for owner 6b978510: 6b9ba078 -> 6b978648 (owner: XWayland Window) +Window 6b7d3060 destroyed, queueing. +Callback 3fc24b10 -> 6b7d3060, XWayland Window removed. +Callback 3fc24b10 -> 6b7d3060, XWayland Window removed. +Callback 3fc24b10 -> 6b7d3060, XWayland Window removed. +New XWayland Surface created. +Registered signal for owner 6b9be8e0: 6b9badb8 -> 6b9be948 (owner: XWayland Window) +Registered signal for owner 6b9be8e0: 6b9badc8 -> 6b9be9b0 (owner: XWayland Window) +Registered signal for owner 6b9be8e0: 6b9bad38 -> 6b9bea18 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b9bf100: 6b79ea98 -> 6b9bf168 (owner: XWayland Window) +Registered signal for owner 6b9bf100: 6b79eaa8 -> 6b9bf1d0 (owner: XWayland Window) +Registered signal for owner 6b9bf100: 6b79ea18 -> 6b9bf238 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b9bf920: 6b9acd68 -> 6b9bf988 (owner: XWayland Window) +Registered signal for owner 6b9bf920: 6b9acd78 -> 6b9bf9f0 (owner: XWayland Window) +Registered signal for owner 6b9bf920: 6b9acce8 -> 6b9bfa58 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b9c0140: 6b7d39f8 -> 6b9c01a8 (owner: XWayland Window) +Registered signal for owner 6b9c0140: 6b7d3a08 -> 6b9c0210 (owner: XWayland Window) +Registered signal for owner 6b9c0140: 6b7d3978 -> 6b9c0278 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b9c0960: 6b527ab8 -> 6b9c09c8 (owner: XWayland Window) +Registered signal for owner 6b9c0960: 6b527ac8 -> 6b9c0a30 (owner: XWayland Window) +Registered signal for owner 6b9c0960: 6b527a38 -> 6b9c0a98 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b9c1180: 6b978ea8 -> 6b9c11e8 (owner: XWayland Window) +Registered signal for owner 6b9c1180: 6b978eb8 -> 6b9c1250 (owner: XWayland Window) +Registered signal for owner 6b9c1180: 6b978e28 -> 6b9c12b8 (owner: XWayland Window) +New XWaylThreadGetProcessExitCode: no such process 104130 +src/steamexe/main.cpp (254) : Assertion Failed: reaping pid: 103577 -- gameoverlayui + +src/steamexe/main.cpp (254) : Assertion Failed: reaping pid: 103473 -- gameoverlayui + +Game process updated : AppID 1172620 "/home/sharkfin/.local/share/Steam/ubuntu12_32/reaper SteamLaunch AppId=1172620 -- '/home/sharkfin/.local/share/Steam/steamapps/common/SteamLinuxRuntime_soldier'/_v2-entry-point --verb=waitforexitandrun -- '/mnt/games/steamLibrary/steamapps/common/Proton 7.0'/proton waitforexitandrun '/mnt/games/steamLibrary/steamapps/common/Sea of Thieves/Athena/Binaries/Win64/SoTGame.exe'", ProcID 104198, IP 0.0.0.0:0 +Setting breakpad minidump AppID = 1172620 +SteamInternal_SetMinidumpSteamID: Caching Steam ID: 76561198272891864 [API loaded no] +and Surface created. +Registered signal for owner 6b9c19a0: 6b979138 -> 6b9c1a08 (owner: XWayland Window) +Registered signal for owner 6b9c19a0: 6b979148 -> 6b9c1a70 (owner: XWayland Window) +Registered signal for owner 6b9c19a0: 6b9790b8 -> 6b9c1ad8 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b9c21c0: 6b9bc948 -> 6b9c2228 (owner: XWayland Window) +Registered signal for owner 6b9c21c0: 6b9bc958 -> 6b9c2290 (owner: XWayland Window) +Registered signal for owner 6b9c21c0: 6b9bc8c8 -> 6b9c22f8 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b9c29e0: 6b7c6d68 -> 6b9c2a48 (owner: XWayland Window) +Registered signal for owner 6b9c29e0: 6b7c6d78 -> 6b9c2ab0 (owner: XWayland Window) +Registered signal for owner 6b9c29e0: 6b7c6ce8 -> 6b9c2b18 (owner: XWayland Window) +Window 6b9c0960 destroyed, queueing. +Callback 3fc24b10 -> 6b9c0960, XWayland Window removed. +Callback 3fc24b10 -> 6b9c0960, XWayland Window removed. +Callback 3fc24b10 -> 6b9c0960, XWayland Window removed. +Window 6b978510 destroyed, queueing. +Callback 3fc24b10 -> 6b978510, XWayland Window removed. +Callback 3fc24b10 -> 6b978510, XWayland Window removed. +Callback 3fc24b10 -> 6b978510, XWayland Window removed. +New XWayland Surface created. +Registered signal for owner 6b9c3410: 6b9ba0f8 -> 6b9c3478 (owner: XWayland Window) +Registered signal for owner 6b9c3410: 6b9ba108 -> 6b9c34e0 (owner: XWayland Window) +Registered signal for owner 6b9c3410: 6b9ba078 -> 6b9c3548 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b9c3ec0: 6b9c3da8 -> 6b9c3f28 (owner: XWayland Window) +Registered signal for owner 6b9c3ec0: 6b9c3db8 -> 6b9c3f90 (owner: XWayland Window) +Registered signal for owner 6b9c3ec0: 6b9c3d28 -> 6b9c3ff8 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b9c4b80: 6b9c4a68 -> 6b9c4be8 (owner: XWayland Window) +Registered signal for owner 6b9c4b80: 6b9c4a78 -> 6b9c4c50 (owner: XWayland Window) +Registered signal for owner 6b9c4b80: 6b9c49e8 -> 6b9c4cb8 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b9c5840: 6b9c5728 -> 6b9c58a8 (owner: XWayland Window) +Registered signal for owner 6b9c5840: 6b9c5738 -> 6b9c5910 (owner: XWayland Window) +Registered signal for owner 6b9c5840: 6b9c56a8 -> 6b9c5978 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b9c6500: 6b9c63e8 -> 6b9c6568 (owner: XWayland Window) +Registered signal for owner 6b9c6500: 6b9c63f8 -> 6b9c65d0 (owner: XWayland Window) +Registered signal for owner 6b9c6500: 6b9c6368 -> 6b9c6638 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b9c71c0: 6b9c70a8 -> 6b9c7228 (owner: XWayland Window) +Registered signal for owner 6b9c71c0: 6b9c70b8 -> 6b9c7290 (owner: XWayland Window) +Registered signal for owner 6b9c71c0: 6b9c7028 -> 6b9c72f8 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b9c7ea0: 6b9c7d88 -> 6b9c7f08 (owner: XWayland Window) +Registered signal for owner 6b9c7ea0: 6b9c7d98 -> 6b9c7f70 (owner: XWayland Window) +Registered signal for owner 6b9c7ea0: 6b9c7d08 -> 6b9c7fd8 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b9c8b60: 6b9c8a48 -> 6b9c8bc8 (owner: XWayland Window) +Registered signal for owner 6b9c8b60: 6b9c8a58 -> 6b9c8c30 (owner: XWayland Window) +Registered signal for owner 6b9c8b60: 6b9c89c8 -> 6b9c8c98 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b9c9820: 6b9c9708 -> 6b9c9888 (owner: XWayland Window) +Registered signal for owner 6b9c9820: 6b9c9718 -> 6b9c98f0 (owner: XWayland Window) +Registered signal for owner 6b9c9820: 6b9c9688 -> 6b9c9958 (owner: XWayland Window) +New XWayland Surface created. +Registered signal for owner 6b9ca4e0: 6b9ca3c8 -> 6b9ca548 (owner: XWayland Window) +Registered signal for owner 6b9ca4e0: 6b9ca3d8 -> 6b9ca5b0 (owner: XWayland Window) +Registered signal for owner 6b9ca4e0: 6b9ca348 -> 6b9ca618 (owner: XWayland Window) +Set keyboard focus to surface00:01:39.313 [ERROR] [xwayland/xwm.c:1546] xcb error: op ConfigureWindow (no minor), code Value (no extension), sequence 5966, value 0 +Installing breakpad exception handler for appid(gameoverlayui)/version(20220618001721) +Installing breakpad exception handler for appid(gameoverlayui)/version(1.0) +Installing breakpad exception handler for appid(gameoverlayui)/version(1.0) +Installing breakpad exception handler for appid(gameoverlayui)/version(1.0) +src/steamexe/main.cpp (254) : Assertion Failed: reaping pid: 103473 -- gameoverlayui + +src/steamexe/main.cpp (254) : Assertion Failed: reaping pid: 103658 -- gameoverlayui + + 6b9cb250, with window name: Athena (64-bit, PCD3D_SM5) +Registered signal for owner 6b7cd880: 6b9cb520 -> 6b7cd888 (owner: SurfaceTreeNode) +Registered signal for owner 6b7cd880: 6b9cb510 -> 6b7cd8f0 (owner: SurfaceTreeNode) +Registered signal for owner 6b7cd880: 6b9cb530 -> 6b7cd958 (owner: SurfaceTreeNode) +Creating a surfaceTree Root! (pWindow: 6b9c7ea0) +Window got assigned a surfaceTreeNode 6b7cd880 +Registered signal for owner 6b9c7ea0: 6b9c7d68 -> 6b9c80a8 (owner: XWayland Window Late) +Registered signal for owner 6b9c7ea0: 6b9c7d78 -> 6b9c8390 (owner: XWayland Window Late) +Registered signal for owner 6b9c7ea0: 6b9c7d18 -> 6b9c83f8 (owner: XWayland Window Late) +Registered signal for owner 6b9c7ea0: 6b9c7da8 -> 6b9c8040 (owner: XWayland Window Late) +Map request dispatched, monitor DP-3, xywh: 636.000000 337.000000 1288.000000 1307.000000 +Window 6b9c7ea0 set title to Sea of Thieves +Set keyboard focus to surface 6b9abe40, with window name: Steam +Window 6b9c7ea0 fullscreen to 1 +Set keyboard focus to surface 6b9cb250, with window name: Sea of Thieves +New mouse constraint at 6b947c20 +Registered signal for owner 6b94fc60: 6b947d28 -> 6b94fcd8 (owner: Constraint) +Registered signal for owner 6b94fc60: 6b947d18 -> 6b94fc70 (owner: Constraint) +Constraint rechecked: 0, 0 to 2560, 1440 for 6b9cb250 (window name: Sea of Thieves) +Registered signal for owner 6b743fd0: 6b9cb510 -> 6b744000 (owner: Mouse constraint commit) +Constrained mouse to 6b947c20 +Callback 3fc24650 -> 6b743fd0, Mouse constraint commit removed. +Unconstrained mouse from 6b947c20 +Callback 3fc24650 -> 6b94fc60, Constraint removed. +Callback 3fc24650 -> 6b94fc60, Constraint removed. +New mouse constraint at 6b947c20 +Registered signal for owner 6b9599f0: 6b947d28 -> 6b959a68 (owner: Constraint) +Registered signal for owner 6b9599f0: 6b947d18 -> 6b959a00 (owner: Constraint) +Constraint rechecked: 0, 0 to 2560, 1440 for 6b9cb250 (window name: Sea of Thieves) +Registered signal for owner 6b743fd0: 6b9cb510 -> 6b744000 (owner: Mouse constraint commit) +Constrained mouse to 6b947c20 +Callback 3fc24650 -> 6b743fd0, Mouse constraint commit removed. +Unconstrained mouse from 6b947c20 +Callback 3fc24650 -> 6b9599f0, Constraint removed. +Callback 3fc24650 -> 6b9599f0, Constraint removed. +New mouse constraint at 6b7d3b00 +Registered signal for owner 6b94fc60: 6b7d3c08 -> 6b94fcd8 (owner: Constraint) +Registered signal for owner 6b94fc60: 6b7d3bf8 -> 6b94fc70 (owner: Constraint) +Constraint rechecked: 0, 0 to 2560, 1440 for 6b9cb250 (window name: Sea of Thieves) +Registered signal for owner 6b743fd0: 6b9cb510 -> 6b744000 (owner: Mouse constraint commit) +Constrained mouse to 6b7d3b00 +Callback 3fc24650 -> 6b743fd0, Mouse constraint commit removed. +Unconstrained mouse from 6b7d3b00 +Callback 3fc24650 -> 6b94fc60, Constraint removed. +Callback 3fc24650 -> 6b94fc60, Constraint removed. +Rejecting drag on a fullscreen window. +New mouse constraint at 6b9b0080 +Registered signal for owner 6b9599f0: 6b9b0188 -> 6b959a68 (owner: Constraint) +Registered signal for owner 6b9599f0: 6b9b0178 -> 6b959a00 (owner: Constraint) +Constraint rechecked: 0, 0 to 2560, 1440 for 6b9cb250 (window name: Sea of Thieves) +Registered signal for owner 6b743fd0: 6b9cb510 -> 6b744000 (owner: Mouse constraint commit) +Constrained mouse to 6b9b0080 +Callback 3fc24650 -> 6b743fd0, Mouse constraint commit removed. +Unconstrained mouse from 6b9b0080 +Callback 3fc24650 -> 6b9599f0, Constraint removed. +Callback 3fc24650 -> 6b9599f0, Constraint removed. +New mouse constraint at 6b7d3b00 +Registered signal for owner 6b94fc60: 6b7d3c08 -> 6b94fcd8 (owner: Constraint) +Registered signal for owner 6b94fc60: 6b7d3bf8 -> 6b94fc70 (owner: Constraint) +Constraint rechecked: 0, 0 to 2560, 1440 for 6b9cb250 (window name: Sea of Thieves) +Registered signal for owner 6b743fd0: 6b9cb510 -> 6b744000 (owner: Mouse constraint commit) +Constrained mouse to 6b7d3b00 +Callback 3fc24650 -> 6b743fd0, Mouse constraint commit removed. +Unconstrained mouse from 6b7d3b00 +Callback 3fc24650 -> 6b94fc60, Constraint removed. +Callback 3fc24650 -> 6b94fc60, Constraint removed. +New mouse constraint at 6b7c4b40 +Registered signal for owner 6b9599f0: 6b7c4c48 -> 6b959a68 (owner: Constraint) +Registered signal for owner 6b9599f0: 6b7c4c38 -> 6b959a00 (owner: Constraint) +Constraint rechecked: 0, 0 to 2560, 1440 for 6b9cb250 (window name: Sea of Thieves) +Registered signal for owner 6b743fd0: 6b9cb510 -> 6b744000 (owner: Mouse constraint commit) +Constrained mouse to 6b7c4b40 +Callback 3fc24650 -> 6b743fd0, Mouse constraint commit removed. +Unconstrained mouse from 6b7c4b40 +Callback 3fc24650 -> 6b9599f0, Constraint removed. +Callback 3fc24650 -> 6b9599f0, Constraint removed. +New mouse constraint at 6b7c4b40 +Registered signal for owner 6b94fc60: 6b7c4c48 -> 6b94fcd8 (owner: Constraint) +Registered signal for owner 6b94fc60: 6b7c4c38 -> 6b94fc70 (owner: Constraint) +Constraint rechecked: 0, 0 to 2560, 1440 for 6b9cb250 (window name: Sea of Thieves) +Registered signal for owner 6b743fd0: 6b9cb510 -> 6b744000 (owner: Mouse constraint commit) +Constrained mouse to 6b7c4b40 +Callback 3fc24650 -> 6b743fd0, Mouse constraint commit removed. +Unconstrained mouse from 6b7c4b40 +Callback 3fc24650 -> 6b94fc60, Constraint removed. +Callback 3fc24650 -> 6b94fc60, Constraint removed. +New mouse constraint at 6b7c4b40 +Registered signal for owner 6b9599f0: 6b7c4c48 -> 6b959a68 (owner: Constraint) +Registered signal for owner 6b9599f0: 6b7c4c38 -> 6b959a00 (owner: Constraint) +Constraint rechecked: 0, 0 to 2560, 1440 for 6b9cb250 (window name: Sea of Thieves) +Registered signal for owner 6b743fd0: 6b9cb510 -> 6b744000 (owner: Mouse constraint commit) +Constrained mouse to 6b7c4b40 +Callback 3fc24650 -> 6b743fd0, Mouse constraint commit removed. +Unconstrained mouse from 6b7c4b40 +Callback 3fc24650 -> 6b9599f0, Constraint removed. +Callback 3fc24650 -> 6b9599f0, Constraint removed. +New mouse constraint at 6b7c4b40 +Registered signal for owner 6b94fc60: 6b7c4c48 -> 6b94fcd8 (owner: Constraint) +Registered signal for owner 6b94fc60: 6b7c4c38 -> 6b94fc70 (owner: Constraint) +Constraint rechecked: 0, 0 to 2560, 1440 for 6b9cb250 (window name: Sea of Thieves) +Registered signal for owner 6b743fd0: 6b9cb510 -> 6b744000 (owner: Mouse constraint commit) +Constrained mouse to 6b7c4b40 +Callback 3fc24650 -> 6b743fd0, Mouse constraint commit removed. +Unconstrained mouse from 6b7c4b40 +Callback 3fc24650 -> 6b94fc60, Constraint removed. +Callback 3fc24650 -> 6b94fc60, Constraint removed. +New mouse constraint at 6b9aa5f0 +Registered signal for owner 6b9599f0: 6b9aa6f8 -> 6b959a68 (owner: Constraint) +Registered signal for owner 6b9599f0: 6b9aa6e8 -> 6b959a00 (owner: Constraint) +Constraint rechecked: 0, 0 to 2560, 1440 for 6b9cb250 (window name: Sea of Thieves) +Registered signal for owner 6b743fd0: 6b9cb510 -> 6b744000 (owner: Mouse constraint commit) +Constrained mouse to 6b9aa5f0 +Callback 3fc24650 -> 6b743fd0, Mouse constraint commit removed. +Unconstrained mouse from 6b9aa5f0 +Callback 3fc24650 -> 6b9599f0, Constraint removed. +Callback 3fc24650 -> 6b9599f0, Constraint removed. +Window 6b9c7ea0 unmapped +Unregistered late callbacks XWL: 6b9c80a8 6b9c8390 6b9c83f8 6b9c8040 +Callback 3fc24a90 -> 6b9c7ea0, XWayland Window Late removed. +Callback 3fc24a90 -> 6b9c7ea0, XWayland Window Late removed. +Callback 3fc24a90 -> 6b9c7ea0, XWayland Window Late removed. +Callback 3fc24a90 -> 6b9c7ea0, XWayland Window Late removed. +Framebuffer created, status 36053 +Set keyboard focus to surface 6b9abe40, with window name: Steam +Destroying the SubSurface tree of unmapped window 6b9c7ea0 +Callback 3fc24a20 -> 6b7cd880, SurfaceTreeNode removed. +Callback 3fc24a20 -> 6b7cd880, SurfaceTreeNode removed. +Callback 3fc24a20 -> 6b7cd880, SurfaceTreeNode removed. +SurfaceTree Node removed +Window 6b9c9820 destroyed, queueing. +Callback 3fc24b10 -> 6b9c9820, XWayland Window removed. +Callback 3fc24b10 -> 6b9c9820, XWayland Window removed. +Callback 3fc24b10 -> 6b9c9820, XWayland Window removed. +Window 6b9c7ea0 destroyed, queueing. +Callback 3fc24b10 -> 6b9c7ea0, XWayland Window removed. +Callback 3fc24b10 -> 6b9c7ea0, XWayland Window removed. +Callback 3fc24b10 -> 6b9c7ea0, XWayland Window removed. +Set keyboard focus to 00:03:15.375 [ERROR] [xwayland/xwm.c:1546] xcb error: op ChangeProperty (no minor), code Window (no extension), sequence 6593, value 48234549 +ThreadGetProcessExitCode: no such process 104181 +ThreadGetProcessExitCode: no such process 104163 +ThreadGetProcessExitCode: no such process 104157 +ThreadGetProcessExitCode: no such process 104135 +ThreadGetProcessExitCode: no such process 104132 +ThreadGetProcessExitCode: no such process 104126 +ThreadGetProcessExitCode: no such process 104124 +pid 104128 != 104127, skipping destruction (fork without exec?) +Game process removed: AppID 1172620 "/home/sharkfin/.local/share/Steam/ubuntu12_32/reaper SteamLaunch AppId=1172620 -- '/home/sharkfin/.local/share/Steam/steamapps/common/SteamLinuxRuntime_soldier'/_v2-entry-point --verb=waitforexitandrun -- '/mnt/games/steamLibrary/steamapps/common/Proton 7.0'/proton waitforexitandrun '/mnt/games/steamLibrary/steamapps/common/Sea of Thieves/Athena/Binaries/Win64/SoTGame.exe'", ProcID 104198 +ThreadGetProcessExitCode: no such process 104198 +ThreadGetProcessExitCode: no such process 104144 +ThreadGetProcessExitCode: no such process 103954 +Game 1172620 created interface STEAMAPPS_INTERFACE_VERSION008 / +Game 1172620 created interface STEAMHTMLSURFACE_INTERFACE_VERSION_005 / +Game 1172620 created interface STEAMINVENTORY_INTERFACE_V003 / +Game 1172620 created interface STEAMREMOTESTORAGE_INTERFACE_VERSION016 / +Game 1172620 created interface STEAMUSERSTATS_INTERFACE_VERSION012 / +Game 1172620 created interface SteamController008 / +Game 1172620 created interface SteamFriends017 / +Game 1172620 created interface SteamInput005 / +Game 1172620 created interface SteamMatchMaking009 / +Game 1172620 created interface SteamMatchMakingServers002 / +Game 1172620 created interface SteamNetworking006 / +Game 1172620 created interface SteamUser021 / +Game 1172620 created interface SteamUser021 / User +Game 1172620 created interface SteamUtils010 / +Game 1172620 method call count for IClientInventory::GetItemsWithPrices : 2 +Game 1172620 method call count for IClientInventory::GetNumItemsWithPrices : 2 +Game 1172620 method call count for IClientInventory::RequestPrices : 2 +Game 1172620 method call count for IClientInventory::GetItemDefinitionProperty : 392 +Game 1172620 method call count for IClientInventory::LoadItemDefinitions : 1 +Game 1172620 method call count for IClientInventory::DestroyResult : 1 +Game 1172620 method call count for IClientInventory::GetResultItems : 1 +Game 1172620 method call count for IClientInventory::CheckResultSteamID : 1 +Game 1172620 method call count for IClientUserStats::SetAchievement : 61 +Game 1172620 method call count for IClientUserStats::GetAchievement : 191 +Game 1172620 method call count for IClientUserStats::StoreStats : 23 +Game 1172620 method call count for IClientUserStats::RequestCurrentStats : 1 +Game 1172620 method call count for IClientUserStats::GetAchievementName : 191 +Game 1172620 method call count for IClientUserStats::GetNumAchievements : 1 +Game 1172620 method call count for IClientAppManager::GetCurrentLanguage : 3 +Game 1172620 method call count for IClientAppManager::GetLaunchCommandLine : 1 +Game 1172620 method call count for IClientAppManager::GetLaunchQueryParam : 1 +Game 1172620 method call count for IClientUtils::RecordSteamInterfaceCreation : 16 +Game 1172620 method call count for IClientUtils::GetAPICallResult : 4 +Game 1172620 method call count for IClientUtils::GetAppID : 21 +Game 1172620 method call count for IClientFriends::SetRichPresence : 3 +Game 1172620 method call count for IClientUser::BIsSubscribedApp : 1 +Game 1172620 method call count for IClientUser::GetEncryptedAppTicket : 2 +Game 1172620 method call count for IClientUser::RequestEncryptedAppTicket : 2 +Game 1172620 method call count for IClientUser::CancelAuthTicket : 1 +Game 1172620 method call count for IClientUser::GetAuthSessionTicket : 1 +Game 1172620 method call count for IClientUser::GetSteamID : 3 +Game 1172620 method call count for IClientUser::BLoggedOn : 2 +Uploaded AppInterfaceStats to Steam + +(process:104252): GLib-GObject-CRITICAL **: 16:21:08.560: g_object_unref: assertion 'G_IS_OBJECT (object)' failed +src/steamexe/main.cpp (254) : Assertion Failed: reaping pid: 103658 -- gameoverlayui + +src/steamexe/main.cpp (254) : Assertion Failed: reaping pid: 104252 -- gameoverlayui + diff --git a/src/managers/input/InputManager.cpp b/src/managers/input/InputManager.cpp index ab8e3563..ff2cd503 100644 --- a/src/managers/input/InputManager.cpp +++ b/src/managers/input/InputManager.cpp @@ -4,7 +4,7 @@ void CInputManager::onMouseMoved(wlr_pointer_motion_event* e) { float sensitivity = g_pConfigManager->getFloat("general:sensitivity"); - const auto DELTA = g_pConfigManager->getInt("input:force_no_accel") != 1 ? Vector2D(e->unaccel_dx, e->unaccel_dy) : Vector2D(e->delta_x, e->delta_y); + const auto DELTA = g_pConfigManager->getInt("input:force_no_accel") == 1 ? Vector2D(e->unaccel_dx, e->unaccel_dy) : Vector2D(e->delta_x, e->delta_y); if (g_pConfigManager->getInt("general:apply_sens_to_raw") == 1) wlr_relative_pointer_manager_v1_send_relative_motion(g_pCompositor->m_sWLRRelPointerMgr, g_pCompositor->m_sSeat.seat, (uint64_t)e->time_msec * 1000, DELTA.x * sensitivity, DELTA.y * sensitivity, e->unaccel_dx * sensitivity, e->unaccel_dy * sensitivity); @@ -29,15 +29,9 @@ void CInputManager::mouseMoveUnified(uint32_t time, bool refocus) { if (!g_pCompositor->m_sSeat.mouse) { Debug::log(ERR, "BUG THIS: Mouse move on mouse nullptr!"); - return; + return; } - // Update stuff - //updateDragIcon(); - - //g_pLayoutManager->getCurrentLayout()->onMouseMove(getMouseCoordsInternal()); - - Vector2D mouseCoords = getMouseCoordsInternal(); const auto PMONITOR = g_pCompositor->getMonitorFromCursor(); @@ -65,16 +59,14 @@ void CInputManager::mouseMoveUnified(uint32_t time, bool refocus) { if (g_pCompositor->m_sSeat.mouse->constraintActive) { Vector2D deltaToFit; - - deltaToFit.x = CONSTRAINTPOS.x - mouseCoords.x; - - + + // Instead of constraining the cursor to the entire window, like in the previous version, this keeps the cursor to the center of the window. + // This allows for maximum mouse movement to be captured by the application, while the mouse can still be freed and move around when it is supposed to be + deltaToFit.x = CONSTRAINTPOS.x - mouseCoords.x; deltaToFit.y = CONSTRAINTPOS.y - mouseCoords.y; - // Deadzone... necessary ig - if (deltaToFit.x * deltaToFit.x > 2 && deltaToFit.y * deltaToFit.y > 2) { - wlr_cursor_warp_closest(g_pCompositor->m_sWLRCursor, g_pCompositor->m_sSeat.mouse->mouse, CONSTRAINTPOS.x, CONSTRAINTPOS.y); - } + + wlr_cursor_move(g_pCompositor->m_sWLRCursor, g_pCompositor->m_sSeat.mouse->mouse, deltaToFit.x, deltaToFit.y); mouseCoords = mouseCoords + deltaToFit; } From 39d03fc196f8d36b06699b070467b9ff68f2c31f Mon Sep 17 00:00:00 2001 From: SebOuellette Date: Sun, 19 Jun 2022 16:24:30 -0400 Subject: [PATCH 03/49] Removed the log file which was causing conflicts --- log.txt | 6367 ------------------------------------------------------- 1 file changed, 6367 deletions(-) delete mode 100644 log.txt diff --git a/log.txt b/log.txt deleted file mode 100644 index c6c72aa9..00000000 --- a/log.txt +++ /dev/null @@ -1,6367 +0,0 @@ -00:00:00.000 [ERROR] [libseat] [libseat/backend/seatd.c:66] Could not connect to socket /run/seatd.sock: Permission denied -00:00:00.041 [ERROR] [EGL] command: eglQueryDevicesEXT, error: EGL_BAD_ALLOC (0x3003), message: "EGL_BAD_ALLOC error: In eglQueryDevicesEXT: Failed to allocate device list. -" -00:00:00.042 [ERROR] [EGL] command: eglQueryDevicesEXT, error: EGL_BAD_ALLOC (0x3003), message: "EGL_BAD_ALLOC error: In eglQueryDevicesEXT: Failed to allocate device list. -" -00:00:00.062 [ERROR] [EGL] command: eglQueryDevicesEXT, error: EGL_BAD_ALLOC (0x3003), message: "EGL_BAD_ALLOC error: In eglQueryDevicesEXT: Failed to allocate device list. -" -00:00:00.062 [ERROR] [EGL] command: eglQueryDevicesEXT, error: EGL_BAD_ALLOC (0x3003), message: "EGL_BAD_ALLOC error: In eglQueryDevicesEXT: Failed to allocate device list. -" -00:00:00.072 [ERROR] [xwayland/sockets.c:63] Failed to bind socket @/tmp/.X11-unix/X0: Address already in use -Welcome to Hyprland! -Instance Signature: _1655669871 -Hyprland init finished. -Creating the CHyprError! -Creating the KeybindManager! -Creating the AnimationManager! -Created a bezier curve, baked 200 points, mem usage: 3.20kB, time to bake: 11.88µs. Estimated average calc time: 0.00µs. -Creating the ConfigManager! -Creating the ThreadManager! -Creating the InputManager! -Creating the CHyprOpenGLImpl! -Creating the Hypr OpenGL Renderer! -Reloading the config! -Using: OpenGL ES 3.2 Mesa 22.1.1 -Vendor: AMD -Renderer: AMD Radeon RX 6900 XT (sienna_cichlid, LLVM 13.0.1, DRM 3.46, 5.18.5-arch1-1) -Supported extensions size: 147 -Created a bezier curve, baked 200 points, mem usage: 3.20kB, time to bake: 5.68µs. Estimated average calc time: 0.00µs. -Hypr socket started at /tmp/hypr/_1655669871/.socket.sock -Shaders initialized successfully. -Creating the HyprRenderer! -Creating the XWaylandManager! -Registered signal for owner 6b4bc470: 6b4bc4a8 -> 696a1520 (owner: XWayland Manager) -Registered signal for owner 6b4bc470: 6b4bc4b8 -> 696a1500 (owner: XWayland Manager) -CHyprXWaylandManager started on display :1 -Creating the LayoutManager! -Creating the EventManager! -Creating the HyprDebugOverlay! -Registered signal for owner 6aaee160: 6aaee188 -> 696a10b0 (owner: Backend) -Registered signal for owner 6b47d4e0: 6b47d530 -> 696a1070 (owner: XDG Shell) -Registered signal for owner 6b47d5b0: 6b47d5c8 -> 696a1050 (owner: WLRCursor) -Registered signal for owner 6b47d5b0: 6b47d5d8 -> 696a1030 (owner: WLRCursor) -Registered signal for owner 6b47d5b0: 6b47d5e8 -> 696a1010 (owner: WLRCursor) -Registered signal for owner 6b47d5b0: 6b47d5f8 -> 696a0ff0 (owner: WLRCursor) -Registered signal for owner 6b47d5b0: 6b47d608 -> 696a0fd0 (owner: WLRCursor) -Registered signal for owner 6aaee160: 6aaee178 -> 696a0fb0 (owner: Backend) -Registered signal for owner 6aaee910: 6b4813a8 -> 696a0f50 (owner: Seat) -Registered signal for owner 6aaee910: 6b4813b8 -> 696a0f30 (owner: Seat) -Hypr socket 2 started at /tmp/hypr/_1655669871/.socket2.sockRegistered signal for owner 6aaee910: 6b4813f8 -> 696a0ed0 (owner: Seat) - -Registered signal for owner 6aaee910: 6b481408 -> 696a0eb0 (owner: Seat) -Registered signal for owner 6b47f760: 6b47f780 -> 696a1090 (owner: LayerShell) -Registered signal for owner 6b47d340: 6b47d360 -> 696a10d0 (owner: OutputLayout) -Registered signal for owner 6b4816b0: 6b4816e8 -> 696a0f10 (owner: OutputMgr) -Registered signal for owner 6b4816b0: 6b4816f8 -> 696a0ef0 (owner: OutputMgr) -Registered signal for owner 6b481790: 6b4817c0 -> 696a0e90 (owner: InhibitMgr) -Registered signal for owner 6b481790: 6b4817d0 -> 696a0e70 (owner: InhibitMgr) -Registered signal for owner 6b4819d0: 6b4819e8 -> 696a0f70 (owner: PointerConstraints) -Registered signal for owner 6b481510: 6b481540 -> 696a0e50 (owner: XDGDecoMgr) -Registered signal for owner 6b481bd0: 6b481c00 -> 696a0f90 (owner: VirtPtrMgr) -Registered signal for owner 6b3f5680: 6b3f5690 -> 696a0e30 (owner: WLRRenderer) -Running on WAYLAND_DISPLAY: wayland-0 -Attached a keyboard with name Power Button -Registered signal for owner 6b59ddf0: 6b4ef618 -> 6b59ddf8 (owner: Keyboard) -Registered signal for owner 6b59ddf0: 6b4ef608 -> 6b59de60 (owner: Keyboard) -Registered signal for owner 6b59ddf0: 6b4ef4e8 -> 6b59dec8 (owner: Keyboard) -Set the keyboard layout to and variant to -New keyboard created, pointers Hypr: 6b59ddf0 and WLR: 6b4ef4c8 -Attached a keyboard with name Video Bus -Registered signal for owner 6b50f910: 6b529948 -> 6b50f918 (owner: Keyboard) -Registered signal for owner 6b50f910: 6b529938 -> 6b50f980 (owner: Keyboard) -Registered signal for owner 6b50f910: 6b529818 -> 6b50f9e8 (owner: Keyboard) -Set the keyboard layout to and variant to -New keyboard created, pointers Hypr: 6b50f910 and WLR: 6b5297f8 -Attached a keyboard with name Power Button -Registered signal for owner 6b5b7590: 6b5b7178 -> 6b5b7598 (owner: Keyboard) -Registered signal for owner 6b5b7590: 6b5b7168 -> 6b5b7600 (owner: Keyboard) -Registered signal for owner 6b5b7590: 6b5b7048 -> 6b5b7668 (owner: Keyboard) -Set the keyboard layout to and variant to -New keyboard created, pointers Hypr: 6b5b7590 and WLR: 6b5b7028 -Attached a keyboard with name Sleep Button -Registered signal for owner 6b4b2790: 6b615468 -> 6b4b2798 (owner: Keyboard) -Registered signal for owner 6b4b2790: 6b615458 -> 6b4b2800 (owner: Keyboard) -Registered signal for owner 6b4b2790: 6b615338 -> 6b4b2868 (owner: Keyboard) -Set the keyboard layout to and variant to -New keyboard created, pointers Hypr: 6b4b2790 and WLR: 6b615318 -Attached a keyboard with name Hoksi Technology DURGOD Taurus K310 -Registered signal for owner 6b62a150: 6b651288 -> 6b62a158 (owner: Keyboard) -Registered signal for owner 6b62a150: 6b651278 -> 6b62a1c0 (owner: Keyboard) -Registered signal for owner 6b62a150: 6b651158 -> 6b62a228 (owner: Keyboard) -Set the keyboard layout to and variant to -New keyboard created, pointers Hypr: 6b62a150 and WLR: 6b651138 -Attached a keyboard with name Hoksi Technology DURGOD Taurus K310 System Control -Registered signal for owner 6b664570: 6b68ac28 -> 6b664578 (owner: Keyboard) -Registered signal for owner 6b664570: 6b68ac18 -> 6b6645e0 (owner: Keyboard) -Registered signal for owner 6b664570: 6b68aaf8 -> 6b664648 (owner: Keyboard) -Set the keyboard layout to and variant to -New keyboard created, pointers Hypr: 6b664570 and WLR: 6b68aad8 -Attached a keyboard with name Hoksi Technology DURGOD Taurus K310 Consumer Control -Registered signal for owner 6b69d860: 6b6c3f18 -> 6b69d868 (owner: Keyboard) -Registered signal for owner 6b69d860: 6b6c3f08 -> 6b69d8d0 (owner: Keyboard) -Registered signal for owner 6b69d860: 6b6c3de8 -> 6b69d938 (owner: Keyboard) -Set the keyboard layout to and variant to -New keyboard created, pointers Hypr: 6b69d860 and WLR: 6b6c3dc8 -Attached a mouse with name Hoksi Technology DURGOD Taurus K310 Consumer Control -Registered signal for owner 6b2de1d0: 6b6c3f70 -> 6b2de268 (owner: Mouse) -New mouse created, pointer WLR: 6b6c3f50 -Attached a keyboard with name Hoksi Technology DURGOD Taurus K310 Keyboard -Registered signal for owner 6b6d5480: 6b6fd218 -> 6b6d5488 (owner: Keyboard) -Registered signal for owner 6b6d5480: 6b6fd208 -> 6b6d54f0 (owner: Keyboard) -Registered signal for owner 6b6d5480: 6b6fd0e8 -> 6b6d5558 (owner: Keyboard) -Set the keyboard layout to and variant to -New keyboard created, pointers Hypr: 6b6d5480 and WLR: 6b6fd0c8 -Attached a mouse with name Hoksi Technology DURGOD Taurus K310 Mouse -Registered signal for owner 6b709e90: 6b7360e0 -> 6b709f28 (owner: Mouse) -New mouse created, pointer WLR: 6b7360c0 -Attached a keyboard with name NexiGo N60 FHD Webcam: NexiGo N -Registered signal for owner 6b727510: 6b736858 -> 6b727518 (owner: Keyboard) -Registered signal for owner 6b727510: 6b736848 -> 6b727580 (owner: Keyboard) -Registered signal for owner 6b727510: 6b736728 -> 6b7275e8 (owner: Keyboard) -Set the keyboard layout to and variant to -New keyboard created, pointers Hypr: 6b727510 and WLR: 6b736708 -Attached a keyboard with name ckb1: Corsair Gaming HARPOON RGB Mouse vKB -Registered signal for owner 6b761330: 6b770cd8 -> 6b761338 (owner: Keyboard) -Registered signal for owner 6b761330: 6b770cc8 -> 6b7613a0 (owner: Keyboard) -Registered signal for owner 6b761330: 6b770ba8 -> 6b761408 (owner: Keyboard) -Set the keyboard layout to and variant to -New keyboard created, pointers Hypr: 6b761330 and WLR: 6b770b88 -Attached a mouse with name ckb1: Corsair Gaming HARPOON RGB Mouse vM -Registered signal for owner 6b743fd0: 6b7a9710 -> 6b744068 (owner: Mouse) -New mouse created, pointer WLR: 6b7a96f0 -Registered signal for owner 6b783620: 6b7a9e70 -> 6b783740 (owner: ) -Registered signal for owner 6b783620: 6b7a9f10 -> 6b7837a8 (owner: ) -Applying monitor rule for DP-3 -Monitor DP-3: requested 2560x1440@165.000000, found available mode: 2560x1440@164835mHz, applying. -Monitor DP-3 -> destroyed all render data -Monitor DP-3 layers arranged: reserved: 0.000000 0.000000 0.000000 0.000000 -Added new monitor with name DP-3 at 0,0 with size 2560x1440, pointer 6b7a9d30 -New monitor: WORKSPACEID 1, exists: 0 -Registered signal for owner 6b6fe870: 6b7aa1a0 -> 6b6fe990 (owner: ) -Registered signal for owner 6b6fe870: 6b7aa240 -> 6b6fe9f8 (*** BUG *** -In pixman_region32_init_rect: Invalid rectangle passed -Set a breakpoint on '_pixman_log_error' to debug - -*** BUG *** -In pixman_region32_init_rect: Invalid rectangle passed -Set a breakpoint on '_pixman_log_error' to debug - -The XKEYBOARD keymap compiler (xkbcomp) reports: -> Warning: Unsupported maximum keycode 708, clipping. -> X11 cannot support keycodes above 255. -Errors from xkbcomp are not fatal to the X server -owner: ) -Applying monitor rule for DP-4 -Monitor DP-4: requested 1920x1080@60.000000, found available mode: 1920x1080@60000mHz, applying. -Monitor DP-4 -> destroyed all render data -Monitor DP-4 layers arranged: reserved: 0.000000 0.000000 0.000000 0.000000 -Added new monitor with name DP-4 at 2560,350 with size 1920x1080, pointer 6b7aa060 -New monitor: WORKSPACEID 2, exists: 0 -Hyprland is ready, running the event loop! -Config executing WAYLAND_DISPLAY=wayland-0 DISPLAY=:1 waybar -Process created with pid 101969 -Config executing WAYLAND_DISPLAY=wayland-0 DISPLAY=:1 source $HOME/.wayinitrc -Process created with pid 101971 -Config executing WAYLAND_DISPLAY=wayland-0 DISPLAY=:1 hash dbus-update-activation-environment 2>/dev/null && dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY -Process created with pid 101973 -Framebuffer created, status 36053 -Framebuffer created, status 36053 -Framebuffer created, status 36053 -Allocated texture for BGTex -Background created for monitor DP-3 -Framebuffer created, status 36053 -Framebuffer created, status 36053 -Framebuffer created, status 36053 -Allocated texture for BGTex -Background created for monitor DP-4 -Registered signal for owner 6b8880b0: 6b4a2ff0 -> 6b888200 (owner: layerSurface) -Registered signal for owner 6b8880b0: 6b4a3010 -> 6b8880c8 (owner: layerSurface) -Registered signal for owner 6b8880b0: 6b89bc08 -> 6b888130 (owner: layerSurface) -Registered signal for owner 6b8880b0: 6b89bc18 -> 6b888198 (owner: layerSurface) -Registered signal for owner 6b8880b0: 6b89bc28 -> 6b888268 (owner: layerSurface) -LayerSurface 6b89bb20 (namespace wallpaper layer 0) created on monitor DP-4 -LayerSurface 6b747910 arranged: x: 2560 y: 350 w: 1920 h: 1080 with margins: t: 0 l: 0 r: 0 b: 0 -Monitor DP-4 layers arranged: reserved: 0.000000 0.000000 0.000000 0.000000 -Registered signal for owner 6b8dcd70: 6b4edc80 -> 6b8dcec0 (owner: layerSurface) -Registered signal for owner 6b8dcd70: 6b4edca0 -> 6b8dcd88 (owner: layerSurface) -Registered signal for owner 6b8dcd70: 6b4d8858 -> 6b8dcdf0 (owner: layerSurface) -Registered signal for owner 6b8dcd70: 6b4d8868 -> 6b8dce58 (owner: layerSurface) -Registered signal for owner 6b8dcd70: 6b4d8878 -> 6b8dcf28 (owner: layerSurface) -LayerSurface 6b4d8770 (namespace wallpaper layer 0) created on monitor DP-3 -LayerSurface 6b88c000 arranged: x: 0 y: 0 w: 2560 h: 1440 with margins: t: 0 l: 0 r: 0 b: 0 -Monitor DP-3 layers arranged: reserved: 0.000000 0.000000 0.000000 0.000000 -Registered signal for owner 6b599e30: 6b588250 -> 6b599f80 (owner: layerSurface) -Registered signal for owner 6b599e30: 6b588270 -> 6b599e48 (owner: layerSurface) -Registered signal for owner 6b599e30: 6b586928 -> 6b599eb0 (owner: layerSurface) -Registered signal for owner 6b599e30: 6b586938 -> 6b599f18 (owner: layerSurface) -Registered signal for owner 6b599e30: 6b586948 -> 6b599fe8 (owner: layerSurface) -LayerSurface 6b586840 (namespace waybar layer 2) created on monitor DP-4 -LayerSurface 6b712810 arranged: x: 2570 y: 360 w: 1900 h: 37 with margins: t: 10 l: 10 r: 10 b: 10 -LayerSurface 6b747910 arranged: x: 2560 y: 350 w: 1920 h: 1080 with margins: t: 0 l: 0 r: 0 b: 0 -Monitor DP-4 layers arranged: reserved: 0.000000 57.000000 0.000000 0.000000 -Registered signal for owner 6b58d920: 6b4dd8e0 -> 6b58da70 (owner: layerSurface) -Registered signal for owner 6b58d920: 6b4dd900 -> 6b58d938 (owner: layerSurface) -Registered signal for owner 6b58d920: 6b592398 -> 6b58d9a0 (owner: layerSurface) -Registered signal for owner 6b58d920: 6b5923a8 -> 6b58da08 (owner: layerSurface) -Registered signal for owner 6b58d920: 6b5923b8 -> 6b58dad8 (owner: layerSurface) -LayerSurface 6b5922b0 (namespace waybar layer 2) created on monitor DP-3 -LayerSurface 6b8fe670 arranged: x: 10 y: 10 w: 2540 h: 37 with margins: t: 10 l: 10 r: 10 b: 10 -LayerSurface 6b88c000 arranged: x: 0 y: 0 w: 2560 h: 1440 with margins: t: 0 l: 0 r: 0 b: 0 -Monitor DP-3 layers arranged: reserved: 0.000000 57.000000 0.000000 0.000000 -New XWayland Surface created. -Registered signal for owner 6b901830: 6aaff3a8 -> 6b901898 (owner: XWayland Window) -Registered signal forThe XKEYBOARD keymap compiler (xkbcomp) reports: -> Warning: Unsupported maximum keycode 708, clipping. -> X11 cannot support keycodes above 255. -Errors from xkbcomp are not fatal to the X server -steam.sh[102127]: Running Steam on arch rolling 64-bit -steam.sh[102127]: STEAM_RUNTIME is enabled automatically -setup.sh[102201]: Steam runtime environment up-to-date! -steam.sh[102127]: Steam client's requirements are satisfied -Installing breakpad exception handler for appid(steam)/version(1655513879) - owner 6b901830: 6aaff3b8 -> 6b901900 (owner: XWayland Window) -Registered signal for owner 6b901830: 6aaff328 -> 6b901968 (owner: XWayland Window) -LayerSurface 6b89bb20 mapped -LayerSurface 6b712810 arranged: x: 2570 y: 360 w: 1900 h: 37 with margins: t: 10 l: 10 r: 10 b: 10 -LayerSurface 6b747910 arranged: x: 2560 y: 350 w: 1920 h: 1080 with margins: t: 0 l: 0 r: 0 b: 0 -Monitor DP-4 layers arranged: reserved: 0.000000 57.000000 0.000000 0.000000 -LayerSurface 6b4d8770 mapped -LayerSurface 6b8fe670 arranged: x: 10 y: 10 w: 2540 h: 37 with margins: t: 10 l: 10 r: 10 b: 10 -LayerSurface 6b88c000 arranged: x: 0 y: 0 w: 2560 h: 1440 with margins: t: 0 l: 0 r: 0 b: 0 -Monitor DP-3 layers arranged: reserved: 0.000000 57.000000 0.000000 0.000000 -LayerSurface 6b586840 mapped -LayerSurface 6b712810 arranged: x: 2570 y: 360 w: 1900 h: 37 with margins: t: 10 l: 10 r: 10 b: 10 -LayerSurface 6b747910 arranged: x: 2560 y: 350 w: 1920 h: 1080 with margins: t: 0 l: 0 r: 0 b: 0 -Monitor DP-4 layers arranged: reserved: 0.000000 57.000000 0.000000 0.000000 -LayerSurface 6b5922b0 mapped -LayerSurface 6b8fe670 arranged: x: 10 y: 10 w: 2540 h: 37 with margins: t: 10 l: 10 r: 10 b: 10 -LayerSurface 6b88c000 arranged: x: 0 y: 0 w: 2560 h: 1440 with margins: t: 0 l: 0 r: 0 b: 0 -Monitor DP-3 layers arranged: reserved: 0.000000 57.000000 0.000000 0.000000 -Set keyboard focus to surface 6b4dd620 -Keybind triggered, calling dispatcher (64, 32) -Executing WAYLAND_DISPLAY=wayland-0 DISPLAY=:1 rofi -show run -o DP-3 -Process Created with pid 102094 -New LayerSurface has no preferred monitor. Assigning Monitor DP-3 -Registered signal for owner 6b9467c0: 6b9482a0 -> 6b946910 (owner: layerSurface) -Registered signal for owner 6b9467c0: 6b9482c0 -> 6b9467d8 (owner: layerSurface) -Registered signal for owner 6b9467c0: 6b9484a8 -> 6b946840 (owner: layerSurface) -Registered signal for owner 6b9467c0: 6b9484b8 -> 6b9468a8 (owner: layerSurface) -Registered signal for owner 6b9467c0: 6b9484c8 -> 6b946978 (owner: layerSurface) -LayerSurface 6b9483c0 (namespace rofi layer 3) created on monitor DP-3 -LayerSurface 6b8fe670 arranged: x: 10 y: 10 w: 2540 h: 37 with margins: t: 10 l: 10 r: 10 b: 10 -LayerSurface 6b88c000 arranged: x: 0 y: 0 w: 2560 h: 1440 with margins: t: 0 l: 0 r: 0 b: 0 -LayerSurface 6b948570 arranged: x: 0 y: 57 w: 2560 h: 1383 with margins: t: 0 l: 0 r: 0 b: 0 -Monitor DP-3 layers arranged: reserved: 0.000000 57.000000 0.000000 0.000000 -LayerSurface 6b9483c0 mapped -LayerSurface 6b8fe670 arranged: x: 10 y: 10 w: 2540 h: 37 with margins: t: 10 l: 10 r: 10 b: 10 -LayerSurface 6b88c000 arranged: x: 0 y: 0 w: 2560 h: 1440 with margins: t: 0 l: 0 r: 0 b: 0 -LayerSurface 6b948570 arranged: x: 640 y: 525 w: 1280 h: 446 with margins: t: 0 l: 0 r: 0 b: 0 -Monitor DP-3 layers arranged: reserved: 0.000000 57.000000 0.000000 0.000000 -Set keyboard focus to surface 6b947fe0 -LayerSurface 6b8fe670 arranged: x: 10 y: 10 w: 2540 h: 37 with margins: t: 10 l: 10 r: 10 b: 10 -LayerSurface 6b88c000 arranged: x: 0 y: 0 w: 2560 h: 1440 with margins: t: 0 l: 0 r: 0 b: 0 -LayerSurface 6b948570 arranged: x: 640 y: 525 w: 1280 h: 446 with margins: t: 0 l: 0 r: 0 b: 0 -Monitor DP-3 layers arranged: reserved: 0.000000 57.000000 0.000000 0.000000 -LayerSurface 6b9483c0 unmapped -Framebuffer created, status 36053 -LayerSurface 6b9483c0 destroyed -Callback 3fc245f0 -> 6b9467c0, layerSurface removed. -Callback 3fc245f0 -> 6b9467c0, layerSurface removed. -Callback 3fc245f0 -> 6b9467c0, layerSurface removed. -Callback 3fc245f0 -> 6b9467c0, layerSurface removed. -Callback 3fc245f0 -> 6b9467c0, layerSurface removed. -LayerSurface 6b8fe670 arranged: x: 10 y: 10 w: 2540 h: 37 with margins: t: 10 l: 10 r: 10 b: 10 -LayerSurface 6b88c000 arranged: x: 0 y: 0 w: 2560 h: 1440 with margins: t: 0 l: 0 r: 0 b: 0 -Monitor DP-3 layers arranged: reserved: 0.000000 57.000000 0.000000 0.000000 -New XWayland Surface created. -Registered signal for owner 6b942e20: 6b9533d8 -> 6b942e88 (owner: XWayland Window) -Registered signal for owner 6b942e20: 6b9533e8 -> 6b942ef0 (owner: XWayland Window) -Registered signal for owner 6b942e20: 6b953358 -> 6b942fInstalling breakpad exception handler for appid(steam)/version(1655513879) -Installing breakpad exception handler for appid(steam)/version(1655513879) -00:00:05.844 [ERROR] [xwayland/xwm.c:1546] xcb error: op ConfigureWindow (no minor), code Value (no extension), sequence 166, value 0 -00:00:06.181 [ERROR] [xwayland/xwm.c:1546] xcb error: op ChangeProperty (no minor), code Window (no extension), sequence 353, value 6291458 -00:00:06.181 [ERROR] [xwayland/xwm.c:1546] xcb error: op ChangeProperty (no minor), code Window (no extension), sequence 355, value 6291458 -Loaded SDL version 2.23.1-7331155 -ComputeStartupMode: found registry default startup mode: 0steamwebhelper.sh[102425]: Runtime for steamwebhelper: defaulting to /home/sharkfin/.local/share/Steam/ubuntu12_64/steam-runtime-heavy -Installing breakpad exception handler for appid(steam)/version(1655513879) -steamwebhelper.sh[102425]: glibc >= 2.34, partially disabling sandbox until CEF supports clone3() -58 (owner: XWayland Window) -Cleanup: destroyed a layersurface -Error in getAppIDClass: basic_string: construction from null is not valid -Error in getAppIDClass: basic_string: construction from null is not valid -Set keyboard focus to surface 6b951fc0, with window name: Steam -Error in getAppIDClass: basic_string: construction from null is not valid -Registered signal for owner 6b879390: 6b952290 -> 6b879398 (owner: SurfaceTreeNode) -Registered signal for owner 6b879390: 6b952280 -> 6b879400 (owner: SurfaceTreeNode) -Registered signal for owner 6b879390: 6b9522a0 -> 6b879468 (owner: SurfaceTreeNode) -Creating a surfaceTree Root! (pWindow: 6b942e20) -Window got assigned a surfaceTreeNode 6b879390 -Registered signal for owner 6b942e20: 6b9533b8 -> 6b943028 (owner: XWayland Window Late) -Registered signal for owner 6b942e20: 6b9533c8 -> 6b943310 (owner: XWayland Window Late) -Registered signal for owner 6b942e20: 6b953368 -> 6b943378 (owner: XWayland Window Late) -Registered signal for owner 6b942e20: 6b9533f8 -> 6b942fc0 (owner: XWayland Window Late) -Map request dispatched, monitor DP-3, xywh: 1080.000000 655.500000 400.000000 129.000000 -Window 6b942e20 unmapped -Unregistered late callbacks XWL: 6b943028 6b943310 6b943378 6b942fc0 -Callback 3fc24a90 -> 6b942e20, XWayland Window Late removed. -Callback 3fc24a90 -> 6b942e20, XWayland Window Late removed. -Callback 3fc24a90 -> 6b942e20, XWayland Window Late removed. -Callback 3fc24a90 -> 6b942e20, XWayland Window Late removed. -Framebuffer created, status 36053 -Destroying the SubSurface tree of unmapped window 6b942e20 -Callback 3fc24a20 -> 6b879390, SurfaceTreeNode removed. -Callback 3fc24a20 -> 6b879390, SurfaceTreeNode removed. -Callback 3fc24a20 -> 6b879390, SurfaceTreeNode removed. -SurfaceTree Node removed -Window 6b942e20 destroyed, queueing. -Callback 3fc24b10 -> 6b942e20, XWayland Window removed. -Callback 3fc24b10 -> 6b942e20, XWayland Window removed. -Callback 3fc24b10 -> 6b942e20, XWayland Window removed. -Cleanup: destroyed a window -Keybind triggered, calling dispatcher (64, 81) -Executing WAYLAND_DISPLAY=wayland-0 DISPLAY=:1 alacritty -Process Created with pid 102335 -New XDG Surface created. (0x0 at 0 0) -Registered signal for owner 6b94acd0: 6b94c348 -> 6b94ad38 (owner: XDG Window) -Registered signal for owner 6b94acd0: 6b94c358 -> 6b94ada0 (owner: XDG Window) -Registered signal for owner 6b94acd0: 6b94c318 -> 6b94ae08 (owner: XDG Window) -OPENINGON: 6b59e4c0, Workspace: 2, Monitor: 1 -Set keyboard focus to surface 6b9550a0, with window name: Alacritty -Registered signal for owner 6b879390: 6b955370 -> 6b879398 (owner: SurfaceTreeNode) -Registered signal for owner 6b879390: 6b955360 -> 6b879400 (owner: SurfaceTreeNode) -Registered signal for owner 6b879390: 6b955380 -> 6b879468 (owner: SurfaceTreeNode) -Creating a surfaceTree Root! (pWindow: 6b94acd0) -Window got assigned a surfaceTreeNode 6b879390 -Registered signal for owner 6b94acd0: 6b955360 -> 6b94acd0 (owner: XDG Window Late) -Registered signal for owner 6b94acd0: 6b89b4c0 -> 6b94ae70 (owner: XDG Window Late) -Registered signal for owner 6b94acd0: 6b89b460 -> 6b94aed8 (owner: XDG Window Late) -Registered signal for owner 6b94acd0: 6b94c338 -> 6b94af40 (owner: XDG Window Late) -Map request dispatched, monitor DP-4, xywh: 2571.000000 418.000000 1898.000000 1001.000000 -New XWayland Surface created. -Registered signal for owner 6b9472e0: 6b94d5a8 -> 6b947348 (owner: XWayland Window) -Registered signal for owner 6b9472e0: 6b94d5b8 -> 6b9473b0 (owner: XWayland Window) -Registered signal for owner 6b9472e0: 6b94d528 -> 6b947418 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b9746e0: 6b972e98 -> 6b974748 (owner: XWayland Window) -Registered signal for owner 6b9746e0: 6b972ea8 -> 6b9747b0 (owner: XWayland Window) -Registered signal for owner 6b9746e0: 6b972e18 -> 6b974818 (owner: XWayland Window) -Window 6b9746e0 destroyed, queueing. -Callback 3fc24b10 -> 6b9746e0, XWayland Window removed. -Callback 3fc24b10 -> 6b9746e0, XWayland Window removed. -Callback 3fc24b10 -> 6b9746e0, XWayland Window removed. -New XWayland Surface created.Installing breakpad exception handler for appid(steam)/version(1655513879) -Installing breakpad exception handler for appid(steam)/version(1655513879) -Installing breakpad exception handler for appid(steam)/version(1655513879) -Installing breakpad exception handler for appid(steam)/version(1655513879) -Installing breakpad exception handler for appid(steam)/version(1655513879) -Installing breakpad exception handler for appid(steam)/version(1655513879) -Installing breakpad exception handler for appid(steam)/version(1655513879) -Installing breakpad exception handler for appid(steam)/version(1655513879) -Installing breakpad exception handler for appid(steam)/version(1655513879) -Installing breakpad exception handler for appid(steam)/version(1655513879) -Installing breakpad exception handler for appid(steam)/version(1655513879) -Installing breakpad exception handler for appid(steam)/version(1655513879) -Installing breakpad exception handler for appid(steam)/version(1655513879) -Installing breakpad exception handler for appid(steam)/version(1655513879) -Installing breakpad exception handler for appid(steam)/version(1655513879) -Installing breakpad exception handler for appid(steam)/version(1655513879) -CAppInfoCacheReadFromDiskThread took 82 milliseconds to initialize -Installing breakpad exception handler for appid(steam)/version(1655513879) -*** MESA_GLSL_CACHE_DIR is deprecated; use MESA_SHADER_CACHE_DIR instead *** -*** MESA_GLSL_CACHE_MAX_SIZE is deprecated; use MESA_SHADER_CACHE_MAX_SIZE instead *** -00:00:09.919 [ERROR] [xwayland/xwm.c:1546] xcb error: op ConfigureWindow (no minor), code Value (no extension), sequence 453, value 0 - -(steam:102309): Gtk-WARNING **: 16:18:01.235: gtk_disable_setlocale() must be called before gtk_init() -*** MESA_GLSL_CACHE_DIR is deprecated; use MESA_SHADER_CACHE_DIR instead *** -*** MESA_GLSL_CACHE_MAX_SIZE is deprecated; use MESA_SHADER_CACHE_MAX_SIZE instead *** -Installing breakpad exception handler for appid(steam)/version(1655513879) -Installing breakpad exception handler for appid(steam)/version(1655513879) -local (potentially out of sync) copy of roaming config loaded - 16034 bytes. -roaming config store loaded successfully - 16034 bytes. -migrating temporary roaming config store -Installing breakpad exception handler for appid(steam)/version(1655513879) -[2022-06-19 16:17:56] Startup - updater built Jun 18 2022 00:17:09 -[2022-06-19 16:17:56] Opted in to client beta 'publicbeta' via beta file -You are in the 'publicbeta' client beta. -Looks like steam didn't shutdown cleanly, scheduling immediate update check -[2022-06-19 16:17:56] Loading cached metrics from disk (/home/sharkfin/.local/share/Steam/package/steam_client_metrics.bin) -[2022-06-19 16:17:56] Using the following download hosts for Public, Realm steamglobal -[2022-06-19 16:17:56] 1. https://cdn.cloudflare.steamstatic.com, /client/, Realm 'steamglobal', weight was 100, source = 'update_hosts_cached.vdf' -[2022-06-19 16:17:56] 2. https://cdn.akamai.steamstatic.com, /client/, Realm 'steamglobal', weight was 100, source = 'update_hosts_cached.vdf' -[2022-06-19 16:17:56] 3. http://media.steampowered.com, /client/, Realm 'steamglobal', weight was 1, source = 'baked in' -[2022-06-19 16:17:56] Checking for update on startup -[2022-06-19 16:17:56] Checking for available updates... -[2022-06-19 16:17:56] Downloading manifest: https://cdn.cloudflare.steamstatic.com/client/steam_client_publicbeta_ubuntu12 -[2022-06-19 16:17:56] Manifest download: send request -[2022-06-19 16:17:56] Manifest download: waiting for download to finish -[2022-06-19 16:17:57] Manifest download: finished -[2022-06-19 16:17:57] Download skipped by HTTP 304 Not Modified -[2022-06-19 16:17:57] Nothing to do -[2022-06-19 16:17:57] Verifying installation... -[2022-06-19 16:17:57] Performing checksum verification of executable files -[2022-06-19 16:17:57] Verification complete -src/clientdll/compatmanager.cpp (991) : GetCompatibilityToolCommandLineInternal on dependent tool failed -src/clientdll/compatmanager.cpp (991) : GetCompatibilityToolCommandLineInternal on dependent tool failed -Installing breakpad exception handler for appid(steam)/version(1655513879) -assert_20220619161802_27.dmp[102620]: Uploading dump (out-of-process) -/tmp/dumps/assert_20220619161802_27.dmp -src/clientdll/compatmanager.cpp (991) : GetCompatibilityToolCommandLineInternal on dependent tool failed -src/clientdll/compatmanager.cpp (991) : GetCompatibilityToolCommandLineInternal on dependent tool failed -src/clientdll/compatmanager.cpp (991) : GetCompatibilityToolCommandLineInternal on dependent tool failed -src/clientdll/compatmanager.cpp (991) : GetCompatibilityToolCommandLineInternal on dependent tool failed -src/clientdll/compatmanager.cpp (991) : GetCompatibilityToolCommandLineInternal on dependent tool failed -src/clientdll/compatmanager.cpp (991) : GetCompatibilityToolCommandLineInternal on dependent tool failed -BRefreshApplicationsInLibrary 1: 6ms - -Registered signal for owner 6b974f00: 6b952208 -> 6b974f68 (owner: XWayland Window) -Registered signal for owner 6b974f00: 6b952218 -> 6b974fd0 (owner: XWayland Window) -Registered signal for owner 6b974f00: 6b952188 -> 6b975038 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b975720: 6b947c78 -> 6b975788 (owner: XWayland Window) -Registered signal for owner 6b975720: 6b947c88 -> 6b9757f0 (owner: XWayland Window) -Registered signal for owner 6b975720: 6b947bf8 -> 6b975858 (owner: XWayland Window) -Window 6b975720 destroyed, queueing. -Callback 3fc24b10 -> 6b975720, XWayland Window removed. -Callback 3fc24b10 -> 6b975720, XWayland Window removed. -Callback 3fc24b10 -> 6b975720, XWayland Window removed. -New XWayland Surface created. -Registered signal for owner 6b975f40: 6b947c78 -> 6b975fa8 (owner: XWayland Window) -Registered signal for owner 6b975f40: 6b947c88 -> 6b976010 (owner: XWayland Window) -Registered signal for owner 6b975f40: 6b947bf8 -> 6b976078 (owner: XWayland Window) -Window 6b975f40 destroyed, queueing. -Callback 3fc24b10 -> 6b975f40, XWayland Window removed. -Callback 3fc24b10 -> 6b975f40, XWayland Window removed. -Callback 3fc24b10 -> 6b975f40, XWayland Window removed. -New XWayland Surface created. -Registered signal for owner 6b976760: 6b947c78 -> 6b9767c8 (owner: XWayland Window) -Registered signal for owner 6b976760: 6b947c88 -> 6b976830 (owner: XWayland Window) -Registered signal for owner 6b976760: 6b947bf8 -> 6b976898 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b976f80: 6b949ec8 -> 6b976fe8 (owner: XWayland Window) -Registered signal for owner 6b976f80: 6b949ed8 -> 6b977050 (owner: XWayland Window) -Registered signal for owner 6b976f80: 6b949e48 -> 6b9770b8 (owner: XWayland Window) -Set keyboard focus to surface 6b94bc40, with window name: Steam -Registered signal for owner 6b8ad4f0: 6b94bf10 -> 6b8ad4f8 (owner: SurfaceTreeNode) -Registered signal for owner 6b8ad4f0: 6b94bf00 -> 6b8ad560 (owner: SurfaceTreeNode) -Registered signal for owner 6b8ad4f0: 6b94bf20 -> 6b8ad5c8 (owner: SurfaceTreeNode) -Creating a surfaceTree Root! (pWindow: 6b976760) -Window got assigned a surfaceTreeNode 6b8ad4f0 -Registered signal for owner 6b976760: 6b947c58 -> 6b976968 (owner: XWayland Window Late) -Registered signal for owner 6b976760: 6b947c68 -> 6b976c50 (owner: XWayland Window Late) -Registered signal for owner 6b976760: 6b947c08 -> 6b976cb8 (owner: XWayland Window Late) -Registered signal for owner 6b976760: 6b947c98 -> 6b976900 (owner: XWayland Window Late) -Map request dispatched, monitor DP-4, xywh: 3488.000000 878.000000 64.000000 24.000000 -Set keyboard focus to surface 6b9550a0, with window name: Alacritty -New XWayland Surface created. -Registered signal for owner 6b97b200: 6b97b0e8 -> 6b97b268 (owner: XWayland Window) -Registered signal for owner 6b97b200: 6b97b0f8 -> 6b97b2d0 (owner: XWayland Window) -Registered signal for owner 6b97b200: 6b97b068 -> 6b97b338 (owner: XWayland Window) -Window 6b97b200 destroyed, queueing. -Callback 3fc24b10 -> 6b97b200, XWayland Window removed. -Callback 3fc24b10 -> 6b97b200, XWayland Window removed. -Callback 3fc24b10 -> 6b97b200, XWayland Window removed. -New XWayland Surface created. -Registered signal for owner 6b97ba20: 6b97b0e8 -> 6b97ba88 (owner: XWayland Window) -Registered signal for owner 6b97ba20: 6b97b0f8 -> 6b97baf0 (owner: XWayland Window) -Registered signal for owner 6b97ba20: 6b97b068 -> 6b97bb58 (owner: XWayland Window) -Window 6b97ba20 destroyed, queueing. -Callback 3fc24b10 -> 6b97ba20, XWayland Window removed. -Callback 3fc24b10 -> 6b97ba20, XWayland Window removed. -Callback 3fc24b10 -> 6b97ba20, XWayland Window removed. -Window 6b976760 unmapped -Unregistered late callbacks XWL: 6b976968 6b976c50 6b976cb8 6b976900 -Callback 3fc24a90 -> 6b976760, XWayland Window Late removed. -Callback 3fc24a90 -> 6b976760, XWayland Window Late removed. -Callback 3fc24a90 -> 6b976760, XWayland Window Late removed. -Callback 3fc24a90 -> 6b976760, XWayland Window Late removed. -Framebuffer created, status 36053 -Destroying the SubSurface tree of unmapped window 6b976760 -Callback 3fc24a20 -> 6b8ad4f0, SurfaceTreeNode removed. -Callback 3fc24a20 -> 6b8ad4f0, SurfaceTreeNode removed. -Callback 3fc24a20 -> 6b8ad4f0, SurfaceTreeNode removed. -SurfaceTree Node removed -New XWayland Surface created. -Registered signal for owner 6b97a190: 6b97e918 -> 6b97a1f8 (owner: XWayland Window) -Registered signal for owner 6b97a190: 6b97e928 -> 6b97a260 (owner: XWayland Window) -Registered signal for owner 6b97a190: 6b97e898 -> 6b97a2c8 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b97ecc0: 6b97eba8 -> 6b97ed28 (owner: XWayland Window) -Registered signal for owner 6b97ecc0: 6b97ebb8 -> 6b97ed90 (owner: XWayland Window) -Registered signal for owner 6b97ecc0: 6b97eb28 -> 6b97edf8 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b97f980: 6b97f868 -> 6b97f9e8 (owner: XWayland Window) -Registered signal for owner 6b97f980: 6b97f878 -> 6b97fa50 (owner: XWayland Window) -Registered signal for owner 6b97f980: 6b97f7e8 -> 6b97fab8 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b980660: 6b980548 -> 6b9806c8 (owner: XWayland Window) -Registered signal for owner 6b980660: 6b980558 -> 6b980730 (owner: XWayland Window) -Registered signal for owner 6b980660: 6b9804c8 -> 6b980798 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b9813e0: 6b9812c8 -> 6b981448 (owner: XWayland Window) -Registered signal for owner 6b9813e0: 6b9812d8 -> 6b9814b0 (owner: XWayland Window) -Registered signal for owner 6b9813e0: 6b981248 -> 6b981518 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b982140: 6b982028 -> 6b9821a8 (owner: XWayland Window) -Registered signal for owner 6b982140: 6b982038 -> 6b982210 (owner: XWayland Window) -Registered signal for owner 6b982140: 6b981fa8 -> 6b982278 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b982f00: 6b982de8 -> 6b982f68 (owner: XWayland Window) -Registered signal for owner 6b982f00: 6b982df8 -> 6b982fd0 (owner: XWayland Window) -Registered signal for owner 6b982f00: 6b982d68 -> 6b983038 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b983e60: 6b983d48 -> 6b983ec8 (owner: XWayland Window) -Registered signal for owner 6b983e60: 6b983d58 -> 6b983f30 (owner: XWayland Window) -Registered signal for owner 6b983e60: 6b983cc8 -> 6b983f98 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b984c00: 6b984ae8 -> 6b984c68 (owner: XWayland Window) -Registered signal for owner 6b984c00: 6b984af8 -> 6b984cd0 (owner: XWayland Window) -Registered signal for owner 6b984c00: 6b984a68 -> 6b984d38 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b9858c0: 6b9857a8 -> 6b985928 (owner: XWayland Window) -Registered signal for owner 6b9858c0: 6b9857b8 -> 6b985990 (owner: XWayland Window) -Registered signal for owner 6b9858c0: 6b985728 -> 6b9859f8 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b986600: 6b9864e8 -> 6b986668 (owner: XWayland Window) -Registered signal for owner 6b986600: 6b9864f8 -> 6b9866d0 (owner: XWayland Window) -Registered signal for owner 6b986600: 6b986468 -> 6b986738 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b987340: 6b987228 -> 6b9873a8 (owner: XWayland Window) -Registered signal for owner 6b987340: 6b987238 -> 6b987410 (owner: XWayland Window) -Registered signal for owner 6b987340: 6b9871a8 -> 6b987478 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b98ac60: 6b98ab48 -> 6b98acc8 (owner: XWayland Window) -Registered signal for owner 6b98ac60: 6b98ab58 -> 6b98ad30 (owner: XWayland Window) -Registered signal for owner 6b98ac60: 6b98aac8 -> 6b98ad98 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b98b920: 6b98b808 -> 6b98b988 (owner: XWayland Window) -Registered signal for owner 6b98b920: 6b98b818 -> 6b98b9f0 (owner: XWayland Window) -Registered signaInstalling breakpad exception handler for appid(steam)/version(1655513879) -l for owner 6b98b920: 6b98b788 -> 6b98ba58 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b98c5e0: 6b98c4c8 -> 6b98c648 (owner: XWayland Window) -Registered signal for owner 6b98c5e0: 6b98c4d8 -> 6b98c6b0 (owner: XWayland Window) -Registered signal for owner 6b98c5e0: 6b98c448 -> 6b98c718 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b98d2a0: 6b98d188 -> 6b98d308 (owner: XWayland Window) -Registered signal for owner 6b98d2a0: 6b98d198 -> 6b98d370 (owner: XWayland Window) -Registered signal for owner 6b98d2a0: 6b98d108 -> 6b98d3d8 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b98df60: 6b98de48 -> 6b98dfc8 (owner: XWayland Window) -Registered signal for owner 6b98df60: 6b98de58 -> 6b98e030 (owner: XWayland Window) -Registered signal for owner 6b98df60: 6b98ddc8 -> 6b98e098 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b98ec20: 6b98eb08 -> 6b98ec88 (owner: XWayland Window) -Registered signal for owner 6b98ec20: 6b98eb18 -> 6b98ecf0 (owner: XWayland Window) -Registered signal for owner 6b98ec20: 6b98ea88 -> 6b98ed58 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b98f8e0: 6b98f7c8 -> 6b98f948 (owner: XWayland Window) -Registered signal for owner 6b98f8e0: 6b98f7d8 -> 6b98f9b0 (owner: XWayland Window) -Registered signal for owner 6b98f8e0: 6b98f748 -> 6b98fa18 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b9905a0: 6b990488 -> 6b990608 (owner: XWayland Window) -Registered signal for owner 6b9905a0: 6b990498 -> 6b990670 (owner: XWayland Window) -Registered signal for owner 6b9905a0: 6b990408 -> 6b9906d8 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b991260: 6b991148 -> 6b9912c8 (owner: XWayland Window) -Registered signal for owner 6b991260: 6b991158 -> 6b991330 (owner: XWayland Window) -Registered signal for owner 6b991260: 6b9910c8 -> 6b991398 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b992130: 6b991e08 -> 6b992198 (owner: XWayland Window) -Registered signal for owner 6b992130: 6b991e18 -> 6b992200 (owner: XWayland Window) -Registered signal for owner 6b992130: 6b991d88 -> 6b992268 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b992df0: 6b992cd8 -> 6b992e58 (owner: XWayland Window) -Registered signal for owner 6b992df0: 6b992ce8 -> 6b992ec0 (owner: XWayland Window) -Registered signal for owner 6b992df0: 6b992c58 -> 6b992f28 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b993bd0: 6b993ab8 -> 6b993c38 (owner: XWayland Window) -Registered signal for owner 6b993bd0: 6b993ac8 -> 6b993ca0 (owner: XWayland Window) -Registered signal for owner 6b993bd0: 6b993a38 -> 6b993d08 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b994a30: 6b994918 -> 6b994a98 (owner: XWayland Window) -Registered signal for owner 6b994a30: 6b994928 -> 6b994b00 (owner: XWayland Window) -Registered signal for owner 6b994a30: 6b994898 -> 6b994b68 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b995930: 6b995778 -> 6b995998 (owner: XWayland Window) -Registered signal for owner 6b995930: 6b995788 -> 6b995a00 (owner: XWayland Window) -Registered signal for owner 6b995930: 6b9956f8 -> 6b995a68 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b996660: 6b997c08 -> 6b9966c8 (owner: XWayland Window) -Registered signal for owner 6b996660: 6b997c18 -> 6b996730 (owner: XWayland Window) -Registered signal for owner 6b996660: 6b997b88 -> 6b996798 (owner: XWayland Window) -Window 6b996660 destroyed, queueing. -Callback 3fc24b10 -> 6b996660, XWayland Window removed. -Callback 3fc24b10 -> 6b996660, XWayland Window removed. -Callback 3fc24b10 -> 6b996660, XWayland Window removed. -New XWayland Surface created. -Registered signal for owner 6b998450: 6b9980a8 -> 6b9984b8 (owner: XWayland Window) -Registered signal for owner 6b998450: 6b998ExecCommandLine: "'/home/sharkfin/.local/share/Steam/ubuntu12_32/steam'" -0b8 -> 6b998520 (owner: XWayland Window) -Registered signal for owner 6b998450: 6b998028 -> 6b998588 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b998c70: 6b997378 -> 6b998cd8 (owner: XWayland Window) -Registered signal for owner 6b998c70: 6b997388 -> 6b998d40 (owner: XWayland Window) -Registered signal for owner 6b998c70: 6b9972f8 -> 6b998da8 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b999930: 6b999818 -> 6b999998 (owner: XWayland Window) -Registered signal for owner 6b999930: 6b999828 -> 6b999a00 (owner: XWayland Window) -Registered signal for owner 6b999930: 6b999798 -> 6b999a68 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b99a5f0: 6b99a4d8 -> 6b99a658 (owner: XWayland Window) -Registered signal for owner 6b99a5f0: 6b99a4e8 -> 6b99a6c0 (owner: XWayland Window) -Registered signal for owner 6b99a5f0: 6b99a458 -> 6b99a728 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b99b2b0: 6b99b198 -> 6b99b318 (owner: XWayland Window) -Registered signal for owner 6b99b2b0: 6b99b1a8 -> 6b99b380 (owner: XWayland Window) -Registered signal for owner 6b99b2b0: 6b99b118 -> 6b99b3e8 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b99bf90: 6b99be78 -> 6b99bff8 (owner: XWayland Window) -Registered signal for owner 6b99bf90: 6b99be88 -> 6b99c060 (owner: XWayland Window) -Registered signal for owner 6b99bf90: 6b99bdf8 -> 6b99c0c8 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b99cc90: 6b99cb78 -> 6b99ccf8 (owner: XWayland Window) -Registered signal for owner 6b99cc90: 6b99cb88 -> 6b99cd60 (owner: XWayland Window) -Registered signal for owner 6b99cc90: 6b99caf8 -> 6b99cdc8 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b99d990: 6b99d878 -> 6b99d9f8 (owner: XWayland Window) -Registered signal for owner 6b99d990: 6b99d888 -> 6b99da60 (owner: XWayland Window) -Registered signal for owner 6b99d990: 6b99d7f8 -> 6b99dac8 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b99e780: 6b99e668 -> 6b99e7e8 (owner: XWayland Window) -Registered signal for owner 6b99e780: 6b99e678 -> 6b99e850 (owner: XWayland Window) -Registered signal for owner 6b99e780: 6b99e5e8 -> 6b99e8b8 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b99f770: 6b99f438 -> 6b99f7d8 (owner: XWayland Window) -Registered signal for owner 6b99f770: 6b99f448 -> 6b99f840 (owner: XWayland Window) -Registered signal for owner 6b99f770: 6b99f3b8 -> 6b99f8a8 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b9a0430: 6b9a0318 -> 6b9a0498 (owner: XWayland Window) -Registered signal for owner 6b9a0430: 6b9a0328 -> 6b9a0500 (owner: XWayland Window) -Registered signal for owner 6b9a0430: 6b9a0298 -> 6b9a0568 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b9a10f0: 6b9a0fd8 -> 6b9a1158 (owner: XWayland Window) -Registered signal for owner 6b9a10f0: 6b9a0fe8 -> 6b9a11c0 (owner: XWayland Window) -Registered signal for owner 6b9a10f0: 6b9a0f58 -> 6b9a1228 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b9a1df0: 6b9a1cd8 -> 6b9a1e58 (owner: XWayland Window) -Registered signal for owner 6b9a1df0: 6b9a1ce8 -> 6b9a1ec0 (owner: XWayland Window) -Registered signal for owner 6b9a1df0: 6b9a1c58 -> 6b9a1f28 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b9a2be0: 6b9a2ac8 -> 6b9a2c48 (owner: XWayland Window) -Registered signal for owner 6b9a2be0: 6b9a2ad8 -> 6b9a2cb0 (owner: XWayland Window) -Registered signal for owner 6b9a2be0: 6b9a2a48 -> 6b9a2d18 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b9a3bd0: 6b9a3898 -> 6b9a3c38 (owner: XWayland Window) -Registered signal for owner 6b9a3bd0: 6b9a38a8 -> 6b9a3ca0 (owner: XWayland Window) -Registered signal for owner 6b9a3bd0: 6b9a3818 -> 6b9a3d08 (owner: XWayland Window) -New XWayland Surface crassert_20220619161802_27.dmp[102620]: Finished uploading minidump (out-of-process): success = yes -assert_20220619161802_27.dmp[102620]: response: CrashID=bp-2036a3e1-9fbc-49e5-956f-2b5672220619 -assert_20220619161802_27.dmp[102620]: file ''/tmp/dumps/assert_20220619161802_27.dmp'', upload yes: ''CrashID=bp-2036a3e1-9fbc-49e5-956f-2b5672220619'' -System startup time: 6.43 seconds -BuildCompleteAppOverviewChange: 437 - -(steam:102309): Gtk-WARNING **: 16:18:04.484: gtk_disable_setlocale() must be called before gtk_init() - -(steam:102309): Gtk-WARNING **: 16:18:04.486: gtk_disable_setlocale() must be called before gtk_init() -RegisterForAppOverview 1: 21ms -RegisterForAppOverview 2: 21ms - -(steam:102309): Gtk-WARNING **: 16:18:04.982: gtk_disable_setlocale() must be called before gtk_init() -Installing breakpad exception handler for appid(steam)/version(1655513879) -The XKEYBOARD keymap compiler (xkbcomp) reports: -> Warning: Unsupported maximum keycode 708, clipping. -> X11 cannot support keycodes above 255. -Errors from xkbcomp are not fatal to the X server -eated. -Registered signal for owner 6b9a4890: 6b9a4778 -> 6b9a48f8 (owner: XWayland Window) -Registered signal for owner 6b9a4890: 6b9a4788 -> 6b9a4960 (owner: XWayland Window) -Registered signal for owner 6b9a4890: 6b9a46f8 -> 6b9a49c8 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b9a5550: 6b9a5438 -> 6b9a55b8 (owner: XWayland Window) -Registered signal for owner 6b9a5550: 6b9a5448 -> 6b9a5620 (owner: XWayland Window) -Registered signal for owner 6b9a5550: 6b9a53b8 -> 6b9a5688 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b9a6260: 6b9a6148 -> 6b9a62c8 (owner: XWayland Window) -Registered signal for owner 6b9a6260: 6b9a6158 -> 6b9a6330 (owner: XWayland Window) -Registered signal for owner 6b9a6260: 6b9a60c8 -> 6b9a6398 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b9a7050: 6b9a6f38 -> 6b9a70b8 (owner: XWayland Window) -Registered signal for owner 6b9a7050: 6b9a6f48 -> 6b9a7120 (owner: XWayland Window) -Registered signal for owner 6b9a7050: 6b9a6eb8 -> 6b9a7188 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b9a8040: 6b9a7d08 -> 6b9a80a8 (owner: XWayland Window) -Registered signal for owner 6b9a8040: 6b9a7d18 -> 6b9a8110 (owner: XWayland Window) -Registered signal for owner 6b9a8040: 6b9a7c88 -> 6b9a8178 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b9a8d00: 6b9a8be8 -> 6b9a8d68 (owner: XWayland Window) -Registered signal for owner 6b9a8d00: 6b9a8bf8 -> 6b9a8dd0 (owner: XWayland Window) -Registered signal for owner 6b9a8d00: 6b9a8b68 -> 6b9a8e38 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b9a99c0: 6b9a98a8 -> 6b9a9a28 (owner: XWayland Window) -Registered signal for owner 6b9a99c0: 6b9a98b8 -> 6b9a9a90 (owner: XWayland Window) -Registered signal for owner 6b9a99c0: 6b9a9828 -> 6b9a9af8 (owner: XWayland Window) -OPENINGON: 6b59e4c0, Workspace: 2, Monitor: 1 -Set keyboard focus to surface 6b9abe40, with window name: Steam -Registered signal for owner 6b8ad4f0: 6b9ac110 -> 6b8ad4f8 (owner: SurfaceTreeNode) -Registered signal for owner 6b8ad4f0: 6b9ac100 -> 6b8ad560 (owner: SurfaceTreeNode) -Registered signal for owner 6b8ad4f0: 6b9ac120 -> 6b8ad5c8 (owner: SurfaceTreeNode) -Creating a surfaceTree Root! (pWindow: 6b984c00) -Window got assigned a surfaceTreeNode 6b8ad4f0 -Registered signal for owner 6b984c00: 6b984ac8 -> 6b984e08 (owner: XWayland Window Late) -Registered signal for owner 6b984c00: 6b984ad8 -> 6b9850f0 (owner: XWayland Window Late) -Registered signal for owner 6b984c00: 6b984a78 -> 6b985158 (owner: XWayland Window Late) -Registered signal for owner 6b984c00: 6b984b08 -> 6b984da0 (owner: XWayland Window Late) -Map request dispatched, monitor DP-4, xywh: 2571.000000 418.000000 943.000000 1001.000000 -Window 6b976f80 destroyed, queueing. -Callback 3fc24b10 -> 6b976f80, XWayland Window removed. -Callback 3fc24b10 -> 6b976f80, XWayland Window removed. -Callback 3fc24b10 -> 6b976f80, XWayland Window removed. -Window 6b976760 destroyed, queueing. -Callback 3fc24b10 -> 6b976760, XWayland Window removed. -Callback 3fc24b10 -> 6b976760, XWayland Window removed. -Callback 3fc24b10 -> 6b976760, XWayland Window removed. -Cleanup: destroyed a window -Set keyboard focus to surface 6b9550a0, with window name: Alacritty -Window 6b984c00 set title to Steam -Window 6b94acd0 set title to Alacritty -Window 6b94acd0 set title to Alacritty -Window 6b94acd0 set title to Alacritty -Reloading the config! -Created a bezier curve, baked 200 points, mem usage: 3.20kB, time to bake: 38.81µs. Estimated average calc time: 0.02µs. -Set the keyboard layout to and variant to -Applying monitor rule for DP-3 -Not applying a new rule to DP-3 because it's already applied! -Applying monitor rule for DP-4 -Not applying a new rule to DP-4 because it's already applied! -New XWayland Surface created. -Registered signal for owner 6b7710f0: 6b7a64c8 -> 6b771158 (owner: XWayland Window) -Registered signal for owner 6b7710f0: 6b7a64d8 -> 6b7711c0 (owner: XWayland Window) -Registered signal for owner 6b7710f0: 6b7a6448 -> 6b771228 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b7a8300: 6b9ad558 -> 6b7a8368 (owner: XWayland Window) -Registered signal for owner 6b7a8300: 6b9ad568 -> 6b7a83d0 (owner: XWayland Window) -Registered signal for owner 6b7a8300: 6b9ad4d8 -> 6b7a8438 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b7a8b20: 6b9adec8 -> 6b7a8b88 (owner: XWayland Window) -Registered signal for owner 6b7a8b20: 6b9aded8 -> 6b7a8bf0 (owner: XWayland Window) -Registered signal for owner 6b7a8b20: 6b9ade48 -> 6b7a8c58 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b79ad20: 6b7828e8 -> 6b79ad88 (owner: XWayland Window) -Registered signal for owner 6b79ad20: 6b7828f8 -> 6b79adf0 (owner: XWayland Window) -Registered signal for owner 6b79ad20: 6b782868 -> 6b79ae58 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b79b540: 6b9aa778 -> 6b79b5a8 (owner: XWayland Window) -Registered signal for owner 6b79b540: 6b9aa788 -> 6b79b610 (owner: XWayland Window) -Registered signal for owner 6b79b540: 6b9aa6f8 -> 6b79b678 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b79bd60: 6b9ab048 -> 6b79bdc8 (owner: XWayland Window) -Registered signal for owner 6b79bd60: 6b9ab058 -> 6b79be30 (owner: XWayland Window) -Registered signal for owner 6b79bd60: 6b9aafc8 -> 6b79be98 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b79c580: 6b771a88 -> 6b79c5e8 (owner: XWayland Window) -Registered signal for owner 6b79c580: 6b771a98 -> 6b79c650 (owner: XWayland Window) -Registered signal for owner 6b79c580: 6b771a08 -> 6b79c6b8 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b79d440: 6b79cf18 -> 6b79d4a8 (owner: XWayland Window) -Registered signal for owner 6b79d440: 6b79cf28 -> 6b79d510 (owner: XWayland Window) -Registered signal for owner 6b79d440: 6b79ce98 -> 6b79d578 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b79def0: 6b79ddd8 -> 6b79df58 (owner: XWayland Window) -Registered signal for owner 6b79def0: 6b79dde8 -> 6b79dfc0 (owner: XWayland Window) -Registered signal for owner 6b79def0: 6b79dd58 -> 6b79e028 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b79ebb0: 6b79ea98 -> 6b79ec18 (owner: XWayland Window) -Registered signal for owner 6b79ebb0: 6b79eaa8 -> 6b79ec80 (owner: XWayland Window) -Registered signal for owner 6b79ebb0: 6b79ea18 -> 6b79ece8 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b79f870: 6b79f758 -> 6b79f8d8 (owner: XWayland Window) -Registered signal for owner 6b79f870: 6b79f768 -> 6b79f940 (owner: XWayland Window) -Registered signal for owner 6b79f870: 6b79f6d8 -> 6b79f9a8 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b7a0530: 6b7a0418 -> 6b7a0598 (owner: XWayland Window) -Registered signal for owner 6b7a0530: 6b7a0428 -> 6b7a0600 (owner: XWayland Window) -Registered signal for owner 6b7a0530: 6b7a0398 -> 6b7a0668 (owner: XWayland Window) -Window 6b79d440 destroyed, queueing. -Callback 3fc24b10 -> 6b79d440, XWayland Window removed. -Callback 3fc24b10 -> 6b79d440, XWayland Window removed. -Callback 3fc24b10 -> 6b79d440, XWayland Window removed. -Window 6b79c580 destroyed, queueing. -Callback 3fc24b10 -> 6b79c580, XWayland Window removed. -Callback 3fc24b10 -> 6b79c580, XWayland Window removed. -Callback 3fc24b10 -> 6b79c580, XWayland Window removed. -Window 6b79bd60 destroyed, queueing. -Callback 3fc24b10 -> 6b79bd60, XWayland Window removed. -Callback 3fc24b10 -> 6b79bd60, XWayland Window removed. -Callback 3fc24b10 -> 6b79bd60, XWayland Window removed. -Window 6b79b540 destroyed, queueing. -Callback 3fc24b10 -> 6b79b540, XWayland Window removed. -Callback 3fc24b10 -> 6b79b540, XWayland Window removed. -Callback 3fc24b10 -> 6b79b540, XWayland Window removed. -Window 6b79ebb0 destroyed, queueing. -Callback 3fc24b10 -> 6b79ebb0, XWayland Window removed. -CallbacThe XKEYBOARD keymap compiler (xkbcomp) reports: -> Warning: Unsupported maximum keycode 708, clipping. -> X11 cannot support keycodes above 255. -Errors from xkbcomp are not fatal to the X server -k 3fc24b10 -> 6b79ebb0, XWayland Window removed. -Callback 3fc24b10 -> 6b79ebb0, XWayland Window removed. -Window 6b7a0530 destroyed, queueing. -Callback 3fc24b10 -> 6b7a0530, XWayland Window removed. -Callback 3fc24b10 -> 6b7a0530, XWayland Window removed. -Callback 3fc24b10 -> 6b7a0530, XWayland Window removed. -Window 6b79f870 destroyed, queueing. -Callback 3fc24b10 -> 6b79f870, XWayland Window removed. -Callback 3fc24b10 -> 6b79f870, XWayland Window removed. -Callback 3fc24b10 -> 6b79f870, XWayland Window removed. -Window 6b79def0 destroyed, queueing. -Callback 3fc24b10 -> 6b79def0, XWayland Window removed. -Callback 3fc24b10 -> 6b79def0, XWayland Window removed. -Callback 3fc24b10 -> 6b79def0, XWayland Window removed. -Window 6b7710f0 destroyed, queueing. -Callback 3fc24b10 -> 6b7710f0, XWayland Window removed. -Callback 3fc24b10 -> 6b7710f0, XWayland Window removed. -Callback 3fc24b10 -> 6b7710f0, XWayland Window removed. -Window 6b7a8300 destroyed, queueing. -Callback 3fc24b10 -> 6b7a8300, XWayland Window removed. -Callback 3fc24b10 -> 6b7a8300, XWayland Window removed. -Callback 3fc24b10 -> 6b7a8300, XWayland Window removed. -Window 6b79ad20 destroyed, queueing. -Callback 3fc24b10 -> 6b79ad20, XWayland Window removed. -Callback 3fc24b10 -> 6b79ad20, XWayland Window removed. -Callback 3fc24b10 -> 6b79ad20, XWayland Window removed. -Window 6b7a8b20 destroyed, queueing. -Callback 3fc24b10 -> 6b7a8b20, XWayland Window removed. -Callback 3fc24b10 -> 6b7a8b20, XWayland Window removed. -Callback 3fc24b10 -> 6b7a8b20, XWayland Window removed. -Set keyboard focus to surface 6b9abe40, with window name: Steam -OPENINGON: 6b95a420, Workspace: 1, Monitor: 0 -Set keyboard focus to surface 6b976ba0, with window name: -Registered signal for owner 6b87d8f0: 6b976e70 -> 6b87d8f8 (owner: SurfaceTreeNode) -Registered signal for owner 6b87d8f0: 6b976e60 -> 6b87d960 (owner: SurfaceTreeNode) -Registered signal for owner 6b87d8f0: 6b976e80 -> 6b87d9c8 (owner: SurfaceTreeNode) -Creating a surfaceTree Root! (pWindow: 6b98ec20) -Window got assigned a surfaceTreeNode 6b87d8f0 -Registered signal for owner 6b98ec20: 6b98eae8 -> 6b98ee28 (owner: XWayland Window Late) -Registered signal for owner 6b98ec20: 6b98eaf8 -> 6b98f110 (owner: XWayland Window Late) -Registered signal for owner 6b98ec20: 6b98ea98 -> 6b98f178 (owner: XWayland Window Late) -Registered signal for owner 6b98ec20: 6b98eb28 -> 6b98edc0 (owner: XWayland Window Late) -Map request dispatched, monitor DP-3, xywh: 211.000000 140.000000 120.000000 75.000000 -Set keyboard focus to surface 6b9abe40, with window name: Steam -Window 6b98ec20 unmapped -Unregistered late callbacks XWL: 6b98ee28 6b98f110 6b98f178 6b98edc0 -Callback 3fc24a90 -> 6b98ec20, XWayland Window Late removed. -Callback 3fc24a90 -> 6b98ec20, XWayland Window Late removed. -Callback 3fc24a90 -> 6b98ec20, XWayland Window Late removed. -Callback 3fc24a90 -> 6b98ec20, XWayland Window Late removed. -Framebuffer created, status 36053 -Destroying the SubSurface tree of unmapped window 6b98ec20 -Callback 3fc24a20 -> 6b87d8f0, SurfaceTreeNode removed. -Callback 3fc24a20 -> 6b87d8f0, SurfaceTreeNode removed. -Callback 3fc24a20 -> 6b87d8f0, SurfaceTreeNode removed. -SurfaceTree Node removed -Set keyboard focus to surface 6b9aca20, with window name: -Registered signal for owner 6b87d8f0: 6b9accf0 -> 6b87d8f8 (owner: SurfaceTreeNode) -Registered signal for owner 6b87d8f0: 6b9acce0 -> 6b87d960 (owner: SurfaceTreeNode) -Registered signal for owner 6b87d8f0: 6b9acd00 -> 6b87d9c8 (owner: SurfaceTreeNode) -Creating a surfaceTree Root! (pWindow: 6b98ec20) -Window got assigned a surfaceTreeNode 6b87d8f0 -Registered signal for owner 6b98ec20: 6b98eae8 -> 6b98ee28 (owner: XWayland Window Late) -Registered signal for owner 6b98ec20: 6b98eaf8 -> 6b98f110 (owner: XWayland Window Late) -Registered signal for owner 6b98ec20: 6b98ea98 -> 6b98f178 (owner: XWayland Window Late) -Registered signal for owner 6b98ec20: 6b98eb28 -> 6b98edc0 (owner: XWayland Window Late) -Map request dispatched, monitor DP-3, xywh: 187.000000 135.000000 120.000000 75.000000 -Set keyboard focus to surface 6b9abe40, with window name: GameAction [AppID 677620, ActionID 1] : LaunchApp changed task to ProcessingInstallScript with "" -00:00:20.606 [ERROR] [xwayland/xwm.c:1546] xcb error: op ConfigureWindow (no minor), code Value (no extension), sequence 2356, value 0 -GameAction [AppID 677620, ActionID 1] : LaunchApp changed task to SynchronizingCloud with "" -GameAction [AppID 677620, ActionID 1] : LaunchApp changed task to SynchronizingControllerConfig with "" -GameAction [AppID 677620, ActionID 1] : LaunchApp changed task to SiteLicenseSeatCheckout with "" -GameAction [AppID 677620, ActionID 1] : LaunchApp changed task to CreatingProcess with "" -GameAction [AppID 677620, ActionID 1] : LaunchApp waiting for user response to CreatingProcess "" -GameAction [AppID 677620, ActionID 1] : LaunchApp continues with user response "CreatingProcess" -/bin/sh\0-c\0/home/sharkfin/.local/share/Steam/ubuntu12_32/reaper SteamLaunch AppId=677620 -- '/mnt/games/steamLibrary/steamapps/common/Splitgate/PortalWars.sh'\0 -Game process added : AppID 677620 "/home/sharkfin/.local/share/Steam/ubuntu12_32/reaper SteamLaunch AppId=677620 -- '/mnt/games/steamLibrary/steamapps/common/Splitgate/PortalWars.sh'", ProcID 103234, IP 0.0.0.0:0 -ERROR: ld.so: object '/home/sharkfin/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored. -ERROR: ld.so: object '/home/sharkfin/.local/share/Steam/ubuntu12_64/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS64): ignored. -ERROR: ld.so: object '/home/sharkfin/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored. -pid 103237 != 103235, skipping destruction (fork without exec?) -ERROR: ld.so: object '/home/sharkfin/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored. -GameAction [AppID 677620, ActionID 1] : LaunchApp changed task to WaitingGameWindow with "" -GameAction [AppID 677620, ActionID 1] : LaunchApp changed task to Completed with "" -ERROR: ld.so: object '/home/sharkfin/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored. -pid 103236 != 103235, skipping destruction (fork without exec?) -ERROR: ld.so: object '/home/sharkfin/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored. -ERROR: ld.so: object '/home/sharkfin/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored. -ERROR: ld.so: object '/home/sharkfin/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored. -Looking for binary: ../../../PortalWars/Config/BinaryConfig.ini -4.27.2-8813+++PortalWars+Main 522 0 -Disabling core dumps. -LogConsoleResponse: Display: Failed to find resolution value strings in scalability ini. Falling back to default. -LogConsoleResponse: Display: Failed to find resolution value strings in scalability ini. Falling back to default. -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/global.utoc -LogIoDispatcher: Display: Mounting container 'global' in location slot 0 -LogPakFile: Display: Initialized I/O dispatcher -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk66_s4-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk66_s4-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk66_s4-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk66_s4-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk66_s4-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk66_s4-LinuxNoEditor.pak' (chunk index 66, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:66 Root:/ File:../../../PortalWars/Content/Paks/pakchunk66_s4-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000006 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk66_s3-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk66_s3-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk66_s3-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk66_s3-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk66_s3-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk66_s3-LinuxNoEditor.pak' (chunk index 66, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:66 Root:/ File:../../../PortalWars/Content/Paks/pakchunk66_s3-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000003 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk66_s2-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk66_s2-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk66_s2-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk66_s2-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk66_s2-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk66_s2-LinuxNoEditor.pak' (chunk index 66, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:66 Root:/ File:../../../PortalWars/Content/Paks/pakchunk66_s2-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk66_s1-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk66_s1-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk66_s1-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk66_s1-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk66_s1-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk66_s1-LinuxNoEditor.pak' (chunk index 66, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:66 Root:/ File:../../../PortalWars/Content/Paks/pakchunk66_s1-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000003 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk66-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk66-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk66-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk66-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk66-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk66-LinuxNoEditor.pak' (chunk index 66, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:66 Root:/ File:../../../PortalWars/Content/Paks/pakchunk66-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000003 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk65_s4-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk65_s4-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk65_s4-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk65_s4-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk65_s4-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk65_s4-LinuxNoEditor.pak' (chunk index 65, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:65 Root:/ File:../../../PortalWars/Content/Paks/pakchunk65_s4-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk65_s3-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk65_s3-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk65_s3-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk65_s3-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk65_s3-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk65_s3-LinuxNoEditor.pak' (chunk index 65, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:65 Root:/ File:../../../PortalWars/Content/Paks/pakchunk65_s3-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk65_s2-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk65_s2-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk65_s2-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk65_s2-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk65_s2-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk65_s2-LinuxNoEditor.pak' (chunk index 65, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:65 Root:/ File:../../../PortalWars/Content/Paks/pakchunk65_s2-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk65_s1-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk65_s1-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk65_s1-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk65_s1-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk65_s1-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk65_s1-LinuxNoEditor.pak' (chunk index 65, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:65 Root:/ File:../../../PortalWars/Content/Paks/pakchunk65_s1-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk65-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk65-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk65-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk65-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk65-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk65-LinuxNoEditor.pak' (chunk index 65, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:65 Root:/ File:../../../PortalWars/Content/Paks/pakchunk65-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk64_s4-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk64_s4-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk64_s4-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk64_s4-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk64_s4-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk64_s4-LinuxNoEditor.pak' (chunk index 64, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:64 Root:/ File:../../../PortalWars/Content/Paks/pakchunk64_s4-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000003 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk64_s3-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk64_s3-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk64_s3-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk64_s3-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk64_s3-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk64_s3-LinuxNoEditor.pak' (chunk index 64, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:64 Root:/ File:../../../PortalWars/Content/Paks/pakchunk64_s3-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk64_s2-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk64_s2-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk64_s2-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk64_s2-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk64_s2-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk64_s2-LinuxNoEditor.pak' (chunk index 64, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:64 Root:/ File:../../../PortalWars/Content/Paks/pakchunk64_s2-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk64_s1-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk64_s1-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk64_s1-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk64_s1-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk64_s1-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk64_s1-LinuxNoEditor.pak' (chunk index 64, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:64 Root:/ File:../../../PortalWars/Content/Paks/pakchunk64_s1-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk64-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk64-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk64-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk64-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk64-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk64-LinuxNoEditor.pak' (chunk index 64, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:64 Root:/ File:../../../PortalWars/Content/Paks/pakchunk64-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk63_s2-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk63_s2-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk63_s2-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk63_s2-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk63_s2-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk63_s2-LinuxNoEditor.pak' (chunk index 63, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:63 Root:/ File:../../../PortalWars/Content/Paks/pakchunk63_s2-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk63_s1-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk63_s1-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk63_s1-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk63_s1-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk63_s1-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk63_s1-LinuxNoEditor.pak' (chunk index 63, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:63 Root:/ File:../../../PortalWars/Content/Paks/pakchunk63_s1-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk63-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk63-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk63-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk63-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk63-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk63-LinuxNoEditor.pak' (chunk index 63, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:63 Root:/ File:../../../PortalWars/Content/Paks/pakchunk63-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000007 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk62_s4-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk62_s4-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk62_s4-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk62_s4-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk62_s4-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk62_s4-LinuxNoEditor.pak' (chunk index 62, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:62 Root:/ File:../../../PortalWars/Content/Paks/pakchunk62_s4-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000003 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk62_s3-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk62_s3-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk62_s3-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk62_s3-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk62_s3-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk62_s3-LinuxNoEditor.pak' (chunk index 62, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:62 Root:/ File:../../../PortalWars/Content/Paks/pakchunk62_s3-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk62_s2-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk62_s2-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk62_s2-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk62_s2-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk62_s2-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk62_s2-LinuxNoEditor.pak' (chunk index 62, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:62 Root:/ File:../../../PortalWars/Content/Paks/pakchunk62_s2-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk62_s1-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk62_s1-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk62_s1-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk62_s1-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk62_s1-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk62_s1-LinuxNoEditor.pak' (chunk index 62, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:62 Root:/ File:../../../PortalWars/Content/Paks/pakchunk62_s1-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk62-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk62-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk62-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk62-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk62-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk62-LinuxNoEditor.pak' (chunk index 62, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:62 Root:/ File:../../../PortalWars/Content/Paks/pakchunk62-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk61_s3-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk61_s3-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk61_s3-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk61_s3-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk61_s3-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk61_s3-LinuxNoEditor.pak' (chunk index 61, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:61 Root:/ File:../../../PortalWars/Content/Paks/pakchunk61_s3-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk61_s2-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk61_s2-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk61_s2-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk61_s2-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk61_s2-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk61_s2-LinuxNoEditor.pak' (chunk index 61, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:61 Root:/ File:../../../PortalWars/Content/Paks/pakchunk61_s2-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000003 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk61_s1-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk61_s1-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk61_s1-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk61_s1-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk61_s1-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk61_s1-LinuxNoEditor.pak' (chunk index 61, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:61 Root:/ File:../../../PortalWars/Content/Paks/pakchunk61_s1-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk61-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk61-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk61-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk61-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk61-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk61-LinuxNoEditor.pak' (chunk index 61, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:61 Root:/ File:../../../PortalWars/Content/Paks/pakchunk61-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk60_s3-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk60_s3-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk60_s3-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk60_s3-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk60_s3-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk60_s3-LinuxNoEditor.pak' (chunk index 60, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:60 Root:/ File:../../../PortalWars/Content/Paks/pakchunk60_s3-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk60_s2-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk60_s2-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk60_s2-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk60_s2-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk60_s2-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk60_s2-LinuxNoEditor.pak' (chunk index 60, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:60 Root:/ File:../../../PortalWars/Content/Paks/pakchunk60_s2-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000003 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk60_s1-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk60_s1-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk60_s1-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk60_s1-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk60_s1-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk60_s1-LinuxNoEditor.pak' (chunk index 60, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:60 Root:/ File:../../../PortalWars/Content/Paks/pakchunk60_s1-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk60-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk60-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk60-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk60-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk60-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk60-LinuxNoEditor.pak' (chunk index 60, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:60 Root:/ File:../../../PortalWars/Content/Paks/pakchunk60-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk59_s3-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk59_s3-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk59_s3-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk59_s3-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk59_s3-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk59_s3-LinuxNoEditor.pak' (chunk index 59, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:59 Root:/ File:../../../PortalWars/Content/Paks/pakchunk59_s3-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk59_s2-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk59_s2-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk59_s2-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk59_s2-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk59_s2-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk59_s2-LinuxNoEditor.pak' (chunk index 59, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:59 Root:/ File:../../../PortalWars/Content/Paks/pakchunk59_s2-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk59_s1-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk59_s1-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk59_s1-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk59_s1-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk59_s1-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk59_s1-LinuxNoEditor.pak' (chunk index 59, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:59 Root:/ File:../../../PortalWars/Content/Paks/pakchunk59_s1-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk59-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk59-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk59-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk59-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk59-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk59-LinuxNoEditor.pak' (chunk index 59, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:59 Root:/ File:../../../PortalWars/Content/Paks/pakchunk59-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk58_s2-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk58_s2-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk58_s2-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk58_s2-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk58_s2-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk58_s2-LinuxNoEditor.pak' (chunk index 58, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:58 Root:/ File:../../../PortalWars/Content/Paks/pakchunk58_s2-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk58_s1-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk58_s1-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk58_s1-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk58_s1-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk58_s1-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk58_s1-LinuxNoEditor.pak' (chunk index 58, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:58 Root:/ File:../../../PortalWars/Content/Paks/pakchunk58_s1-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk58-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk58-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk58-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk58-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk58-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk58-LinuxNoEditor.pak' (chunk index 58, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:58 Root:/ File:../../../PortalWars/Content/Paks/pakchunk58-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk57_s2-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk57_s2-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk57_s2-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk57_s2-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk57_s2-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk57_s2-LinuxNoEditor.pak' (chunk index 57, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:57 Root:/ File:../../../PortalWars/Content/Paks/pakchunk57_s2-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk57_s1-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk57_s1-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk57_s1-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk57_s1-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk57_s1-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk57_s1-LinuxNoEditor.pak' (chunk index 57, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:57 Root:/ File:../../../PortalWars/Content/Paks/pakchunk57_s1-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000003 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk57-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk57-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk57-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk57-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk57-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk57-LinuxNoEditor.pak' (chunk index 57, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:57 Root:/ File:../../../PortalWars/Content/Paks/pakchunk57-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk56_s3-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk56_s3-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk56_s3-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk56_s3-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk56_s3-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk56_s3-LinuxNoEditor.pak' (chunk index 56, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:56 Root:/ File:../../../PortalWars/Content/Paks/pakchunk56_s3-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk56_s2-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk56_s2-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk56_s2-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk56_s2-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk56_s2-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk56_s2-LinuxNoEditor.pak' (chunk index 56, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:56 Root:/ File:../../../PortalWars/Content/Paks/pakchunk56_s2-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk56_s1-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk56_s1-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk56_s1-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk56_s1-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk56_s1-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk56_s1-LinuxNoEditor.pak' (chunk index 56, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:56 Root:/ File:../../../PortalWars/Content/Paks/pakchunk56_s1-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk56-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk56-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk56-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk56-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk56-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk56-LinuxNoEditor.pak' (chunk index 56, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:56 Root:/ File:../../../PortalWars/Content/Paks/pakchunk56-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk55_s3-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk55_s3-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk55_s3-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk55_s3-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk55_s3-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk55_s3-LinuxNoEditor.pak' (chunk index 55, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:55 Root:/ File:../../../PortalWars/Content/Paks/pakchunk55_s3-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000003 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk55_s2-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk55_s2-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk55_s2-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk55_s2-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk55_s2-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk55_s2-LinuxNoEditor.pak' (chunk index 55, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:55 Root:/ File:../../../PortalWars/Content/Paks/pakchunk55_s2-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000003 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk55_s1-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk55_s1-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk55_s1-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk55_s1-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk55_s1-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk55_s1-LinuxNoEditor.pak' (chunk index 55, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:55 Root:/ File:../../../PortalWars/Content/Paks/pakchunk55_s1-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk55-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk55-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk55-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk55-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk55-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk55-LinuxNoEditor.pak' (chunk index 55, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:55 Root:/ File:../../../PortalWars/Content/Paks/pakchunk55-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk54_s3-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk54_s3-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk54_s3-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk54_s3-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk54_s3-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk54_s3-LinuxNoEditor.pak' (chunk index 54, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:54 Root:/ File:../../../PortalWars/Content/Paks/pakchunk54_s3-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000017 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk54_s2-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk54_s2-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk54_s2-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk54_s2-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk54_s2-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk54_s2-LinuxNoEditor.pak' (chunk index 54, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:54 Root:/ File:../../../PortalWars/Content/Paks/pakchunk54_s2-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk54_s1-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk54_s1-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk54_s1-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk54_s1-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk54_s1-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk54_s1-LinuxNoEditor.pak' (chunk index 54, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:54 Root:/ File:../../../PortalWars/Content/Paks/pakchunk54_s1-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000003 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk54-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk54-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk54-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk54-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk54-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk54-LinuxNoEditor.pak' (chunk index 54, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:54 Root:/ File:../../../PortalWars/Content/Paks/pakchunk54-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk53_s2-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk53_s2-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk53_s2-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk53_s2-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk53_s2-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk53_s2-LinuxNoEditor.pak' (chunk index 53, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:53 Root:/ File:../../../PortalWars/Content/Paks/pakchunk53_s2-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk53_s1-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk53_s1-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk53_s1-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk53_s1-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk53_s1-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk53_s1-LinuxNoEditor.pak' (chunk index 53, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:53 Root:/ File:../../../PortalWars/Content/Paks/pakchunk53_s1-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000003 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk53-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk53-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk53-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk53-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk53-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk53-LinuxNoEditor.pak' (chunk index 53, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:53 Root:/ File:../../../PortalWars/Content/Paks/pakchunk53-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk52_s2-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk52_s2-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk52_s2-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk52_s2-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk52_s2-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk52_s2-LinuxNoEditor.pak' (chunk index 52, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:52 Root:/ File:../../../PortalWars/Content/Paks/pakchunk52_s2-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000003 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk52_s1-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk52_s1-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk52_s1-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk52_s1-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk52_s1-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk52_s1-LinuxNoEditor.pak' (chunk index 52, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:52 Root:/ File:../../../PortalWars/Content/Paks/pakchunk52_s1-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk52-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk52-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk52-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk52-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk52-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk52-LinuxNoEditor.pak' (chunk index 52, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:52 Root:/ File:../../../PortalWars/Content/Paks/pakchunk52-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk51_s1-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk51_s1-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk51_s1-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk51_s1-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk51_s1-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk51_s1-LinuxNoEditor.pak' (chunk index 51, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:51 Root:/ File:../../../PortalWars/Content/Paks/pakchunk51_s1-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk51-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk51-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk51-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk51-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk51-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk51-LinuxNoEditor.pak' (chunk index 51, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:51 Root:/ File:../../../PortalWars/Content/Paks/pakchunk51-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk50-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk50-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk50-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk50-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk50-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk50-LinuxNoEditor.pak' (chunk index 50, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:50 Root:/ File:../../../PortalWars/Content/Paks/pakchunk50-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk42_s1-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk42_s1-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk42_s1-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk42_s1-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk42_s1-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk42_s1-LinuxNoEditor.pak' (chunk index 42, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:42 Root:/ File:../../../PortalWars/Content/Paks/pakchunk42_s1-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk42-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk42-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk42-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk42-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk42-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk42-LinuxNoEditor.pak' (chunk index 42, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:42 Root:/ File:../../../PortalWars/Content/Paks/pakchunk42-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk41-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk41-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk41-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk41-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk41-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk41-LinuxNoEditor.pak' (chunk index 41, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:41 Root:/ File:../../../PortalWars/Content/Paks/pakchunk41-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000003 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk40_s2-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk40_s2-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk40_s2-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk40_s2-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk40_s2-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk40_s2-LinuxNoEditor.pak' (chunk index 40, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:40 Root:/ File:../../../PortalWars/Content/Paks/pakchunk40_s2-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000003 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk40_s1-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk40_s1-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk40_s1-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk40_s1-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk40_s1-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk40_s1-LinuxNoEditor.pak' (chunk index 40, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:40 Root:/ File:../../../PortalWars/Content/Paks/pakchunk40_s1-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk40-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk40-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk40-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk40-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk40-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk40-LinuxNoEditor.pak' (chunk index 40, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:40 Root:/ File:../../../PortalWars/Content/Paks/pakchunk40-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk35-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk35-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk35-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk35-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk35-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk35-LinuxNoEditor.pak' (chunk index 35, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:35 Root:/ File:../../../PortalWars/Content/Paks/pakchunk35-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk3-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk3-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=8624 -LogPakFile: PakFile PathHashIndexSize=3392 -LogPakFile: PakFile FullDirectoryIndexSize=6592 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk3-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk3-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk3-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk3-LinuxNoEditor.pak' (chunk index 3, root '../../../PortalWars/Content/WwiseAudio/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:3 Root:../../../PortalWars/Content/WwiseAudio/ File:../../../PortalWars/Content/Paks/pakchunk3-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000003 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk28-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk28-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk28-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk28-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk28-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk28-LinuxNoEditor.pak' (chunk index 28, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:28 Root:/ File:../../../PortalWars/Content/Paks/pakchunk28-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk27-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk27-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk27-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk27-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk27-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk27-LinuxNoEditor.pak' (chunk index 27, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:27 Root:/ File:../../../PortalWars/Content/Paks/pakchunk27-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s9-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s9-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s9-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk26_s9-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s9-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s9-LinuxNoEditor.pak' (chunk index 26, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s9-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s8-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s8-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s8-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk26_s8-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s8-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s8-LinuxNoEditor.pak' (chunk index 26, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s8-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000003 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s7-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s7-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s7-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk26_s7-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s7-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s7-LinuxNoEditor.pak' (chunk index 26, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s7-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s6-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s6-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s6-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk26_s6-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s6-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s6-LinuxNoEditor.pak' (chunk index 26, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s6-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s5-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s5-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s5-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk26_s5-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s5-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s5-LinuxNoEditor.pak' (chunk index 26, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s5-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000003 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s4-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s4-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s4-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk26_s4-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s4-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s4-LinuxNoEditor.pak' (chunk index 26, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s4-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000003 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s39-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s39-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s39-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk26_s39-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s39-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s39-LinuxNoEditor.pak' (chunk index 26, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s39-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s38-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s38-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s38-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk26_s38-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s38-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s38-LinuxNoEditor.pak' (chunk index 26, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s38-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s37-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s37-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s37-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk26_s37-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s37-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s37-LinuxNoEditor.pak' (chunk index 26, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s37-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s36-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s36-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s36-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk26_s36-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s36-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s36-LinuxNoEditor.pak' (chunk index 26, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s36-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000003 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s35-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s35-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s35-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk26_s35-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s35-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s35-LinuxNoEditor.pak' (chunk index 26, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s35-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s34-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s34-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s34-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk26_s34-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s34-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s34-LinuxNoEditor.pak' (chunk index 26, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s34-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000003 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s33-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s33-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s33-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk26_s33-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s33-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s33-LinuxNoEditor.pak' (chunk index 26, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s33-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s32-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s32-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s32-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk26_s32-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s32-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s32-LinuxNoEditor.pak' (chunk index 26, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s32-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s31-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s31-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s31-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk26_s31-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s31-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s31-LinuxNoEditor.pak' (chunk index 26, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s31-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s30-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s30-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s30-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk26_s30-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s30-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s30-LinuxNoEditor.pak' (chunk index 26, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s30-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s3-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s3-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s3-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk26_s3-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s3-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s3-LinuxNoEditor.pak' (chunk index 26, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s3-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s29-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s29-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s29-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk26_s29-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s29-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s29-LinuxNoEditor.pak' (chunk index 26, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s29-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s28-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s28-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s28-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk26_s28-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s28-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s28-LinuxNoEditor.pak' (chunk index 26, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s28-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000003 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s27-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s27-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s27-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk26_s27-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s27-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s27-LinuxNoEditor.pak' (chunk index 26, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s27-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000004 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s26-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s26-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s26-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk26_s26-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s26-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s26-LinuxNoEditor.pak' (chunk index 26, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s26-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s25-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s25-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s25-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk26_s25-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s25-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s25-LinuxNoEditor.pak' (chunk index 26, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s25-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s24-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s24-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s24-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk26_s24-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s24-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s24-LinuxNoEditor.pak' (chunk index 26, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s24-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s23-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s23-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s23-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk26_s23-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s23-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s23-LinuxNoEditor.pak' (chunk index 26, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s23-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s22-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s22-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s22-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk26_s22-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s22-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s22-LinuxNoEditor.pak' (chunk index 26, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s22-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s21-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s21-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s21-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk26_s21-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s21-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s21-LinuxNoEditor.pak' (chunk index 26, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s21-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s20-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s20-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s20-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk26_s20-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s20-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s20-LinuxNoEditor.pak' (chunk index 26, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s20-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s2-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s2-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s2-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk26_s2-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s2-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s2-LinuxNoEditor.pak' (chunk index 26, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s2-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s19-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s19-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s19-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk26_s19-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s19-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s19-LinuxNoEditor.pak' (chunk index 26, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s19-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s18-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s18-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s18-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk26_s18-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s18-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s18-LinuxNoEditor.pak' (chunk index 26, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s18-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s17-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s17-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s17-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk26_s17-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s17-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s17-LinuxNoEditor.pak' (chunk index 26, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s17-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s16-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s16-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s16-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk26_s16-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s16-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s16-LinuxNoEditor.pak' (chunk index 26, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s16-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s15-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s15-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s15-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk26_s15-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s15-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s15-LinuxNoEditor.pak' (chunk index 26, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s15-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s14-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s14-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s14-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk26_s14-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s14-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s14-LinuxNoEditor.pak' (chunk index 26, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s14-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s13-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s13-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s13-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk26_s13-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s13-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s13-LinuxNoEditor.pak' (chunk index 26, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s13-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000003 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s12-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s12-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s12-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk26_s12-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s12-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s12-LinuxNoEditor.pak' (chunk index 26, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s12-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s11-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s11-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s11-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk26_s11-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s11-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s11-LinuxNoEditor.pak' (chunk index 26, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s11-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000003 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26_s10-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26_s10-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26_s10-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk26_s10-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26_s10-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26_s10-LinuxNoEditor.pak' (chunk index 26, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26_s10-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000004 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk26-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk26-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk26-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk26-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk26-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk26-LinuxNoEditor.pak' (chunk index 26, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:26 Root:/ File:../../../PortalWars/Content/Paks/pakchunk26-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk25optional-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk25optional-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk25optional-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk25optional-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk25optional-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk25optional-LinuxNoEditor.pak' (chunk index 25, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:25 Root:/ File:../../../PortalWars/Content/Paks/pakchunk25optional-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk25_s2-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk25_s2-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk25_s2-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk25_s2-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk25_s2-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk25_s2-LinuxNoEditor.pak' (chunk index 25, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:25 Root:/ File:../../../PortalWars/Content/Paks/pakchunk25_s2-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk25_s1-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk25_s1-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=736 -LogPakFile: PakFile PathHashIndexSize=368 -LogPakFile: PakFile FullDirectoryIndexSize=1184 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk25_s1-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk25_s1-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk25_s1-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk25_s1-LinuxNoEditor.pak' (chunk index 25, root '../../../PortalWars/Content/UI/Fonts/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:25 Root:../../../PortalWars/Content/UI/Fonts/ File:../../../PortalWars/Content/Paks/pakchunk25_s1-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000039 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk25-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk25-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk25-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk25-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk25-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk25-LinuxNoEditor.pak' (chunk index 25, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:25 Root:/ File:../../../PortalWars/Content/Paks/pakchunk25-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk20_s3-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk20_s3-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk20_s3-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk20_s3-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk20_s3-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk20_s3-LinuxNoEditor.pak' (chunk index 20, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:20 Root:/ File:../../../PortalWars/Content/Paks/pakchunk20_s3-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000003 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk20_s2-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk20_s2-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk20_s2-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk20_s2-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk20_s2-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk20_s2-LinuxNoEditor.pak' (chunk index 20, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:20 Root:/ File:../../../PortalWars/Content/Paks/pakchunk20_s2-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000004 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk20_s1-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk20_s1-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk20_s1-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk20_s1-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk20_s1-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk20_s1-LinuxNoEditor.pak' (chunk index 20, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:20 Root:/ File:../../../PortalWars/Content/Paks/pakchunk20_s1-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk20-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk20-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk20-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk20-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk20-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk20-LinuxNoEditor.pak' (chunk index 20, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:20 Root:/ File:../../../PortalWars/Content/Paks/pakchunk20-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk2-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk2-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=464 -LogPakFile: PakFile PathHashIndexSize=736 -LogPakFile: PakFile FullDirectoryIndexSize=528 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk2-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk2-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk2-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk2-LinuxNoEditor.pak' (chunk index 2, root '../../../PortalWars/Content/Localization/Game/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:2 Root:../../../PortalWars/Content/Localization/Game/ File:../../../PortalWars/Content/Paks/pakchunk2-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000003 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk18-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk18-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=496 -LogPakFile: PakFile PathHashIndexSize=224 -LogPakFile: PakFile FullDirectoryIndexSize=624 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk18-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk18-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk18-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk18-LinuxNoEditor.pak' (chunk index 18, root '../../../PortalWars/Content/UI/Fonts/Montserrat/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:18 Root:../../../PortalWars/Content/UI/Fonts/Montserrat/ File:../../../PortalWars/Content/Paks/pakchunk18-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk17_s9-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk17_s9-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk17_s9-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk17_s9-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk17_s9-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk17_s9-LinuxNoEditor.pak' (chunk index 17, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:17 Root:/ File:../../../PortalWars/Content/Paks/pakchunk17_s9-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk17_s8-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk17_s8-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk17_s8-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk17_s8-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk17_s8-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk17_s8-LinuxNoEditor.pak' (chunk index 17, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:17 Root:/ File:../../../PortalWars/Content/Paks/pakchunk17_s8-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk17_s7-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk17_s7-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk17_s7-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk17_s7-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk17_s7-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk17_s7-LinuxNoEditor.pak' (chunk index 17, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:17 Root:/ File:../../../PortalWars/Content/Paks/pakchunk17_s7-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk17_s6-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk17_s6-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk17_s6-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk17_s6-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk17_s6-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk17_s6-LinuxNoEditor.pak' (chunk index 17, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:17 Root:/ File:../../../PortalWars/Content/Paks/pakchunk17_s6-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk17_s5-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk17_s5-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk17_s5-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk17_s5-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk17_s5-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk17_s5-LinuxNoEditor.pak' (chunk index 17, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:17 Root:/ File:../../../PortalWars/Content/Paks/pakchunk17_s5-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk17_s4-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk17_s4-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk17_s4-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk17_s4-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk17_s4-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk17_s4-LinuxNoEditor.pak' (chunk index 17, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:17 Root:/ File:../../../PortalWars/Content/Paks/pakchunk17_s4-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk17_s3-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk17_s3-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk17_s3-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk17_s3-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk17_s3-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk17_s3-LinuxNoEditor.pak' (chunk index 17, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:17 Root:/ File:../../../PortalWars/Content/Paks/pakchunk17_s3-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk17_s2-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk17_s2-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk17_s2-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk17_s2-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk17_s2-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk17_s2-LinuxNoEditor.pak' (chunk index 17, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:17 Root:/ File:../../../PortalWars/Content/Paks/pakchunk17_s2-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk17_s1-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk17_s1-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk17_s1-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk17_s1-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk17_s1-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk17_s1-LinuxNoEditor.pak' (chunk index 17, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:17 Root:/ File:../../../PortalWars/Content/Paks/pakchunk17_s1-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000003 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk17-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk17-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk17-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk17-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk17-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk17-LinuxNoEditor.pak' (chunk index 17, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:17 Root:/ File:../../../PortalWars/Content/Paks/pakchunk17-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s9-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s9-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s9-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk16_s9-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s9-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s9-LinuxNoEditor.pak' (chunk index 16, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s9-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s8-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s8-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s8-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk16_s8-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s8-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s8-LinuxNoEditor.pak' (chunk index 16, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s8-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s7-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s7-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s7-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk16_s7-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s7-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s7-LinuxNoEditor.pak' (chunk index 16, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s7-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s6-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s6-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s6-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk16_s6-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s6-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s6-LinuxNoEditor.pak' (chunk index 16, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s6-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s5-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s5-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s5-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk16_s5-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s5-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s5-LinuxNoEditor.pak' (chunk index 16, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s5-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s4-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s4-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s4-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk16_s4-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s4-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s4-LinuxNoEditor.pak' (chunk index 16, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s4-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000003 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s33-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s33-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s33-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk16_s33-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s33-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s33-LinuxNoEditor.pak' (chunk index 16, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s33-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s32-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s32-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s32-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk16_s32-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s32-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s32-LinuxNoEditor.pak' (chunk index 16, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s32-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s31-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s31-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s31-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk16_s31-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s31-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s31-LinuxNoEditor.pak' (chunk index 16, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s31-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000003 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s30optional-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s30optional-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s30optional-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk16_s30optional-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s30optional-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s30optional-LinuxNoEditor.pak' (chunk index 16, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s30optional-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s30-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s30-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s30-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk16_s30-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s30-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s30-LinuxNoEditor.pak' (chunk index 16, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s30-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s3-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s3-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s3-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk16_s3-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s3-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s3-LinuxNoEditor.pak' (chunk index 16, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s3-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000003 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s29-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s29-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s29-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk16_s29-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s29-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s29-LinuxNoEditor.pak' (chunk index 16, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s29-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s28-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s28-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s28-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk16_s28-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s28-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s28-LinuxNoEditor.pak' (chunk index 16, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s28-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s27-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s27-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s27-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk16_s27-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s27-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s27-LinuxNoEditor.pak' (chunk index 16, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s27-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s26-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s26-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s26-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk16_s26-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s26-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s26-LinuxNoEditor.pak' (chunk index 16, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s26-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s25-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s25-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s25-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk16_s25-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s25-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s25-LinuxNoEditor.pak' (chunk index 16, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s25-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000004 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s24-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s24-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s24-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk16_s24-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s24-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s24-LinuxNoEditor.pak' (chunk index 16, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s24-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s23-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s23-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s23-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk16_s23-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s23-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s23-LinuxNoEditor.pak' (chunk index 16, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s23-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s22-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s22-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s22-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk16_s22-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s22-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s22-LinuxNoEditor.pak' (chunk index 16, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s22-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s21-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s21-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s21-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk16_s21-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s21-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s21-LinuxNoEditor.pak' (chunk index 16, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s21-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000003 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s20-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s20-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s20-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk16_s20-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s20-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s20-LinuxNoEditor.pak' (chunk index 16, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s20-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s2-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s2-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s2-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk16_s2-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s2-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s2-LinuxNoEditor.pak' (chunk index 16, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s2-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s19-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s19-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s19-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk16_s19-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s19-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s19-LinuxNoEditor.pak' (chunk index 16, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s19-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s18-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s18-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s18-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk16_s18-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s18-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s18-LinuxNoEditor.pak' (chunk index 16, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s18-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000003 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s17-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s17-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s17-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk16_s17-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s17-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s17-LinuxNoEditor.pak' (chunk index 16, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s17-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s16-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s16-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s16-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk16_s16-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s16-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s16-LinuxNoEditor.pak' (chunk index 16, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s16-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000008 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s15-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s15-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s15-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk16_s15-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s15-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s15-LinuxNoEditor.pak' (chunk index 16, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s15-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s14-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s14-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s14-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk16_s14-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s14-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s14-LinuxNoEditor.pak' (chunk index 16, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s14-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s13-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s13-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s13-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk16_s13-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s13-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s13-LinuxNoEditor.pak' (chunk index 16, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s13-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s12-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s12-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s12-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk16_s12-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s12-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s12-LinuxNoEditor.pak' (chunk index 16, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s12-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000003 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s11-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s11-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s11-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk16_s11-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s11-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s11-LinuxNoEditor.pak' (chunk index 16, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s11-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s10-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s10-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s10-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk16_s10-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s10-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s10-LinuxNoEditor.pak' (chunk index 16, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s10-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16_s1-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16_s1-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16_s1-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk16_s1-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16_s1-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16_s1-LinuxNoEditor.pak' (chunk index 16, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16_s1-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk16-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk16-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk16-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk16-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk16-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk16-LinuxNoEditor.pak' (chunk index 16, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:16 Root:/ File:../../../PortalWars/Content/Paks/pakchunk16-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk15_s1-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk15_s1-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk15_s1-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk15_s1-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk15_s1-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk15_s1-LinuxNoEditor.pak' (chunk index 15, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:15 Root:/ File:../../../PortalWars/Content/Paks/pakchunk15_s1-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk15-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk15-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk15-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk15-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk15-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk15-LinuxNoEditor.pak' (chunk index 15, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:15 Root:/ File:../../../PortalWars/Content/Paks/pakchunk15-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk10-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk10-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk10-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk10-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk10-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk10-LinuxNoEditor.pak' (chunk index 10, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:10 Root:/ File:../../../PortalWars/Content/Paks/pakchunk10-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000003 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk1-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk1-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=160 -LogPakFile: PakFile PathHashIndexSize=64 -LogPakFile: PakFile FullDirectoryIndexSize=48 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk1-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk1-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk1-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk1-LinuxNoEditor.pak' (chunk index 1, root '../../../PortalWars/Config/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:1 Root:../../../PortalWars/Config/ File:../../../PortalWars/Content/Paks/pakchunk1-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000003 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk0_s3-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk0_s3-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk0_s3-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk0_s3-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk0_s3-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk0_s3-LinuxNoEditor.pak' (chunk index 0, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:0 Root:/ File:../../../PortalWars/Content/Paks/pakchunk0_s3-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk0_s2-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk0_s2-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk0_s2-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk0_s2-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk0_s2-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile ERROR: ld.so: object '/home/sharkfin/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored. -ERROR: ld.so: object '/home/sharkfin/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored. -'../../../PortalWars/Content/Paks/pakchunk0_s2-LinuxNoEditor.pak' (chunk index 0, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:0 Root:/ File:../../../PortalWars/Content/Paks/pakchunk0_s2-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000003 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk0_s1-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk0_s1-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=112 -LogPakFile: PakFile PathHashIndexSize=16 -LogPakFile: PakFile FullDirectoryIndexSize=16 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk0_s1-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk0_s1-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk0_s1-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk0_s1-LinuxNoEditor.pak' (chunk index 0, root '/') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:0 Root:/ File:../../../PortalWars/Content/Paks/pakchunk0_s1-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000002 -LogPakFile: Display: Found Pak file ../../../PortalWars/Content/Paks/pakchunk0-LinuxNoEditor.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../PortalWars/Content/Paks/pakchunk0-LinuxNoEditor.pak. -LogPakFile: PakFile PrimaryIndexSize=57968 -LogPakFile: PakFile PathHashIndexSize=124544 -LogPakFile: PakFile FullDirectoryIndexSize=87552 -LogIoDispatcher: Display: Reading toc: ../../../PortalWars/Content/Paks/pakchunk0-LinuxNoEditor.utoc -LogIoDispatcher: Display: Mounting container 'pakchunk0-LinuxNoEditor' in location slot 0 -LogPakFile: Display: Mounted IoStore environment "../../../PortalWars/Content/Paks/pakchunk0-LinuxNoEditor" -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../PortalWars/Content/Paks/pakchunk0-LinuxNoEditor.pak' (chunk index 0, root '../../../') mounted -LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:0 Root:../../../ File:../../../PortalWars/Content/Paks/pakchunk0-LinuxNoEditor.pak) -LogPakFile: OnPakFileMounted2Time == 0.000003 -LogPlatformFile: Using cached read wrapper -LogTaskGraph: Started task graph with 4 named threads and 16 total threads with 3 sets of task threads. -LogICUInternationalization: ICU TimeZone Detection - Raw Offset: -5:00, Platform Override: '' -LogInit: Display: Loading text-based GConfig.... -LogPluginManager: Mounting plugin OnlineSubsystemSteam -LogPluginManager: Mounting plugin OnlineSubsystem -LogPluginManager: Mounting plugin OnlineSubsystemUtils -LogPluginManager: Mounting plugin SteamShared -LogPluginManager: Mounting plugin WindowsMoviePlayer -LogPluginManager: Mounting plugin OWGameEvents -LogPluginManager: Mounting plugin VivoxCore -LogPluginManager: Mounting plugin NVIDIAGfeSDK -LogPluginManager: Mounting plugin ElectronicNodes -LogPluginManager: Mounting plugin DTLSHandlerComponent -LogPluginManager: Mounting plugin ElectraPlayer -LogPluginManager: Mounting plugin ElectraUtil -LogPluginManager: Mounting plugin ElectraCDM -LogPluginManager: Mounting plugin AccelByteUe4Sdk -LogPluginManager: Mounting plugin AccelByteCustomization -LogPluginManager: Mounting plugin OnlineSubsystemAccelByte -LogPluginManager: Mounting plugin AccelByteNetworkUtilities -LogPluginManager: Mounting plugin Reflex -LogPluginManager: Mounting plugin Niagara -LogPluginManager: Mounting plugin PythonScriptPlugin -LogPluginManager: Mounting plugin Ansel -LogPluginManager: Mounting plugin EditorScriptingUtilities -LogPluginManager: Mounting plugin MDFastBinding -LogPluginManager: Mounting plugin NiagaraUIRenderer -LogPluginManager: Mounting plugin Landmass -LogPluginManager: Mounting plugin Water -LogPluginManager: Mounting plugin GeometryProcessing -LogPluginManager: Mounting plugin BlueprintMaterialTextureNodes -LogPluginManager: Mounting plugin SunPosition -LogPluginManager: Mounting plugin Volumetrics -LogPluginManager: Mounting plugin CommonLoadingScreen -LogPluginManager: Mounting plugin MovieRenderPipeline -LogPluginManager: Mounting plugin ActorLayerUtilities -LogPluginManager: Mounting plugin LevelSequenceEditor -LogPluginManager: Mounting plugin OpenColorIO -LogPluginManager: Mounting plugin SequencerScripting -LogPluginManager: Mounting plugin TemplateSequence -LogPluginManager: Mounting plugin DiscordRpc -LogPluginManager: Mounting plugin EQU8 -LogPluginManager: Mounting plugin Nexus -LogPluginManager: Mounting plugin Wwise -LogPluginManager: Mounting plugin AISupport -LogPluginManager: Mounting plugin EnvironmentQueryEditor -LogPluginManager: Mounting plugin LightPropagationVolume -LogPluginManager: Mounting plugin CameraShakePreviewer -LogPluginManager: Mounting plugin GameplayCameras -LogPluginManager: Mounting plugin OodleData -LogPluginManager: Mounting plugin OodleNetwork -LogPluginManager: Mounting plugin AnimationSharing -LogPluginManager: Mounting plugin SignificanceManager -LogPluginManager: Mounting plugin PluginUtils -LogPluginManager: Mounting plugin PropertyAccessEditor -LogPluginManager: Mounting plugin AssetManagerEditor -LogPluginManager: Mounting plugin FacialAnimation -LogPluginManager: Mounting plugin GeometryMode -LogPluginManager: Mounting plugin SpeedTreeImporter -LogPluginManager: Mounting plugin DatasmithContent -LogPluginManager: Mounting plugin VariantManagerContent -LogPluginManager: Mounting plugin AutomationUtils -LogPluginManager: Mounting plugin ScreenshotTools -LogPluginManager: Mounting plugin BackChannel -LogPluginManager: Mounting plugin ChaosClothEditor -LogPluginManager: Mounting plugin ChaosCloth -LogPluginManager: Mounting plugin ChaosEditor -LogPluginManager: Mounting plugin PlanarCut -LogPluginManager: Mounting plugin EditableMesh -LogPluginManager: Mounting plugin GeometryCollectionPlugin -LogPluginManager: Mounting plugin ProceduralMeshComponent -LogPluginManager: Mounting plugin ChaosSolverPlugin -LogPluginManager: Mounting plugin CharacterAI -LogPluginManager: Mounting plugin GeometryCache -LogPluginManager: Mounting plugin MotoSynth -LogPluginManager: Mounting plugin PlatformCrypto -LogPluginManager: Mounting plugin ImgMedia -LogPluginManager: Mounting plugin MediaCompositing -LogPluginManager: Mounting plugin WmfMedia -LogPluginManager: Mounting plugin MeshPainting -LogPluginManager: Mounting plugin TcpMessaging -LogPluginManager: Mounting plugin UdpMessaging -LogPluginManager: Mounting plugin ActorSequence -LogPluginManager: Mounting plugin MatineeToLevelSequence -LogPluginManager: Mounting plugin OnlineSubsystemNull -LogPluginManager: Mounting plugin LauncherChunkInstaller -LogPluginManager: Mounting plugin AppleImageUtils -LogPluginManager: Mounting plugin AssetTags -LogPluginManager: Mounting plugin CableComponent -LogPluginManager: Mounting plugin ChunkDownloader -LogPluginManager: Mounting plugin CustomMeshComponent -LogPluginManager: Mounting plugin ExampleDeviceProfileSelector -LogPluginManager: Mounting plugin GooglePAD -LogPluginManager: Mounting plugin PhysXVehicles -LogPluginManager: Mounting plugin RuntimePhysXCooking -LogPluginManager: Mounting plugin SoundFields -LogPluginManager: Mounting plugin Synthesis -LogPluginManager: Mounting plugin AudioSynesthesia -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'Map_Practice_Range'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'Map_Simulation_Alpha'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'Map_Simulation_Bravo'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'Map_Simulation_Charlie'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'Map_Simulation_Delta'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'Map_Simulation_Echo'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'Map_Simulation_Foxtrot'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'Map_Simulation_Golf'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'Map_Simulation_Hotel'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_Tutorial'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'XpFromKills'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'DailyPlayStreak'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'EnemyPortalsDestroyed'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'WinnerWinnerPortalDinner'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'HeadshotKills'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Kills'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'PortalAssassin'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Level'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BadgePerfectTakedowns'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BadgeRankedGamesWon'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'RankedKills'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Season2BattlePass'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'PuttingtheMeinTeamwork'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Empty'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' '90s'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Aberration'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Acrylic'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Arrows'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Autumn'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Bang'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Beta'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaFish'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Blocks'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BorkJr'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Clouds'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ConsoleWarrior'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'CrazyEyes'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Crimson'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'DrDisrespect'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Elektro'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Flare'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Flow'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Forest'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Gold'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Grid'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'HandsOnJack'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Haze'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Hexo'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Lockdown'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Lowpoly'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Maximus'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'MostHated'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Nebula'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ocean'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'OrangeWave'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Planetary'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'PlanetSurfer'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Playmaker'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'PurpleHaze'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Racer'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Radia'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Rainbow'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'RedSkull'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Retro'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'RocketMan'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sealife'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Shroud'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Skyfall'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Splitgate'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Splitter'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Spring'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sprinkles'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Starlight'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Summit1G'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Tortuga'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Trance'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Tusk'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Vaporwave'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Waspy'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GeneralBannerDescription'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Xtreme'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Default'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_Contamination'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_CapturetheFlag'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_NeutralCapturetheFlag'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_OneFlagCTF'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_RankedCapturetheFlag'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_RankedNeutralCapturetheFlag'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_FFADeathmatch'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_TeamDeathmatch'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_BigHeadSnipers'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_KillEnemyTeamToScore'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_CompetitiveTeamDeathmatch'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_KillEnemyTeamToScore_NoRadar'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_Fiesta'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_FiestaTDM'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_FightOrFlight'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_FreeforAll'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_FudgeSlayer'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_Instagib'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_LaserTag'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_OldSchoolSlayer'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_PistolSWAT'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_PortalTDM'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_RankedFreeforAll'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_RankedTeamDeathmatch'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_RankedWaitingArea'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_RankedTeamDeathmatch2v2'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_SpeedBats'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_TeamBRs'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_TeamDoubles'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_TeamInstagib'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_TeamRockets'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_TeamShottySnipers'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_TeamSnipers'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_TeamSWAT'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_UnfairSWAT'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_WaitingArea'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_Domination'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_BigHeadSnipersDomination'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_CompetitiveDomination'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_ScorePointsByCapturingThreeHillsNoRadar'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_ScorePointsByCapturingThreeHills'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_FiestaDOM'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_RankedDomination'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_RocketDomination'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_SWATDOM'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_MapCreator'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_GunGame'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_Hotzone'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_FiestaHotzone'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_ScorePointsByStandingOnHill'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_RankedHotzone'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_SuperHotzone'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_SWATHotzone'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'Gamemodes_Juggernaut'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_KingoftheHill'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_BigHeadSnipersKingoftheHill'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_CompetitiveKingoftheHill'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_ScorePointsByStandingOnHillNoRadar'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_FiestaKOTH'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_RankedKingoftheHill'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_RankedKingoftheHill2v2'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_SuperKingofHill'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_SWATKOTH'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_Lockdown'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_SplitBall'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_FlyingSplitball'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_GrabBallAndRun'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_TeamSplitball'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_OneintheChamper'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_TeamOneintheChamber'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_Race'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_PracticeRange'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_Survival'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_BatRoyale'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_Evolution'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_Showdown'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_SWATShowdown'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_Takedown'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_RankedTakedown'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_VIPTakedown'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_TeabagConfirmed'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_VIP'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GameModes_ZombieVIP'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Adam'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GeneralArmorDescription'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Apple'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Aeon'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Hina'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Kawaii'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sakura'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'UVChecker'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Yui'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Yuki'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Alabastra'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Africa'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'AfricaExecutive'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Arid'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Atlantis'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Barbecue'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Bear'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BigBang'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Bleh'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BlueZebra'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Brainmatter'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Bright'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Bubblegum'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Candy'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Cauldron'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Cheese'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Circuit'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Cloud'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Coral'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Crystalized'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Daisy'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Dawn'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Forge'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Fractured'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Gel20'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Glitter'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'GoldInverse'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Grandy'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'GrayM90'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Green'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Grit'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Guardian'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Hellfire'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Hexy'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'High'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Hive'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Illusion'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Industrial'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Jugger'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Juggernaut'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Lightning20'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Low'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'M90'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Marine'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Mason'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Mecha'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Melting'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Microbes'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Midnight'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Moss'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'NewAge'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'NGC'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Northern'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Orange'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Picasso'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Pink'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Plugger'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Pointy'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Psychedelic'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Purple'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Rain'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Red'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Reflex'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ROFL'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Rose'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Scrap'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sentient'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Shift'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sierra'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Silver'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sinkhole'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Smiles'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Smooth'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SoftPurple'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Spicy'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Splatter'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Storm'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sunflower'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sunrise'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sunset'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Swirls'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ultra'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Valton'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Wind'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Yellow'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Yikes'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Zam'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Zenith'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Blue'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Andor'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Embers'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Aqua'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Drone'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Hunter'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Lia'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Meer'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Queen'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Assassin'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BabaYaga'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Eternal'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Helga'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Swamp'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Witch'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Wort'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Babu'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Marionette'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Nia'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Stringler'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Wifu'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Yoyo'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BananaSplit'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Cream'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ripe'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Strawberry'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Whipped'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'YinYang'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Bard'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'CandyCane'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Gia'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Lute'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Somber'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Tamber'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Viola'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Blitz'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Bulldogs'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Charlie'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Coyote'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'League'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Supreme'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Yeti'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BlitzII'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BunnyHop'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Butcher'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'DeadHog'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Demon'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Hog'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Undead'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'CactilliousVIII'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Cac'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Flesh'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Juice'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Needles'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Spike'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Gunslinger'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'CactilliousX'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Binder'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Burning'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Exodus'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Mulch'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Runner'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Watcher'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Chance'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' '5th'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Gutter'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Legion'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Major'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Recruit'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Deadeye'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Boot'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Chester'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Jack'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'OneEyedJoe'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Strapper'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Diego'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Pounce'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Predator'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Savanah'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Prowler'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Dweller'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Blaze'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Camo'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ferdinand'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Deon'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Jude'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Kite'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Leon'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Mufasa'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Firlock'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Blossom'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Fallen'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Overgrowth'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Root'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Vine'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Firlow'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Xmas'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Gangster'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Gigabot'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Hawk'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'LEE414'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Love'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Spanner'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Vic'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Boujee'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Bubblegumption'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Honeypot'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Invictus'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Kelvin'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Kicker'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Reptilia'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Worzer'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Yoy'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BananaStand'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Coal'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Cobalt'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Diamond'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Iron'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Uranium'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Hannya'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Henrick'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Count'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Duke'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'King'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Lancer'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Marquis'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ido'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Darkness'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Earth'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Fire'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Water'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Interceptor'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Intel'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ironside'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Arne'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Bjorn'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Erik'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Gorm'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ragna'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Jacko'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Lantern'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Jaiden'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Amber'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Blackout'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Bumper'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Fury'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Jade'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Master'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ninja'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'OP'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Soul'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Jed'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ded'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Led'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ned'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ved'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Zed'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Leaf'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Buddy'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Kassandra'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Lya'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ray'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Letto'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Lucky'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Bassnard'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Grey'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Mau'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Shawn'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sid'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Lue'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Elf'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ice'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Rth'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Maelstrom'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Don'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'General'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Jo'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Krimzon'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Skll'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Zero'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Marshall'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Alpha'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'East'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Jungle'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Marsh'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Vice'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Boss'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Soldier'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SpecOps'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Taunt'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Misty'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Fy'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Kel'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Stella'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Moegoth'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Eruption'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Magma'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Rumble'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Siesmic'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'TheRock'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Mr66'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Agent'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Fireman'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Pedestrian'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Policeman'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Worker'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Murice'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Olof'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'MusicHead'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Insck'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Lep'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Party'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'OldBones'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Oliver'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Bobby'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Clay'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Garfield'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Jarred'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Tim'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Operator'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Armadillo'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Bing'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Bozz'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Hurwitz'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Legierung'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Miyagi'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Mushi'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sundae'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'TopBrass'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Primordial'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Paladin'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Buffer'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Fade'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Horus'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Liger'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Raven'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Valiant'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Rexy'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Dug'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'MT'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Prehistoric'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Rex'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Stomper'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Rhino'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Blazing'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'MrAttitude'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sharpened'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'XFACTOR'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'XTREME'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sable'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Cii'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Howler'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Lord'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Nath'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Rumi'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Santa'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sasha'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Adventurer'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'KickBoxer'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Moon'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Mystic'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sun'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Shane'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Bbop'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Joe'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Pop'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Spaceman'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Vigilante'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Shogun'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Clan'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Elite'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Rogue'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Samurai'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Tempered'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Whisper'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SigmaDark'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Arcubus'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Electrum'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Phixsas'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Nightjump'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Singe'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Skullbones'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Dregg'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Tin'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'T200'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Choc'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Lul'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ravager'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'T201'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'TeamSeas'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Tinhead'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Amazon'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Apocalypse'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ashes'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Chrome'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'MK3'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Snow'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Unholy'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Toxic'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Dark'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Fuzz'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Gorge'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Numb'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Rez'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Shade'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Loth'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Volta'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Crayon'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Vulture'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' '360BullRider'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'AtYourService'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ballerina'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BattlePose'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BootyShake'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Boxing'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BreakitDown'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BullRider'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ButtSlap'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'CallMe'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Cheers'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ChestBeat'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ChickenDance'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Comeatme'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'CrossedArms'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'CrotchChop'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'CrowdNoise'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Dab'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'DeathThreat'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'DramaQueen'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Draw'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'DustOff'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Exhausted'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Eyesonyou'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'FacePalm'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Fight'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'FingerGun'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'FingerWave'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Fishing'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'FistPump'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Flexing'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ForwardLean'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'GameTime'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Glorious'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'GoingDown'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'GroinChop'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Gunshow'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Halt'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Hands'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'HandsonHead'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'HandsonHips'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'HatsOff'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' '3'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'HeroPose'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Honor'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Hooligan'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ImtheBest'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Joy'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'KaPOW'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'KnuckleSandwich'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Lasso'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Levitate'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'LockedandLoaded'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'LookattheTime'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Loser'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Macarena'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Mime'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Monkey'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'MrUniverse'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Noooo'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ok'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Olympia'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'OMG'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'PowerHold'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'PowerUp'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'PraisetheLord'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Pray'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Pulse'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ReportingforDuty'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ReverseButtSlap'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Robogangsta'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'RockBow'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'RockOn'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sassy'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Shielded'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ShoulderRoll'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ShoulderWave'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Shrug'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SlicingandDicing'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SoSo'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SplitgateShuffle'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'StageBow'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Stretch'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'TaDa'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Tantrum'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Thinking'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Thoughtful'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ThumbsDown'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Thumbsup'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'UpYours'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Victory'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Wave'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Welcome'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Yaaaass'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'You'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Director'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GeneralJetpackDescription'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Egg'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'GoldenEgg'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ChainofDeath'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'DemonFire'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Unchained'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Executioner'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Foregone'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Estranged'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'HEX'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Mourning'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Mumbai'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Rocket'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Souless'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Stinger'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Warden'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'AmateurChamp'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaRecruiter'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS0Champion'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS0Master'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS0Noob'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS0Recruiter'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS0Streaker'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS0Veteran'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS1Challenger'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS1Champion'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS1Contestant'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS1Master'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS1Noob'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS1Recruiter'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS1Streaker'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS1Veteran'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaTester'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'CHAMPIONSCLUB'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'CommunityCoach'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ContentCreator'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Developer'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'FeaturedBuilder'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Fragger'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Gunner'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Hillboy'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Hillgirl'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'LeagueChampion'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Legacy'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'LegacyStreaker'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'MapBuilder'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Moderator'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'MovieoftheWeek'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'None'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'NOOB'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'PartneredStreamer'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Playtester'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ProChampion'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Recruiter'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SemiProChamp'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SpaceCadet'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Splitgang'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SplitgateMVP'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SPLITMAS'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SPSPro'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Streamer'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SuperModerator'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'TournamentChampion'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'TrickshotChamp'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'WormholeWarrior'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GeneralPortalGunDescription'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Beatle'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Black'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Caution'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Cyber'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Deep'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Dodo'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'FlamingYong'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Frost'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Gel'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Grudge'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Hacker'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'HeartBeat'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'JetStream'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Leet'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Lollipop'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Mink'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Peace'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Pond'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Razzle'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Rift'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ripple'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sacred'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sandstorm'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sangria'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SnakeSkin'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Swirlpool'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Vortex'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Watt'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Fodder'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'FTL'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Lightsout'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Lynch'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Mender'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SideWinder'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SilverTongue'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Cannon'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'TrueShot'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Beyond'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Breach'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Christmas'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Cyan'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'DejaVu'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Divide'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'FALLOUT'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Flower'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Holy'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Honeycomb'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Indie'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Inverse'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Lumen'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Return'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ROYAL'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sunder'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Treasure'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Void'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'War'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Webs'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'WONDER'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' '1stBlue'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' '1stRed'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' '3KV'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Absolutely'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'AceDolo'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Advanced'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'AirForceGaming'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Alphawolvestt'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ampfy'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Andy'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'AndyBanana'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Arch'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Atomikgamez'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Audriix'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Baby'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Banana'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Base'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Bat'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Beefcake'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BlastOff'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Bomb'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Boom'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BudgeUp'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Bug'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Butterfly'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Button'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'CANAS1AN'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'CardinalSoldier'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Chasen'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ClickFPS'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Cloh'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'COG'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'cole'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'CoolPrickles'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Cozy'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'CrazyClown'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Croc'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'CX7VN'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'CyBplays'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'DaddyGus'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Dailey'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'DANGERKIDS'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'DashTag'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'DeJay'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Dezignful'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'DipAndDrip'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'DiscoBall'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Dom'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'DrewPDrawers'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Dylrooo'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'E'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Electra'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Emblem'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'EmilioITA'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Endo'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Eskay'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'FakeUniformM'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'FigureBlue'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'FigureRed'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'FruitSalad'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Fusion'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Future'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Fuzk'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Gabs'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'GaGOD'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Gamesager'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'GFuel'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'GG'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'GGFizz'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'GiantPanda'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Gibbon'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'GoatsAndGlory'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'GoofyCat'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Greyhatz'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'HandPrint'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'HappyMemeLord'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Harry'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Hayward'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Hazard'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'HeadShotChick'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Heis'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Hersh'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'iLootGames'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Indy'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'IronPanda'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ISurvived'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'j0nathan'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'JazzMittenz'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'JequalsJosh'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Jexodus'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Jib'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Jonzzy'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Joshy'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'JZ'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'k9z'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Kev'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'KingMcdev'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'KJewls'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'kowzzz'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Loochy'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Lost'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Luna'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'mansuit'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'MarineCorpsGaming'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Mask'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Meatloaf'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'MemeLord'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Merl'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Mikaveli'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Mucki'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Muerte'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'MWZ'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Nadestraight'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Nana'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'NeoNess007'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Nexz'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Nolliewog'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Nomad'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Noob'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Nova'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Nugget'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Nvidia'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Oatsngoats'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Oni'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Panda'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Panther'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Patty'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Pootato'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Portal'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Pow'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Precious'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'PreFusion'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Present'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Pwnstar'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Radar'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Rara'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'RGB'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Robot'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'RobotGiggles'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'RocketPop'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Rocky'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Rorn'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ruby'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Russ'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ryanandsnoop'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SaltSlinger'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sam'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Scope'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Scribbleh'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sephy'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Shark'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Shmoople'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sillymurp'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Six'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Skull'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SliverTV'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SliverTVWhite'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Smile'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Smixyraptor'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SMKGaming05'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SoonTM'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SpaceMonkey'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SplitgateRetro'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SplitgirlNo1'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Spurley'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Squiggle'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Stallion'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Static'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Strifer'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Strike'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Strotnium'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Tanner'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Tatted'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Technobug'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'TFuel'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ThinkPortal'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ThonkAR'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Thor'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Thriving'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'TipOfTheSpear'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ToiletPaper'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Trainer'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Tummy'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Tunes'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Turtle'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'UniverseDivide'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'USArmyESports'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'VibeFail'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Vostik'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Vowwels'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'WAX'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'WWBucks'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Yousif'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Zeus'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Abominable'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Alternate'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ambient'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Aquascape'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Astro'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Aurora'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Aviator'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS1Brass'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS1Bronze'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS1Diamond'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS1Gold'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS1Platinum'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS1Silver'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Bind'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Bloo'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'CandyCorn'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Cardboard'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Chrysalis'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ChrysalisWhite'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'CloudVibes'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Danger'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Dank'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Desert'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'DragonBone'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'DrunkBone'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'DrunkRaider'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'DrunkStein'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Eel'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'EmulsionBone'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'EmulsionRaider'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'EmulsionStein'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'eUnited'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ex'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Fold'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ForGlory'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Frostbite'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Frozen'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Full'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Gel2.0'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'GiftWrapped'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Gingerbread'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Glitch'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'GoldenHour'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'GoreBone'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'GoreRaider'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'GoreStein'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'G-Shock'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Intrepid'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Jam'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Juicy'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Jumper'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Kovaak'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Lightning2.0'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Luminosity'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Macro'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Merica'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'MOBO'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Moist'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Molten'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'MoltenBone'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'MoltenRaider'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'MoltenStein'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Motherboard'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Neon'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'PurplyPink'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Recon'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'RedSpawn'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Rosary'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Scotch'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GeneralAssaultRifleDescription'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Scuttle'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Serum'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Shatter'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ShinyCrystal'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Shocker'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Skullcrusher'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Slurry'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SnowRifle'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sonoran'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Spaz'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Split'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Squirt'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SSG'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Steampunk'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Summit'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Super'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Supersonic'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sweet'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Swirly'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Synth'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'T1'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'TechnicalBlue'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'TechnicalNeon'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'TheGoodestBoy'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Thompson'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Tripz'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'TriShot'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Virtue'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Volt'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Warp'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'WW1'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'XSET'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'XYZ'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Zen'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Zion'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Arc'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Cobb'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'DeadlyVibes'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Glitchgate'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GeneralBatDescription'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Krafty'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Leak'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Sigmator'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SnowflakeAxe'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BlueFlower'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'DigitalDownpour'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Fission'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Hunt'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Kingdom'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'PsyonicHolo'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GeneralBattleRifleDescription'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Watergun'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' '100T'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Advansplosion'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Alienware'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS0Brass'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS0Bronze'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS0Diamond'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS0Gold'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS0Platinum'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'BetaS0Silver'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Chopper'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Chroma'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Code'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Foresight'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'HaroldBronze'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'HaroldGold'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'HaroldPurple'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'HaroldSilver'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Hoot'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Necrosis'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Organic'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GeneralCarbineDescription'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Slimey'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Toy'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'TRN'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Acorn'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Beachball'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Blacktop'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Discornament'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'GateSplitter'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'IO'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Regulation'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SAWCCER'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SnowCage'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Bird'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Chum'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Clown'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Egypt'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Electric'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ESportGreen'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ESportPearl'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ESportPurple'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ESportRed'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ESportTactical'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Evergreen'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Magnum'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'PantherBlue'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GeneralPistolDescription'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'PantherRed'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'PixelSpook'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'RabidBlue'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'RabidRainbow'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Serpent'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SparklePony'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'VoidStuff'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' '90sTrip'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'DeadVelvet'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Lines'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Medieval'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Heiferizer'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GeneralPlasmaRifleDescription'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Pagan'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Ritual'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SnowBurner'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'HMMMMM'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'InnerTech'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GeneralRailgunDescription'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Champain'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Crikey'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'CubincPlunder'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GeneralRocketLauncherDescription'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Scorpio'. Did you forget to add a string table redirector? -LogStringTable: Warning: Fail[S_API] SteamAPI_Init(): Loaded '/home/sharkfin/.local/share/Steam/linux64/steamclient.so' OK. -Game process updated : AppID 677620 "/home/sharkfin/.local/share/Steam/ubuntu12_32/reaper SteamLaunch AppId=677620 -- '/mnt/games/steamLibrary/steamapps/common/Splitgate/PortalWars.sh'", ProcID 103242, IP 0.0.0.0:0 -Setting breakpad minidump AppID = 677620 -SteamInternal_SetMinidumpSteamID: Caching Steam ID: 76561198272891864 [API loaded no] -ed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Spud'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'ThePondPlunderer'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'WompWompRegal'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'OldMagic'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GeneralShotgunDescription'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Shoctopus'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SpinelessBeat'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'LiquidIllusion'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Poker'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GeneralSMGDescription'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'Wildfire'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'CampingWins'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/LocalizedStrings.LocalizedStrings' 'GeneralSniperDescription'. Did you forget to add a string table redirector? -LogStringTable: Warning: Failed to find string table entry for '/Game/Localization/ItemNameStrings.ItemNameStrings' 'SymphonySniper'. Did you forget to add a string table redirector? -LogInit: Using libcurl 7.65.3-DEV -LogInit: - built for x86_64-unknown-linux-gnu -LogInit: - supports SSL with OpenSSL/1.1.1c -LogInit: - supports HTTP deflate (compression) using libz 1.2.8 -LogInit: - other features: -LogInit: CURL_VERSION_SSL -LogInit: CURL_VERSION_LIBZ -LogInit: CURL_VERSION_IPV6 -LogInit: CURL_VERSION_ASYNCHDNS -LogInit: CURL_VERSION_LARGEFILE -LogInit: CURL_VERSION_TLSAUTH_SRP -LogInit: CurlRequestOptions (configurable via config and command line): -LogInit: - bVerifyPeer = true - Libcurl will verify peer certificate -LogInit: - bUseHttpProxy = false - Libcurl will NOT use HTTP proxy -LogInit: - bDontReuseConnections = true - Libcurl will NOT reuse connections -LogInit: - MaxHostConnections = 16 - Libcurl will limit the number of connections to a host -LogInit: - LocalHostAddr = Default -LogInit: - BufferSize = 65536 -LogOnline: OSS: Creating online subsystem instance for: AccelByte -LogOnline: OSS: Creating online subsystem instance for: Steam -LogOnline: STEAM: Steam User is subscribed 1 -LogOnline: STEAM: [AppId: 677620] Client API initialized 1 -LogOnline: STEAM: Initializing SteamNetworking Layer -LogOnline: STEAM: Missing P2PCleanupTimeout key in OnlineSubsystemSteam of DefaultEngine.ini, using default -LogOnline: OSS: TryLoadSubsystemAndSetDefault: Loaded subsystem for module [AccelByte] -LogInit: Build: ++PortalWars+Main-CL-8813 -LogInit: Engine Version: 4.27.2-8813+++PortalWars+Main -LogInit: Compatible Engine Version: 4.27.0-17155196+++PortalWars+Main -LogInit: Net CL: 17155196 -LogInit: OS: GenericOSVersionLabel (GenericOSSubVersionLabel), CPU: 12th Gen Intel(R) Core(TM) i5-12600K, GPU: GenericGPUBrand -LogInit: Compiled (64-bit): Jun 11 2022 11:51:03 -LogInit: Compiled with Clang: 11.0.1 (https://github.com/llvm/llvm-project 43ff75f2c3feef64f9d73328230d34dac8832a91) -LogInit: Build Configuration: Shipping -LogInit: Branch Name: ++PortalWars+Main -LogInit: Command Line: -LogInit: Base Directory: /mnt/games/steamLibrary/steamapps/common/Splitgate/PortalWars/Binaries/Linux/ -LogInit: Allocator: binned2 -LogInit: Installed Engine Build: 1 -LogInit: Presizing for max 2097152 objects, including 1 objects not considered by GC, pre-allocating 0 bytes for permanent pool. -LogStreaming: Display: AsyncLoading2 - Created: Event Driven Loader: true, Async Loading Thread: true, Async Post Load: true -LogStreaming: Display: AsyncLoading2 - Initialized -LogInit: Object subsystem initialized -LogConfig: Setting CVar [[r.setres:1280x720]] -LogConfig: Setting CVar [[fx.NiagaraAllowRuntimeScalabilityChanges:1]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.setres:1280x720]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[fx.NiagaraAllowRuntimeScalabilityChanges:1]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererSettings] File [/home/sharkfin/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor/Engine.ini] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.GPUCrashDebugging:0]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.AllowGlobalClipPlane:0]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.CustomDepth:3]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.DefaultFeature.MotionBlur:0]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.ForwardShading:1]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.DefaultFeature.AmbientOcclusion:0]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.EarlyZPass:2]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.ReflectionCaptureResolution:128]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.SeparateTranslucency:0]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.SelectiveBasePassOutputs:1]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.DefaultFeature.AntiAliasing:2]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.EnableDebugSpam_GetObjectPositionAndScale:0]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.PostProcessing.PropagateAlpha:2]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.EarlyZPassOnlyMaterialMasking:1]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.DefaultFeature.AutoExposure.Bias:1.000000]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.SupportSkyAtmosphereAffectsHeightFog:0]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.SupportStationarySkylight:0]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.SupportSkyAtmosphere:0]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.SupportAtmosphericFog:1]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.SupportPointLightWholeSceneShadows:1]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.SupportLowQualityLightmaps:0]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.Mobile.AllowMovableDirectionalLights:0]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.Mobile.EnableStaticAndCSMShadowReceivers:0]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.Mobile.AllowDistanceFieldShadows:0]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.MobileNumDynamicPointLights:0]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[r.DiscardUnusedQuality:0]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererOverrideSettings] File [/home/sharkfin/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor/Engine.ini] -[2022.06.19-20.18.13:397][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.StreamingSettings] File [/home/sharkfin/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor/Engine.inInstalling breakpad exception handler for appid(steam)/version(1655513879) -i] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[s.MinBulkDataSizeForAsyncLoading:131072]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[s.AsyncLoadingThreadEnabled:1]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[s.EventDrivenLoaderEnabled:1]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[s.WarnIfTimeLimitExceeded:0]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[s.TimeLimitExceededMultiplier:1.5]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[s.TimeLimitExceededMinTime:0.005]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[s.UseBackgroundLevelStreaming:1]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[s.PriorityAsyncLoadingExtraTime:15.0]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[s.LevelStreamingActorsUpdateTimeLimit:5.0]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[s.PriorityLevelStreamingActorsUpdateExtraTime:5.0]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[s.LevelStreamingComponentsRegistrationGranularity:10]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[s.UnregisterComponentsTimeLimit:1.0]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[s.LevelStreamingComponentsUnregistrationGranularity:5]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[s.FlushStreamingOnExit:1]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.GarbageCollectionSettings] File [/home/sharkfin/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor/Engine.ini] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[gc.MaxObjectsNotConsideredByGC:1]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[gc.SizeOfPermanentObjectPool:0]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[gc.FlushStreamingOnGC:0]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[gc.NumRetriesBeforeForcingGC:10]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[gc.AllowParallelGC:1]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[gc.TimeBetweenPurgingPendingKillObjects:61.1]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[gc.MaxObjectsInEditor:25165824]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[gc.IncrementalBeginDestroyEnabled:1]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[gc.CreateGCClusters:1]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[gc.MinGCClusterSize:5]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[gc.ActorClusteringEnabled:0]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[gc.BlueprintClusteringEnabled:0]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[gc.UseDisregardForGCOnDedicatedServers:0]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Setting CVar [[gc.MultithreadedDestructionEnabled:1]] -[2022.06.19-20.18.13:397][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.NetworkSettings] File [/home/sharkfin/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor/Engine.ini] -[2022.06.19-20.18.13:397][ 0]LogInit: Initializing SDL. -[2022.06.19-20.18.15:310][ 0]LogInit: Initialized SDL 2.0.12 revision: 13609 (hg-13609:34cc7d3b69d3) (compiled against 2.0.12) -[2022.06.19-20.18.15:310][ 0]LogInit: Using SDL video driver 'x11' -[2022.06.19-20.18.15:311][ 0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@3] File [/home/sharkfin/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor/Scalability.ini] -[2022.06.19-20.18.15:311][ 0]LogConfig: Setting CVar [[r.SkeletalMeshLODBias:0]] -[2022.06.19-20.18.15:311][ 0]LogConfig: Setting CVar [[r.ViewDistanceScale:1.0]] -[2022.06.19-20.18.15:311][ 0]LogConfig: Setting CVar [[r.StaticMeshLODDistanceScale:1]] -[2022.06.19-20.18.15:311][ 0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@3] File [/home/sharkfin/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor/Scalability.ini] -[2022.06.19-20.18.15:311][ 0]LogConfig: Setting CVar [[r.PostProcessAAQuality:4]] -[2022.06.19-20.18.15:311][ 0]LogConfig: Applying CVar settings from Section [ShadowQuality@3] File [/home/sharkfin/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor/Scalability.ini] -[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.LightFunctionQuality:1]] -[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.ShadowQuality:5]] -[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.Shadow.CSM.MaxCascades:10]] -[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.Shadow.MaxResolution:2048]] -[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.Shadow.MaxCSMResolution:2048]] -[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.Shadow.RadiusThreshold:0.01]] -[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.Shadow.DistanceScale:1.0]] -[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.Shadow.CSM.TransitionScale:1.0]] -[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.Shadow.PreShadowResolutionFactor:1.0]] -[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.DistanceFieldShadowing:1]] -[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.DistanceFieldAO:1]] -[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.AOQuality:2]] -[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.VolumetricFog:0]] -[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.VolumetricFog.GridPixelSize:8]] -[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.VolumetricFog.GridSizeZ:128]] -[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.VolumetricFog.HistoryMissSupersampleCount:4]] -[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.LightMaxDrawDistanceScale:1]] -[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.CapsuleShadows:1]] -[2022.06.19-20.18.15:312][ 0]LogConfig: Applying CVar settings from Section [PostProcessQuality@3] File [/home/sharkfin/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor/Scalability.ini] -[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.MotionBlurQuality:4]] -[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.AmbientOcclusionMipLevelFactor:0.4]] -[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.AmbientOcclusionMaxQuality:100]] -[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.AmbientOcclusionLevels:0]] -[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.AmbientOcclusionRadiusScale:1.0]] -[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.DepthOfFieldQuality:2]] -[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.RenderTargetPoolMin:400]] -[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.LensFlareQuality:2]] -[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.SceneColorFringeQuality:1]] -[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.EyeAdaptationQuality:2]] -[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.BloomQuality:5]] -[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.FastBlurThreshold:100]] -[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.Upscale.Quality:3]] -[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.Tonemapper.GrainQuantization:1]] -[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.LightShaftQuality:1]] -[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.Filter.SizeScale:1]] -[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.Tonemapper.Quality:5]] -[2022.06.19-20.18.15:312][ 0]LogConfig: Setting CVar [[r.DOF.Gather.AccumulatorQuality:1 ; higher gathering accumulator quality]] -[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.DOF.Gather.PostfilterMethod:1 ; Median3x3 postfilering method]] -[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.DOF.Gather.EnableBokehSettings:0 ; no bokeh simulation when gathering]] -[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.DOF.Gather.RingCount:4 ; medium number of samples when gathering]] -[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.DOF.Scatter.ForegroundCompositing:1 ; additive foreground scattering]] -[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.DOF.Scatter.BackgroundCompositing:2 ; additive background scattering]] -[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.DOF.Scatter.EnableBokehSettings:1 ; bokeh simulation when scattering]] -[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.DOF.Scatter.MaxSpriteRatio:0.1 ; only a maximum of 10% of scattered bokeh]] -[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.DOF.Recombine.Quality:1 ; cheap slight out of focus]] -[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.DOF.Recombine.EnableBokehSettings:0 ; no bokeh simulation on slight out of focus]] -[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.DOF.TemporalAAQuality:1 ; more stable temporal accumulation]] -[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.DOF.Kernel.MaxForegroundRadius:0.025]] -[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.025]] -[2022.06.19-20.18.15:313][ 0]LogConfig: Applying CVar settings from Section [TextureQuality@3] File [/home/sharkfin/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor/Scalability.ini] -[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.Streaming.MipBias:0]] -[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.Streaming.AmortizeCPUToGPUCopy:0]] -[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.Streaming.MaxNumTexturesToStreamPerFrame:0]] -[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.Streaming.Boost:1]] -[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.MaxAnisotropy:8]] -[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.VT.MaxAnisotropy:8]] -[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.Streaming.LimitPoolSizeToVRAM:0]] -[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.Streaming.PoolSize:1000]] -[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.Streaming.MaxEffectiveScreenSize:0]] -[2022.06.19-20.18.15:313][ 0]LogConfig: Applying CVar settings from Section [EffectsQuality@3] File [/home/sharkfin/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor/Scalability.ini] -[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.TranslucencyLightingVolumeDim:64]] -[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.RefractionQuality:2]] -[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.SSR.Quality:3]] -[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.SSR.HalfResSceneColor:0]] -[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.SceneColorFormat:4]] -[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.DetailMode:2]] -[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.TranslucencyVolumeBlur:1]] -[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.MaterialQualityLevel:1 ; High quality]] -[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.AnisotropicMaterials:1]] -[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.SSS.Scale:1]] -[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.SSS.SampleSet:2]] -[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.SSS.Quality:1]] -[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.SSS.HalfRes:0]] -[2022.06.19-20.18.15:313][ 0]LogConfig: Setting CVar [[r.SSGI.Quality:3]] -[2022.06.19-20.18.15:314][ 0]LogConfig: Setting CVar [[r.EmitterSpawnRateScale:1.0]] -[2022.06.19-20.18.15:314][ 0]LogConfig: Setting CVar [[r.ParticleLightQuality:2]] -[2022.06.19-20.18.15:314][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.FastApplyOnOpaque:1 ; Always have FastSkyLUT 1 in this case to avoid wrong sky]] -[2022.06.19-20.18.15:314][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.SampleCountMaxPerSlice:4]] -[2022.06.19-20.18.15:314][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.DepthResolution:16.0]] -[2022.06.19-20.18.15:314][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.FastSkyLUT:1]] -[2022.06.19-20.18.15:314][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMin:4.0]] -[2022.06.19-20.18.15:314][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMax:128.0]] -[2022.06.19-20.18.15:314][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.SampleCountMin:4.0]] -[2022.06.19-20.18.15:314][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.SampleCountMax:128.0]] -[2022.06.19-20.18.15:314][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.TransmittanceLUT.UseSmallFormat:0]] -[2022.06.19-20.18.15:314][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.TransmittanceLUT.SampleCount:10.0]] -[2022.06.19-20.18.15:314][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.MultiScatteringLUT.SampleCount:15.0]] -[2022.06.19-20.18.15:314][ 0]LogConfig: Setting CVar [[r.SkyLight.RealTimeReflectionCapture:1]] -[2022.06.19-20.18.15:314][ 0]LogConfig: Setting CVar [[fx.Niagara.QualityLevel:3]] -[2022.06.19-20.18.15:314][ 0]LogConfig: Applying CVar settings from Section [FoliageQuality@3] File [/home/sharkfin/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor/Scalability.ini] -[2022.06.19-20.18.15:314][ 0]LogConfig: Setting CVar [[foliage.DensityScale:1.0]] -[2022.06.19-20.18.15:314][ 0]LogConfig: Setting CVar [[grass.DensityScale:1.0]] -[2022.06.19-20.18.15:314][ 0]LogConfig: Applying CVar settings from Section [ShadingQuality@3] File [/home/sharkfin/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor/Scalability.ini] -[2022.06.19-20.18.15:314][ 0]LogConfig: Setting CVar [[r.HairStrands.SkyLighting.IntegrationType:2]] -[2022.06.19-20.18.15:314][ 0]LogConfig: Setting CVar [[r.HairStrands.SkyAO.SampleCount:4]] -[2022.06.19-20.18.15:314][ 0]LogConfig: Setting CVar [[r.HairStrands.Visibility.MSAA.SamplePerPixel:4]] -[2022.06.19-20.18.15:314][ 0]LogModuleManager: Warning: ModuleManager: Module 'LinuxDeviceProfileSelector' not found - its StaticallyLinkedModuleInitializers function is null. -[2022.06.19-20.18.15:314][ 0]LogInit: Applying CVar settings loaded from the selected device profile: [LinuxNoEditor] -[2022.06.19-20.18.15:315][ 0]LogHAL: Display: Platform has ~ 4 GB [33446559744 / 4294967296 / 32], which maps to Smallest [LargestMinGB=32, LargerMinGB=12, DefaultMinGB=8, SmallerMinGB=6, SmallestMinGB=0) -[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.RHICmdBypass:0]] -[2022.06.19-20.18.15:315][ 0]LogInit: Going up to parent DeviceProfile [Linux] -[2022.06.19-20.18.15:315][ 0]LogInit: Going up to parent DeviceProfile [] -[2022.06.19-20.18.15:315][ 0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@3] File [/home/sharkfin/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor/Scalability.ini] -[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.SkeletalMeshLODBias:0]] -[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.ViewDistanceScale:1.0]] -[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.StaticMeshLODDistanceScale:1]] -[2022.06.19-20.18.15:315][ 0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@3] File [/home/sharkfin/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor/Scalability.ini] -[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.PostProcessAAQuality:4]] -[2022.06.19-20.18.15:315][ 0]LogConfig: Applying CVar settings from Section [ShadowQuality@3] File [/home/sharkfin/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor/Scalability.ini] -[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.LightFunctionQuality:1]] -[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.ShadowQuality:5]] -[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.Shadow.CSM.MaxCascades:10]] -[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.Shadow.MaxResolution:2048]] -[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.Shadow.MaxCSMResolution:2048]] -[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.Shadow.RadiusThreshold:0.01]] -[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.Shadow.DistanceScale:1.0]] -[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.Shadow.CSM.TransitionScale:1.0]] -[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.Shadow.PreShadowResolutionFactor:1.0]] -[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.DistanceFieldShadowing:1]] -[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.DistanceFieldAO:1]] -[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.AOQuality:2]] -[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.VolumetricFog:0]] -[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.VolumetricFog.GridPixelSize:8]] -[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.VolumetricFog.GridSizeZ:128]] -[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.VolumetricFog.HistoryMissSupersampleCount:4]] -[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.LightMaxDrawDistanceScale:1]] -[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.CapsuleShadows:1]] -[2022.06.19-20.18.15:315][ 0]LogConfig: Applying CVar settings from Section [PostProcessQuality@3] File [/home/sharkfin/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor/Scalability.ini] -[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.MotionBlurQuality:4]] -[2022.06.19-20.18.15:315][ 0]LogConfig: Setting CVar [[r.AmbientOcclusionMipLevelFactor:0.4]] -[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.AmbientOcclusionMaxQuality:100]] -[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.AmbientOcclusionLevels:0]] -[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.AmbientOcclusionRadiusScale:1.0]] -[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.DepthOfFieldQuality:2]] -[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.RenderTargetPoolMin:400]] -[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.LensFlareQuality:2]] -[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.SceneColorFringeQuality:1]] -[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.EyeAdaptationQuality:2]] -[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.BloomQuality:5]] -[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.FastBlurThreshold:100]] -[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.Upscale.Quality:3]] -[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.Tonemapper.GrainQuantization:1]] -[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.LightShaftQuality:1]] -[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.Filter.SizeScale:1]] -[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.Tonemapper.Quality:5]] -[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.DOF.Gather.AccumulatorQuality:1 ; higher gathering accumulator quality]] -[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.DOF.Gather.PostfilterMethod:1 ; Median3x3 postfilering method]] -[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.DOF.Gather.EnableBokehSettings:0 ; no bokeh simulation when gathering]] -[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.DOF.Gather.RingCount:4 ; medium number of samples when gathering]] -[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.DOF.Scatter.ForegroundCompositing:1 ; additive foreground scattering]] -[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.DOF.Scatter.BackgroundCompositing:2 ; additive background scattering]] -[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.DOF.Scatter.EnableBokehSettings:1 ; bokeh simulation when scattering]] -[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.DOF.Scatter.MaxSpriteRatio:0.1 ; only a maximum of 10% of scattered bokeh]] -[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.DOF.Recombine.Quality:1 ; cheap slight out of focus]] -[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.DOF.Recombine.EnableBokehSettings:0 ; no bokeh simulation on slight out of focus]] -[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.DOF.TemporalAAQuality:1 ; more stable temporal accumulation]] -[2022.06.19-20.18.15:316][ 0]LogConfig: Setting CVar [[r.DOF.Kernel.MaxForegroundRadius:0.025]] -[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.025]] -[2022.06.19-20.18.15:317][ 0]LogConfig: Applying CVar settings from Section [TextureQuality@3] File [/home/sharkfin/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor/Scalability.ini] -[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.Streaming.MipBias:0]] -[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.Streaming.AmortizeCPUToGPUCopy:0]] -[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.Streaming.MaxNumTexturesToStreamPerFrame:0]] -[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.Streaming.Boost:1]] -[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.MaxAnisotropy:8]] -[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.VT.MaxAnisotropy:8]] -[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.Streaming.LimitPoolSizeToVRAM:0]] -[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.Streaming.PoolSize:1000]] -[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.Streaming.MaxEffectiveScreenSize:0]] -[2022.06.19-20.18.15:317][ 0]LogConfig: Applying CVar settings from Section [EffectsQuality@3] File [/home/sharkfin/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor/Scalability.ini] -[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.TranslucencyLightingVolumeDim:64]] -[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.RefractionQuality:2]] -[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.SSR.Quality:3]] -[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.SSR.HalfResSceneColor:0]] -[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.SceneColorFormat:4]] -[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.DetailMode:2]] -[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.TranslucencyVolumeBlur:1]] -[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.MaterialQualityLevel:1 ; High quality]] -[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.AnisotropicMaterials:1]] -[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.SSS.Scale:1]] -[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.SSS.SampleSet:2]] -[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.SSS.Quality:1]] -[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.SSS.HalfRes:0]] -[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.SSGI.Quality:3]] -[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.EmitterSpawnRateScale:1.0]] -[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.ParticleLightQuality:2]] -[2022.06.19-20.18.15:317][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.FastApplyOnOpaque:1 ; Always have FastSkyLUT 1 in this case to avoid wrong sky]] -[2022.06.19-20.18.15:318][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.SampleCountMaxPerSlice:4]] -[2022.06.19-20.18.15:318][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.DepthResolution:16.0]] -[2022.06.19-20.18.15:318][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.FastSkyLUT:1]] -[2022.06.19-20.18.15:318][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMin:4.0]] -[2022.06.19-20.18.15:318][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMax:128.0]] -[2022.06.19-20.18.15:318][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.SampleCountMin:4.0]] -[2022.06.19-20.18.15:318][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.SampleCountMax:128.0]] -[2022.06.19-20.18.15:318][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.TransmittanceLUT.UseSmallFormat:0]] -[2022.06.19-20.18.15:318][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.TransmittanceLUT.SampleCount:10.0]] -[2022.06.19-20.18.15:318][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.MultiScatteringLUT.SampleCount:15.0]] -[2022.06.19-20.18.15:318][ 0]LogConfig: Setting CVar [[r.SkyLight.RealTimeReflectionCapture:1]] -[2022.06.19-20.18.15:318][ 0]LogConfig: Setting CVar [[fx.Niagara.QualityLevel:3]] -[2022.06.19-20.18.15:318][ 0]LogConfig: Applying CVar settings from Section [FoliageQuality@3] File [/home/sharkfin/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor/Scalability.ini] -[2022.06.19-20.18.15:318][ 0]LogConfig: Setting CVar [[foliage.DensityScale:1.0]] -[2022.06.19-20.18.15:318][ 0]LogConfig: Setting CVar [[grass.DensityScale:1.0]] -[2022.06.19-20.18.15:318][ 0]LogConfig: Applying CVar settings from Section [ShadingQuality@3] File [/home/sharkfin/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor/Scalability.ini] -[2022.06.19-20.18.15:318][ 0]LogConfig: Setting CVar [[r.HairStrands.SkyLighting.IntegrationType:2]] -[2022.06.19-20.18.15:318][ 0]LogConfig: Setting CVar [[r.HairStrands.SkyAO.SampleCount:4]] -[2022.06.19-20.18.15:318][ 0]LogConfig: Setting CVar [[r.HairStrands.Visibility.MSAA.SamplePerPixel:4]] -[2022.06.19-20.18.15:318][ 0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [/home/sharkfin/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor/Engine.ini] -[2022.06.19-20.18.15:318][ 0]LogConfig: Setting CVar [[CommonLoadingScreen.HoldLoadingScreenAdditionalSecs:0.500000]] -[2022.06.19-20.18.15:318][ 0]LogConfig: Setting CVar [[g.TimeoutForBlockOnRenderFence:60000]] -[2022.06.19-20.18.15:318][ 0]LogInit: Unix hardware info: -[2022.06.19-20.18.15:318][ 0]LogInit: - we are the first instance of this executable -[2022.06.19-20.18.15:318][ 0]LogInit: - this process' id (pid) is 103242, parent process' id (ppid) is 103235 -[2022.06.19-20.18.15:318][ 0]LogInit: - we are not running under debugger -[2022.06.19-20.18.15:318][ 0]LogInit: - machine network name is 'archfin' -[2022.06.19-20.18.15:318][ 0]LogInit: - user name is 'sharkfin' (sharkfin) -[2022.06.19-20.18.15:318][ 0]LogInit: - we're logged in locally -[2022.06.19-20.18.15:318][ 0]LogInit: - we're running with rendering -[2022.06.19-20.18.15:318][ 0]LogInit: - CPU: GenuineIntel '12th Gen Intel(R) Core(TM) i5-12600K' (signature: 0x90672) -[2022.06.19-20.18.15:318][ 0]LogInit: - Number of physical cores available for the process: 10 -[2022.06.19-20.18.15:318][ 0]LogInit: - Number of logical cores available for the process: 16 -[2022.06.19-20.18.15:319][ 0]LogInit: - Cache line size: 64 -[2022.06.19-20.18.15:319][ 0]LogInit: - Memory allocator used: binned2 -[2022.06.19-20.18.15:319][ 0]LogInit: - This binary is optimized with LTO: no, PGO: no, instrumented for PGO data collection: no -[2022.06.19-20.18.15:319][ 0]LogInit: - This is an internal build. -[2022.06.19-20.18.15:319][ 0]LogCore: Benchmarking clocks: -[2022.06.19-20.18.15:319][ 0]LogCore: - CLOCK_MONOTONIC (id=1) can sustain 91495660 (91496K, 91M) calls per second without zero deltas. -[2022.06.19-20.18.15:319][ 0]LogCore: - CLOCK_MONOTONIC_RAW (id=4) can sustain 88955761 (88956K, 89M) calls per second without zero deltas. -[2022.06.19-20.18.15:319][ 0]LogCore: - CLOCK_MONOTONIC_COARSE (id=6) can sustain 288020308 (288020K, 288M) calls per second with 99.999892% zero deltas. -[2022.06.19-20.18.15:319][ 0]LogCore: Selected clock_id 1 (CLOCK_MONOTONIC) since it is the fastest support clock without zero deltas. -[2022.06.19-20.18.15:319][ 0]LogInit: Unix-specific commandline switches: -[2022.06.19-20.18.15:319][ 0]LogInit: -ansimalloc - use malloc()/free() from libc (useful for tools like valgrind and electric fence) -[2022.06.19-20.18.15:319][ 0]LogInit: -jemalloc - use jemalloc for all memory allocation -[2022.06.19-20.18.15:319][ 0]LogInit: -binnedmalloc - use binned malloc for all memory allocation -[2022.06.19-20.18.15:319][ 0]LogInit: -filemapcachesize=NUMBER - set the size for case-sensitive file mapping cache -[2022.06.19-20.18.15:319][ 0]LogInit: -useksm - uses kernel same-page mapping (KSM) for mapped memory (OFF) -[2022.06.19-20.18.15:319][ 0]LogInit: -ksmmergeall - marks all mmap'd memory pages suitable for KSM (OFF) -[2022.06.19-20.18.15:319][ 0]LogInit: -preloadmodulesymbols - Loads the main module symbols file into memory (OFF) -[2022.06.19-20.18.15:319][ 0]LogInit: -sigdfl=SIGNAL - Allows a specific signal to be set to its default handler rather then ignoring the signal -[2022.06.19-20.18.15:319][ 0]LogInit: -httpproxy=ADDRESS:PORT - redirects HTTP requests to a proxy (only supported if compiled with libcurl) -[2022.06.19-20.18.15:319][ 0]LogInit: -reuseconn - allow libcurl to reuse HTTP connections (only matters if compiled with libcurl) -[2022.06.19-20.18.15:319][ 0]LogInit: -virtmemkb=NUMBER - sets process virtual memory (address space) limit (overrides VirtualMemoryLimitInKB value from .ini) -[2022.06.19-20.18.15:319][ 0]LogInit: - Physical RAM available (not considering process quota): 32 GB (31897 MB, 32662656 KB, 33446559744 byteSteam -Window 6b98ec20 unmapped -Unregistered late callbacks XWL: 6b98ee28 6b98f110 6b98f178 6b98edc0 -Callback 3fc24a90 -> 6b98ec20, XWayland Window Late removed. -Callback 3fc24a90 -> 6b98ec20, XWayland Window Late removed. -Callback 3fc24a90 -> 6b98ec20, XWayland Window Late removed. -Callback 3fc24a90 -> 6b98ec20, XWayland Window Late removed. -Destroying the SubSurface tree of unmapped window 6b98ec20 -Callback 3fc24a20 -> 6b87d8f0, SurfaceTreeNode removed. -Callback 3fc24a20 -> 6b87d8f0, SurfaceTreeNode removed. -Callback 3fc24a20 -> 6b87d8f0, SurfaceTreeNode removed. -SurfaceTree Node removed -New XWayland Surface created. -Registered signal for owner 6b7a0f90: 6b979948 -> 6b7a0ff8 (owner: XWayland Window) -Registered signal for owner 6b7a0f90: 6b979958 -> 6b7a1060 (owner: XWayland Window) -Registered signal for owner 6b7a0f90: 6b9798c8 -> 6b7a10c8 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b7a4360: 6b7828e8 -> 6b7a43c8 (owner: XWayland Window) -Registered signal for owner 6b7a4360: 6b7828f8 -> 6b7a4430 (owner: XWayland Window) -Registered signal for owner 6b7a4360: 6b782868 -> 6b7a4498 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b7a4b80: 6b7a2098 -> 6b7a4be8 (owner: XWayland Window) -Registered signal for owner 6b7a4b80: 6b7a20a8 -> 6b7a4c50 (owner: XWayland Window) -Registered signal for owner 6b7a4b80: 6b7a2018 -> 6b7a4cb8 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b7a53a0: 6b9ad098 -> 6b7a5408 (owner: XWayland Window) -Registered signal for owner 6b7a53a0: 6b9ad0a8 -> 6b7a5470 (owner: XWayland Window) -Registered signal for owner 6b7a53a0: 6b9ad018 -> 6b7a54d8 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b7c3bc0: 6b7a3a38 -> 6b7c3c28 (owner: XWayland Window) -Registered signal for owner 6b7c3bc0: 6b7a3a48 -> 6b7c3c90 (owner: XWayland Window) -Registered signal for owner 6b7c3bc0: 6b7a39b8 -> 6b7c3cf8 (owner: XWayland Window) -Set keyboard focus to surface 6b9ad490, with window name: Splitgate - Steam -Registered signal for owner 6b945650: 6b9ad760 -> 6b945658 (owner: SurfaceTreeNode) -Registered signal for owner 6b945650: 6b9ad750 -> 6b9456c0 (owner: SurfaceTreeNode) -Registered signal for owner 6b945650: 6b9ad770 -> 6b945728 (owner: SurfaceTreeNode) -Creating a surfaceTree Root! (pWindow: 6b7a0f90) -Window got assigned a surfaceTreeNode 6b945650 -Registered signal for owner 6b7a0f90: 6b979928 -> 6b7a1198 (owner: XWayland Window Late) -Registered signal for owner 6b7a0f90: 6b979938 -> 6b7a1480 (owner: XWayland Window Late) -Registered signal for owner 6b7a0f90: 6b9798d8 -> 6b7a14e8 (owner: XWayland Window Late) -Registered signal for owner 6b7a0f90: 6b979968 -> 6b7a1130 (owner: XWayland Window Late) -Map request dispatched, monitor DP-3, xywh: 1248.000000 708.000000 64.000000 24.000000 -Set keyboard focus to surface 6b9abe40, with window name: Steam -Window 6b7a0f90 unmapped -Unregistered late callbacks XWL: 6b7a1198 6b7a1480 6b7a14e8 6b7a1130 -Callback 3fc24a90 -> 6b7a0f90, XWayland Window Late removed. -Callback 3fc24a90 -> 6b7a0f90, XWayland Window Late removed. -Callback 3fc24a90 -> 6b7a0f90, XWayland Window Late removed. -Callback 3fc24a90 -> 6b7a0f90, XWayland Window Late removed. -Framebuffer created, status 36053 -Destroying the SubSurface tree of unmapped window 6b7a0f90 -Callback 3fc24a20 -> 6b945650, SurfaceTreeNode removed. -Callback 3fc24a20 -> 6b945650, SurfaceTreeNode removed. -Callback 3fc24a20 -> 6b945650, SurfaceTreeNode removed. -SurfaceTree Node removed -Window 6b7a4360 destroyed, queueing. -Callback 3fc24b10 -> 6b7a4360, XWayland Window removed. -Callback 3fc24b10 -> 6b7a4360, XWayland Window removed. -Callback 3fc24b10 -> 6b7a4360, XWayland Window removed. -Window 6b7a0f90 destroyed, queueing. -Callback 3fc24b10 -> 6b7a0f90, XWayland Window removed. -Callback 3fc24b10 -> 6b7a0f90, XWayland Window removed. -Callback 3fc24b10 -> 6b7a0f90, XWayland Window removed. -Cleanup: destroyed a window -New XWayland Surface created. -Registered signal for owner 6b7a0f90: 6b7828e8 -> 6b7a0ff8 (owner: 00:00:24.090 [ERROR] [xwayland/xwm.c:1546] xcb error: op ConfigureWindow (no minor), code Value (no extension), sequence 2640, value 0 -Installing breakpad exception handler for appid(gameoverlayui)/version(20220618001721) -Installing breakpad exception handler for appid(gameoverlayui)/version(1.0) -Installing breakpad exception handler for appid(gameoverlayui)/version(1.0) -s) -[2022.06.19-20.18.15:319][ 0]LogInit: - VirtualMemoryAllocator pools will grow at scale 1.4 -[2022.06.19-20.18.15:319][ 0]LogInit: - MemoryRangeDecommit() will be a no-op (re-run with -vmapoolevict to change) -[2022.06.19-20.18.15:332][ 0]LogInit: Physics initialised using underlying interface: PhysX -[2022.06.19-20.18.15:332][ 0]LogInit: Using OS detected language (en-US-POSIX). -[2022.06.19-20.18.15:332][ 0]LogInit: Using OS detected locale (en-US-POSIX). -[2022.06.19-20.18.15:333][ 0]LogTextLocalizationManager: No specific localization for 'en-US-POSIX' exists, so the 'en' localization will be used. -[2022.06.19-20.18.15:346][ 0]LogHAL: Warning: Game icon not found. -[2022.06.19-20.18.15:386][ 0]LogSlate: New Slate User Created. User Index 0, Is Virtual User: 0 -[2022.06.19-20.18.15:386][ 0]LogSlate: Slate User Registered. User Index 0, Is Virtual User: 0 -[2022.06.19-20.18.15:387][ 0]LogInit: Using SDL_WINDOW_VULKAN -[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: - Found 8 instance layers -[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_LAYER_AMD_switchable_graphics_32 -[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_LAYER_AMD_switchable_graphics_64 -[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_LAYER_KHRONOS_validation -[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_LAYER_NV_optimus -[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_LAYER_VALVE_steam_fossilize_32 -[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_LAYER_VALVE_steam_fossilize_64 -[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_LAYER_VALVE_steam_overlay_32 -[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_LAYER_VALVE_steam_overlay_64 -[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: - Found 19 instance extensions -[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_EXT_acquire_xlib_display -[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_EXT_debug_report -[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_EXT_debug_utils -[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_EXT_direct_mode_display -[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_EXT_display_surface_counter -[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_EXT_validation_features -[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_KHR_device_group_creation -[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_KHR_display -[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_KHR_external_fence_capabilities -[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_KHR_external_memory_capabilities -[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_KHR_external_semaphore_capabilities -[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_KHR_get_display_properties2 -[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_KHR_get_physical_device_properties2 -[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_KHR_get_surface_capabilities2 -[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_KHR_portability_enumeration -[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_KHR_surface -[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_KHR_wayland_surface -[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_KHR_xcb_surface -[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_KHR_xlib_surface -[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: Not using instance layers -[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: Using instance extensions -[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_KHR_surface -[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_KHR_xlib_surface -[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_KHR_external_memory_capabilities -[2022.06.19-20.18.15:392][ 0]LogVulkanRHI: Display: * VK_KHR_get_physical_device_properties2 -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: Found 1 device(s) -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: Device 0: AMD Radeon RX 6900 XT -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - API 1.3.212(0x4030d4) Driver 0x8000e2 VendorId 0x1002 -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - DeviceID 0x73bf Type Discrete GPU -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Max Descriptor Sets Bound 32 Timestamps 1 -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Device Properties driverName: AMD open-source driver -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Device Properties driverInfo: 2022.Q2.2 -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device layer VK_LAYER_AMD_switchable_graphics_32 -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device layer VK_LAYER_AMD_switchable_graphics_64 -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device layer VK_LAYER_VALVE_steam_overlay_32 -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device layer VK_LAYER_VALVE_steam_overlay_64 -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_AMD_buffer_marker -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_AMD_device_coherent_memory -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_AMD_draw_indirect_count -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_AMD_gcn_shader -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_AMD_gpa_interface -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_AMD_gpu_shader_half_float -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_AMD_gpu_shader_int16 -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_AMD_memory_overallocation_behavior -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_AMD_mixed_attachment_samples -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_AMD_shader_ballot -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_AMD_shader_core_properties -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_AMD_shader_core_properties2 -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_AMD_shader_explicit_vertex_parameter -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_AMD_shader_fragment_mask -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_AMD_shader_image_load_store_lod -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_AMD_shader_info -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_AMD_shader_trinary_minmax -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_AMD_texture_gather_bias_lod -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_4444_formats -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_border_color_swizzle -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_calibrated_timestamps -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_color_write_enable -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_conditional_rendering -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_conservative_rasterization -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_custom_border_color -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_depth_clip_control -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_depth_clip_enable -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_depth_range_unrestricted -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_descriptor_indexing -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_extended_dynamic_state -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_extended_dynamic_state2 -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_external_memory_dma_buf -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_external_memory_host -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_global_priority -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_global_priority_query -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_hdr_metadata -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_host_query_reset -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_image_robustness -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_image_view_min_lod -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_index_type_uint8 -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_inline_uniform_block -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_line_rasterization -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_load_store_op_none -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_memory_budget -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_memory_priority -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_pageable_device_local_memory -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_pci_bus_info -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_pipeline_creation_cache_control -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_pipeline_creation_feedback -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_post_depth_coverage -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_primitive_topology_list_restart -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_private_data -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_provoking_vertex -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_queue_family_foreign -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_robustness2 -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_sample_locations -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_sampler_filter_minmax -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_scalar_block_layout -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_separate_stencil_usage -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_shader_atomic_float -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_shader_atomic_float2 -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_shader_demote_to_helper_invocation -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_shader_image_atomic_int64 -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_shader_stencil_export -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_shader_subgroup_ballot -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_shader_subgroup_vote -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_shader_viewport_index_layer -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_subgroup_size_control -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_texel_buffer_alignment -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_tooling_info -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_transform_feedback -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_vertex_attribute_divisor -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_ycbcr_image_arrays -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_GOOGLE_decorate_string -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_GOOGLE_hlsl_functionality1 -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_GOOGLE_user_type -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_16bit_storage -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_8bit_storage -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_bind_memory2 -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_buffer_device_address -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_copy_commands2 -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_create_renderpass2 -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_dedicated_allocation -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_depth_stencil_resolve -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_descriptor_update_template -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_device_group -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_draw_indirect_count -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_driver_properties -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_dynamic_rendering -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_external_fence -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_external_fence_fd -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_external_memory -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_external_memory_fd -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_external_semaphore -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_external_semaphore_fd -[2022.06.19-20.18.15:440][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_format_feature_flags2 -[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_fragment_shading_rate -[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_get_memory_requirements2 -[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_global_priority -[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_image_format_list -[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_imageless_framebuffer -[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_maintenance1 -[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_maintenance2 -[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_maintenance3 -[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_maintenance4 -[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_multiview -[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_pipeline_executable_properties -[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_pipeline_library -[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_relaxed_block_layout -[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_sampler_mirror_clamp_to_edge -[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_sampler_ycbcr_conversion -[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_separate_depth_stencil_layouts -[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_atomic_int64 -[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_clock -[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_draw_parameters -[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_float16_int8 -[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_float_controls -[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_integer_dot_product -[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_non_semantic_info -[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_subgroup_extended_types -[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_subgroup_uniform_control_flow -[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_terminate_invocation -[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_spirv_1_4 -[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_storage_buffer_storage_class -[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_swapchain -[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_swapchain_mutable_format -[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_synchronization2 -[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_timeline_semaphore -[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_uniform_buffer_standard_layout -[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_variable_pointers -[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_vulkan_memory_model -[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_workgroup_memory_explicit_layout -[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_zero_initialize_workgroup_memory -[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: Using Device 0: Geometry 1 Tessellation 1 BufferAtomic64 1 -[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: Found 3 Queue Families -[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: Initializing Queue Family 0: 1 queues Gfx Compute Xfer Sparse -[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: Skipping unnecessary Queue Family 1: 4 queues Compute Xfer Sparse -[2022.06.19-20.18.15:441][ 0]LogVulkanRHI: Display: Initializing Queue Family 2: 2 queues Xfer Sparse -[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: Using device layers -[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: Using device extensions -[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: * VK_KHR_driver_properties -[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: * VK_KHR_get_memory_requirements2 -[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: * VK_KHR_dedicated_allocation -[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: * VK_KHR_swapchain -[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: * VK_KHR_maintenance1 -[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: * VK_KHR_maintenance2 -[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: * VK_EXT_memory_budget -[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: * VK_EXT_scalar_block_layout -[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: * VK_EXT_memory_priority -[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: * VK_KHR_shader_atomic_int64 -[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: * VK_KHR_image_format_list -[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: MapFormatSupport: D24 (images) is not supported with Vk format 125, falling back to Vk format 128 -[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: MapFormatSupport: D24 (images) is not supported with Vk format 125, falling back to Vk format 126 -[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: MapFormatSupport: D24 (images) is not supported with Vk format 125, falling back to Vk format 130 -[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: 2 Device Memory Heaps; Max memory allocations -1 -[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: 0: Flags 0x0 Size 33446428672 (31897.00 MB) -[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: 1: Flags 0x3 Size 17163091968 (16368.00 MB) GPU -[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: 8 Device Memory Types (Not unified) -[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: 1: Flags 0x00006 Heap 0 HostVisible HostCoherent -[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: 3: Flags 0x0000e Heap 0 HostVisible HostCoherent HostCached -[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: 5: Flags 0x000c6 Heap 0 HostVisible HostCoherent -[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: 7: Flags 0x000ce Heap 0 HostVisible HostCoherent HostCached -[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: 0: Flags 0x00001 Heap 1 Local -[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: 2: Flags 0x00007 Heap 1 Local HostVisible HostCoherent -[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: 4: Flags 0x000c1 Heap 1 Local -[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: 6: Flags 0x000c7 Heap 1 Local HostVisible HostCoherent -[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: Host Allocation Percentage 0.00% - 0.00MB / 15549.600MB -[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: Memory Budget -[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: | Usage | Budget | Size | -[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: ---------|---------------------------------------------------------------| -[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: HEAP 00 | 0.00% / 0.000mb | 30302.150mb | 31897.000mb | -[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: HEAP 01 | 0.00% / 0.000mb | 15549.600mb | 16368.000mb | -[2022.06.19-20.18.15:442][ 0]LogVulkanRHI: Display: ---------|---------------------------------------------------------------| -[2022.06.19-20.18.15:443][ 0]LogVulkanRHI: Display: FVulkanPipelineStateCacheManager: Binary pipeline cache '/home/sharkfin/.config/Epic/PortalWars/Saved/VulkanPSO.cache.1002.73bf' not found. -[2022.06.19-20.18.15:445][ 0]LogRHI: Texture pool is 11457 MB (70% of 16368 MB) -[2022.06.19-20.18.15:445][ 0]LogRendererCore: Ray tracing is disabled. Reason: r.RayTracing=0. -[2022.06.19-20.18.15:459][ 0]LogSlate: Using FreeType 2.10.0 -[2022.06.19-20.18.15:460][ 0]LogSlate: SlateFontServices - WITH_FREETYPE: 1, WITH_HARFBUZZ: 1 -[2022.06.19-20.18.15:477][ 0]LogInit: Using OS detected language (en-US-POSIX). -[2022.06.19-20.18.15:477][ 0]LogInit: Using OS detected locale (en-US-POSIX). -[2022.06.19-20.18.15:477][ 0]LogTextLocalizationManager: No specific localization for 'en-US-POSIX' exists, so the 'en' localization will be used. -[2022.06.19-20.18.15:493][ 0]LogTextLocalizationManager: Compacting localization data took 0.85ms -[XWayland Window) -Registered signal for owner 6b7a0f90: 6b7828f8 -> 6b7a1060 (owner: XWayland Window) -Registered signal for owner 6b7a0f90: 6b782868 -> 6b7a10c8 (owner: XWayland Window) -Window 6b7a0f90 destroyed, queueing. -Callback 3fc24b10 -> 6b7a0f90, XWayland Window removed. -Callback 3fc24b10 -> 6b7a0f90, XWayland Window removed. -Callback 3fc24b10 -> 6b7a0f90, XWayland Window removed. -New XWayland Surface created. -Registered signal for owner 6b7c61c0: 6b7828e8 -> 6b7c6228 (owner: XWayland Window) -Registered signal for owner 6b7c61c0: 6b7828f8 -> 6b7c6290 (owner: XWayland Window) -Registered signal for owner 6b7c61c0: 6b782868 -> 6b7c62f8 (owner: XWayland Window) -Window 6b7c61c0 destroyed, queueing. -Callback 3fc24b10 -> 6b7c61c0, XWayland Window removed. -Callback 3fc24b10 -> 6b7c61c0, XWayland Window removed. -Callback 3fc24b10 -> 6b7c61c0, XWayland Window removed. -New XWayland Surface created. -Registered signal for owner 6b7c69e0: 6b7828e8 -> 6b7c6a48 (owner: XWayland Window) -Registered signal for owner 6b7c69e0: 6b7828f8 -> 6b7c6ab0 (owner: XWayland Window) -Registered signal for owner 6b7c69e0: 6b782868 -> 6b7c6b18 (owner: XWayland Window) -Set keyboard focus to surface 6b979cd0, with window name: -Registered signal for owner 6b945650: 6b979fa0 -> 6b945658 (owner: SurfaceTreeNode) -Registered signal for owner 6b945650: 6b979f90 -> 6b9456c0 (owner: SurfaceTreeNode) -Registered signal for owner 6b945650: 6b979fb0 -> 6b945728 (owner: SurfaceTreeNode) -Creating a surfaceTree Root! (pWindow: 6b7c69e0) -Window got assigned a surfaceTreeNode 6b945650 -Registered signal for owner 6b7c69e0: 6b7828c8 -> 6b7c6be8 (owner: XWayland Window Late) -Registered signal for owner 6b7c69e0: 6b7828d8 -> 6b7c6ed0 (owner: XWayland Window Late) -Registered signal for owner 6b7c69e0: 6b782878 -> 6b7c6f38 (owner: XWayland Window Late) -Registered signal for owner 6b7c69e0: 6b782908 -> 6b7c6b80 (owner: XWayland Window Late) -Map request dispatched, monitor DP-3, xywh: 640.000000 360.000000 1280.000000 720.000000 -New XWayland Surface created. -Registered signal for owner 6b7c90a0: 6b7c8f88 -> 6b7c9108 (owner: XWayland Window) -Registered signal for owner 6b7c90a0: 6b7c8f98 -> 6b7c9170 (owner: XWayland Window) -Registered signal for owner 6b7c90a0: 6b7c8f08 -> 6b7c91d8 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b7c9b50: 6b7c9a38 -> 6b7c9bb8 (owner: XWayland Window) -Registered signal for owner 6b7c9b50: 6b7c9a48 -> 6b7c9c20 (owner: XWayland Window) -Registered signal for owner 6b7c9b50: 6b7c99b8 -> 6b7c9c88 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b7ca810: 6b7ca6f8 -> 6b7ca878 (owner: XWayland Window) -Registered signal for owner 6b7ca810: 6b7ca708 -> 6b7ca8e0 (owner: XWayland Window) -Registered signal for owner 6b7ca810: 6b7ca678 -> 6b7ca948 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b7cb4d0: 6b7cb3b8 -> 6b7cb538 (owner: XWayland Window) -Registered signal for owner 6b7cb4d0: 6b7cb3c8 -> 6b7cb5a0 (owner: XWayland Window) -Registered signal for owner 6b7cb4d0: 6b7cb338 -> 6b7cb608 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b7cc190: 6b7cc078 -> 6b7cc1f8 (owner: XWayland Window) -Registered signal for owner 6b7cc190: 6b7cc088 -> 6b7cc260 (owner: XWayland Window) -Registered signal for owner 6b7cc190: 6b7cbff8 -> 6b7cc2c8 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b7cce50: 6b7ccd38 -> 6b7cceb8 (owner: XWayland Window) -Registered signal for owner 6b7cce50: 6b7ccd48 -> 6b7ccf20 (owner: XWayland Window) -Registered signal for owner 6b7cce50: 6b7cccb8 -> 6b7ccf88 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b7cdb10: 6b7cd9f8 -> 6b7cdb78 (owner: XWayland Window) -Registered signal for owner 6b7cdb10: 6b7cda08 -> 6b7cdbe0 (owner: XWayland Window) -Registered signal for owner 6b7cdb10: 6b7cd978 -> 6b7cdc48 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b7ce7d0: 6b7ce6b8 -> 6b7ce838 (owner: XWayland Windo00:00:24.453 [ERROR] [xwayland/xwm.c:1546] xcb error: op ConfigureWindow (no minor), code Value (no extension), sequence 3180, value 0 -Installing breakpad exception handler for appid(gameoverlayui)/version(1.0) -w) -Registered signal for owner 6b7ce7d0: 6b7ce6c8 -> 6b7ce8a0 (owner: XWayland Window) -Registered signal for owner 6b7ce7d0: 6b7ce638 -> 6b7ce908 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b7cf490: 6b7cf378 -> 6b7cf4f8 (owner: XWayland Window) -Registered signal for owner 6b7cf490: 6b7cf388 -> 6b7cf560 (owner: XWayland Window) -Registered signal for owner 6b7cf490: 6b7cf2f8 -> 6b7cf5c8 (owner: XWayland Window) -Window 6b7c69e0 unmapped -Unregistered late callbacks XWL: 6b7c6be8 6b7c6ed0 6b7c6f38 6b7c6b80 -Callback 3fc24a90 -> 6b7c69e0, XWayland Window Late removed. -Callback 3fc24a90 -> 6b7c69e0, XWayland Window Late removed. -Callback 3fc24a90 -> 6b7c69e0, XWayland Window Late removed. -Callback 3fc24a90 -> 6b7c69e0, XWayland Window Late removed. -Framebuffer created, status 36053 -Set keyboard focus to surface 6b9abe40, with window name: Steam -Destroying the SubSurface tree of unmapped window 6b7c69e0 -Callback 3fc24a20 -> 6b945650, SurfaceTreeNode removed. -Callback 3fc24a20 -> 6b945650, SurfaceTreeNode removed. -Callback 3fc24a20 -> 6b945650, SurfaceTreeNode removed. -SurfaceTree Node removed -New XWayland Surface created. -Registered signal for owner 6b7c7250: 6b979e58 -> 6b7c72b8 (owner: XWayland Window) -Registered signal for owner 6b7c7250: 6b979e68 -> 6b7c7320 (owner: XWayland Window) -Registered signal for owner 6b7c7250: 6b979dd8 -> 6b7c7388 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b7d1460: 6b7a34f8 -> 6b7d14c8 (owner: XWayland Window) -Registered signal for owner 6b7d1460: 6b7a3508 -> 6b7d1530 (owner: XWayland Window) -Registered signal for owner 6b7d1460: 6b7a3478 -> 6b7d1598 (owner: XWayland Window) -Window 6b7c69e0 destroyed, queueing. -Callback 3fc24b10 -> 6b7c69e0, XWayland Window removed. -Callback 3fc24b10 -> 6b7c69e0, XWayland Window removed. -Callback 3fc24b10 -> 6b7c69e0, XWayland Window removed. -New XWayland Surface created. -Registered signal for owner 6b7d1c80: 6b7828e8 -> 6b7d1ce8 (owner: XWayland Window) -Registered signal for owner 6b7d1c80: 6b7828f8 -> 6b7d1d50 (owner: XWayland Window) -Registered signal for owner 6b7d1c80: 6b782868 -> 6b7d1db8 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b7d24a0: 6b7c84b8 -> 6b7d2508 (owner: XWayland Window) -Registered signal for owner 6b7d24a0: 6b7c84c8 -> 6b7d2570 (owner: XWayland Window) -Registered signal for owner 6b7d24a0: 6b7c8438 -> 6b7d25d8 (owner: XWayland Window) -Set keyboard focus to surface 6b9aca20, with window name: PortalWars -Registered signal for owner 6b945650: 6b9accf0 -> 6b945658 (owner: SurfaceTreeNode) -Registered signal for owner 6b945650: 6b9acce0 -> 6b9456c0 (owner: SurfaceTreeNode) -Registered signal for owner 6b945650: 6b9acd00 -> 6b945728 (owner: SurfaceTreeNode) -Creating a surfaceTree Root! (pWindow: 6b7d24a0) -Window got assigned a surfaceTreeNode 6b945650 -Registered signal for owner 6b7d24a0: 6b7c8498 -> 6b7d26a8 (owner: XWayland Window Late) -Registered signal for owner 6b7d24a0: 6b7c84a8 -> 6b7d2990 (owner: XWayland Window Late) -Registered signal for owner 6b7d24a0: 6b7c8448 -> 6b7d29f8 (owner: XWayland Window Late) -Registered signal for owner 6b7d24a0: 6b7c84d8 -> 6b7d2640 (owner: XWayland Window Late) -Map request dispatched, monitor DP-3, xywh: 320.000000 217.000000 1920.000000 1007.000000 -Window 6b7ce7d0 destroyed, queueing. -Callback 3fc24b10 -> 6b7ce7d0, XWayland Window removed. -Callback 3fc24b10 -> 6b7ce7d0, XWayland Window removed. -Callback 3fc24b10 -> 6b7ce7d0, XWayland Window removed. -Window 6b7cdb10 destroyed, queueing. -Callback 3fc24b10 -> 6b7cdb10, XWayland Window removed. -Callback 3fc24b10 -> 6b7cdb10, XWayland Window removed. -Callback 3fc24b10 -> 6b7cdb10, XWayland Window removed. -Window 6b7cce50 destroyed, queueing. -Callback 3fc24b10 -> 6b7cce50, XWayland Window removed. -Callback 3fc24b10 -> 6b7cce50, XWayland Window removed. -Callback 3fc24b10 -> 6b7cce50, XWayland Window removed. -Window 6b7cc190 destroyed, queueing. -Callback 3fc24b10 -> 6b7cc190, XWayland Window removed. -Callback 3fc24b10 -> 6b7cc190, XWayland Window re2022.06.19-20.18.15:493][ 0]LogAssetRegistry: FAssetRegistry took 0.0157 seconds to start up -[2022.06.19-20.18.15:541][ 0]LogStreaming: Display: FlushAsyncLoading: 1 QueuedPackages, 0 AsyncPackages -[2022.06.19-20.18.15:544][ 0]LogSerialization: Display: AllowBulkDataInIoStore: 'true' -[2022.06.19-20.18.15:545][ 0]LogModuleManager: Warning: ModuleManager: Module 'LinuxDeviceProfileSelector' not found - its StaticallyLinkedModuleInitializers function is null. -[2022.06.19-20.18.15:545][ 0]LogInit: Active device profile: [0x7f8eb5065f80][0x7f8eb3819250 49] LinuxNoEditor -[2022.06.19-20.18.15:545][ 0]LogInit: Profiles: [0x7f8eb5065ec0][0x7f8eb3816dc0 49] Linux, [0x7f8eb5065f80][0x7f8eb3819250 49] LinuxNoEditor, -[2022.06.19-20.18.15:546][ 0]LogNetVersion: PortalWars 1.0.0, NetCL: 17155196, EngineNetVer: 17, GameNetVer: 0 (Checksum: 2672213518) -[2022.06.19-20.18.15:569][ 0]LogAkAudio: Wwise(R) SDK Version 2019.1.10 Build 7250. Copyright (c) 2006-2019 Audiokinetic Inc. -[2022.06.19-20.18.15:570][ 0]LogInit: Audiokinetic Audio Device setting bank directory to ../../../PortalWars/Content/WwiseAudio/Linux. -[2022.06.19-20.18.15:571][ 0]LogPakFile: New pak file ../../../PortalWars/Content/Paks/pakchunk3-LinuxNoEditor.pak added to pak precacher. -[2022.06.19-20.18.15:571][ 0]LogInit: Audiokinetic Audio Device initialized. -[2022.06.19-20.18.15:571][ 0]LogPackageLocalizationCache: Processed 31 localized package path(s) for 1 prioritized culture(s) in 0.000034 seconds -[2022.06.19-20.18.15:572][ 0]LogStats: UGameplayTagsManager::InitializeManager - 0.001 s -[2022.06.19-20.18.15:573][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated -[2022.06.19-20.18.15:721][ 0]LogMoviePlayer: Initializing movie player -[2022.06.19-20.18.15:725][ 0]LogVulkanRHI: Display: Requested PixelFormat 18 not supported by this swapchain! Falling back to supported swapchain format... -[2022.06.19-20.18.15:725][ 0]LogVulkanRHI: Display: Queue Family 0: Supports Present -[2022.06.19-20.18.15:725][ 0]LogVulkanRHI: Display: Queue Family 0: Supports Present -[2022.06.19-20.18.15:725][ 0]LogVulkanRHI: Display: Queue Family 2: Supports Present -[2022.06.19-20.18.15:725][ 0]LogVulkanRHI: Creating new VK swapchain with present mode 1, format 44, color space 0, num images 3 -[2022.06.19-20.18.15:750][ 0]AccelByteNetUtil: AccelByteNetworkUtilities startup -[2022.06.19-20.18.15:750][ 0]LogEQU8Client: EQU8 Client Sdk Initialized -[2022.06.19-20.18.15:752][ 0]LogUObjectArray: 20949 objects as part of root set at end of initial load. -[2022.06.19-20.18.15:752][ 0]LogUObjectArray: 2 objects are not in the root set, but can never be destroyed because they are in the DisregardForGC set. -[2022.06.19-20.18.15:752][ 0]LogUObjectAllocator: 5587648 out of 0 bytes used by permanent object pool. -[2022.06.19-20.18.15:752][ 0]LogUObjectArray: CloseDisregardForGC: 20949/20949 objects in disregard for GC pool -[2022.06.19-20.18.15:752][ 0]LogStreaming: Display: AsyncLoading2 - Thread Started: true, IsInitialLoad: false -[2022.06.19-20.18.15:752][ 0]LogEngine: Initializing Engine... -[2022.06.19-20.18.15:874][ 0]LogStreaming: Display: AsyncLoading2 - InitialLoad Finalized: 20383 script object entries in 547.98 KB -[2022.06.19-20.18.15:874][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated -[2022.06.19-20.18.16:004][ 0]LogPakFile: New pak file ../../../PortalWars/Content/Paks/pakchunk0-LinuxNoEditor.pak added to pak precacher. -[2022.06.19-20.18.16:004][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated -[2022.06.19-20.18.16:091][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated -[2022.06.19-20.18.16:329][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated -[2022.06.19-20.18.16:463][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated -[2022.06.19-20.18.16:512][ 0]LogInit: Initializing FReadOnlyCVARCache -[2022.06.19-20.18.16:512][ 0]LogAudio: Display: Initializing Audio Device Manager... -[2022.06.19-20.18.16:512][ 0]LogAudio: Display: Loading Default Audio Settings Objects... -[2022.06.19-20.18.16:513][ 0]LogAudio: Display: No default SoundConcurrencyObject specified (or failed to load). -[2022.06.19-20.18.16:513][ 0]LogAudio: Display: Audio Device Manager Initialized -[2022.06.19-20.18.16:513][ 0]LogAudio: Display: Creating Audio Device: Id: 1, Scope: Shared, Realtime: True -[2022.06.19-20.18.16:513][ 0]LogAudioMixer: Display: Audio Mixer Platform Settings: -[2022.06.19-20.18.16:513][ 0]LogAudioMixer: Display: Sample Rate: 48000 -[2022.06.19-20.18.16:513][ 0]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 -[2022.06.19-20.18.16:513][ 0]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 -[2022.06.19-20.18.16:513][ 0]LogAudioMixer: Display: Number of buffers to queue: 2 -[2022.06.19-20.18.16:513][ 0]LogAudioMixer: Display: Max Channels (voices): 32 -[2022.06.19-20.18.16:513][ 0]LogAudioMixer: Display: Number of Async Source Workers: 0 -[2022.06.19-20.18.16:513][ 0]LogAudio: Display: AudioDevice MaxSources: 32 -[2022.06.19-20.18.16:513][ 0]LogAudio: Display: Audio Spatialization Plugin: None (built-in). -[2022.06.19-20.18.16:513][ 0]LogAudio: Display: Audio Reverb Plugin: None (built-in). -[2022.06.19-20.18.16:513][ 0]LogAudio: Display: Audio Occlusion Plugin: None (built-in). -[2022.06.19-20.18.16:513][ 0]LogAudioMixer: Display: Initializing audio mixer. -[2022.06.19-20.18.16:517][ 0]LogAudioMixerSDL: Display: Initialized SDL using pulseaudio platform API backend. -[2022.06.19-20.18.16:675][ 0]LogAudioMixerSDL: Opening default audio device (device index -1) -[2022.06.19-20.18.16:706][ 0]LogAudioMixer: Display: Using Audio Device Default Audio Device -[2022.06.19-20.18.16:709][ 0]LogAudioMixer: Display: Initializing Sound Submixes... -[2022.06.19-20.18.16:710][ 0]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' -[2022.06.19-20.18.16:710][ 0]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' -[2022.06.19-20.18.16:711][ 0]LogAudioMixer: Display: Creating Master Submix 'MasterEQSubmixDefault' -[2022.06.19-20.18.16:711][ 0]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=6, Samples=6144 -[2022.06.19-20.18.16:711][ 0]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal() -[2022.06.19-20.18.16:711][ 0]LogInit: FAudioDevice initialized. -[2022.06.19-20.18.16:711][ 0]LogNetVersion: Set ProjectVersion to 7.0.3. Version Checksum will be recalculated on next use. -[2022.06.19-20.18.16:711][ 0]LogInit: Texture streaming: Enabled -[2022.06.19-20.18.16:713][ 0]LogAudio: Display: Audio Device (ID: 1) registered with world 'Untitled'. -[2022.06.19-20.18.16:713][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden -[2022.06.19-20.18.16:716][ 0]LogTemp: Warning: CurrentGameVersion: 7.0.3 - LastGameVersion used: 7.0.3 -[2022.06.19-20.18.16:718][ 0]LogAccelByteOSS: Warning: <<< GetApiClient (DefaultInstance) has finished execution. Failed to retrieve an API client because local user num 0 is not found! -[2022.06.19-20.18.16:718][ 0]LogAccelByteOSS: Warning: <<< GetLobbySessionId (DefaultInstance) has finished execution. Failed to get lobby session ID for user at index 0 as their API client instance is invalid! -[2022.06.19-20.18.16:718][ 0]LogInit: Display: Game Engine Initialized. -[2022.06.19-20.18.16:718][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Runtime/SunPosition/Resources/SunPosition.png' error. -[2022.06.19-20.18.16:718][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Runtime/SunPosition/Resources/SunPosition.png -[2022.06.19-20.18.16:718][ 0]LogInit: Display: Starting Game. -[2022.06.19-20.18.16:718][ 0]LogNet: Browse: /Game/Maps/MainMenu?Name=Player -[2022.06.19-20.18.16:718][ 0]LogLoadingScreen: Showing loading screen when 'IsShowingInitialLoadingScreen()' is false. -[2022.06.19-20.18.16:718][ 0]LogLoadingScreen: GameState hasn't yet replicated (it's null) -[2022.06.19-20.18.16:722][ 0]LogCore: Display: Setting hang detector multiplier to 1.0000s. New hang duration: 0.0000s. New present duration: 0.0000s. -[2022.06.19-20.18.16:726][ 0]LogVulkanRHI: Creating new VK swapchain with present mode 0, format 44, color space 0, num images 3 -[2022.06.19-20.18.16:732][ 0]LogLoadingScreen: Loading screen showing: 1. Reason: GameState hasn't yet replicated (it's null) -[2022.06.19-20.18.16:732][ 0]LogLoad: LoadMap: /Game/Maps/MainMenu?Name=Player -[2022.06.19-20.18.16:732][ 0]LogWorld: BeginTearingDown for /Temp/Untitled_0 -[2022.06.19-20.18.16:734][ 0]LogWorld: UWorld::CleanupWorld for Untitled, bSessionEnded=true, bCleanupResources=true -[2022.06.19-20.18.16:734][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated -[2022.06.19-20.18.16:736][ 0]LogStreaming: Display: 0.011 ms (0.003+0.008) ms for processing 4/73 objects in NotifyUnreachableObjects( Queued=0, Async=0). Removed 1/1 (558->557 tracked) packages and 3/3 (1140->1137 tracked) public exports. -[2022.06.19-20.18.16:736][ 0]LogAudio: Display: Audio Device unregistered from world 'None'. -[2022.06.19-20.18.16:739][ 0]LogUObjectHash: Compacting FUObjectHashTables data took 2.60ms -[2022.06.19-20.18.16:834][ 0]LogAudio: Display: Audio Device (ID: 1) registered with world 'MainMenu'. -[2022.06.19-20.18.16:835][ 0]LogAIModule: Creating AISystem for world MainMenu -[2022.06.19-20.18.16:835][ 0]LogLoad: Game class is 'MainMenuGameMode_BP_C' -[2022.06.19-20.18.16:835][ 0]LogStreaming: Display: ULevelStreaming::RequestLevel(/Game/Environments/MainMenu_Console/Maps/MainMenu_Game) is flushing async loading -[2022.06.19-20.18.16:898][ 0]LogStreaming: Display: ULevelStreaming::RequestLevel(/Game/Environments/MainMenu_Console/Maps/MainMenu_Inspect) is flushing async loading -[2022.06.19-20.18.16:952][ 0]LogStreaming: Display: ULevelStreaming::RequestLevel(/Game/Maps/Sublevels/Rewards) is flushing async loading -[2022.06.19-20.18.16:998][ 0]LogStreaming: Display: ULevelStreaming::RequestLevel(/Game/Maps/Sublevels/Abyss_Main_Menu_BLockout_Char) is flushing async loading -[2022.06.19-20.18.17:076][ 0]LogLevel: Warning: Detected duplicate WorldSettings actor - UE-62934 -[2022.06.19-20.18.17:080][ 0]LogWorld: Bringing World /Game/Maps/MainMenu.MainMenu up for play (max tick rate 165) at 2022.06.19-16.18.17 -[2022.06.19-20.18.17:081][ 0]LogWorld: Bringing up level for play took: 0.000750 -[2022.06.19-20.18.17:082][ 0]LogSkinnedMeshComp: Warning: GetSocketByName(PortalLauncherPoint): No SkeletalMesh for Component(PawnMesh1P) Actor(MyCharacter) -[2022.06.19-20.18.17:082][ 0]LogSkinnedMeshComp: Warning: GetSocketByName(PortalLauncherPoint): No SkeletalMesh for Component(PawnMesh1P) Actor(MyCharacter) -[2022.06.19-20.18.17:082][ 0]LogSkinnedMeshComp: Warning: GetSocketByName(PortalLauncherPoint): No SkeletalMesh for Component(PawnMesh1P) Actor(MyCharacter) -[2022.06.19-20.18.17:083][ 0]LogPlayerController: Setting r.AmbientOcclusionLevels to 1 -[2022.06.19-20.18.17:083][ 0]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> CapturePermanently -[2022.06.19-20.18.17:084][ 0]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock -[2022.06.19-20.18.17:084][ 0]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently -> NoCapture -[2022.06.19-20.18.17:084][ 0]LogPlayerController: Setting r.AmbientOcclusionLevels to 1 -[2022.06.19-20.18.17:084][ 0]LogLoad: Took 0.351774 seconds to LoadMap(/Game/Maps/MainMenu) -[2022.06.19-20.18.17:085][ 0]LogSlate: Took 0.000452 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/Montserrat/Montserrat-SemiBold.ufont' (239K) -[2022.06.19-20.18.17:086][ 0]LogSlate: Took 0.000400 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/Montserrat/Montserrat-Medium.ufont' (238K) -[2022.06.19-20.18.17:086][ 0]LogSlate: Took 0.000141 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/RevolutionGothic/RevolutionGothic_ExtraBold_It.ufont' (41Installing breakpad exception handler for appid(gameoverlayui)/version(20220618001721) -Installing breakpad exception handler for appid(gameoverlayui)/version(1.0) -Installing breakpad exception handler for appid(gameoverlayui)/version(20220618001721) -Installing breakpad exception handler for appid(gameoverlayui)/version(1.0) -Installing breakpad exception handler for appid(gameoverlayui)/version(20220618001721) -Installing breakpad exception handler for appid(gameoverlayui)/version(1.0) -Installing breakpad exception handler for appid(gameoverlayui)/version(20220618001721) -Installing breakpad exception handler for appid(gameoverlayui)/version(1.0) -Installing breakpad exception handler for appid(gameoverlayui)/version(20220618001721) -Installing breakpad exception handler for appid(gameoverlayui)/version(1.0) -Installing breakpad exception handler for appid(gameoverlayui)/version(20220618001721) -Installing breakpad exception handler for appid(gameoverlayui)/version(1.0) -Installing breakpad exception handler for appid(steam)/version(1655513879) -Installing breakpad exception handler for appid(steam)/version(1655513879) -K) -[2022.06.19-20.18.17:087][ 0]LogSlate: Took 0.000195 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/ChakraPetch/ChakraPetch-Regular.ufont' (70K) -[2022.06.19-20.18.17:091][ 0]LogVulkanRHI: Creating new VK swapchain with present mode 1, format 44, color space 0, num images 3 -[2022.06.19-20.18.17:096][ 0]LogVulkanRHI: Creating new VK swapchain with present mode 1, format 44, color space 0, num images 3 -[2022.06.19-20.18.17:105][ 0]LogInit: Display: Engine is initialized. Leaving FEngineLoop::Init() -[2022.06.19-20.18.17:105][ 0]LogLoad: (Engine Initialization) Total time: 3.98 seconds -[2022.06.19-20.18.17:124][ 0]LogStreaming: Display: 0.015 ms (0.004+0.011) ms for processing 123/226 objects in NotifyUnreachableObjects( Queued=0, Async=0). Removed 0/0 (2222->2222 tracked) packages and 123/123 (4707->4584 tracked) public exports. -[2022.06.19-20.18.17:125][ 0]LogContentStreaming: Texture pool size now 1000 MB -[2022.06.19-20.18.17:155][ 2]LogRenderer: Reallocating scene render targets to support 2560x1440 Format 10 NumSamples 1 (Frame:1). -[2022.06.19-20.18.17:625][ 30]LogLoadingScreen: Hiding loading screen when 'IsShowingInitialLoadingScreen()' is false. -[2022.06.19-20.18.17:625][ 30]LogLoadingScreen: (nothing wants to show it anymore) -[2022.06.19-20.18.17:625][ 30]LogLoadingScreen: Garbage Collecting before dropping load screen -[2022.06.19-20.18.17:626][ 30]LogCore: Display: Setting hang detector multiplier to 1.0000s. New hang duration: 0.0000s. New present duration: 0.0000s. -[2022.06.19-20.18.17:626][ 30]LogLoadingScreen: LoadingScreen was visible for 0.91s -[2022.06.19-20.18.17:629][ 30]LogStreaming: Display: 0.016 ms (0.005+0.011) ms for processing 7/125 objects in NotifyUnreachableObjects( Queued=0, Async=0). Removed 3/3 (2222->2219 tracked) packages and 4/4 (4584->4580 tracked) public exports. -[2022.06.19-20.18.17:636][ 30]LogUObjectHash: Compacting FUObjectHashTables data took 6.02ms -[2022.06.19-20.18.18:127][ 61]LogAccelByteOSS: Warning: <<< GetApiClient (DefaultInstance) has finished execution. Failed to retrieve an API client because local user num 0 is not found! -[2022.06.19-20.18.18:128][ 61]LogAccelByte: Warning: "Client ID" is not configured yet. -Check DefaultEngine.ini or Edit/ProjectSettings/Plugins/ -[2022.06.19-20.18.18:128][ 61]LogAccelByte: Warning: "Client Secret" is not configured yet. -Check DefaultEngine.ini or Edit/ProjectSettings/Plugins/ -[2022.06.19-20.18.18:128][ 61]LogAccelByte: Warning: "Base URL" is not configured yet. -Check DefaultEngine.ini or Edit/ProjectSettings/Plugins/ -[2022.06.19-20.18.18:128][ 61]LogAccelByteOSS: Warning: Applied selected environment: 'Default' as backend environment! -[2022.06.19-20.18.18:128][ 61]LogOnlineIdentity: STEAM: Obtained steam authticket -[2022.06.19-20.18.19:043][109]LogVulkanRHI: Creating new VK swapchain with present mode 1, format 44, color space 0, num images 3 -[2022.06.19-20.18.19:061][110]LogRenderer: Reallocating scene render targets to support 1920x1008 Format 10 NumSamples 1 (Frame:111). -[2022.06.19-20.18.19:237][120]LogVulkanRHI: Creating new VK swapchain with present mode 1, format 44, color space 0, num images 3 -[2022.06.19-20.18.19:260][121]LogRenderer: Reallocating scene render targets to support 2560x1440 Format 10 NumSamples 1 (Frame:123). -[2022.06.19-20.18.21:820][275]LogAccelByteOSS: Warning: FOnlineUserStoreAccelByte::QueryUsersByAccelByteIds called with an empty array of IDs, skipping this call! -[2022.06.19-20.18.24:192][416]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated -[2022.06.19-20.18.24:698][447]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.24:699][447]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.24:704][447]LogViewport: Display: Viewport MouseLockMode Changed, DoNotLock -> LockOnCapture -[2022.06.19-20.18.24:704][447]LogViewport: Display: Viewport MouseCaptureMode Changed, NoCapture -> CapturePermanently -[2022.06.19-20.18.24:719][447]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock -[2022.06.19-20.18.24:719][447]LogViewport: Display: Viewport HideCursorDuringCapture Changed, False -> True -[2022.06.19-20.18.24:719][447]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently -> CaptureDuringMouseDown -[2022.06.19-20.18.24:719][447]LogViewport: Display: Player bShowMouseCursor Changed, False -> True -[2022.06.19-20.18.24:719][447]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.24:719][447]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.24:720][447]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.24:720][447]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.24:721][447]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.24:721][447]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.24:721][447]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.24:721][447]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.24:722][447]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.24:722][447]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.24:723][447]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.24:723][447]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.24:730][447]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.24:744][447]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.24:754][447]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.24:755][447]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.24:755][447]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.24:756][447]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.24:756][447]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.24:756][447]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.24:756][447]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.24:763][447]LogSlate: Took 0.000356 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/Montserrat/Montserrat-Black.ufont' (252K) -[2022.06.19-20.18.24:764][447]LogSlate: Took 0.000296 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/Montserrat/Montserrat-Regular.ufont' (240K) -[2022.06.19-20.18.24:765][447]LogSlate: Took 0.000188 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/ChakraPetch/ChakraPetch-Bold.ufont' (70K) -[2022.06.19-20.18.24:775][448]LogOnline: Warning: STEAM: GetUserAvatar: 76561198272891864 - Failed to get Avatar, Retry: #1 -[2022.06.19-20.18.24:781][448]LogSlate: Took 0.000331 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/Montserrat/Montserrat-Bold.ufont' (239K) -[2022.06.19-20.18.24:984][461]LogAccelByte: Warning: HTTP 404 GET https://splitgate.accelbyte.io/sessionmanager/namespaces/splitgate/users/b841870e4bbe4ffab0bfc26a09f84cab/sessions, 0x7f8e19ec52a0 -[2022.06.19-20.18.26:831][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.26:832][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null src/steamexe/main.cpp (254) : Assertion Failed: reaping pid: 103572 -- gameoverlayui - -Installing breakpad exception handler for appid(steam)/version(1655513879) -assert_20220619161827_35.dmp[103596]: Uploading dump (out-of-process) -/tmp/dumps/assert_20220619161827_35.dmp -assert_20220619161827_35.dmp[103596]: Finished uploading minidump (out-of-process): success = yes -assert_20220619161827_35.dmp[103596]: response: CrashID=bp-776fdf0c-046a-4daf-a8e9-d4a052220619 -assert_20220619161827_35.dmp[103596]: file ''/tmp/dumps/assert_20220619161827_35.dmp'', upload yes: ''CrashID=bp-776fdf0c-046a-4daf-a8e9-d4a052220619'' -assets! -[2022.06.19-20.18.26:832][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.26:832][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.26:834][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.26:834][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.26:835][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.26:835][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.26:836][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.26:837][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.26:837][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.26:837][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.26:838][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.26:839][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.26:839][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.26:839][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.26:840][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.26:840][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.26:840][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.26:840][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.26:842][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.26:842][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.26:842][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.26:842][571]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.27:260][596]LogViewport: Display: Viewport MouseLockMode Changed, DoNotLock -> LockOnCapture -[2022.06.19-20.18.27:260][596]LogViewport: Display: Viewport MouseCaptureMode Changed, CaptureDuringMouseDown -> CapturePermanently -[2022.06.19-20.18.27:260][596]LogViewport: Display: Player bShowMouseCursor Changed, True -> False -[2022.06.19-20.18.27:260][596]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock -[2022.06.19-20.18.27:260][596]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently -> NoCapture -[2022.06.19-20.18.27:269][596]LogSlate: Took 0.000726 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/ChangelingNeoBold/ChangelingNeoRegular.ufont' (121K) -[2022.06.19-20.18.27:612][618]LogOnlineVoice: OSS: Voice interface disabled by config [OnlineSubsystem].bHasVoiceEnabled -[2022.06.19-20.18.28:614][677]LogViewport: Display: Viewport MouseLockMode Changed, DoNotLock -> LockOnCapture -[2022.06.19-20.18.28:614][677]LogViewport: Display: Viewport MouseCaptureMode Changed, NoCapture -> CapturePermanently -[2022.06.19-20.18.28:614][677]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock -[2022.06.19-20.18.28:614][677]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently -> NoCapture -[2022.06.19-20.18.29:202][711]LogSlate: Took 0.000151 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/ChakraPetch/ChakraPetch-Medium.ufont' (70K) -[2022.06.19-20.18.30:244][775]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.30:248][775]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.30:255][775]LogSlate: Took 0.000155 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/ChakraPetch/ChakraPetch-SemiBold.ufont' (70K) -[2022.06.19-20.18.31:260][835]LogSlate: Took 0.000581 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Regular.ttf' (155K) -[2022.06.19-20.18.33:625][977]LogViewport: Display: Viewport MouseLockMode Changed, DoNotLock -> LockOnCapture -[2022.06.19-20.18.33:625][977]LogViewport: Display: Viewport MouseCaptureMode Changed, NoCapture -> CapturePermanently -[2022.06.19-20.18.33:627][977]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.33:628][977]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.33:629][977]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.33:629][977]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.33:632][977]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.33:632][977]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.33:633][977]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.33:633][977]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.33:635][977]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.33:635][977]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.33:635][977]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.33:635][977]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.33:636][977]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock -[2022.06.19-20.18.33:636][977]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently -> CaptureDuringMouseDown -[2022.06.19-20.18.33:636][977]LogViewport: Display: Player bShowMouseCursor Changed, False -> True -[2022.06.19-20.18.34:308][ 18]LogAccelByteOSS: Warning: Unable to handle freeform notification from backend with Topic: customGameReadyNotification since this flow has not been implemented yet. -[2022.06.19-20.18.34:841][ 50]LogNet: Browse: 54.221.69.240:31432/Game/Maps/MainMenu?ADMIN -[2022.06.19-20.18.34:841][ 50]LogNet: Warning: Channel name will be serialized as a string: EQU8 -[2022.06.19-20.18.34:841][ 50]LogInit: BSD IPv4/6: Socket queue. Rx: 65536 (config 32768) Tx: 65536 (config 32768) -[2022.06.19-20.18.34:841][ 50]LogNet: Created socket for bind address: 0.0.0.0 on port 0 -[2022.06.19-20.18.34:841][ 50]LogInit: BSD IPv4/6: Socket queue. Rx: 65536 (config 32768) Tx: 65536 (config 32768) -[2022.06.19-20.18.34:841][ 50]LogNet: Created socket for bind address: 0.0.0.0 on port 0 -[2022.06.19-20.18.34:841][ 50]LogInit: BSD IPv4/6: Socket queue. Rx: 65536 (config 32768) Tx: 65536 (config 32768) -[2022.06.19-20.18.34:841][ 50]LogNet: Created socket for bind address: 0.0.0.0 on port 0 -[2022.06.19-20.18.34:841][ 50]PacketHandlerLog: Loaded PacketHandler component: OodleNetworkHandlerComponent () -[2022.06.19-20.18.34:841][ 50]PacketHandlerLog: Loaded PacketHandler component: DTLSHandlerComponent () -[2022.06.19-20.18.34:841][ 50]PacketHandlerLog: Loaded PacketHandler component: Engine.EngineHandlerComponentFactory (StatelessConnectHandlerComponent) -[2022.06.19-20.18.34:870][ 50]OodleNetworkHandlerComponentLog: Loading dictionary file: ../../../PortalWars/Content/Oodle/PortalWarsOutput.udic -[2022.06.19-20.18.34:928][ 50]OodleNetworkHandlerComponentLog: Loading dictionary file: ../../../PortalWars/Content/Oodle/PortalWarsInput.udic -[2022.06.19-20.18.34:963][ 50]LogNet: Game client on port 31432, rate 15000 -[2022.06.19-20.18.34:963][ 50]LogLoadingScreen: Showing loading screen when 'IsShowingInitialLoadingScreen()' is false. -[2022.06.19-20.18.34:963][ 50]LogLoadingScreen: We are connecting to another server (PendingNetGame != nullptr) -[2022.06.19-20.18.34:963][ 50]LogStreaming: Display: FlushAsyncLoading: 1 QueuedPackages, 0 AsyncPackages -[2022.06.19-20.18.34:964][ 50]LogCore: Display: Setting hang detector multiplier to 1.0000s. New hang duration: 0.0000s. New present duration: 0.0000s. -[2022.06.19-20.18.34:969][ 50]LogSlate: Took 0.004012 seconds to synchronously load lazily loaded font '../../../Engine/Content/EngineFonts/Faces/DroidSansFallback.ufont' (3848K) -[2022.06.19-20.18.34:970][ 50]LogLoadingScreen: Loading screen showing: 1. Reason: We are connecting to another server (PendingNetGame != nullptr) -[2022.06.19-20.18.35:644][ 92]LogOnlineSession: Warning: STEAM: Failed to initialize game server with Steam! -[2022.06.19-20.18.36:072][117]LogNetVersion: Checksum from delegate: 1669758896 -[2022.06.19-20.18.36:072][117]LogNet: UPendingNetGame::SendInitialJoin: Sending hello. [UNetConnection] RemoteAddr: 54.221.69.240:31432, Name: IpConnection_2147481541, Driver: PendingNetDriver IpNetDriver_2147481542, IsServer: NO, PC: NULL, Owner: NULL, UniqueId: INVALID -[2022.06.19-20.18.36:272][129]LogNet: Welcomed by server (Level: /Game/Maps/Lobby, Game: /Game/Blueprints/GameModes/Lobby/LobbyGameMode_BP.LobbyGameMode_BP_C) -[2022.06.19-20.18.36:272][129]LogLoad: LoadMap: 54.221.69.240:31432/Game/Maps/Lobby?ADMIN?game=/Game/Blueprints/GameModes/Lobby/LobbyGameMode_BP.LobbyGameMode_BP_C -[2022.06.19-20.18.36:272][129]LogWorld: BeginTearingDown for /Game/Maps/MainMenu -[2022.06.19-20.18.36:283][129]LogPlayerController: Setting r.AmbientOcclusionLevels to 0 -[2022.06.19-20.18.36:283][129]LogPlayerController: Setting r.AmbientOcclusionLevels to 0 -[2022.06.19-20.18.36:284][129]LogWorld: UWorld::CleanupWorld for MainMenu, bSessionEnded=true, bCleanupResources=true -[2022.06.19-20.18.36:285][129]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated -[2022.06.19-20.18.36:285][129]LogWorld: UWorld::CleanupWorld for MainMenu_Game, bSessionEnded=true, bCleanupResources=true -[2022.06.19-20.18.36:285][129]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated -[2022.06.19-20.18.36:285][129]LogWorld: UWorld::CleanupWorld for MainMenu_Inspect, bSessionEnded=true, bCleanupResources=true -[2022.06.19-20.18.36:285][129]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated -[2022.06.19-20.18.36:285][129]LogWorld: UWorld::CleanupWorld for Rewards, bSessionEnded=true, bCleanupResources=true -[2022.06.19-20.18.36:285][129]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated -[2022.06.19-20.18.36:285][129]LogWorld: UWorld::CleanupWorld for Abyss_Main_Menu_BLockout_Char, bSessionEnded=true, bCleanupResources=true -[2022.06.19-20.18.36:285][129]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated -[2022.06.19-20.18.36:320][129]LogStreaming: Display: 2.119 ms (1.375+0.744) ms for processing 7168/39191 objects in NotifyUnreachableObjects( Queued=0, Async=0). Removed 1412/1412 (2804->1392 tracked) packages and 3161/5756 (5244->2083 tracked) public exports. -[2022.06.19-20.18.36:356][129]LogAudio: Display: Audio Device unregistered from world 'None'. -[2022.06.19-20.18.36:369][129]LogUObjectHash: Compacting FUObjectHashTables data took 1.01ms -[2022.06.19-20.18.36:370][129]LogStreaming: Display: FlushAsyncLoading: 1 QueuedPackages, 0 AsyncPackages -[2022.06.19-20.18.36:535][129]LogAudio: Display: Audio Device (ID: 1) registered with world 'Lobby'. -[2022.06.19-20.18.36:536][129]LogStreaming: Display: ULevelStreaming::RequestLevel(/Game/Maps/Lobby/Sublevels/Lobby_Foregone_Characters) is flushing async loading -[2022.06.19-20.18.36:541][129]LogLevel: Warning: Detected duplicate WorldSettings actor - UE-62934 -[2022.06.19-20.18.36:545][129]LogWorld: Bringing World /Game/Maps/Lobby.Lobby up for play (max tick rate 165) at 2022.06.19-16.18.36 -[2022.06.19-20.18.36:545][129]LogWorld: Bringing up level for play took: 0.004304 -[2022.06.19-20.18.36:545][129]LogLoad: Took 0.273377 seconds to LoadMap(/Game/Maps/Lobby) -[2022.06.19-20.18.36:547][129]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated -[2022.06.19-20.18.36:548][130]LogSlate: Took 0.000129 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/RevolutionGothic/RevolutionGothic_ExtraBold_It.ufont' (41K) -[2022.06.19-20.18.36:548][130]LogSlate: Took 0.000092 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/ChakraPetch/ChakraPetch-Regular.ufont' (70K) -[2022.06.19-20.18.36:552][130]LogSlate: Took 0.003697 seconds to synchronously load lazily loaded font '../../../Engine/Content/EngineFonts/Faces/DroidSansFallback.ufont' (3848K) -[2022.06.19-20.18.36:587][132]LogStreaming: Display: FlushAsyncLoading: 1 QueuedPackages, 0 AsyncPackages -[2022.06.19-20.18.36:617][132]LogViewport: Display: Viewport MouseLockMode Changed, DoNotLock -> LockOnCapture -[2022.06.19-20.18.36:617][132]LogViewport: Display: Viewport MouseCaptureMode Changed, CaptureDuringMouseDown -> CapturePermanently -[2022.06.19-20.18.36:703][138]LogStreaming: Display: FlushAsyncLoading: 1 QueuedPackages, 0 AsyncPackages -[2022.06.19-20.18.36:904][150]LogStreaming: Display: FlushAsyncLoading: 1 QueuedPackages, 0 AsyncPackages -[2022.06.19-20.18.36:908][150]LogPlayerController: Setting r.AmbientOcclusionLevels to 1 -[2022.06.19-20.18.36:908][150]LogTemp: Warning: InputDevice: 0 -[2022.06.19-20.18.36:934][150]LogSlate: Took 0.000274 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Regular.ttf' (155K) -[2022.06.19-20.18.36:937][150]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.36:937][150]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.36:938][150]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.36:939][150]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.18.36:939][150]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock -[2022.06.19-20.18.36:939][150]LogViewport: Display: Viewport HideCursorDuringCapture Changed, True -> False -[2022.06.19-20.18.36:939][150]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently -> CaptureDuringMouseDown -[2022.06.19-20.18.36:939][150]LogViewport: Display: Player bShowMouseCursor Changed, False -> True -[2022.06.19-20.18.36:943][150]LogSlate: Took 0.000107 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/ChakraPetch/ChakraPetch-Medium.ufont' (70K) -[2022.06.19-20.18.36:943][150]LogSlate: Took 0.000177 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/ChakraPetch/ChakraPetch-BoldItalic.ufont' (72K) -[2022.06.19-20.18.36:943][150]LogSlate: Took 0.000121 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/ChakraPetch/ChakraPetch-Bold.ufont' (70K) -[2022.06.19-20.18.36:944][150]LogSlate: Took 0.000245 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/Montserrat/Montserrat-Black.ufont' (252K) -[2022.06.19-20.18.36:944][150]LogSlate: Took 0.000304 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/Montserrat/Montserrat-SemiBold.ufont' (239K) -[2022.06.19-20.18.36:950][151]LogStreaming: Display: 0.046 ms (0.041+0.004) ms for processing 124/412 objects in NotifyUnreachableObjects( Queued=0, Async=0). Removed 0/0 (2218->2218 tracked) packages and 34/124 (3450->3416 tracked) public exports. -[2022.06.19-20.18.37:449][181]LogLoadingScreen: Hiding loading screen when 'IsShowingInitialLoadingScreen()' is false. -[2022.06.19-20.18.37:449][181]LogLoadingScreen: (nothing wants to show it anymore) -[2src/steamexe/main.cpp (254) : Assertion Failed: reaping pid: 103572 -- gameoverlayui - -src/steamexe/main.cpp (254) : Assertion Failed: reaping pid: 103573 -- gameoverlayui - -022.06.19-20.18.37:449][181]LogLoadingScreen: Garbage Collecting before dropping load screen -[2022.06.19-20.18.37:450][181]LogCore: Display: Setting hang detector multiplier to 1.0000s. New hang duration: 0.0000s. New present duration: 0.0000s. -[2022.06.19-20.18.37:450][181]LogLoadingScreen: LoadingScreen was visible for 2.49s -[2022.06.19-20.18.37:453][181]LogStreaming: Display: 0.029 ms (0.007+0.022) ms for processing 17/178 objects in NotifyUnreachableObjects( Queued=0, Async=0). Removed 8/8 (2220->2212 tracked) packages and 9/9 (3418->3409 tracked) public exports. -[2022.06.19-20.18.37:463][181]LogUObjectHash: Compacting FUObjectHashTables data took 2.52ms -[2022.06.19-20.18.38:154][221]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden -[2022.06.19-20.18.38:154][221]LogWorld: SeamlessTravel to: /Game/Maps/Stadium -[2022.06.19-20.18.38:156][221]LogLoadingScreen: Showing loading screen when 'IsShowingInitialLoadingScreen()' is false. -[2022.06.19-20.18.38:156][221]LogLoadingScreen: We are in seamless travel -[2022.06.19-20.18.38:157][221]LogStreaming: Display: FlushAsyncLoading: 1 QueuedPackages, 1 AsyncPackages -[2022.06.19-20.18.38:160][221]LogCore: Display: Setting hang detector multiplier to 1.0000s. New hang duration: 0.0000s. New present duration: 0.0000s. -[2022.06.19-20.18.38:171][222]LogWorld: BeginTearingDown for /Game/Maps/Lobby -[2022.06.19-20.18.38:173][222]LogWorld: UWorld::CleanupWorld for Lobby, bSessionEnded=false, bCleanupResources=true -[2022.06.19-20.18.38:177][222]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated -[2022.06.19-20.18.38:178][222]LogWorld: UWorld::CleanupWorld for Lobby_Foregone_Characters, bSessionEnded=false, bCleanupResources=true -[2022.06.19-20.18.38:178][222]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated -[2022.06.19-20.18.38:178][222]LogAudio: Display: Audio Device (ID: 1) registered with world 'TravelMap'. -[2022.06.19-20.18.38:182][222]LogStreaming: Display: 0.469 ms (0.141+0.328) ms for processing 1262/3255 objects in NotifyUnreachableObjects( Queued=0, Async=0). Removed 567/567 (2217->1650 tracked) packages and 695/695 (3417->2722 tracked) public exports. -[2022.06.19-20.18.38:185][222]LogAudio: Display: Audio Device unregistered from world 'None'. -[2022.06.19-20.18.38:199][222]LogUObjectHash: Compacting FUObjectHashTables data took 2.33ms -[2022.06.19-20.18.38:200][222]LogStreaming: Display: FlushAsyncLoading: 1 QueuedPackages, 0 AsyncPackages -[2022.06.19-20.18.38:201][222]LogStats: SeamlessTravel FlushLevelStreaming - 0.000 s -[2022.06.19-20.18.38:201][222]LogWorld: Bringing World /Game/Maps/TravelMap.TravelMap up for play (max tick rate 60) at 2022.06.19-16.18.38 -[2022.06.19-20.18.38:201][222]LogWorld: Bringing up level for play took: 0.000507 -[2022.06.19-20.18.38:201][222]LogWorld: Sending NotifyLoadedWorld for LP: PortalWarsLocalPlayer_BP_C_2147482570 PC: LobbyPlayerController_BP_C_2147481422 -[2022.06.19-20.18.38:202][222]LogWorld: StartLoadingDestination to: /Game/Maps/Stadium -[2022.06.19-20.18.38:674][247]LogNet: DuplicateLevelWithPrefix. TotalSeconds: 0.00 -[2022.06.19-20.18.38:677][247]LogNet: DuplicateLevelWithPrefix. TotalSeconds: 0.00 -[2022.06.19-20.18.38:677][247]LogWorld: BeginTearingDown for /Game/Maps/TravelMap -[2022.06.19-20.18.38:677][247]LogWorld: UWorld::CleanupWorld for TravelMap, bSessionEnded=true, bCleanupResources=true -[2022.06.19-20.18.38:677][247]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated -[2022.06.19-20.18.38:678][247]LogAudio: Display: Audio Device (ID: 1) registered with world 'Stadium'. -[2022.06.19-20.18.38:679][247]LogStreaming: Display: 0.017 ms (0.003+0.014) ms for processing 78/137 objects in NotifyUnreachableObjects( Queued=0, Async=0). Removed 9/9 (3079->3070 tracked) packages and 69/69 (4560->4491 tracked) public exports. -[2022.06.19-20.18.38:679][247]LogAudio: Display: Audio Device unregistered from world 'None'. -[2022.06.19-20.18.38:680][247]LogUObjectHash: Compacting FUObjectHashTables data took 1.03ms -[2022.06.19-20.18.38:681][247]LogStreaming: Display: FlushAsyncLoading: 1 QueuedPackages, 0 AsyncPackages -[2022.06.19-20.18.38:697][247]LogStats: SeamlessTravel FlushLevelStreaming - 0.015 s -[2022.06.19-20.18.38:699][247]LogWorld: Bringing World /Game/Maps/Stadium.Stadium up for play (max tick rate 60) at 2022.06.19-16.18.38 -[2022.06.19-20.18.38:703][247]LogWorld: Bringing up level for play took: 0.006417 -[2022.06.19-20.18.38:703][247]LogWorld: Sending NotifyLoadedWorld for LP: PortalWarsLocalPlayer_BP_C_2147482570 PC: LobbyPlayerController_BP_C_2147481422 -[2022.06.19-20.18.38:703][247]LogWorld: ----SeamlessTravel finished in 0.55 seconds ------ -[2022.06.19-20.18.38:856][249]LogStreaming: Display: FlushAsyncLoading: 1 QueuedPackages, 0 AsyncPackages -[2022.06.19-20.18.38:859][249]LogTemp: Warning: InputDevice: 0 -[2022.06.19-20.18.38:876][249]LogViewport: Display: Viewport MouseLockMode Changed, DoNotLock -> LockOnCapture -[2022.06.19-20.18.38:876][249]LogViewport: Display: Viewport MouseCaptureMode Changed, CaptureDuringMouseDown -> CapturePermanently -[2022.06.19-20.18.38:896][249]LogLevel: ActivateLevel /Game/Environments/Map8/Maps/Map8_Cinematics 0 0 1 -[2022.06.19-20.18.38:901][249]LogPlayerController: Setting r.AmbientOcclusionLevels to 0 -[2022.06.19-20.18.38:901][249]LogScript: Warning: FLatentActionManager::ProcessLatentActions: Could not find latent action resume point named 'None' on '/Game/Maps/Stadium.Stadium:PersistentLevel.PortalWarsPlayerController_BP_C_2147480902' called by '/Game/Maps/Stadium.Stadium:PersistentLevel.PortalWarsPlayerController_BP_C_2147480902' -[2022.06.19-20.18.39:016][258]LogStreaming: Display: FlushAsyncLoading: 1 QueuedPackages, 0 AsyncPackages -[2022.06.19-20.18.39:026][258]LogNiagara: Disabling Niagara World Manager -[2022.06.19-20.18.39:029][258]LogTemp: Warning: InputDevice: 0 -[2022.06.19-20.18.39:101][262]LogAccelByteOSS: Warning: Attempted to register player '{"id":"b841870e4bbe4ffab0bfc26a09f84cab","platformType":"Steam","platformId":"76561198272891864"}' to session '0945cca411644930ae2e4b562ef9ca27' when player is already registered to the session! -[2022.06.19-20.18.39:102][262]LogAccelByteOSS: Warning: Tried to complete async task while state was already complete! Current complete state: Success; Requested complete state: Success -[2022.06.19-20.18.39:524][288]LogSlate: Took 0.000141 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/RevolutionGothic/RevolutionGothic_Regular_It.ufont' (44K) -[2022.06.19-20.18.39:525][288]LogSlate: Took 0.000145 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/RevolutionGothic/RevolutionGothic_Bold_It.ufont' (45K) -[2022.06.19-20.18.39:525][288]LogSlate: Took 0.000126 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/RevolutionGothic/RevolutionGothic_Light.ufont' (42K) -[2022.06.19-20.18.39:525][288]LogSlate: Took 0.000104 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/RevolutionGothic/RevolutionGothic_Bold.ufont' (43K) -[2022.06.19-20.18.39:541][289]LogLoadingScreen: Hiding loading screen when 'IsShowingInitialLoadingScreen()' is false. -[2022.06.19-20.18.39:541][289]LogLoadingScreen: (nothing wants to show it anymore) -[2022.06.19-20.18.39:541][289]LogLoadingScreen: Garbage Collecting before dropping load screen -[2022.06.19-20.18.39:541][289]LogCore: Display: Setting hang detector multiplier to 1.0000s. New hang duration: 0.0000s. New present duration: 0.0000s. -[2022.06.19-20.18.39:541][289]LogTemp: Warning: Turning global invalidation ON -[2022.06.19-20.18.39:541][289]LogSlate: Toggling fast path. New State: 1 -[2022.06.19-20.18.39:541][289]LogLoadingScreen: LoadingScreen was visible for 1.39s -[2022.06.19-20.18.39:558][290]LogStreaming: Display: 0.012 ms (0.008+0.004) ms for processing 18/583 objects in NotifyUnreachableObjects( Queued=0, Async=102). Removed 6/6 (3722->3716 tracked) packages and 12/12 (5395->5383 tracked) public exports. -[2022.06.19-20.18.39:571][290]LogUObjectHash: Compacting FUObjectHashTables data took 1.07ms -[2022.06.19-20.18.42:776][483]LogSlate: Warning: FontCache flush requested. Reason: Font Atlases Full; 2/1 Pages; frames since last flush: 1483 -[2022.06.19-20.18.42:776][483]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated -[2022.06.19-20.18.42:811][483]LogSlate: Slate font cache was flushed -[2022.06.19-20.18.42:819][484]LogSlate: Took 0.000492 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/RevolutionGothic/RevolutionGothic_Bold.ufont' (43K) -[2022.06.19-20.18.42:820][484]LogSlate: Took 0.000600 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/RevolutionGothic/RevolutionGothic_Regular_It.ufont' (44K) -[2022.06.19-20.18.42:821][484]LogSlate: Took 0.000531 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/RevolutionGothic/RevolutionGothic_Bold_It.ufont' (45K) -[2022.06.19-20.18.42:822][484]LogSlate: Took 0.000467 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/RevolutionGothic/RevolutionGothic_Light.ufont' (42K) -[2022.06.19-20.18.42:823][484]LogSlate: Took 0.000653 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/ChakraPetch/ChakraPetch-Regular.ufont' (70K) -[2022.06.19-20.18.45:798][664]LogLevel: ActivateLevel /Game/Environments/Map8/Maps/Map8_Cinematics 0 0 1 -[2022.06.19-20.18.45:810][664]LogScript: Warning: FLatentActionManager::ProcessLatentActions: Could not find latent action resume point named 'None' on '/Game/Maps/Stadium.Stadium:PersistentLevel.PortalWarsPlayerController_BP_C_2147480902' called by '/Game/Maps/Stadium.Stadium:PersistentLevel.PortalWarsPlayerController_BP_C_2147480902' -[2022.06.19-20.18.46:024][675]LogTemp: Setting replay record rate to 60 -[2022.06.19-20.18.46:025][675]LogNet: ReplicationDriverClass is null! Not using ReplicationDriver. -[2022.06.19-20.18.46:025][675]LogNetCore: DDoS detection status: detection enabled: 1 analytics enabled: 0 -[2022.06.19-20.18.46:026][675]LogNet: AddClientConnection: Added client connection: [UNetConnection] RemoteAddr: UDemoNetConnection, Name: DemoNetConnection_2147479798, Driver: DemoNetDriver DemoNetDriver_2147479799, IsServer: YES, PC: NULL, Owner: NULL, UniqueId: INVALID -[2022.06.19-20.18.46:026][675]LogNetVersion: Replay changelist: 7 -[2022.06.19-20.18.46:026][675]LogLocalFileReplay: Writing replay to '/home/sharkfin/.config/Epic/PortalWars/Saved/Demos/' with 21134.92MB free -[2022.06.19-20.18.46:026][675]LogTemp: Warning: InputDevice: 0 -[2022.06.19-20.18.46:028][675]LogTemp: Warning: Spectator Pawn Destroyed -[2022.06.19-20.18.46:028][675]LogPlayerController: Warning: Failed to spawn spectator with class PWSpectatorPawn -[2022.06.19-20.18.46:028][675]LogDemo: Num Network Actors: 120 -[2022.06.19-20.18.46:028][675]PWLogGameInstance: Replay started recording at 7.338106 seconds -[2022.06.19-20.18.46:037][675]LogSlate: Took 0.000203 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/ChakraPetch/ChakraPetch-Medium.ufont' (70K) -[2022.06.19-20.18.46:038][675]LogSlate: Took 0.000326 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/Politica/Politica_Black_Italic.ufont' (56K) -[2022.06.19-20.18.46:039][675]LogSlate: Took 0.000281 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/ChakraPetch/ChakraPetch-Bold.ufont' (70K) -[2022.06.19-20.18.46:039][675]LogSlate: Took 0.000205 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/Politica/Politica_ExtraBold_Italic.ufont' (61K) -[2022.06.19-20.18.46:040][675]LogSlate: Took 0.000211 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/RevolutionGothic/RevolutionGothic_ExtraBold_It.ufont' (41K) -[2022.06.19-20.18.46:048][675]LogSlate: Took 0.008475 seconds to synchronously load lazily loaded font '../../../Engine/Content/EngineFonts/Faces/DroidSansFallback.ufont' (3848K) -[2022.06.19-20.18.46:049][675]LogSlate: Took 0.000256 ssrc/steamexe/main.cpp (254) : Assertion Failed: reaping pid: 103573 -- gameoverlayui - -src/steamexe/main.cpp (254) : Assertion Failed: reaping pid: 103574 -- gameoverlayui - -Installing breakpad exception handler for appid(steam)/version(1655513879) -Installing breakpad exception handler for appid(steam)/version(1655513879) -src/steamexe/main.cpp (254) : Assertion Failed: reaping pid: 103574 -- gameoverlayui - -src/steamexe/main.cpp (254) : Assertion Failed: reaping pid: 103575 -- gameoverlayui - -00:01:07.317 [ERROR] [libinput] event4 - Hoksi Technology DURGOD Taurus K310: client bug: event processing lagging behind by 25ms, your system is too slow - -moved. -Callback 3fc24b10 -> 6b7cc190, XWayland Window removed. -Window 6b7c7250 destroyed, queueing. -Callback 3fc24b10 -> 6b7c7250, XWayland Window removed. -Callback 3fc24b10 -> 6b7c7250, XWayland Window removed. -Callback 3fc24b10 -> 6b7c7250, XWayland Window removed. -Window 6b7d1c80 destroyed, queueing. -Callback 3fc24b10 -> 6b7d1c80, XWayland Window removed. -Callback 3fc24b10 -> 6b7d1c80, XWayland Window removed. -Callback 3fc24b10 -> 6b7d1c80, XWayland Window removed. -Window 6b7d1460 destroyed, queueing. -Callback 3fc24b10 -> 6b7d1460, XWayland Window removed. -Callback 3fc24b10 -> 6b7d1460, XWayland Window removed. -Callback 3fc24b10 -> 6b7d1460, XWayland Window removed. -Window 6b7cf490 destroyed, queueing. -Callback 3fc24b10 -> 6b7cf490, XWayland Window removed. -Callback 3fc24b10 -> 6b7cf490, XWayland Window removed. -Callback 3fc24b10 -> 6b7cf490, XWayland Window removed. -Window 6b7c90a0 destroyed, queueing. -Callback 3fc24b10 -> 6b7c90a0, XWayland Window removed. -Callback 3fc24b10 -> 6b7c90a0, XWayland Window removed. -Callback 3fc24b10 -> 6b7c90a0, XWayland Window removed. -Window 6b7c9b50 destroyed, queueing. -Callback 3fc24b10 -> 6b7c9b50, XWayland Window removed. -Callback 3fc24b10 -> 6b7c9b50, XWayland Window removed. -Callback 3fc24b10 -> 6b7c9b50, XWayland Window removed. -Window 6b7cb4d0 destroyed, queueing. -Callback 3fc24b10 -> 6b7cb4d0, XWayland Window removed. -Callback 3fc24b10 -> 6b7cb4d0, XWayland Window removed. -Callback 3fc24b10 -> 6b7cb4d0, XWayland Window removed. -Window 6b7ca810 destroyed, queueing. -Callback 3fc24b10 -> 6b7ca810, XWayland Window removed. -Callback 3fc24b10 -> 6b7ca810, XWayland Window removed. -Callback 3fc24b10 -> 6b7ca810, XWayland Window removed. -Cleanup: destroyed a window -Window 6b7d24a0 fullscreen to 1 -Keybind triggered, calling dispatcher (64, 77) -Keybind triggered, calling dispatcher (64, 77) -New mouse constraint at 6b79cd90 -Registered signal for owner 6b94fc60: 6b79ce98 -> 6b94fcd8 (owner: Constraint) -Registered signal for owner 6b94fc60: 6b79ce88 -> 6b94fc70 (owner: Constraint) -Constraint rechecked: 0, 0 to 2560, 1440 for 6b9aca20 (window name: PortalWars ) -Registered signal for owner 6b743fd0: 6b9acce0 -> 6b744000 (owner: Mouse constraint commit) -Constrained mouse to 6b79cd90 -Callback 3fc24650 -> 6b743fd0, Mouse constraint commit removed. -Unconstrained mouse from 6b79cd90 -Callback 3fc24650 -> 6b94fc60, Constraint removed. -Callback 3fc24650 -> 6b94fc60, Constraint removed. -New mouse constraint at 6b79cd90 -Registered signal for owner 6b9599f0: 6b79ce98 -> 6b959a68 (owner: Constraint) -Registered signal for owner 6b9599f0: 6b79ce88 -> 6b959a00 (owner: Constraint) -Constraint rechecked: 0, 0 to 2560, 1440 for 6b9aca20 (window name: PortalWars ) -Registered signal for owner 6b743fd0: 6b9acce0 -> 6b744000 (owner: Mouse constraint commit) -Constrained mouse to 6b79cd90 -Callback 3fc24650 -> 6b743fd0, Mouse constraint commit removed. -Unconstrained mouse from 6b79cd90 -Callback 3fc24650 -> 6b9599f0, Constraint removed. -Callback 3fc24650 -> 6b9599f0, Constraint removed. -New mouse constraint at 6b79cd90 -Registered signal for owner 6b94fc60: 6b79ce98 -> 6b94fcd8 (owner: Constraint) -Registered signal for owner 6b94fc60: 6b79ce88 -> 6b94fc70 (owner: Constraint) -Constraint rechecked: 0, 0 to 2560, 1440 for 6b9aca20 (window name: PortalWars ) -Registered signal for owner 6b743fd0: 6b9acce0 -> 6b744000 (owner: Mouse constraint commit) -Constrained mouse to 6b79cd90 -Callback 3fc24650 -> 6b743fd0, Mouse constraint commit removed. -Unconstrained mouse from 6b79cd90 -Callback 3fc24650 -> 6b94fc60, Constraint removed. -Callback 3fc24650 -> 6b94fc60, Constraint removed. -New mouse constraint at 6b79cd90 -Registered signal for owner 6b9599f0: 6b79ce98 -> 6b959a68 (owner: Constraint) -Registered signal for owner 6b9599f0: 6b79ce88 -> 6b959a00 (owner: Constraint) -Constraint rechecked: 0, 0 to 2560, 1440 for 6b9aca20 (window name: PortalWars ) -Registered signal for owner 6b743fd0: 6b9acce0 -> 6b744000 (owner: Mouse constraint commit) -Constrained mouse to 6b79cd90 -Callback 3fc24650 -> 6b743fd0, Mouse constraint commit remoeconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/RevolutionGothic/RevolutionGothic_ExtraBold.ufont' (41K) -[2022.06.19-20.18.46:053][676]LogSlate: Took 0.000159 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/RevolutionGothic/RevolutionGothic_Light_It.ufont' (44K) -[2022.06.19-20.18.53:301][ 98]LogTemp: Warning: PWPlayWwiseEventOnAkComponent(): No source (AkComponent Does not exist? break_sx_wpn_assaultRifle_fire) -[2022.06.19-20.18.53:353][101]LogTemp: Warning: PWPlayWwiseEventOnAkComponent(): No source (AkComponent Does not exist? break_sx_wpn_assaultRifle_fire) -[2022.06.19-20.18.59:701][466]LogTemp: Warning: PWPlayWwiseEventOnAkComponent(): No source (AkComponent Does not exist? break_sx_wpn_assaultRifle_fire) -[2022.06.19-20.19.00:549][518]LogTemp: Warning: PWPlayWwiseEventOnAkComponent(): No source (AkComponent Does not exist? break_sx_wpn_assaultRifle_fire) -[2022.06.19-20.19.00:811][533]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock -[2022.06.19-20.19.00:811][533]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently -> NoCapture -[2022.06.19-20.19.00:811][533]LogTemp: Warning: Turning global invalidation OFF -[2022.06.19-20.19.00:811][533]LogSlate: Toggling fast path. New State: 0 -[2022.06.19-20.19.01:984][603]LogSlate: Took 0.001710 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/Montserrat/Montserrat-SemiBold.ufont' (239K) -[2022.06.19-20.19.02:895][658]LogTemp: #AB LeaveNativePlatformSession -[2022.06.19-20.19.02:895][658]LogTemp: Warning: Requesting Return to Main Menu -[2022.06.19-20.19.02:965][662]LogNet: UNetConnection::Close: [UNetConnection] RemoteAddr: 54.221.69.240:31432, Name: IpConnection_2147481541, Driver: GameNetDriver IpNetDriver_2147481542, IsServer: NO, PC: PortalWarsPlayerController_BP_C_2147480902, Owner: PortalWarsPlayerController_BP_C_2147480902, UniqueId: AccelByte:{"id":"b841870e4bbe4ffab0bfc26a09f84cab","platformType":"Steam","platformId":"76561198272891864"}, Channels: 143, Time: 2022.06.19-20.19.02 -[2022.06.19-20.19.02:965][662]LogNet: UChannel::Close: Sending CloseBunch. ChIndex == 0. Name: [UChannel] ChIndex: 0, Closing: 0 [UNetConnection] RemoteAddr: 54.221.69.240:31432, Name: IpConnection_2147481541, Driver: GameNetDriver IpNetDriver_2147481542, IsServer: NO, PC: PortalWarsPlayerController_BP_C_2147480902, Owner: PortalWarsPlayerController_BP_C_2147480902, UniqueId: AccelByte:{"id":"b841870e4bbe4ffab0bfc26a09f84cab","platformType":"Steam","platformId":"76561198272891864"} -[2022.06.19-20.19.02:965][662]LogNet: Error: UEngine::BroadcastNetworkFailure: FailureType = ConnectionLost, ErrorString = Your connection to the host has been lost., Driver = GameNetDriver IpNetDriver_2147481542 -[2022.06.19-20.19.02:965][662]LogNet: Warning: Network Failure: GameNetDriver[ConnectionLost]: Your connection to the host has been lost. -[2022.06.19-20.19.02:965][662]LogNet: NetworkFailure: ConnectionLost, Error: 'Your connection to the host has been lost.' -[2022.06.19-20.19.02:966][662]LogLoadingScreen: Showing loading screen when 'IsShowingInitialLoadingScreen()' is false. -[2022.06.19-20.19.02:966][662]LogLoadingScreen: We have pending travel (the TravelURL is not empty) -[2022.06.19-20.19.02:966][662]LogTemp: Warning: Turning global invalidation OFF -[2022.06.19-20.19.02:966][662]LogStreaming: Display: FlushAsyncLoading: 1 QueuedPackages, 0 AsyncPackages -[2022.06.19-20.19.02:969][662]LogCore: Display: Setting hang detector multiplier to 1.0000s. New hang duration: 0.0000s. New present duration: 0.0000s. -[2022.06.19-20.19.02:975][662]LogLoadingScreen: Loading screen showing: 1. Reason: We have pending travel (the TravelURL is not empty) -[2022.06.19-20.19.02:980][663]LogNet: Browse: /Game/Maps/MainMenu?closed -[2022.06.19-20.19.02:980][663]LogNet: Connection failed; returning to Entry -[2022.06.19-20.19.02:980][663]LogLoad: LoadMap: /Game/Maps/MainMenu?closed -[2022.06.19-20.19.02:980][663]LogWorld: BeginTearingDown for /Game/Maps/Stadium -[2022.06.19-20.19.02:981][663]LogNet: World NetDriver shutdown IpNetDriver_2147481542 [GameNetDriver] -[2022.06.19-20.19.02:981][663]LogNet: DestroyNamedNetDriver IpNetDriver_2147481542 [GameNetDriver] -[2022.06.19-20.19.02:981][663]LogExit: GameNetDriver IpNetDriver_2147481542 shut down -[2022.06.19-20.19.02:981][663]LogDemo: StopDemo: Demo Unsaved-2022-06-19-16-18-46 stopped at frame 988 -[2022.06.19-20.19.02:981][663]LogNet: UNetConnection::Close: [UNetConnection] RemoteAddr: UDemoNetConnection, Name: DemoNetConnection_2147479798, Driver: DemoNetDriver DemoNetDriver_2147479799, IsServer: YES, PC: PWReplayPlayerController_BP_C_2147479796, Owner: PWReplayPlayerController_BP_C_2147479796, UniqueId: INVALID, Channels: 124, Time: 2022.06.19-20.19.02 -[2022.06.19-20.19.02:981][663]LogNet: DestroyNamedNetDriver DemoNetDriver_2147479799 [DemoNetDriver] -[2022.06.19-20.19.02:982][663]PIE: Error: Only Local Player Controllers can be assigned to widgets. PortalWarsPlayerController_BP_C_2147480902 is not a Local Player Controller. -[2022.06.19-20.19.02:982][663]PIE: Error: Only Local Player Controllers can be assigned to widgets. PortalWarsPlayerController_BP_C_2147480902 is not a Local Player Controller. -[2022.06.19-20.19.02:982][663]PIE: Error: Only Local Player Controllers can be assigned to widgets. PortalWarsPlayerController_BP_C_2147480902 is not a Local Player Controller. -[2022.06.19-20.19.02:982][663]PIE: Error: Only Local Player Controllers can be assigned to widgets. PortalWarsPlayerController_BP_C_2147480902 is not a Local Player Controller. -[2022.06.19-20.19.02:982][663]PIE: Error: Only Local Player Controllers can be assigned to widgets. PortalWarsPlayerController_BP_C_2147480902 is not a Local Player Controller. -[2022.06.19-20.19.02:982][663]PIE: Error: Only Local Player Controllers can be assigned to widgets. PortalWarsPlayerController_BP_C_2147480902 is not a Local Player Controller. -[2022.06.19-20.19.02:982][663]PIE: Error: Only Local Player Controllers can be assigned to widgets. PortalWarsPlayerController_BP_C_2147480902 is not a Local Player Controller. -[2022.06.19-20.19.02:982][663]PIE: Error: Only Local Player Controllers can be assigned to widgets. PortalWarsPlayerController_BP_C_2147480902 is not a Local Player Controller. -[2022.06.19-20.19.02:984][663]LogTemp: Warning: Turning global invalidation OFF -[2022.06.19-20.19.02:985][663]LogWorld: UWorld::CleanupWorld for Stadium, bSessionEnded=true, bCleanupResources=true -[2022.06.19-20.19.02:988][663]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated -[2022.06.19-20.19.02:988][663]LogWorld: UWorld::CleanupWorld for Map8_New_Content, bSessionEnded=true, bCleanupResources=true -[2022.06.19-20.19.02:988][663]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated -[2022.06.19-20.19.02:988][663]LogWorld: UWorld::CleanupWorld for Map8_Audio, bSessionEnded=true, bCleanupResources=true -[2022.06.19-20.19.02:988][663]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated -[2022.06.19-20.19.02:988][663]LogWorld: UWorld::CleanupWorld for Map8_S01_game, bSessionEnded=true, bCleanupResources=true -[2022.06.19-20.19.02:988][663]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated -[2022.06.19-20.19.02:988][663]LogWorld: UWorld::CleanupWorld for Map8_Lights_S01, bSessionEnded=true, bCleanupResources=true -[2022.06.19-20.19.02:988][663]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated -[2022.06.19-20.19.02:988][663]LogWorld: UWorld::CleanupWorld for Map8_Nav, bSessionEnded=true, bCleanupResources=true -[2022.06.19-20.19.02:988][663]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated -[2022.06.19-20.19.02:988][663]LogWorld: UWorld::CleanupWorld for Map8_Scoreboard, bSessionEnded=true, bCleanupResources=true -[2022.06.19-20.19.02:988][663]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated -[2022.06.19-20.19.02:988][663]LogWorld: UWorld::CleanupWorld for Stadium, bSessionEnded=true, bCleanupResources=true -[2022.06.19-20.19.02:988][663]LogWorld: UWorld::CleanupWorld for Map8_S01_game, bSessionEnded=true, bCleanupResources=true -[2022.06.19-20.19.03:024][663]LogAudio: Display: Waited 35.348133 ms for audio thread. -[2022.06.19-20.19.03:029][663]LogStreaming: Display: 2.087 ms (1.136+0.951) ms for processing 5502/33126 objects in NotifyUnreachableObjects( Queued=0, Async=0). Removed 2046/2046 (4159->2113 tracked) packages and 3033/3456 (6270->3237 tracked) public exports. -[2022.06.19-20.19.03:038][663]LogAudio: Display: Audio Device unregistered from world 'None'. -[2022.06.19-20.19.03:051][663]LogDemo: Cleaned up 0 splitscreen connections with owner deletion -[2022.06.19-20.19.03:063][663]LogUObjectHash: Compacting FUObjectHashTables data took 0.93ms -[2022.06.19-20.19.03:065][663]LogStreaming: Display: FlushAsyncLoading: 1 QueuedPackages, 0 AsyncPackages -[2022.06.19-20.19.03:121][663]LogAudio: Display: Audio Device (ID: 1) registered with world 'MainMenu'. -[2022.06.19-20.19.03:122][663]LogAIModule: Creating AISystem for world MainMenu -[2022.06.19-20.19.03:122][663]LogLoad: Game class is 'MainMenuGameMode_BP_C' -[2022.06.19-20.19.03:122][663]LogStreaming: Display: ULevelStreaming::RequestLevel(/Game/Maps/Sublevels/Abyss_Main_Menu_BLockout_Char) is flushing async loading -[2022.06.19-20.19.03:217][663]LogLevel: Warning: Detected duplicate WorldSettings actor - UE-62934 -[2022.06.19-20.19.03:220][663]LogStreaming: Display: ULevelStreaming::RequestLevel(/Game/Environments/MainMenu_Console/Maps/MainMenu_Inspect) is flushing async loading -[2022.06.19-20.19.03:263][663]LogStreaming: Display: ULevelStreaming::RequestLevel(/Game/Maps/Sublevels/Rewards) is flushing async loading -[2022.06.19-20.19.03:318][663]LogStreaming: Display: ULevelStreaming::RequestLevel(/Game/Environments/MainMenu_Console/Maps/MainMenu_Game) is flushing async loading -[2022.06.19-20.19.03:328][663]LogWorld: Bringing World /Game/Maps/MainMenu.MainMenu up for play (max tick rate 165) at 2022.06.19-16.19.03 -[2022.06.19-20.19.03:329][663]LogWorld: Bringing up level for play took: 0.000510 -[2022.06.19-20.19.03:329][663]LogAccelByteOSS: Error: <<< RegisterPlayers (DefaultInstance) has finished execution. Could not register player as we failed to get session with name 'GameSession'! -[2022.06.19-20.19.03:330][663]LogSkinnedMeshComp: Warning: GetSocketByName(PortalLauncherPoint): No SkeletalMesh for Component(PawnMesh1P) Actor(MyCharacter) -[2022.06.19-20.19.03:330][663]LogSkinnedMeshComp: Warning: GetSocketByName(PortalLauncherPoint): No SkeletalMesh for Component(PawnMesh1P) Actor(MyCharacter) -[2022.06.19-20.19.03:330][663]LogSkinnedMeshComp: Warning: GetSocketByName(PortalLauncherPoint): No SkeletalMesh for Component(PawnMesh1P) Actor(MyCharacter) -[2022.06.19-20.19.03:330][663]LogPlayerController: Setting r.AmbientOcclusionLevels to 1 -[2022.06.19-20.19.03:331][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:331][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:333][663]LogViewport: Display: Viewport MouseLockMode Changed, DoNotLock -> LockOnCapture -[2022.06.19-20.19.03:333][663]LogViewport: Display: Viewport MouseCaptureMode Changed, NoCapture -> CapturePermanently -[2022.06.19-20.19.03:347][663]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock -[2022.06.19-20.19.03:347][663]LogViewport: Display: Viewport HideCursorDuringCapture Changed, False -> True -[2022.06.19-20.19.03:347][663]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently -> CaptureDuringMouseDown -[2022.06.19-20.19.03:347][663]LogViewport: Display: Player bShowMouseCursor Changed, False -> True -[2022.06.19-20.19.03:348][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:348][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:348][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:348][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:349][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:349][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:350][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:350][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:351][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:351][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:351][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:351][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:359][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:374][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:384][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:385][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:385][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:386][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:386][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:386][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:386][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:393][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:393][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:394][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:394][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:395][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:395][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:395][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:395][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:397][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:397][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:397][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:397][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:399][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:399][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:399][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:399][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:400][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:401][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:401][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:401][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:402][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:402][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:402][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:402][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:404][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:404][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:404][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:404][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:405][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:405][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:406][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:406][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:407][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:407][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:407][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:407][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:409][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:409][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:409][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:409][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:410][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:410][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:411][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:411][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:412][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:412][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:412][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:412][663]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.03:412][663]LogPlayerController: Setting r.AmbientOcclusionLevels to 1 -[2022.06.19-20.19.03:412][663]LogLoad: Took 0.431979 seconds to LoadMap(/Game/Maps/MainMenu) -[2022.06.19-20.19.03:414][663]LogStreaming: Display: 0.040 ms (0.028+0.012) ms for processing 1215/4313 objects in NotifyUnreachableObjects( Queued=0, Async=38). Removed 0/0 (3525->3525 tracked) packages and 123/1215 (6521->6398 tracked) public exports. -[2022.06.19-20.19.03:417][663]LogUObjectHash: Compacting FUObjectHashTables data took 1.06ms -[2022.06.19-20.19.03:421][663]LogSlate: Took 0.000265 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/Montserrat/Montserrat-Black.ufont' (252K) -[2022.06.19-20.19.03:421][663]LogSlate: Took 0.000226 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/Montserrat/Montserrat-Regular.ufont' (240K) -[2022.06.19-20.19.03:433][663]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated -[2022.06.19-20.19.03:436][664]LogStreaming: Display: 0.000 ms for skipping 12 objects in NotifyUnreachableObjects (Queued=0, Async=0). -[2022.06.19-20.19.03:438][664]LogLocalFileReplay: Warning: Deleting network replay stream Unsaved-2022-06-19-16-18-46 that is currently live! -[2022.06.19-20.19.03:438][664]LogSlate: Took 0.000299 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/Montserrat/Montserrat-Black.ufont' (252K) -[2022.06.19-20.19.03:439][664]LogSlate: Took 0.000095 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/ChakraPetch/ChakraPetch-Bold.ufont' (70K) -[2022.06.19-20.19.03:440][664]LogSlate: Took 0.000221 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/Montserrat/Montserrat-Regular.ufont' (240K) -[2022.06.19-20.19.03:445][664]LogSlate: Took 0.000251 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/Montserrat/Montserrat-Bold.ufont' (239K) -[2022.06.19-20.19.03:445][664]LogSlate: Took 0.000073 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/RevolutionGothic/RevolutionGothic_ExtraBold_It.ufont' (41K) -[2022.06.19-20.19.03:445][664]LogSlate: Took 0.000167 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/ChakraPetch/ChakraPetch-Regular.ufont' (70K) -[2022.06.19-20.19.03:447][664]LogSlate: Took 0.000228 seconds to synchronously load lazily loaded font '../../../PortalWars/Content/UI/Fonts/Montserrat/Montserrat-SemiBold.ufont' (239K) -[2022.06.19-20.19.03:662][677]LogAccelByte: Warning: HTTP 404 GET https://splitgate.accelbyte.io/sessionmanager/namespaces/splitgate/users/b841870e4bbe4ffab0bfc26a09f84cab/sessions, 0x7f8d5c4d64e0 -[2022.06.19-20.19.03:918][692]LogLoadingScreen: Hiding loading screen when 'IsShowingInitialLoadingScreen()' is false. -[2022.06.19-20.19.03:918][692]LogLoadingScreen: (nothing wants to show it anymore) -[2022.06.19-20.19.03:918][692]LogLoadingScreen: Garbage Collecting before dropping load screen -[2022.06.19-20.19.03:919][692]LogCore: Display: Setting hang detector multiplier to 1.0000s. New hang duration: 0.0000s. New present duration: 0.0000s. -[2022.06.19-20.19.03:919][692]LogLoadingScreen: LoadingScreen was visible for 0.95s -[2022.06.19-20.19.03:923][692]LogStreaming: Display: 0.013 ms (0.007+0.006) ms for processing 12/548 objects in NotifyUnreachableObjects( Queued=0, Async=0). Removed 3/3 (3525->3522 tracked) packages and 4/9 (6398->6394 tracked) public exports. -[2022.06.19-20.19.03:926][692]LogUObjectHash: Compacting FUObjectHashTables data took 2.70ms -[2022.06.19-20.19.04:992][757]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.04:993][757]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.04:993][757]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.04:993][757]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.04:994][757]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.04:995][757]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.04:995][757]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.04:995][757]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.04:996][757]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.04:996][757]LogStreamableManager: Error: RequestAsyncLoad called withSignal 11 caught. -Malloc Size=65538 LargeMemoryPoolOffset=65554 -Failed to find symbol file, expected location: -"/mnt/games/steamLibrary/steamapps/common/Splitgate/PortalWars/Binaries/Linux/PortalWars-Linux-Shipping.sym" -Malloc Size=131160 LargeMemoryPoolOffset=196744 -Malloc Size=131160 LargeMemoryPoolOffset=327928 -Malloc Size=543870 LargeMemoryPoolOffset=871822 -ERROR: ld.so: object '/home/sharkfin/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored. -Looking for binary: ../../../Engine/Programs/CrashReportClient/Config/BinaryConfig.ini -ERROR: ld.so: object '/home/sharkfin/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored. -ERROR: ld.so: object '/home/sharkfin/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored. -LogPakFile: Display: Found Pak file ../../../Engine/Programs/CrashReportClient/Content/Paks/CrashReportClient.pak attempting to mount. -LogPakFile: Display: Mounting pak file ../../../Engine/Programs/CrashReportClient/Content/Paks/CrashReportClient.pak. -LogPakFile: PakFile PrimaryIndexSize=77857 -LogPakFile: PakFile PathHashIndexSize=186721 -LogPakFile: PakFile FullDirectoryIndexSize=118918 -LogPakFile: OnPakFileMounted2Time == 0.000000 -LogPlatformFile: Not using cached read wrapper -LogTaskGraph: Started task graph with 4 named threads and 13 total threads with 1 sets of task threads. -LogICUInternationalization: ICU TimeZone Detection - Raw Offset: -5:00, Platform Override: '' -LogInit: Display: Loading text-based GConfig.... -LogInit: Build: ++PortalWars+Main-CL-8813 -LogInit: Engine Version: 4.27.2-8813+++PortalWars+Main -LogInit: Compatible Engine Version: 4.27.0-17155196+++PortalWars+Main -LogInit: Net CL: 17155196 -LogInit: OS: GenericOSVersionLabel (GenericOSSubVersionLabel), CPU: 12th Gen Intel(R) Core(TM) i5-12600K, GPU: GenericGPUBrand -LogInit: Compiled (64-bit): Jun 11 2022 11:47:32 -LogInit: Compiled with Clang: 11.0.1 (https://github.com/llvm/llvm-project 43ff75f2c3feef64f9d73328230d34dac8832a91) -LogInit: Build Configuration: Shipping -LogInit: Branch Name: ++PortalWars+Main -LogInit: Command Line: -Abslog="/home/sharkfin/.config/Epic/PortalWars/Saved/Logs/PortalWars-CRC.log" "/home/sharkfin/.config/Epic/PortalWars/Saved/Crashes/crashinfo-PortalWars-pid-103242-82A1A72327E9409DB8BBE8C66C42FB3B/" -LogInit: Base Directory: /mnt/games/steamLibrary/steamapps/common/Splitgate/Engine/Binaries/Linux/ -LogInit: Allocator: binned2 -LogInit: Installed Engine Build: 1 -LogInit: Presizing for max 100000 objects, including 0 objects not considered by GC, pre-allocating 0 bytes for permanent pool. -LogConfig: Applying CVar settings from Section [/Script/Engine.StreamingSettings] File [/home/sharkfin/.config/Epic/CrashReportClient/Saved/Config/Linux/Engine.ini] -LogInit: Object subsystem initialized -LogConfig: Applying CVar settings from Section [ConsoleVariables] File [/home/sharkfin/.config/Epic/CrashReportClient/Saved/Config/Linux/Engine.ini] -[2022.06.19-20.19.05:316][ 0]LogInit: Unix hardware info: -[2022.06.19-20.19.05:316][ 0]LogInit: - we are the first instance of this executable -[2022.06.19-20.19.05:316][ 0]LogInit: - this process' id (pid) is 103604, parent process' id (ppid) is 103242 -[2022.06.19-20.19.05:316][ 0]LogInit: - we are not running under debugger -[2022.06.19-20.19.05:316][ 0]LogInit: - machine network name is 'archfin' -[2022.06.19-20.19.05:316][ 0]LogInit: - user name is 'sharkfin' (sharkfin) -[2022.06.19-20.19.05:316][ 0]LogInit: - we're logged in locally -[2022.06.19-20.19.05:316][ 0]LogInit: - we're running with rendering -[2022.06.19-20.19.05:316][ 0]LogInit: - CPU: GenuineIntel '12th Gen Intel(R) Core(TM) i5-12600K' (signature: 0x90672) -[2022.06.19-20.19.05:316][ 0]LogInit: - Number of physical cores available for the process: 10 -[2022.06.19-20.19.05:316][ 0]LogInit: - Number of logical cores available for the process: 16 -[2022.06.19-20.19.05:316][ 0]LogInit: - Cache line size: 64 -[2022.06.19-20.19.05:316][ 0]LogInit: - Memory allocator used: binned2 -[2022.06.19-20.19.05:316][ 0]LogInit: - This binary is optimized with LTO: no, PGO: no, instrumented for PGO data collection: no -[2022.06.19-20.19.05:316][ 0]LogInit: - This is an internal build. -[2022.06.19-20.19.05:316][ 0]LogCore: Skipped benchmarking clocks because the engine is running in a standalone program mode - CLOCK_MONOTONIC will be used. -[2022.06.19-20.19.05:316][ 0]LogInit: Unix-specific commandline switches: -[2022.06.19-20.19.05:316][ 0]LogInit: -ansimalloc - use malloc()/free() from libc (useful for tools like valgrind and electric fence) -[2022.06.19-20.19.05:316][ 0]LogInit: -jemalloc - use jemalloc for all memory allocation -[2022.06.19-20.19.05:316][ 0]LogInit: -binnedmalloc - use binned malloc for all memory allocation -[2022.06.19-20.19.05:317][ 0]LogInit: -filemapcachesize=NUMBER - set the size for case-sensitive file mapping cache -[2022.06.19-20.19.05:317][ 0]LogInit: -useksm - uses kernel same-page mapping (KSM) for mapped memory (OFF) -[2022.06.19-20.19.05:317][ 0]LogInit: -ksmmergeall - marks all mmap'd memory pages suitable for KSM (OFF) -[2022.06.19-20.19.05:317][ 0]LogInit: -preloadmodulesymbols - Loads the main module symbols file into memory (OFF) -[2022.06.19-20.19.05:317][ 0]LogInit: -sigdfl=SIGNAL - Allows a specific signal to be set to its default handler rather then ignoring the signal -[2022.06.19-20.19.05:317][ 0]LogInit: -httpproxy=ADDRESS:PORT - redirects HTTP requests to a proxy (only supported if compiled with libcurl) -[2022.06.19-20.19.05:317][ 0]LogInit: -reuseconn - allow libcurl to reuse HTTP connections (only matters if compiled with libcurl) -[2022.06.19-20.19.05:317][ 0]LogInit: -virtmemkb=NUMBER - sets process virtual memory (address space) limit (overrides VirtualMemoryLimitInKB value from .ini) -[2022.06.19-20.19.05:317][ 0]LogInit: - Physical RAM available (not considering process quota): 32 GB (31897 MB, 32662656 KB, 33446559744 bytes) -[2022.06.19-20.19.05:317][ 0]LogInit: - VirtualMemoryAllocator pools will grow at scale 1.4 -[2022.06.19-20.19.05:317][ 0]LogInit: - MemoryRangeDecommit() will be a no-op (re-run with -vmapoolevict to change) -[2022.06.19-20.19.05:321][ 0]LogUObjectArray: 363 objects as part of root set at end of initial load. -[2022.06.19-20.19.05:321][ 0]LogUObjectAllocator: 62768 out of 0 bytes used by permanent object pool. -[2022.06.19-20.19.05:321][ 0]LogUObjectArray: CloseDisregardForGC: 0/0 objects in disregard for GC pool -[2022.06.19-20.19.05:321][ 0]LogPaths: Warning: No paths for game localization data were specifed in the game configuration. -[2022.06.19-20.19.05:321][ 0]LogInit: Using OS detected language (en-US-POSIX). -[2022.06.19-20.19.05:321][ 0]LogInit: Using OS detected locale (en-US-POSIX). -[2022.06.19-20.19.05:321][ 0]LogInit: Warning: No paths for engine localization data were specifed in the engine configuration. -[2022.06.19-20.19.05:321][ 0]LogTextLocalizationManager: No localization for 'en-US-POSIX' exists, so 'en' will be used for the language. -[2022.06.19-20.19.05:321][ 0]LogTextLocalizationManager: No localization for 'en-US-POSIX' exists, so 'en' will be used for the locale. -[2022.06.19-20.19.05:321][ 0]LogInit: Using OS detected language (en-US-POSIX). -[2022.06.19-20.19.05:321][ 0]LogInit: Using OS detected locale (en-US-POSIX). -[2022.06.19-20.19.05:321][ 0]LogTextLocalizationManager: No localization for 'en-US-POSIX' exists, so 'en' will be used for the language. -[2022.06.19-20.19.05:321][ 0]LogTextLocalizationManager: No localization for 'en-US-POSIX' exists, so 'en' will be used for the locale. -[2022.06.19-20.19.05:322][ 0]LogTextLocalizationManager: Compacting localization data took 0.00ms -[2022.06.19-20.19.05:322][ 0]LogPackageLocalizationCache: Processed 2 localized package path(s) for 1 prioritized culture(s) in 0.000223 seconds -[2022.06.19-20.19.05:322][ 0]CrashReportCoreLog: CrashReportClientVersion=1.0 -[2022.06.19-20.19.05:322][ 0]CrashReportCoreLog: CrashReportReceiver disabled -[2022.06.19-20.19.05:322][ 0]CrashReportCoreLog: DataRouterUrl: https://Splitgate.bugsplat.com/post/ue4/production/7.0.3 -[2022.06.19-20.19.05:322][ 0]LogInit: Initializing SDL. -[2022.06.19-20.19.07:283][ 0]LogInit: Initialized SDL 2.0.12 revision: 13609 (hg-13609:34cc7d3b69d3) (compiled against 2.0.12) -[2022.06.19-20.19.07:283][ 0]LogInit: Using SDL video driver 'x11' -[2022.06.19-20.19.07:292][ 0]LogSlate: New Slate User Created. User Index 0, Is Virtual User: 0 -[2022.06.19-20.19.07:292][ 0]LogSlate: Slate User Registered. User Index 0, Is Virtual User: 0 -[2022.06.19-20.19.07:293][ 0]LogSlate: Using FreeType 2.10.0 -[2022.06.19-20.19.07:293][ 0]LogSlate: SlateFontServices - WITH_FREETYPE: 1, WITH_HARFBUZZ: 1 -[2022.06.19-20.19.07:293][ 0]LogInit: Using SDL_WINDOW_OPENGL -[2022.06.19-20.19.07:327][ 0]LogInit: FSlateOpenGLContext::Initialize - creating OpenGL 2.1 context -[2022.06.19-20.19.07:366][ 0]CrashReportCoreLog: Initial state = U00:01:16.083 [ERROR] [xwayland/xwm.c:1546] xcb error: op ConfigureWindow (no minor), code Value (no extension), sequence 4347, value 0 -Installing breakpad exception handler for appid(gameoverlayui)/version(20220618001721) -Installing breakpad exception handler for appid(gameoverlayui)/version(1.0) -Installing breakpad exception handler for appid(gameoverlayui)/version(1.0) -src/steamexe/main.cpp (254) : Assertion Failed: reaping pid: 103575 -- gameoverlayui - -src/steamexe/main.cpp (254) : Assertion Failed: reaping pid: 103576 -- gameoverlayui - -Installing breakpad exception handler for appid(gameoverlayui)/version(1.0) -nknown UploadState value -[2022.06.19-20.19.07:366][ 0]CrashReportCoreLog: Initial state = Unknown UploadState value -[2022.06.19-20.19.07:368][ 0]LogInit: FSlateOpenGLContext::Initialize - creating OpenGL 2.1 context -[2022.06.19-20.19.07:369][ 0]LogSlate: Took 0.000022 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Regular.ttf' (155K) -[2022.06.19-20.19.07:369][ 0]LogSlate: Took 0.000018 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Bold.ttf' (160K) -[2022.06.19-20.19.07:370][ 0]LogSlate: Took 0.000019 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Italic.ttf' (157K) -[2022.06.19-20.19.10:710][ 0]LogSlate: Request Window 'Unreal Engine 4 Crash Reporter' being destroyed -[2022.06.19-20.19.10:710][ 0]LogSlate: Window 'Unreal Engine 4 Crash Reporter' being destroyed -[2022.06.19-20.19.10:713][ 0]LogCore: Engine exit requested (reason: OnRequestExit) -[2022.06.19-20.19.10:714][ 0]CrashReportCoreLog: Final state (Receiver) = Ready -[2022.06.19-20.19.10:714][ 0]CrashReportCoreLog: Final state (Receiver) = Unknown UploadState value -[2022.06.19-20.19.10:723][ 0]LogSlate: Slate User Destroyed. User Index 0, Is Virtual User: 0 -[2022.06.19-20.19.10:723][ 0]LogCore: Engine exit requested (reason: CrashReportClientApp RequestExit; note: exit was already requested) -[2022.06.19-20.19.10:723][ 0]LogExit: Preparing to exit. -[2022.06.19-20.19.10:724][ 0]LogExit: Object subsystem successfully closed. -[2022.06.19-20.19.10:725][ 0]LogModuleManager: Shutting down and abandoning module ImageWrapper (10) -[2022.06.19-20.19.10:725][ 0]LogModuleManager: Shutting down and abandoning module InputCore (8) -[2022.06.19-20.19.10:725][ 0]LogModuleManager: Shutting down and abandoning module CoreUObject (6) -[2022.06.19-20.19.10:725][ 0]LogModuleManager: Shutting down and abandoning module PakFile (4) -[2022.06.19-20.19.10:726][ 0]LogModuleManager: Shutting down and abandoning module RSA (3) -[2022.06.19-20.19.10:726][ 0]LogExit: Exiting. -[2022.06.19-20.19.10:726][ 0]LogInit: Tearing down SDL. - empty or only null assets! -[2022.06.19-20.19.04:997][757]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.04:997][757]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.04:998][757]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.04:998][757]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.04:999][757]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.04:999][757]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.05:000][757]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.05:000][757]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.05:000][757]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.05:000][757]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.05:001][757]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.05:002][757]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.05:002][757]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.05:002][757]LogStreamableManager: Error: RequestAsyncLoad called with empty or only null assets! -[2022.06.19-20.19.05:202][769]LogSlate: Request Window 'PortalWars ' being destroyed -[2022.06.19-20.19.05:204][769]LogSlate: Window 'PortalWars ' being destroyed -CommonUnixCrashHandler: Signal=11 -[2022.06.19-20.19.05:225][769]LogCore: === Critical error: === -Unhandled Exception: SIGSEGV: invalid attempt to write memory at address 0x0000000000000008 - -[2022.06.19-20.19.05:225][769]LogCore: Fatal error! - -0x0000000004f8f946 PortalWars-Linux-Shipping!UnknownFunction(0x4d8f946) -0x0000000004f8fb59 PortalWars-Linux-Shipping!UnknownFunction(0x4d8fb58) -0x00000000050239d8 PortalWars-Linux-Shipping!UnknownFunction(0x4e239d7) -0x000000000507d8c1 PortalWars-Linux-Shipping!UnknownFunction(0x4e7d8c0) -0x000000000507d95a PortalWars-Linux-Shipping!UnknownFunction(0x4e7d959) -0x00000000039e44e6 PortalWars-Linux-Shipping!UnknownFunction(0x37e44e5) -0x00000000039e40fe PortalWars-Linux-Shipping!UnknownFunction(0x37e40fd) -0x000000000506e112 PortalWars-Linux-Shipping!UnknownFunction(0x4e6e111) -0x0000000003a36c23 PortalWars-Linux-Shipping!UnknownFunction(0x3836c22) -0x0000000003a16c80 PortalWars-Linux-Shipping!UnknownFunction(0x3816c7f) -0x00007f8f2bc8c54d libc.so.6!UnknownFunction(0x8c54c) -0x00007f8f2bd11874 libc.so.6!clone(+0x43) - -[2022.06.19-20.19.05:232][769]LogExit: Executing StaticShutdownAfterError -Engine crash handling finished; re-raising signal 11 for the default handler. Good bye. -ved. -Unconstrained mouse from 6b79cd90 -Callback 3fc24650 -> 6b9599f0, Constraint removed. -Callback 3fc24650 -> 6b9599f0, Constraint removed. -Keybind triggered, calling dispatcher (64, 67) -Set keyboard focus to surface 6b587f90 -Set keyboard focus to surface 6b9550a0, with window name: Alacritty -New XWayland Surface created. -Registered signal for owner 6b9b01e0: 6b9af8d8 -> 6b9b0248 (owner: XWayland Window) -Registered signal for owner 6b9b01e0: 6b9af8e8 -> 6b9b02b0 (owner: XWayland Window) -Registered signal for owner 6b9b01e0: 6b9af858 -> 6b9b0318 (owner: XWayland Window) -Window 6b9b01e0 destroyed, queueing. -Callback 3fc24b10 -> 6b9b01e0, XWayland Window removed. -Callback 3fc24b10 -> 6b9b01e0, XWayland Window removed. -Callback 3fc24b10 -> 6b9b01e0, XWayland Window removed. -New XWayland Surface created. -Registered signal for owner 6b9b0a00: 6b9af8d8 -> 6b9b0a68 (owner: XWayland Window) -Registered signal for owner 6b9b0a00: 6b9af8e8 -> 6b9b0ad0 (owner: XWayland Window) -Registered signal for owner 6b9b0a00: 6b9af858 -> 6b9b0b38 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b9b1220: 6b7a5d38 -> 6b9b1288 (owner: XWayland Window) -Registered signal for owner 6b9b1220: 6b7a5d48 -> 6b9b12f0 (owner: XWayland Window) -Registered signal for owner 6b9b1220: 6b7a5cb8 -> 6b9b1358 (owner: XWayland Window) -Set keyboard focus to surface 6b7c5340, with window name: Unreal Engine 4 Crash Reporter -Registered signal for owner 6b7cd880: 6b7c5610 -> 6b7cd888 (owner: SurfaceTreeNode) -Registered signal for owner 6b7cd880: 6b7c5600 -> 6b7cd8f0 (owner: SurfaceTreeNode) -Registered signal for owner 6b7cd880: 6b7c5620 -> 6b7cd958 (owner: SurfaceTreeNode) -Creating a surfaceTree Root! (pWindow: 6b9b1220) -Window got assigned a surfaceTreeNode 6b7cd880 -Registered signal for owner 6b9b1220: 6b7a5d18 -> 6b9b1428 (owner: XWayland Window Late) -Registered signal for owner 6b9b1220: 6b7a5d28 -> 6b9b1710 (owner: XWayland Window Late) -Registered signal for owner 6b9b1220: 6b7a5cc8 -> 6b9b1778 (owner: XWayland Window Late) -Registered signal for owner 6b9b1220: 6b7a5d58 -> 6b9b13c0 (owner: XWayland Window Late) -Map request dispatched, monitor DP-4, xywh: 3465.000000 773.000000 750.000000 594.000000 -Set keyboard focus to surface 6b9550a0, with window name: Alacritty -Set keyboard focus to surface 6b7c5340, with window name: Unreal Engine 4 Crash Reporter -Set keyboard focus to surface 6b9550a0, with window name: Alacritty -Set keyboard focus to surface 6b7c5340, with window name: Unreal Engine 4 Crash Reporter -Set keyboard focus to surface 6b9550a0, with window name: Alacritty -Set keyboard focus to surface 6b7c5340, with window name: Unreal Engine 4 Crash Reporter -Keybind triggered, calling dispatcher (64, 67) -Window 6b9b1220 unmapped -Unregistered late callbacks XWL: 6b9b1428 6b9b1710 6b9b1778 6b9b13c0 -Callback 3fc24a90 -> 6b9b1220, XWayland Window Late removed. -Callback 3fc24a90 -> 6b9b1220, XWayland Window Late removed. -Callback 3fc24a90 -> 6b9b1220, XWayland Window Late removed. -Callback 3fc24a90 -> 6b9b1220, XWayland Window Late removed. -Framebuffer created, status 36053 -Set keyboard focus to surface 6b9550a0, with window name: Alacritty -Destroying the SubSurface tree of unmapped window 6b9b1220 -Callback 3fc24a20 -> 6b7cd880, SurfaceTreeNode removed. -Callback 3fc24a20 -> 6b7cd880, SurfaceTreeNode removed. -Callback 3fc24a20 -> 6b7cd880, SurfaceTreeNode removed. -SurfaceTree Node removed -Set keyboard focus to surface 6b9aca20, with window name: PortalWars -Window 6b9b1220 destroyed, queueing. -Callback 3fc24b10 -> 6b9b1220, XWayland Window removed. -Callback 3fc24b10 -> 6b9b1220, XWayland Window removed. -Callback 3fc24b10 -> 6b9b1220, XWayland Window removed. -Cleanup: destroyed a window -Window 6b9b0a00 destroyed, queueing. -Callback 3fc24b10 -> 6b9b0a00, XWayland Window removed. -Callback 3fc24b10 -> 6b9b0a00, XWayland Window removed. -Callback 3fc24b10 -> 6b9b0a00, XWayland Window removed. -Window 6b7d24a0 unmapped -Unregistered late callbacks XWL: 6b7d26a8 6b7d2990 6b7d29f8 6b7d2640 -Callback 3fc24a90 -> 6b7d24a0, XWayland Window Late rem/mnt/games/steamLibrary/steamapps/common/Splitgate/PortalWars.sh: line 5: 103242 Segmentation fault (core dumped) "$UE4_PROJECT_ROOT/PortalWars/Binaries/Linux/PortalWars-Linux-Shipping" PortalWars "$@" -00:01:20.042 [ERROR] [xwayland/xwm.c:1546] xcb error: op ChangeProperty (no minor), code Window (no extension), sequence 4784, value 33554466 -00:01:20.042 [ERROR] [xwayland/xwm.c:1546] xcb error: op ChangeProperty (no minor), code Window (no extension), sequence 4791, value 33554466 -Game process removed: AppID 677620 "/home/sharkfin/.local/share/Steam/ubuntu12_32/reaper SteamLaunch AppId=677620 -- '/mnt/games/steamLibrary/steamapps/common/Splitgate/PortalWars.sh'", ProcID 103604 -ThreadGetProcessExitCode: no such process 103626 -ThreadGetProcessExitCode: no such process 103604 -ThreadGetProcessExitCode: no such process 103436 -ThreadGetProcessExitCode: no such process 103242 -ThreadGetProcessExitCode: no such process 103241 -ThreadGetProcessExitCode: no such process 103240 -ThreadGetProcessExitCode: no such process 103239 -ThreadGetProcessExitCode: no such process 103238 -ThreadGetProcessExitCode: no such process 103235 -Uploaded AppInterfaceStats to Steam - -(process:103658): GLib-GObject-CRITICAL **: 16:19:12.867: g_object_unref: assertion 'G_IS_OBJECT (object)' failed - -(process:103473): GLib-GObject-CRITICAL **: 16:19:13.491: g_object_unref: assertion 'G_IS_OBJECT (object)' failed -GameAction [AppID 1172620, ActionID 2] : LaunchApp changed task to ProcessingInstallScript with "" -00:01:23.866 [ERROR] [xwayland/xwm.c:1546] xcb error: op ConfigureWindow (no minor), code Value (no extension), sequence 5020, value 0 -fsync: up and running. -wine: RLIMIT_NICE is <= 20, unable to use setpriority safely -src/steamexe/main.cpp (254) : Assertion Failed: reaping pid: 103576 -- gameoverlayui - -src/steamexe/main.cpp (254) : Assertion Failed: reaping pid: 103577 -- gameoverlayui - -oved. -Callback 3fc24a90 -> 6b7d24a0, XWayland Window Late removed. -Callback 3fc24a90 -> 6b7d24a0, XWayland Window Late removed. -Callback 3fc24a90 -> 6b7d24a0, XWayland Window Late removed. -Framebuffer created, status 36053 -Set keyboard focus to surface 6b9abe40, with window name: Steam -Destroying the SubSurface tree of unmapped window 6b7d24a0 -Callback 3fc24a20 -> 6b945650, SurfaceTreeNode removed. -Callback 3fc24a20 -> 6b945650, SurfaceTreeNode removed. -Callback 3fc24a20 -> 6b945650, SurfaceTreeNode removed. -SurfaceTree Node removed -Window 6b7d24a0 destroyed, queueing. -Callback 3fc24b10 -> 6b7d24a0, XWayland Window removed. -Callback 3fc24b10 -> 6b7d24a0, XWayland Window removed. -Callback 3fc24b10 -> 6b7d24a0, XWayland Window removed. -Cleanup: destroyed a window -OPENINGON: 6b9af180, Workspace: 1, Monitor: 0 -New XWayland Surface created. -Registered signal for owner 6b978970: 6b79ea98 -> 6b9789d8 (owner: XWayland Window) -Registered signal for owner 6b978970: 6b79eaa8 -> 6b978a40 (owner: XWayland Window) -Registered signal for owner 6b978970: 6b79ea18 -> 6b978aa8 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b9b1220: 6b7c84b8 -> 6b9b1288 (owner: XWayland Window) -Registered signal for owner 6b9b1220: 6b7c84c8 -> 6b9b12f0 (owner: XWayland Window) -Registered signal for owner 6b9b1220: 6b7c8438 -> 6b9b1358 (owner: XWayland Window) -Set keyboard focus to surface 6b9af750, with window name: Sea of Thieves - Steam -Registered signal for owner 6b7cd880: 6b9afa20 -> 6b7cd888 (owner: SurfaceTreeNode) -Registered signal for owner 6b7cd880: 6b9afa10 -> 6b7cd8f0 (owner: SurfaceTreeNode) -Registered signal for owner 6b7cd880: 6b9afa30 -> 6b7cd958 (owner: SurfaceTreeNode) -Creating a surfaceTree Root! (pWindow: 6b978970) -Window got assigned a surfaceTreeNode 6b7cd880 -Registered signal for owner 6b978970: 6b79ea78 -> 6b978b78 (owner: XWayland Window Late) -Registered signal for owner 6b978970: 6b79ea88 -> 6b978e60 (owner: XWayland Window Late) -Registered signal for owner 6b978970: 6b79ea28 -> 6b978ec8 (owner: XWayland Window Late) -Registered signal for owner 6b978970: 6b79eab8 -> 6b978b10 (owner: XWayland Window Late) -Map request dispatched, monitor DP-3, xywh: 1248.000000 708.000000 64.000000 24.000000 -Set keyboard focus to surface 6b9abe40, with window name: Steam -Window 6b978970 set title to Sea of Thieves - Steam -Window 6b978970 set title to Sea of Thieves - Steam -Window 6b978970 set title to Sea of Thieves - Steam -Window 6b978970 set title to Sea of Thieves - Steam -New XWayland Surface created. -Registered signal for owner 6b7d24a0: 6b7a5d38 -> 6b7d2508 (owner: XWayland Window) -Registered signal for owner 6b7d24a0: 6b7a5d48 -> 6b7d2570 (owner: XWayland Window) -Registered signal for owner 6b7d24a0: 6b7a5cb8 -> 6b7d25d8 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b9b1a40: 6b527ab8 -> 6b9b1aa8 (owner: XWayland Window) -Registered signal for owner 6b9b1a40: 6b527ac8 -> 6b9b1b10 (owner: XWayland Window) -Registered signal for owner 6b9b1a40: 6b527a38 -> 6b9b1b78 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b9b2260: 6b9b4a08 -> 6b9b22c8 (owner: XWayland Window) -Registered signal for owner 6b9b2260: 6b9b4a18 -> 6b9b2330 (owner: XWayland Window) -Registered signal for owner 6b9b2260: 6b9b4988 -> 6b9b2398 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b9b2a80: 6b7d31d8 -> 6b9b2ae8 (owner: XWayland Window) -Registered signal for owner 6b9b2a80: 6b7d31e8 -> 6b9b2b50 (owner: XWayland Window) -Registered signal for owner 6b9b2a80: 6b7d3158 -> 6b9b2bb8 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b9b32a0: 6b7d3468 -> 6b9b3308 (owner: XWayland Window) -Registered signal for owner 6b9b32a0: 6b7d3478 -> 6b9b3370 (owner: XWayland Window) -Registered signal for owner 6b9b32a0: 6b7d33e8 -> 6b9b33d8 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b9b6f10: 6b9acd68 -> 6b9b6f78 (owner: XWayland Window) -Registered signal for owner 6b9b6f10: 6b9acd78 -> 6b9b6fe0 (owner: XWayland Window) -Registered signal for owner 6b9b6f10: 6b9acce8 -> 6b9b7048 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b9b7bd0: 6b9b7ab8 -> 6b9b7c38 (owner: XWayland Window) -Registered signal for owner 6b9b7bd0: 6b9b7ac8 -> 6b9b7ca0 (owner: XWayland Window) -Registered signal for owner 6b9b7bd0: 6b9b7a38 -> 6b9b7d08 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b9b8890: 6b9b8778 -> 6b9b88f8 (owner: XWayland Window) -Registered signal for owner 6b9b8890: 6b9b8788 -> 6b9b8960 (owner: XWayland Window) -Registered signal for owner 6b9b8890: 6b9b86f8 -> 6b9b89c8 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b9b9550: 6b9b9438 -> 6b9b95b8 (owner: XWayland Window) -Registered signal for owner 6b9b9550: 6b9b9448 -> 6b9b9620 (owner: XWayland Window) -Registered signal for owner 6b9b9550: 6b9b93b8 -> 6b9b9688 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b9ba210: 6b9ba0f8 -> 6b9ba278 (owner: XWayland Window) -Registered signal for owner 6b9ba210: 6b9ba108 -> 6b9ba2e0 (owner: XWayland Window) -Registered signal for owner 6b9ba210: 6b9ba078 -> 6b9ba348 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b9baed0: 6b9badb8 -> 6b9baf38 (owner: XWayland Window) -Registered signal for owner 6b9baed0: 6b9badc8 -> 6b9bafa0 (owner: XWayland Window) -Registered signal for owner 6b9baed0: 6b9bad38 -> 6b9bb008 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b9bbb90: 6b9bba78 -> 6b9bbbf8 (owner: XWayland Window) -Registered signal for owner 6b9bbb90: 6b9bba88 -> 6b9bbc60 (owner: XWayland Window) -Registered signal for owner 6b9bbb90: 6b9bb9f8 -> 6b9bbcc8 (owner: XWayland Window) -Window 6b978970 set title to Sea of Thieves - Steam -Window 6b9b8890 destroyed, queueing. -Callback 3fc24b10 -> 6b9b8890, XWayland Window removed. -Callback 3fc24b10 -> 6b9b8890, XWayland Window removed. -Callback 3fc24b10 -> 6b9b8890, XWayland Window removed. -Window 6b9b7bd0 destroyed, queueing. -Callback 3fc24b10 -> 6b9b7bd0, XWayland Window removed. -Callback 3fc24b10 -> 6b9b7bd0, XWayland Window removed. -Callback 3fc24b10 -> 6b9b7bd0, XWayland Window removed. -Window 6b9b6f10 destroyed, queueing. -Callback 3fc24b10 -> 6b9b6f10, XWayland Window removed. -Callback 3fc24b10 -> 6b9b6f10, XWayland Window removed. -Callback 3fc24b10 -> 6b9b6f10, XWayland Window removed. -Window 6b9b32a0 destroyed, queueing. -Callback 3fc24b10 -> 6b9b32a0, XWayland Window removed. -Callback 3fc24b10 -> 6b9b32a0, XWayland Window removed. -Callback 3fc24b10 -> 6b9b32a0, XWayland Window removed. -Window 6b9ba210 destroyed, queueing. -Callback 3fc24b10 -> 6b9ba210, XWayland Window removed. -Callback 3fc24b10 -> 6b9ba210, XWayland Window removed. -Callback 3fc24b10 -> 6b9ba210, XWayland Window removed. -Window 6b9bbb90 destroyed, queueing. -Callback 3fc24b10 -> 6b9bbb90, XWayland Window removed. -Callback 3fc24b10 -> 6b9bbb90, XWayland Window removed. -Callback 3fc24b10 -> 6b9bbb90, XWayland Window removed. -Window 6b9baed0 destroyed, queueing. -Callback 3fc24b10 -> 6b9baed0, XWayland Window removed. -Callback 3fc24b10 -> 6b9baed0, XWayland Window removed. -Callback 3fc24b10 -> 6b9baed0, XWayland Window removed. -Window 6b9b9550 destroyed, queueing. -Callback 3fc24b10 -> 6b9b9550, XWayland Window removed. -Callback 3fc24b10 -> 6b9b9550, XWayland Window removed. -Callback 3fc24b10 -> 6b9b9550, XWayland Window removed. -Window 6b7d24a0 destroyed, queueing. -Callback 3fc24b10 -> 6b7d24a0, XWayland Window removed. -Callback 3fc24b10 -> 6b7d24a0, XWayland Window removed. -Callback 3fc24b10 -> 6b7d24a0, XWayland Window removed. -Window 6b9b1a40 destroyed, queueing. -Callback 3fc24b10 -> 6b9b1a40, XWayland Window removed. -Callback 3fc24b10 -> 6b9b1a40, XWayland Window removed. -Callback 3fc24b10 -> 6b9b1a40, XWayland Window removed. -Window 6b9b2a80 destroyed, queueing. -Callback 3fc24b10 -> 6b9b2a80, XWayland Window removed. -Callback 3fc24b10 -> 6b9b2a80, XWayland Window removed. -Callback 3fc24b10 -> 6b9b2a80, GameAction [AppID 1172620, ActionID 2] : LaunchApp changed task to SynchronizingControllerConfig with "" -GameAction [AppID 1172620, ActionID 2] : LaunchApp changed task to SiteLicenseSeatCheckout with "" -GameAction [AppID 1172620, ActionID 2] : LaunchApp changed task to CreatingProcess with "" -GameAction [AppID 1172620, ActionID 2] : LaunchApp waiting for user response to CreatingProcess "" -GameAction [AppID 1172620, ActionID 2] : LaunchApp continues with user response "CreatingProcess" -/bin/sh\0-c\0/home/sharkfin/.local/share/Steam/ubuntu12_32/reaper SteamLaunch AppId=1172620 -- '/home/sharkfin/.local/share/Steam/steamapps/common/SteamLinuxRuntime_soldier'/_v2-entry-point --verb=waitforexitandrun -- '/mnt/games/steamLibrary/steamapps/common/Proton 7.0'/proton waitforexitandrun '/mnt/games/steamLibrary/steamapps/common/Sea of Thieves/Athena/Binaries/Win64/SoTGame.exe'\0 -Game process added : AppID 1172620 "/home/sharkfin/.local/share/Steam/ubuntu12_32/reaper SteamLaunch AppId=1172620 -- '/home/sharkfin/.local/share/Steam/steamapps/common/SteamLinuxRuntime_soldier'/_v2-entry-point --verb=waitforexitandrun -- '/mnt/games/steamLibrary/steamapps/common/Proton 7.0'/proton waitforexitandrun '/mnt/games/steamLibrary/steamapps/common/Sea of Thieves/Athena/Binaries/Win64/SoTGame.exe'", ProcID 103953, IP 0.0.0.0:0 -ERROR: ld.so: object '/home/sharkfin/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored. -ERROR: ld.so: object '/home/sharkfin/.local/share/Steam/ubuntu12_64/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS64): ignored. -ERROR: ld.so: object '/home/sharkfin/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored. -GameAction [AppID 1172620, ActionID 2] : LaunchApp changed task to WaitingGameWindow with "" -ERROR: ld.so: object '/home/sharkfin/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored. -ERROR: ld.so: object '/home/sharkfin/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored. -GameAction [AppID 1172620, ActionID 2] : LaunchApp changed task to Completed with "" -00:01:30.869 [ERROR] [xwayland/xwm.c:1546] xcb error: op ChangeProperty (no minor), code Window (no extension), sequence 5482, value 6291753 -00:01:30.869 [ERROR] [xwayland/xwm.c:1546] xcb error: op ChangeProperty (no minor), code Window (no extension), sequence 5483, value 6291753 -00:01:30.869 [ERROR] [xwayland/xwm.c:1546] xcb error: op ChangeProperty (no minor), code Window (no extension), sequence 5485, value 6291753 -pid 103957 != 103954, skipping destruction (fork without exec?) -fsync: up and running. -wine: RLIMIT_NICE is <= 20, unable to use setpriority safely -ThreadGetProcessExitCode: no such process 104127 -ThreadGetProcessExitCode: no such process 104125 -ThreadGetProcessExitCode: no such process 103955 -Game process updated : AppID 1172620 "/home/sharkfin/.local/share/Steam/ubuntu12_32/reaper SteamLaunch AppId=1172620 -- '/home/sharkfin/.local/share/Steam/steamapps/common/SteamLinuxRuntime_soldier'/_v2-entry-point --verb=waitforexitandrun -- '/mnt/games/steamLibrary/steamapps/common/Proton 7.0'/proton waitforexitandrun '/mnt/games/steamLibrary/steamapps/common/Sea of Thieves/Athena/Binaries/Win64/SoTGame.exe'", ProcID 104126, IP 0.0.0.0:0 -Setting breakpad minidump AppID = 1172620 -Steam_SetMinidumpSteamID: Caching Steam ID: 76561198272891864 [API loaded no] -XWayland Window removed. -Window 6b9b2260 destroyed, queueing. -Callback 3fc24b10 -> 6b9b2260, XWayland Window removed. -Callback 3fc24b10 -> 6b9b2260, XWayland Window removed. -Callback 3fc24b10 -> 6b9b2260, XWayland Window removed. -Window 6b978970 set title to Sea of Thieves - Steam -Window 6b978970 unmapped -Unregistered late callbacks XWL: 6b978b78 6b978e60 6b978ec8 6b978b10 -Callback 3fc24a90 -> 6b978970, XWayland Window Late removed. -Callback 3fc24a90 -> 6b978970, XWayland Window Late removed. -Callback 3fc24a90 -> 6b978970, XWayland Window Late removed. -Callback 3fc24a90 -> 6b978970, XWayland Window Late removed. -Framebuffer created, status 36053 -Destroying the SubSurface tree of unmapped window 6b978970 -Callback 3fc24a20 -> 6b7cd880, SurfaceTreeNode removed. -Callback 3fc24a20 -> 6b7cd880, SurfaceTreeNode removed. -Callback 3fc24a20 -> 6b7cd880, SurfaceTreeNode removed. -SurfaceTree Node removed -Window 6b9b1220 destroyed, queueing. -Callback 3fc24b10 -> 6b9b1220, XWayland Window removed. -Callback 3fc24b10 -> 6b9b1220, XWayland Window removed. -Callback 3fc24b10 -> 6b9b1220, XWayland Window removed. -Window 6b978970 destroyed, queueing. -Callback 3fc24b10 -> 6b978970, XWayland Window removed. -Callback 3fc24b10 -> 6b978970, XWayland Window removed. -Callback 3fc24b10 -> 6b978970, XWayland Window removed. -Cleanup: destroyed a window -New XWayland Surface created. -Registered signal for owner 6b9bd9a0: 6b9b8778 -> 6b9bda08 (owner: XWayland Window) -Registered signal for owner 6b9bd9a0: 6b9b8788 -> 6b9bda70 (owner: XWayland Window) -Registered signal for owner 6b9bd9a0: 6b9b86f8 -> 6b9bdad8 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b7d3060: 6b9b7ab8 -> 6b7d30c8 (owner: XWayland Window) -Registered signal for owner 6b7d3060: 6b9b7ac8 -> 6b7d3130 (owner: XWayland Window) -Registered signal for owner 6b7d3060: 6b9b7a38 -> 6b7d3198 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b978510: 6b9ba0f8 -> 6b978578 (owner: XWayland Window) -Registered signal for owner 6b978510: 6b9ba108 -> 6b9785e0 (owner: XWayland Window) -Registered signal for owner 6b978510: 6b9ba078 -> 6b978648 (owner: XWayland Window) -Window 6b7d3060 destroyed, queueing. -Callback 3fc24b10 -> 6b7d3060, XWayland Window removed. -Callback 3fc24b10 -> 6b7d3060, XWayland Window removed. -Callback 3fc24b10 -> 6b7d3060, XWayland Window removed. -New XWayland Surface created. -Registered signal for owner 6b9be8e0: 6b9badb8 -> 6b9be948 (owner: XWayland Window) -Registered signal for owner 6b9be8e0: 6b9badc8 -> 6b9be9b0 (owner: XWayland Window) -Registered signal for owner 6b9be8e0: 6b9bad38 -> 6b9bea18 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b9bf100: 6b79ea98 -> 6b9bf168 (owner: XWayland Window) -Registered signal for owner 6b9bf100: 6b79eaa8 -> 6b9bf1d0 (owner: XWayland Window) -Registered signal for owner 6b9bf100: 6b79ea18 -> 6b9bf238 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b9bf920: 6b9acd68 -> 6b9bf988 (owner: XWayland Window) -Registered signal for owner 6b9bf920: 6b9acd78 -> 6b9bf9f0 (owner: XWayland Window) -Registered signal for owner 6b9bf920: 6b9acce8 -> 6b9bfa58 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b9c0140: 6b7d39f8 -> 6b9c01a8 (owner: XWayland Window) -Registered signal for owner 6b9c0140: 6b7d3a08 -> 6b9c0210 (owner: XWayland Window) -Registered signal for owner 6b9c0140: 6b7d3978 -> 6b9c0278 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b9c0960: 6b527ab8 -> 6b9c09c8 (owner: XWayland Window) -Registered signal for owner 6b9c0960: 6b527ac8 -> 6b9c0a30 (owner: XWayland Window) -Registered signal for owner 6b9c0960: 6b527a38 -> 6b9c0a98 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b9c1180: 6b978ea8 -> 6b9c11e8 (owner: XWayland Window) -Registered signal for owner 6b9c1180: 6b978eb8 -> 6b9c1250 (owner: XWayland Window) -Registered signal for owner 6b9c1180: 6b978e28 -> 6b9c12b8 (owner: XWayland Window) -New XWaylThreadGetProcessExitCode: no such process 104130 -src/steamexe/main.cpp (254) : Assertion Failed: reaping pid: 103577 -- gameoverlayui - -src/steamexe/main.cpp (254) : Assertion Failed: reaping pid: 103473 -- gameoverlayui - -Game process updated : AppID 1172620 "/home/sharkfin/.local/share/Steam/ubuntu12_32/reaper SteamLaunch AppId=1172620 -- '/home/sharkfin/.local/share/Steam/steamapps/common/SteamLinuxRuntime_soldier'/_v2-entry-point --verb=waitforexitandrun -- '/mnt/games/steamLibrary/steamapps/common/Proton 7.0'/proton waitforexitandrun '/mnt/games/steamLibrary/steamapps/common/Sea of Thieves/Athena/Binaries/Win64/SoTGame.exe'", ProcID 104198, IP 0.0.0.0:0 -Setting breakpad minidump AppID = 1172620 -SteamInternal_SetMinidumpSteamID: Caching Steam ID: 76561198272891864 [API loaded no] -and Surface created. -Registered signal for owner 6b9c19a0: 6b979138 -> 6b9c1a08 (owner: XWayland Window) -Registered signal for owner 6b9c19a0: 6b979148 -> 6b9c1a70 (owner: XWayland Window) -Registered signal for owner 6b9c19a0: 6b9790b8 -> 6b9c1ad8 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b9c21c0: 6b9bc948 -> 6b9c2228 (owner: XWayland Window) -Registered signal for owner 6b9c21c0: 6b9bc958 -> 6b9c2290 (owner: XWayland Window) -Registered signal for owner 6b9c21c0: 6b9bc8c8 -> 6b9c22f8 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b9c29e0: 6b7c6d68 -> 6b9c2a48 (owner: XWayland Window) -Registered signal for owner 6b9c29e0: 6b7c6d78 -> 6b9c2ab0 (owner: XWayland Window) -Registered signal for owner 6b9c29e0: 6b7c6ce8 -> 6b9c2b18 (owner: XWayland Window) -Window 6b9c0960 destroyed, queueing. -Callback 3fc24b10 -> 6b9c0960, XWayland Window removed. -Callback 3fc24b10 -> 6b9c0960, XWayland Window removed. -Callback 3fc24b10 -> 6b9c0960, XWayland Window removed. -Window 6b978510 destroyed, queueing. -Callback 3fc24b10 -> 6b978510, XWayland Window removed. -Callback 3fc24b10 -> 6b978510, XWayland Window removed. -Callback 3fc24b10 -> 6b978510, XWayland Window removed. -New XWayland Surface created. -Registered signal for owner 6b9c3410: 6b9ba0f8 -> 6b9c3478 (owner: XWayland Window) -Registered signal for owner 6b9c3410: 6b9ba108 -> 6b9c34e0 (owner: XWayland Window) -Registered signal for owner 6b9c3410: 6b9ba078 -> 6b9c3548 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b9c3ec0: 6b9c3da8 -> 6b9c3f28 (owner: XWayland Window) -Registered signal for owner 6b9c3ec0: 6b9c3db8 -> 6b9c3f90 (owner: XWayland Window) -Registered signal for owner 6b9c3ec0: 6b9c3d28 -> 6b9c3ff8 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b9c4b80: 6b9c4a68 -> 6b9c4be8 (owner: XWayland Window) -Registered signal for owner 6b9c4b80: 6b9c4a78 -> 6b9c4c50 (owner: XWayland Window) -Registered signal for owner 6b9c4b80: 6b9c49e8 -> 6b9c4cb8 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b9c5840: 6b9c5728 -> 6b9c58a8 (owner: XWayland Window) -Registered signal for owner 6b9c5840: 6b9c5738 -> 6b9c5910 (owner: XWayland Window) -Registered signal for owner 6b9c5840: 6b9c56a8 -> 6b9c5978 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b9c6500: 6b9c63e8 -> 6b9c6568 (owner: XWayland Window) -Registered signal for owner 6b9c6500: 6b9c63f8 -> 6b9c65d0 (owner: XWayland Window) -Registered signal for owner 6b9c6500: 6b9c6368 -> 6b9c6638 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b9c71c0: 6b9c70a8 -> 6b9c7228 (owner: XWayland Window) -Registered signal for owner 6b9c71c0: 6b9c70b8 -> 6b9c7290 (owner: XWayland Window) -Registered signal for owner 6b9c71c0: 6b9c7028 -> 6b9c72f8 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b9c7ea0: 6b9c7d88 -> 6b9c7f08 (owner: XWayland Window) -Registered signal for owner 6b9c7ea0: 6b9c7d98 -> 6b9c7f70 (owner: XWayland Window) -Registered signal for owner 6b9c7ea0: 6b9c7d08 -> 6b9c7fd8 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b9c8b60: 6b9c8a48 -> 6b9c8bc8 (owner: XWayland Window) -Registered signal for owner 6b9c8b60: 6b9c8a58 -> 6b9c8c30 (owner: XWayland Window) -Registered signal for owner 6b9c8b60: 6b9c89c8 -> 6b9c8c98 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b9c9820: 6b9c9708 -> 6b9c9888 (owner: XWayland Window) -Registered signal for owner 6b9c9820: 6b9c9718 -> 6b9c98f0 (owner: XWayland Window) -Registered signal for owner 6b9c9820: 6b9c9688 -> 6b9c9958 (owner: XWayland Window) -New XWayland Surface created. -Registered signal for owner 6b9ca4e0: 6b9ca3c8 -> 6b9ca548 (owner: XWayland Window) -Registered signal for owner 6b9ca4e0: 6b9ca3d8 -> 6b9ca5b0 (owner: XWayland Window) -Registered signal for owner 6b9ca4e0: 6b9ca348 -> 6b9ca618 (owner: XWayland Window) -Set keyboard focus to surface00:01:39.313 [ERROR] [xwayland/xwm.c:1546] xcb error: op ConfigureWindow (no minor), code Value (no extension), sequence 5966, value 0 -Installing breakpad exception handler for appid(gameoverlayui)/version(20220618001721) -Installing breakpad exception handler for appid(gameoverlayui)/version(1.0) -Installing breakpad exception handler for appid(gameoverlayui)/version(1.0) -Installing breakpad exception handler for appid(gameoverlayui)/version(1.0) -src/steamexe/main.cpp (254) : Assertion Failed: reaping pid: 103473 -- gameoverlayui - -src/steamexe/main.cpp (254) : Assertion Failed: reaping pid: 103658 -- gameoverlayui - - 6b9cb250, with window name: Athena (64-bit, PCD3D_SM5) -Registered signal for owner 6b7cd880: 6b9cb520 -> 6b7cd888 (owner: SurfaceTreeNode) -Registered signal for owner 6b7cd880: 6b9cb510 -> 6b7cd8f0 (owner: SurfaceTreeNode) -Registered signal for owner 6b7cd880: 6b9cb530 -> 6b7cd958 (owner: SurfaceTreeNode) -Creating a surfaceTree Root! (pWindow: 6b9c7ea0) -Window got assigned a surfaceTreeNode 6b7cd880 -Registered signal for owner 6b9c7ea0: 6b9c7d68 -> 6b9c80a8 (owner: XWayland Window Late) -Registered signal for owner 6b9c7ea0: 6b9c7d78 -> 6b9c8390 (owner: XWayland Window Late) -Registered signal for owner 6b9c7ea0: 6b9c7d18 -> 6b9c83f8 (owner: XWayland Window Late) -Registered signal for owner 6b9c7ea0: 6b9c7da8 -> 6b9c8040 (owner: XWayland Window Late) -Map request dispatched, monitor DP-3, xywh: 636.000000 337.000000 1288.000000 1307.000000 -Window 6b9c7ea0 set title to Sea of Thieves -Set keyboard focus to surface 6b9abe40, with window name: Steam -Window 6b9c7ea0 fullscreen to 1 -Set keyboard focus to surface 6b9cb250, with window name: Sea of Thieves -New mouse constraint at 6b947c20 -Registered signal for owner 6b94fc60: 6b947d28 -> 6b94fcd8 (owner: Constraint) -Registered signal for owner 6b94fc60: 6b947d18 -> 6b94fc70 (owner: Constraint) -Constraint rechecked: 0, 0 to 2560, 1440 for 6b9cb250 (window name: Sea of Thieves) -Registered signal for owner 6b743fd0: 6b9cb510 -> 6b744000 (owner: Mouse constraint commit) -Constrained mouse to 6b947c20 -Callback 3fc24650 -> 6b743fd0, Mouse constraint commit removed. -Unconstrained mouse from 6b947c20 -Callback 3fc24650 -> 6b94fc60, Constraint removed. -Callback 3fc24650 -> 6b94fc60, Constraint removed. -New mouse constraint at 6b947c20 -Registered signal for owner 6b9599f0: 6b947d28 -> 6b959a68 (owner: Constraint) -Registered signal for owner 6b9599f0: 6b947d18 -> 6b959a00 (owner: Constraint) -Constraint rechecked: 0, 0 to 2560, 1440 for 6b9cb250 (window name: Sea of Thieves) -Registered signal for owner 6b743fd0: 6b9cb510 -> 6b744000 (owner: Mouse constraint commit) -Constrained mouse to 6b947c20 -Callback 3fc24650 -> 6b743fd0, Mouse constraint commit removed. -Unconstrained mouse from 6b947c20 -Callback 3fc24650 -> 6b9599f0, Constraint removed. -Callback 3fc24650 -> 6b9599f0, Constraint removed. -New mouse constraint at 6b7d3b00 -Registered signal for owner 6b94fc60: 6b7d3c08 -> 6b94fcd8 (owner: Constraint) -Registered signal for owner 6b94fc60: 6b7d3bf8 -> 6b94fc70 (owner: Constraint) -Constraint rechecked: 0, 0 to 2560, 1440 for 6b9cb250 (window name: Sea of Thieves) -Registered signal for owner 6b743fd0: 6b9cb510 -> 6b744000 (owner: Mouse constraint commit) -Constrained mouse to 6b7d3b00 -Callback 3fc24650 -> 6b743fd0, Mouse constraint commit removed. -Unconstrained mouse from 6b7d3b00 -Callback 3fc24650 -> 6b94fc60, Constraint removed. -Callback 3fc24650 -> 6b94fc60, Constraint removed. -Rejecting drag on a fullscreen window. -New mouse constraint at 6b9b0080 -Registered signal for owner 6b9599f0: 6b9b0188 -> 6b959a68 (owner: Constraint) -Registered signal for owner 6b9599f0: 6b9b0178 -> 6b959a00 (owner: Constraint) -Constraint rechecked: 0, 0 to 2560, 1440 for 6b9cb250 (window name: Sea of Thieves) -Registered signal for owner 6b743fd0: 6b9cb510 -> 6b744000 (owner: Mouse constraint commit) -Constrained mouse to 6b9b0080 -Callback 3fc24650 -> 6b743fd0, Mouse constraint commit removed. -Unconstrained mouse from 6b9b0080 -Callback 3fc24650 -> 6b9599f0, Constraint removed. -Callback 3fc24650 -> 6b9599f0, Constraint removed. -New mouse constraint at 6b7d3b00 -Registered signal for owner 6b94fc60: 6b7d3c08 -> 6b94fcd8 (owner: Constraint) -Registered signal for owner 6b94fc60: 6b7d3bf8 -> 6b94fc70 (owner: Constraint) -Constraint rechecked: 0, 0 to 2560, 1440 for 6b9cb250 (window name: Sea of Thieves) -Registered signal for owner 6b743fd0: 6b9cb510 -> 6b744000 (owner: Mouse constraint commit) -Constrained mouse to 6b7d3b00 -Callback 3fc24650 -> 6b743fd0, Mouse constraint commit removed. -Unconstrained mouse from 6b7d3b00 -Callback 3fc24650 -> 6b94fc60, Constraint removed. -Callback 3fc24650 -> 6b94fc60, Constraint removed. -New mouse constraint at 6b7c4b40 -Registered signal for owner 6b9599f0: 6b7c4c48 -> 6b959a68 (owner: Constraint) -Registered signal for owner 6b9599f0: 6b7c4c38 -> 6b959a00 (owner: Constraint) -Constraint rechecked: 0, 0 to 2560, 1440 for 6b9cb250 (window name: Sea of Thieves) -Registered signal for owner 6b743fd0: 6b9cb510 -> 6b744000 (owner: Mouse constraint commit) -Constrained mouse to 6b7c4b40 -Callback 3fc24650 -> 6b743fd0, Mouse constraint commit removed. -Unconstrained mouse from 6b7c4b40 -Callback 3fc24650 -> 6b9599f0, Constraint removed. -Callback 3fc24650 -> 6b9599f0, Constraint removed. -New mouse constraint at 6b7c4b40 -Registered signal for owner 6b94fc60: 6b7c4c48 -> 6b94fcd8 (owner: Constraint) -Registered signal for owner 6b94fc60: 6b7c4c38 -> 6b94fc70 (owner: Constraint) -Constraint rechecked: 0, 0 to 2560, 1440 for 6b9cb250 (window name: Sea of Thieves) -Registered signal for owner 6b743fd0: 6b9cb510 -> 6b744000 (owner: Mouse constraint commit) -Constrained mouse to 6b7c4b40 -Callback 3fc24650 -> 6b743fd0, Mouse constraint commit removed. -Unconstrained mouse from 6b7c4b40 -Callback 3fc24650 -> 6b94fc60, Constraint removed. -Callback 3fc24650 -> 6b94fc60, Constraint removed. -New mouse constraint at 6b7c4b40 -Registered signal for owner 6b9599f0: 6b7c4c48 -> 6b959a68 (owner: Constraint) -Registered signal for owner 6b9599f0: 6b7c4c38 -> 6b959a00 (owner: Constraint) -Constraint rechecked: 0, 0 to 2560, 1440 for 6b9cb250 (window name: Sea of Thieves) -Registered signal for owner 6b743fd0: 6b9cb510 -> 6b744000 (owner: Mouse constraint commit) -Constrained mouse to 6b7c4b40 -Callback 3fc24650 -> 6b743fd0, Mouse constraint commit removed. -Unconstrained mouse from 6b7c4b40 -Callback 3fc24650 -> 6b9599f0, Constraint removed. -Callback 3fc24650 -> 6b9599f0, Constraint removed. -New mouse constraint at 6b7c4b40 -Registered signal for owner 6b94fc60: 6b7c4c48 -> 6b94fcd8 (owner: Constraint) -Registered signal for owner 6b94fc60: 6b7c4c38 -> 6b94fc70 (owner: Constraint) -Constraint rechecked: 0, 0 to 2560, 1440 for 6b9cb250 (window name: Sea of Thieves) -Registered signal for owner 6b743fd0: 6b9cb510 -> 6b744000 (owner: Mouse constraint commit) -Constrained mouse to 6b7c4b40 -Callback 3fc24650 -> 6b743fd0, Mouse constraint commit removed. -Unconstrained mouse from 6b7c4b40 -Callback 3fc24650 -> 6b94fc60, Constraint removed. -Callback 3fc24650 -> 6b94fc60, Constraint removed. -New mouse constraint at 6b9aa5f0 -Registered signal for owner 6b9599f0: 6b9aa6f8 -> 6b959a68 (owner: Constraint) -Registered signal for owner 6b9599f0: 6b9aa6e8 -> 6b959a00 (owner: Constraint) -Constraint rechecked: 0, 0 to 2560, 1440 for 6b9cb250 (window name: Sea of Thieves) -Registered signal for owner 6b743fd0: 6b9cb510 -> 6b744000 (owner: Mouse constraint commit) -Constrained mouse to 6b9aa5f0 -Callback 3fc24650 -> 6b743fd0, Mouse constraint commit removed. -Unconstrained mouse from 6b9aa5f0 -Callback 3fc24650 -> 6b9599f0, Constraint removed. -Callback 3fc24650 -> 6b9599f0, Constraint removed. -Window 6b9c7ea0 unmapped -Unregistered late callbacks XWL: 6b9c80a8 6b9c8390 6b9c83f8 6b9c8040 -Callback 3fc24a90 -> 6b9c7ea0, XWayland Window Late removed. -Callback 3fc24a90 -> 6b9c7ea0, XWayland Window Late removed. -Callback 3fc24a90 -> 6b9c7ea0, XWayland Window Late removed. -Callback 3fc24a90 -> 6b9c7ea0, XWayland Window Late removed. -Framebuffer created, status 36053 -Set keyboard focus to surface 6b9abe40, with window name: Steam -Destroying the SubSurface tree of unmapped window 6b9c7ea0 -Callback 3fc24a20 -> 6b7cd880, SurfaceTreeNode removed. -Callback 3fc24a20 -> 6b7cd880, SurfaceTreeNode removed. -Callback 3fc24a20 -> 6b7cd880, SurfaceTreeNode removed. -SurfaceTree Node removed -Window 6b9c9820 destroyed, queueing. -Callback 3fc24b10 -> 6b9c9820, XWayland Window removed. -Callback 3fc24b10 -> 6b9c9820, XWayland Window removed. -Callback 3fc24b10 -> 6b9c9820, XWayland Window removed. -Window 6b9c7ea0 destroyed, queueing. -Callback 3fc24b10 -> 6b9c7ea0, XWayland Window removed. -Callback 3fc24b10 -> 6b9c7ea0, XWayland Window removed. -Callback 3fc24b10 -> 6b9c7ea0, XWayland Window removed. -Set keyboard focus to 00:03:15.375 [ERROR] [xwayland/xwm.c:1546] xcb error: op ChangeProperty (no minor), code Window (no extension), sequence 6593, value 48234549 -ThreadGetProcessExitCode: no such process 104181 -ThreadGetProcessExitCode: no such process 104163 -ThreadGetProcessExitCode: no such process 104157 -ThreadGetProcessExitCode: no such process 104135 -ThreadGetProcessExitCode: no such process 104132 -ThreadGetProcessExitCode: no such process 104126 -ThreadGetProcessExitCode: no such process 104124 -pid 104128 != 104127, skipping destruction (fork without exec?) -Game process removed: AppID 1172620 "/home/sharkfin/.local/share/Steam/ubuntu12_32/reaper SteamLaunch AppId=1172620 -- '/home/sharkfin/.local/share/Steam/steamapps/common/SteamLinuxRuntime_soldier'/_v2-entry-point --verb=waitforexitandrun -- '/mnt/games/steamLibrary/steamapps/common/Proton 7.0'/proton waitforexitandrun '/mnt/games/steamLibrary/steamapps/common/Sea of Thieves/Athena/Binaries/Win64/SoTGame.exe'", ProcID 104198 -ThreadGetProcessExitCode: no such process 104198 -ThreadGetProcessExitCode: no such process 104144 -ThreadGetProcessExitCode: no such process 103954 -Game 1172620 created interface STEAMAPPS_INTERFACE_VERSION008 / -Game 1172620 created interface STEAMHTMLSURFACE_INTERFACE_VERSION_005 / -Game 1172620 created interface STEAMINVENTORY_INTERFACE_V003 / -Game 1172620 created interface STEAMREMOTESTORAGE_INTERFACE_VERSION016 / -Game 1172620 created interface STEAMUSERSTATS_INTERFACE_VERSION012 / -Game 1172620 created interface SteamController008 / -Game 1172620 created interface SteamFriends017 / -Game 1172620 created interface SteamInput005 / -Game 1172620 created interface SteamMatchMaking009 / -Game 1172620 created interface SteamMatchMakingServers002 / -Game 1172620 created interface SteamNetworking006 / -Game 1172620 created interface SteamUser021 / -Game 1172620 created interface SteamUser021 / User -Game 1172620 created interface SteamUtils010 / -Game 1172620 method call count for IClientInventory::GetItemsWithPrices : 2 -Game 1172620 method call count for IClientInventory::GetNumItemsWithPrices : 2 -Game 1172620 method call count for IClientInventory::RequestPrices : 2 -Game 1172620 method call count for IClientInventory::GetItemDefinitionProperty : 392 -Game 1172620 method call count for IClientInventory::LoadItemDefinitions : 1 -Game 1172620 method call count for IClientInventory::DestroyResult : 1 -Game 1172620 method call count for IClientInventory::GetResultItems : 1 -Game 1172620 method call count for IClientInventory::CheckResultSteamID : 1 -Game 1172620 method call count for IClientUserStats::SetAchievement : 61 -Game 1172620 method call count for IClientUserStats::GetAchievement : 191 -Game 1172620 method call count for IClientUserStats::StoreStats : 23 -Game 1172620 method call count for IClientUserStats::RequestCurrentStats : 1 -Game 1172620 method call count for IClientUserStats::GetAchievementName : 191 -Game 1172620 method call count for IClientUserStats::GetNumAchievements : 1 -Game 1172620 method call count for IClientAppManager::GetCurrentLanguage : 3 -Game 1172620 method call count for IClientAppManager::GetLaunchCommandLine : 1 -Game 1172620 method call count for IClientAppManager::GetLaunchQueryParam : 1 -Game 1172620 method call count for IClientUtils::RecordSteamInterfaceCreation : 16 -Game 1172620 method call count for IClientUtils::GetAPICallResult : 4 -Game 1172620 method call count for IClientUtils::GetAppID : 21 -Game 1172620 method call count for IClientFriends::SetRichPresence : 3 -Game 1172620 method call count for IClientUser::BIsSubscribedApp : 1 -Game 1172620 method call count for IClientUser::GetEncryptedAppTicket : 2 -Game 1172620 method call count for IClientUser::RequestEncryptedAppTicket : 2 -Game 1172620 method call count for IClientUser::CancelAuthTicket : 1 -Game 1172620 method call count for IClientUser::GetAuthSessionTicket : 1 -Game 1172620 method call count for IClientUser::GetSteamID : 3 -Game 1172620 method call count for IClientUser::BLoggedOn : 2 -Uploaded AppInterfaceStats to Steam - -(process:104252): GLib-GObject-CRITICAL **: 16:21:08.560: g_object_unref: assertion 'G_IS_OBJECT (object)' failed -src/steamexe/main.cpp (254) : Assertion Failed: reaping pid: 103658 -- gameoverlayui - -src/steamexe/main.cpp (254) : Assertion Failed: reaping pid: 104252 -- gameoverlayui - From 95e083dbd3baec094220848592e9258de8acf2cc Mon Sep 17 00:00:00 2001 From: Sebastian Ouellette Date: Sun, 19 Jun 2022 16:51:03 -0400 Subject: [PATCH 04/49] Converted tabs to spaces. Now ready for PR --- src/managers/input/InputManager.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/managers/input/InputManager.cpp b/src/managers/input/InputManager.cpp index ff2cd503..d5bfd8fd 100644 --- a/src/managers/input/InputManager.cpp +++ b/src/managers/input/InputManager.cpp @@ -29,7 +29,7 @@ void CInputManager::mouseMoveUnified(uint32_t time, bool refocus) { if (!g_pCompositor->m_sSeat.mouse) { Debug::log(ERR, "BUG THIS: Mouse move on mouse nullptr!"); - return; + return; } Vector2D mouseCoords = getMouseCoordsInternal(); @@ -48,8 +48,8 @@ void CInputManager::mouseMoveUnified(uint32_t time, bool refocus) { // Native Wayland apps know how 2 constrain themselves. // XWayland, we just have to accept them. Might cause issues, but thats XWayland for ya. - const auto CONSTRAINTSIZE = CONSTRAINTWINDOW->m_bIsX11 ? Vector2D(CONSTRAINTWINDOW->m_uSurface.xwayland->width, CONSTRAINTWINDOW->m_uSurface.xwayland->height) : CONSTRAINTWINDOW->m_vRealSize.vec(); - const auto CONSTRAINTPOS = Vector2D((CONSTRAINTWINDOW->m_uSurface.xwayland->x + CONSTRAINTSIZE.x) / 2.0, (CONSTRAINTWINDOW->m_uSurface.xwayland->y + CONSTRAINTSIZE.y)); + const auto CONSTRAINTSIZE = CONSTRAINTWINDOW->m_bIsX11 ? Vector2D(CONSTRAINTWINDOW->m_uSurface.xwayland->width, CONSTRAINTWINDOW->m_uSurface.xwayland->height) : CONSTRAINTWINDOW->m_vRealSize.vec(); + const auto CONSTRAINTPOS = Vector2D((CONSTRAINTWINDOW->m_uSurface.xwayland->x + CONSTRAINTSIZE.x) / 2.0, (CONSTRAINTWINDOW->m_uSurface.xwayland->y + CONSTRAINTSIZE.y)); // I'm a worm and I added some code to override some annoying stuff :) @@ -63,10 +63,10 @@ void CInputManager::mouseMoveUnified(uint32_t time, bool refocus) { // Instead of constraining the cursor to the entire window, like in the previous version, this keeps the cursor to the center of the window. // This allows for maximum mouse movement to be captured by the application, while the mouse can still be freed and move around when it is supposed to be deltaToFit.x = CONSTRAINTPOS.x - mouseCoords.x; - deltaToFit.y = CONSTRAINTPOS.y - mouseCoords.y; + deltaToFit.y = CONSTRAINTPOS.y - mouseCoords.y; - wlr_cursor_move(g_pCompositor->m_sWLRCursor, g_pCompositor->m_sSeat.mouse->mouse, deltaToFit.x, deltaToFit.y); + wlr_cursor_move(g_pCompositor->m_sWLRCursor, g_pCompositor->m_sSeat.mouse->mouse, deltaToFit.x, deltaToFit.y); mouseCoords = mouseCoords + deltaToFit; } From dc849350597e9eaaa8badab46667dc06d802f650 Mon Sep 17 00:00:00 2001 From: Sebastian Ouellette Date: Sun, 19 Jun 2022 16:54:59 -0400 Subject: [PATCH 05/49] Set the constraint position to the window center (properly) Missed one expression, it was set to the bottom middle. I missed it because i don't have an extra monitor extending from the bottom of that screen. --- src/managers/input/InputManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/managers/input/InputManager.cpp b/src/managers/input/InputManager.cpp index d5bfd8fd..139cafdb 100644 --- a/src/managers/input/InputManager.cpp +++ b/src/managers/input/InputManager.cpp @@ -49,7 +49,7 @@ void CInputManager::mouseMoveUnified(uint32_t time, bool refocus) { // XWayland, we just have to accept them. Might cause issues, but thats XWayland for ya. const auto CONSTRAINTSIZE = CONSTRAINTWINDOW->m_bIsX11 ? Vector2D(CONSTRAINTWINDOW->m_uSurface.xwayland->width, CONSTRAINTWINDOW->m_uSurface.xwayland->height) : CONSTRAINTWINDOW->m_vRealSize.vec(); - const auto CONSTRAINTPOS = Vector2D((CONSTRAINTWINDOW->m_uSurface.xwayland->x + CONSTRAINTSIZE.x) / 2.0, (CONSTRAINTWINDOW->m_uSurface.xwayland->y + CONSTRAINTSIZE.y)); + const auto CONSTRAINTPOS = Vector2D((CONSTRAINTWINDOW->m_uSurface.xwayland->x + CONSTRAINTSIZE.x) / 2.0, (CONSTRAINTWINDOW->m_uSurface.xwayland->y + CONSTRAINTSIZE.y) / 2.0); // I'm a worm and I added some code to override some annoying stuff :) From d6b324306bc455d83af629ca553c0e4e3a6765dc Mon Sep 17 00:00:00 2001 From: Fernando Ayats Date: Mon, 20 Jun 2022 11:50:06 +0200 Subject: [PATCH 06/49] nix: add a proper overlay and cleanup flake --- flake.nix | 45 +++++++++++++++++++++------------------------ 1 file changed, 21 insertions(+), 24 deletions(-) diff --git a/flake.nix b/flake.nix index a756ed90..2edd9a04 100644 --- a/flake.nix +++ b/flake.nix @@ -16,40 +16,37 @@ }: let inherit (nixpkgs) lib; genSystems = lib.genAttrs [ + # Add more systems if they are supported "x86_64-linux" ]; pkgsFor = nixpkgs.legacyPackages; - # https://github.com/NixOS/rfcs/pull/107 - mkVersion = longDate: - lib.concatStrings [ - "0.pre" - "+date=" - (lib.concatStringsSep "-" [ - (__substring 0 4 longDate) - (__substring 4 2 longDate) - (__substring 6 2 longDate) - ]) - ]; - in { - packages = genSystems (system: { - wlroots = pkgsFor.${system}.wlroots.overrideAttrs (prev: { - version = mkVersion (toString (inputs.wlroots.lastModifiedDate or inputs.wlroots.lastModified or "19700101")); + mkDate = longDate: (lib.concatStringsSep "-" [ + (__substring 0 4 longDate) + (__substring 4 2 longDate) + (__substring 6 2 longDate) + ]); + pseudo-overlay = prev: rec { + wlroots-hyprland = prev.wlroots.overrideAttrs (_: { + version = mkDate (inputs.wlroots.lastModifiedDate or "19700101"); src = inputs.wlroots; }); - default = pkgsFor.${system}.callPackage ./nix/default.nix { - version = mkVersion (toString (self.lastModifiedDate or self.lastModified or "19700101")); - inherit (self.packages.${system}) wlroots; + hyprland = prev.callPackage ./nix/default.nix { + version = "0.pre" + "+date=" + (mkDate (self.lastModifiedDate or "19700101")); + wlroots = wlroots-hyprland; }; - }); + }; + in { + packages = genSystems (system: + (pseudo-overlay pkgsFor.${system}) + // { + default = self.packages.${system}.hyprland; + }); formatter = genSystems (system: pkgsFor.${system}.alejandra); nixosModules.default = import ./nix/module.nix self; - # Deprecated - overlays.default = _: prev: { - hyprland = self.packages.${prev.system}.default; - }; - overlay = self.overlays.default; + overlays.default = final: pseudo-overlay; + overlay = throw "Hyprland: .overlay output is deprecated, please use the .overlays.default output"; }; } From bd953011884d656d726b06764157be076d59a916 Mon Sep 17 00:00:00 2001 From: Fernando Ayats Date: Mon, 20 Jun 2022 12:16:07 +0200 Subject: [PATCH 07/49] nix: no pseudo-overlay --- flake.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/flake.nix b/flake.nix index 2edd9a04..9ea3283a 100644 --- a/flake.nix +++ b/flake.nix @@ -25,8 +25,9 @@ (__substring 4 2 longDate) (__substring 6 2 longDate) ]); - pseudo-overlay = prev: rec { - wlroots-hyprland = prev.wlroots.overrideAttrs (_: { + in { + overlays.default = _: prev: rec { + wlroots-hyprland = prev.wlroots.overrideAttrs (__: { version = mkDate (inputs.wlroots.lastModifiedDate or "19700101"); src = inputs.wlroots; }); @@ -35,9 +36,9 @@ wlroots = wlroots-hyprland; }; }; - in { + packages = genSystems (system: - (pseudo-overlay pkgsFor.${system}) + (self.overlays.default null pkgsFor.${system}) // { default = self.packages.${system}.hyprland; }); @@ -46,7 +47,6 @@ nixosModules.default = import ./nix/module.nix self; - overlays.default = final: pseudo-overlay; overlay = throw "Hyprland: .overlay output is deprecated, please use the .overlays.default output"; }; } From 4efd913de817e9caed878f6df208b515cf199f0e Mon Sep 17 00:00:00 2001 From: Fernando Ayats Date: Mon, 20 Jun 2022 13:04:40 +0200 Subject: [PATCH 08/49] nix: use the overlay in the module --- nix/module.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/module.nix b/nix/module.nix index a7460b34..383eebb7 100644 --- a/nix/module.nix +++ b/nix/module.nix @@ -19,7 +19,7 @@ in { package = mkOption { type = types.package; - default = self.packages.${pkgs.system}.default; + default = pkgs.hyprland or self.packages.${pkgs.system}.default; defaultText = literalExpression ".packages..default"; example = literalExpression ".packages..default.override { }"; description = '' From ee7900f819c8db0e9c2cc44c193707dfc9ce7957 Mon Sep 17 00:00:00 2001 From: SebOuellette Date: Mon, 20 Jun 2022 23:15:16 -0400 Subject: [PATCH 09/49] Mouse no longer removes focus from constraining window The window properly constrains the mouse now I do still notice a bug with moving the mouse in games, if you don't move the mouse fast enough, some games will not register the mouse movement. This doesn't happen in KDE so I know it's related somehow --- src/managers/input/InputManager.cpp | 34 ++++++++++++++--------------- 1 file changed, 16 insertions(+), 18 deletions(-) diff --git a/src/managers/input/InputManager.cpp b/src/managers/input/InputManager.cpp index 139cafdb..a6dd6424 100644 --- a/src/managers/input/InputManager.cpp +++ b/src/managers/input/InputManager.cpp @@ -47,28 +47,26 @@ void CInputManager::mouseMoveUnified(uint32_t time, bool refocus) { } else { // Native Wayland apps know how 2 constrain themselves. // XWayland, we just have to accept them. Might cause issues, but thats XWayland for ya. - + const auto CONSTRAINTPOS = CONSTRAINTWINDOW->m_bIsX11 ? Vector2D(CONSTRAINTWINDOW->m_uSurface.xwayland->x, CONSTRAINTWINDOW->m_uSurface.xwayland->y) : CONSTRAINTWINDOW->m_vRealPosition.vec(); const auto CONSTRAINTSIZE = CONSTRAINTWINDOW->m_bIsX11 ? Vector2D(CONSTRAINTWINDOW->m_uSurface.xwayland->width, CONSTRAINTWINDOW->m_uSurface.xwayland->height) : CONSTRAINTWINDOW->m_vRealSize.vec(); - const auto CONSTRAINTPOS = Vector2D((CONSTRAINTWINDOW->m_uSurface.xwayland->x + CONSTRAINTSIZE.x) / 2.0, (CONSTRAINTWINDOW->m_uSurface.xwayland->y + CONSTRAINTSIZE.y) / 2.0); - - // I'm a worm and I added some code to override some annoying stuff :) - // CONSTRAINTSIZE = Vector2D(0.0, 0.0); - - if (!VECINRECT(mouseCoords, CONSTRAINTPOS.x, CONSTRAINTPOS.y, CONSTRAINTPOS.x/* + CONSTRAINTSIZE.x*/, CONSTRAINTPOS.y/* + CONSTRAINTSIZE.y*/)) { + if (!VECINRECT(mouseCoords, CONSTRAINTPOS.x, CONSTRAINTPOS.y, CONSTRAINTPOS.x + CONSTRAINTSIZE.x, CONSTRAINTPOS.y + CONSTRAINTSIZE.y)) { if (g_pCompositor->m_sSeat.mouse->constraintActive) { - Vector2D deltaToFit; + Vector2D newConstrainedCoords = mouseCoords; - - // Instead of constraining the cursor to the entire window, like in the previous version, this keeps the cursor to the center of the window. - // This allows for maximum mouse movement to be captured by the application, while the mouse can still be freed and move around when it is supposed to be - deltaToFit.x = CONSTRAINTPOS.x - mouseCoords.x; - deltaToFit.y = CONSTRAINTPOS.y - mouseCoords.y; - - - wlr_cursor_move(g_pCompositor->m_sWLRCursor, g_pCompositor->m_sSeat.mouse->mouse, deltaToFit.x, deltaToFit.y); + if (mouseCoords.x < CONSTRAINTPOS.x) + newConstrainedCoords.x = CONSTRAINTPOS.x; + else if (mouseCoords.x >= CONSTRAINTPOS.x + CONSTRAINTSIZE.x) + newConstrainedCoords.x = CONSTRAINTPOS.x + CONSTRAINTSIZE.x - 1.0; - mouseCoords = mouseCoords + deltaToFit; + if (mouseCoords.y < CONSTRAINTPOS.y) + newConstrainedCoords.y = CONSTRAINTPOS.y; + else if (mouseCoords.y >= CONSTRAINTPOS.y + CONSTRAINTSIZE.y) + newConstrainedCoords.y = CONSTRAINTPOS.y + CONSTRAINTSIZE.y - 1.0; + + wlr_cursor_warp_closest(g_pCompositor->m_sWLRCursor, g_pCompositor->m_sSeat.mouse->mouse, newConstrainedCoords.x, newConstrainedCoords.y); + + mouseCoords = newConstrainedCoords; } } else { if ((!CONSTRAINTWINDOW->m_bIsX11 && PMONITOR && CONSTRAINTWINDOW->m_iWorkspaceID == PMONITOR->activeWorkspace) || (CONSTRAINTWINDOW->m_bIsX11)) { @@ -543,4 +541,4 @@ void CInputManager::updateCapabilities(wlr_input_device* pDev) { } wlr_seat_set_capabilities(g_pCompositor->m_sSeat.seat, m_uiCapabilities); -} +} \ No newline at end of file From 3dc2277fd05cbb71b858698fed749070a63aa392 Mon Sep 17 00:00:00 2001 From: SebOuellette Date: Tue, 21 Jun 2022 02:23:57 -0400 Subject: [PATCH 10/49] Actually, mostly working. One failure case: When there is a fullscreen window directly to the right of a game, for example, in a multimonitor setup, then the cursor will bug out in between the monitors. sometimes it will get constrained to the border, but just outside the window (which is what this PR fixes, so it's unusual) and sometimes the cursor will just ignore the constraint entirely. However this is only in the one case. --- src/managers/input/InputManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/managers/input/InputManager.cpp b/src/managers/input/InputManager.cpp index a6dd6424..a388fba9 100644 --- a/src/managers/input/InputManager.cpp +++ b/src/managers/input/InputManager.cpp @@ -50,7 +50,7 @@ void CInputManager::mouseMoveUnified(uint32_t time, bool refocus) { const auto CONSTRAINTPOS = CONSTRAINTWINDOW->m_bIsX11 ? Vector2D(CONSTRAINTWINDOW->m_uSurface.xwayland->x, CONSTRAINTWINDOW->m_uSurface.xwayland->y) : CONSTRAINTWINDOW->m_vRealPosition.vec(); const auto CONSTRAINTSIZE = CONSTRAINTWINDOW->m_bIsX11 ? Vector2D(CONSTRAINTWINDOW->m_uSurface.xwayland->width, CONSTRAINTWINDOW->m_uSurface.xwayland->height) : CONSTRAINTWINDOW->m_vRealSize.vec(); - if (!VECINRECT(mouseCoords, CONSTRAINTPOS.x, CONSTRAINTPOS.y, CONSTRAINTPOS.x + CONSTRAINTSIZE.x, CONSTRAINTPOS.y + CONSTRAINTSIZE.y)) { + if (!VECINRECT(mouseCoords, CONSTRAINTPOS.x, CONSTRAINTPOS.y, CONSTRAINTPOS.x + CONSTRAINTSIZE.x - 1.0, CONSTRAINTPOS.y + CONSTRAINTSIZE.y - 1.0)) { if (g_pCompositor->m_sSeat.mouse->constraintActive) { Vector2D newConstrainedCoords = mouseCoords; From 8bd7234d7256d494794741f973f470458a1ad904 Mon Sep 17 00:00:00 2001 From: Mihai Fufezan Date: Thu, 16 Jun 2022 13:42:31 +0300 Subject: [PATCH 11/49] nix: change build system to meson flake.nix: change wlroots url to mirror, update version flake.lock: update wlroots & nixpkgs nix/update-inputs.sh: update wlroots url --- flake.lock | 20 +++++++++----------- flake.nix | 2 +- nix/default.nix | 35 ++++++++--------------------------- nix/meson-build.patch | 36 ++++++++++++++++++++++++++++++++++++ nix/update-inputs.sh | 2 +- 5 files changed, 55 insertions(+), 40 deletions(-) create mode 100644 nix/meson-build.patch diff --git a/flake.lock b/flake.lock index 06d8ffcf..6f4cc7d0 100644 --- a/flake.lock +++ b/flake.lock @@ -2,11 +2,11 @@ "nodes": { "nixpkgs": { "locked": { - "lastModified": 1654593855, - "narHash": "sha256-c+SyXvj7THre87OyIdZfRVR+HhI/g1ZDrQ3VUtTuHkU=", + "lastModified": 1655221618, + "narHash": "sha256-ht8HRFthDKzYt+il+sGgkBwrv+Ex2l8jdGVpsrPfFME=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "033bd4fa9a8fbe0c68a88e925d9a884161044b25", + "rev": "6616de389ed55fba6eeba60377fc04732d5a207c", "type": "github" }, "original": { @@ -25,19 +25,17 @@ "wlroots": { "flake": false, "locked": { - "host": "gitlab.freedesktop.org", "lastModified": 1654618691, "narHash": "sha256-8y3u8CoigjoZOVbA2wCWBHlDNEakv0AVxU46/cOC00s=", - "owner": "wlroots", - "repo": "wlroots", + "owner": "ThatOneCalculator", + "repo": "wlroots-mirror", "rev": "b89ed9015c3fbe8d339e9d65cf70fdca6e5645bc", - "type": "gitlab" + "type": "github" }, "original": { - "host": "gitlab.freedesktop.org", - "owner": "wlroots", - "repo": "wlroots", - "type": "gitlab" + "owner": "ThatOneCalculator", + "repo": "wlroots-mirror", + "type": "github" } } }, diff --git a/flake.nix b/flake.nix index 9ea3283a..8500c7a4 100644 --- a/flake.nix +++ b/flake.nix @@ -4,7 +4,7 @@ inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; wlroots = { - url = "gitlab:wlroots/wlroots?host=gitlab.freedesktop.org"; + url = "github:ThatOneCalculator/wlroots-mirror"; flake = false; }; }; diff --git a/nix/default.nix b/nix/default.nix index 20586b9f..18570f12 100644 --- a/nix/default.nix +++ b/nix/default.nix @@ -3,7 +3,7 @@ stdenv, fetchFromGitHub, pkg-config, - cmake, + meson, ninja, libdrm, libinput, @@ -27,7 +27,7 @@ stdenv.mkDerivation { src = ../.; nativeBuildInputs = [ - cmake + meson ninja pkg-config ]; @@ -48,33 +48,14 @@ stdenv.mkDerivation { ] ++ lib.optional enableXWayland xwayland; - cmakeFlags = - ["-DCMAKE_BUILD_TYPE=Release"] - ++ lib.optional (!enableXWayland) "-DNO_XWAYLAND=true"; + mesonBuildType = "release"; - # enables building with nix-supplied wlroots instead of submodule - prePatch = '' - sed -Ei 's/"\.\.\/wlroots\/include\/([a-zA-Z0-9./_-]+)"/<\1>/g' src/includes.hpp - ''; - postPatch = '' - make protocols - ''; + mesonFlags = lib.optional (!enableXWayland) "-DNO_XWAYLAND=true"; - postBuild = '' - pushd ../hyprctl - make all - popd - ''; - - installPhase = '' - pushd .. - install -Dm644 ./example/hyprland.desktop -t $out/share/wayland-sessions - install -Dm755 ./build/Hyprland -t $out/bin - install -Dm755 ./hyprctl/hyprctl -t $out/bin - install -Dm644 ./assets/* -t $out/share/hyprland - install -Dm644 ./example/hyprland.conf -t $out/share/hyprland - popd - ''; + patches = [ + # make meson use the provided wlroots instead of the git submodule + ./meson-build.patch + ]; passthru.providedSessions = ["hyprland"]; diff --git a/nix/meson-build.patch b/nix/meson-build.patch new file mode 100644 index 00000000..57950de9 --- /dev/null +++ b/nix/meson-build.patch @@ -0,0 +1,36 @@ +diff --git a/meson.build b/meson.build +index 22ee4bf..5528613 100644 +--- a/meson.build ++++ b/meson.build +@@ -2,16 +2,10 @@ project('Hyprland', 'cpp', 'c', + version : '0.1', + default_options : ['warning_level=3', 'cpp_std=c++20', 'default_library=static']) + +-wlroots = subproject('wlroots', default_options: ['examples=false']) +-have_xwlr = wlroots.get_variable('features').get('xwayland') ++wlroots = dependency('wlroots', version: '>=0.16.0') + xcb_dep = dependency('xcb', required: get_option('xwayland')) + +-if get_option('xwayland').enabled() and not have_xwlr +- error('Cannot enable Xwayland in Hyprland: wlroots has been built without Xwayland support') +-endif +-have_xwayland = xcb_dep.found() and have_xwlr +- +-if not have_xwayland ++if not xcb_dep.found() + add_project_arguments('-DNO_XWAYLAND', language: 'cpp') + endif + +diff --git a/src/meson.build b/src/meson.build +index 5d64188..a676333 100644 +--- a/src/meson.build ++++ b/src/meson.build +@@ -7,7 +7,7 @@ executable('Hyprland', src, + server_protos, + dependency('wayland-server'), + dependency('wayland-client'), +- wlroots.get_variable('wlroots'), ++ wlroots, + dependency('cairo'), + dependency('pango'), + dependency('pangocairo'), diff --git a/nix/update-inputs.sh b/nix/update-inputs.sh index 8c238222..856dd43a 100755 --- a/nix/update-inputs.sh +++ b/nix/update-inputs.sh @@ -10,7 +10,7 @@ if [ $SUB_REV != $CRT_REV ]; then nix flake lock --update-input nixpkgs # update wlroots to submodule revision - nix flake lock --override-input wlroots "gitlab:wlroots/wlroots/$SUB_REV?host=gitlab.freedesktop.org" + nix flake lock --override-input wlroots "github:ThatOneCalculator/wlroots-mirror/$SUB_REV" # remove "dirty" mark from lockfile jq < flake.lock 'del(.nodes.wlroots.original.rev)' | sponge flake.lock From 593f24a2ecf86a2a4db3545a21ff4c75ee526f45 Mon Sep 17 00:00:00 2001 From: Mihai Fufezan Date: Sat, 18 Jun 2022 01:26:46 +0300 Subject: [PATCH 12/49] workflows: add meson version updater and update versions --- .github/workflows/version-update.sh | 26 ++++++++++++++++++++++++++ flake.nix | 2 +- meson.build | 2 +- 3 files changed, 28 insertions(+), 2 deletions(-) create mode 100644 .github/workflows/version-update.sh diff --git a/.github/workflows/version-update.sh b/.github/workflows/version-update.sh new file mode 100644 index 00000000..1bf95af9 --- /dev/null +++ b/.github/workflows/version-update.sh @@ -0,0 +1,26 @@ +name: "Nix & Meson: update version" + +on: [push, workflow_dispatch] + +jobs: + update: + runs-on: ubuntu-latest + steps: + - name: Clone repository + uses: actions/checkout@v3 + - name: Update flake and meson version + run: | + REGEX="([0-9]+(\.[0-9a-zA-Z]+)+)" + + CRT_REV=$(git show-ref --tags --head --abbrev | head -n 1 | head -c 7) + TAG_REV=$(git show-ref --tags --abbrev | tail -n 1 | head -c 7) + CRT_VER=$(sed -nEe "/$REGEX/{p;q;}" meson.build | awk -F\' '{print $2}') + VERSION=$(git show-ref --tags --abbrev | tail -n 1 | tail -c +20) + + if [[ $TAG_REV = $CRT_REV ]] || [[ $CRT_VER != $VERSION ]]; then + sed -Ei "s/$REGEX/$VERSION/g" meson.build + sed -Ei "s/$REGEX/$VERSION/g" flake.nix + fi + - uses: stefanzweifel/git-auto-commit-action@v4 + with: + commit_message: "[gha] bump flake and meson version" diff --git a/flake.nix b/flake.nix index 8500c7a4..9d5569d7 100644 --- a/flake.nix +++ b/flake.nix @@ -32,7 +32,7 @@ src = inputs.wlroots; }); hyprland = prev.callPackage ./nix/default.nix { - version = "0.pre" + "+date=" + (mkDate (self.lastModifiedDate or "19700101")); + version = "0.5.0beta" + "+date=" + (mkDate (self.lastModifiedDate or "19700101")); wlroots = wlroots-hyprland; }; }; diff --git a/meson.build b/meson.build index b902c80a..f75f64fd 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('Hyprland', 'cpp', 'c', - version : '0.1', + version : '0.5.0beta', default_options : ['warning_level=3', 'cpp_std=c++20', 'default_library=static']) wlroots = subproject('wlroots', default_options: ['examples=false']) From a2fa1bc80db40302fd3c2be24b1f063a0db19d44 Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Tue, 21 Jun 2022 22:09:46 +0200 Subject: [PATCH 13/49] fix CMake debug mode --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index e78eea0e..44246e7e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -59,6 +59,7 @@ ENDIF(NO_XWAYLAND MATCHES true) IF(CMAKE_BUILD_TYPE MATCHES Debug OR CMAKE_BUILD_TYPE MATCHES DEBUG) message(STATUS "Configuring Hyprland in Debug with CMake!") + add_definitions( -DHYPRLAND_DEBUG ) ELSE() # add_compile_options(-O3) # may crash for some message(STATUS "Configuring Hyprland in Release with CMake!") From ff49f2244069124d366e2eba5e5474398a14281a Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Tue, 21 Jun 2022 22:13:13 +0200 Subject: [PATCH 14/49] fix rapid blinking on launch --- src/events/Monitors.cpp | 9 +++++++-- src/helpers/Monitor.hpp | 1 + 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/src/events/Monitors.cpp b/src/events/Monitors.cpp index e5fa7c55..25756548 100644 --- a/src/events/Monitors.cpp +++ b/src/events/Monitors.cpp @@ -140,6 +140,8 @@ void Events::listener_newOutput(wl_listener* listener, void* data) { PNEWMONITOR->activeWorkspace = PNEWWORKSPACE->m_iID; PNEWMONITOR->scale = monitorRule.scale; + PNEWMONITOR->forceFullFrames = 3; // force 3 full frames to make sure there is no blinking due to double-buffering. + g_pCompositor->deactivateAllWLRWorkspaces(PNEWWORKSPACE->m_pWlrHandle); PNEWWORKSPACE->setActive(true); @@ -216,7 +218,7 @@ void Events::listener_monitorFrame(void* owner, void* data) { return; } - if (!hasChanged && *PDAMAGETRACKINGMODE != DAMAGE_TRACKING_NONE) { + if (!hasChanged && *PDAMAGETRACKINGMODE != DAMAGE_TRACKING_NONE && PMONITOR->forceFullFrames == 0) { pixman_region32_fini(&damage); wlr_output_rollback(PMONITOR->output); wlr_output_schedule_frame(PMONITOR->output); // we update shit at the monitor's Hz so we need to schedule frames because rollback wont @@ -224,7 +226,7 @@ void Events::listener_monitorFrame(void* owner, void* data) { } // if we have no tracking or full tracking, invalidate the entire monitor - if (*PDAMAGETRACKINGMODE == DAMAGE_TRACKING_NONE || *PDAMAGETRACKINGMODE == DAMAGE_TRACKING_MONITOR) { + if (*PDAMAGETRACKINGMODE == DAMAGE_TRACKING_NONE || *PDAMAGETRACKINGMODE == DAMAGE_TRACKING_MONITOR || PMONITOR->forceFullFrames > 0) { pixman_region32_union_rect(&damage, &damage, 0, 0, (int)PMONITOR->vecTransformedSize.x, (int)PMONITOR->vecTransformedSize.y); pixman_region32_copy(&g_pHyprOpenGL->m_rOriginalDamageRegion, &damage); @@ -247,6 +249,9 @@ void Events::listener_monitorFrame(void* owner, void* data) { } } + if (PMONITOR->forceFullFrames > 0) + PMONITOR->forceFullFrames -= 1; + // TODO: this is getting called with extents being 0,0,0,0 should it be? // potentially can save on resources. diff --git a/src/helpers/Monitor.hpp b/src/helpers/Monitor.hpp index 4767fd78..24e555f9 100644 --- a/src/helpers/Monitor.hpp +++ b/src/helpers/Monitor.hpp @@ -28,6 +28,7 @@ struct SMonitor { float refreshRate = 60; wlr_output_damage* damage = nullptr; int framesToSkip = 0; + int forceFullFrames = 0; bool noFrameSchedule = false; wl_output_transform transform = WL_OUTPUT_TRANSFORM_NORMAL; From 4a3f9ccba2cebaf62d6001c2b700367785a7179c Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Tue, 21 Jun 2022 22:17:30 +0200 Subject: [PATCH 15/49] move ignore to eventmanager and fix double focus in changeworkspace --- src/managers/EventManager.cpp | 6 ++++++ src/managers/EventManager.hpp | 2 ++ src/managers/KeybindManager.cpp | 14 ++++---------- src/managers/KeybindManager.hpp | 2 -- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/managers/EventManager.cpp b/src/managers/EventManager.cpp index eed0e6e5..409fbd90 100644 --- a/src/managers/EventManager.cpp +++ b/src/managers/EventManager.cpp @@ -105,6 +105,12 @@ void CEventManager::startThread() { } void CEventManager::postEvent(const SHyprIPCEvent event) { + + if (m_bIgnoreEvents) { + Debug::log(WARN, "Suppressed (ignoreevents true) event of type %s, content: %s"); + return; + } + std::thread([&](const SHyprIPCEvent ev) { eventQueueMutex.lock(); m_dQueuedEvents.push_back(ev); diff --git a/src/managers/EventManager.hpp b/src/managers/EventManager.hpp index f8ec6afc..ae630ce8 100644 --- a/src/managers/EventManager.hpp +++ b/src/managers/EventManager.hpp @@ -19,6 +19,8 @@ public: void startThread(); + bool m_bIgnoreEvents = false; + private: std::mutex eventQueueMutex; diff --git a/src/managers/KeybindManager.cpp b/src/managers/KeybindManager.cpp index 123e560c..96d8ce60 100644 --- a/src/managers/KeybindManager.cpp +++ b/src/managers/KeybindManager.cpp @@ -280,9 +280,7 @@ void CKeybindManager::changeworkspace(std::string args) { // start anim on new workspace PWORKSPACETOCHANGETO->startAnim(true, ANIMTOLEFT); - // Event ONLY if workspace is actually "changed" and we arent just focusing - if (!m_bSuppressWorkspaceChangeEvents) - g_pEventManager->postEvent(SHyprIPCEvent("workspace", PWORKSPACETOCHANGETO->m_szName)); + g_pEventManager->postEvent(SHyprIPCEvent("workspace", PWORKSPACETOCHANGETO->m_szName)); } // If the monitor is not the one our cursor's at, warp to it. @@ -291,9 +289,6 @@ void CKeybindManager::changeworkspace(std::string args) { wlr_cursor_warp(g_pCompositor->m_sWLRCursor, nullptr, middle.x, middle.y); } - // focus the first window - g_pCompositor->focusWindow(g_pCompositor->getFirstWindowOnWorkspace(workspaceToChangeTo)); - // set active and deactivate all other in wlr g_pCompositor->deactivateAllWLRWorkspaces(PWORKSPACETOCHANGETO->m_pWlrHandle); PWORKSPACETOCHANGETO->setActive(true); @@ -360,8 +355,7 @@ void CKeybindManager::changeworkspace(std::string args) { g_pInputManager->refocus(); // Event - if (!m_bSuppressWorkspaceChangeEvents) - g_pEventManager->postEvent(SHyprIPCEvent("workspace", PWORKSPACE->m_szName)); + g_pEventManager->postEvent(SHyprIPCEvent("workspace", PWORKSPACE->m_szName)); Debug::log(LOG, "Changed to workspace %i", workspaceToChangeTo); } @@ -491,7 +485,7 @@ void CKeybindManager::moveActiveToWorkspaceSilent(std::string args) { const auto POLDWORKSPACEONMON = g_pCompositor->getWorkspaceByID(OLDWORKSPACEIDONMONITOR); const auto POLDWORKSPACEIDRETURN = g_pCompositor->getWorkspaceByID(OLDWORKSPACEIDRETURN); - m_bSuppressWorkspaceChangeEvents = true; + g_pEventManager->m_bIgnoreEvents = true; moveActiveToWorkspace(args); @@ -510,7 +504,7 @@ void CKeybindManager::moveActiveToWorkspaceSilent(std::string args) { POLDWORKSPACEONMON->m_vRenderOffset.setValueAndWarp(Vector2D(0, 0)); POLDWORKSPACEONMON->m_fAlpha.setValueAndWarp(255.f); - m_bSuppressWorkspaceChangeEvents = false; + g_pEventManager->m_bIgnoreEvents = false; g_pInputManager->refocus(); } diff --git a/src/managers/KeybindManager.hpp b/src/managers/KeybindManager.hpp index 782f2ead..cb99aa41 100644 --- a/src/managers/KeybindManager.hpp +++ b/src/managers/KeybindManager.hpp @@ -30,8 +30,6 @@ private: bool handleInternalKeybinds(xkb_keysym_t); - inline static bool m_bSuppressWorkspaceChangeEvents = false; - // -------------- Dispatchers -------------- // static void killActive(std::string); static void spawn(std::string); From 20ad9d3e7d8a6c8a6098a6fc77f9d0f27910c7d7 Mon Sep 17 00:00:00 2001 From: SebOuellette Date: Tue, 21 Jun 2022 16:25:40 -0400 Subject: [PATCH 16/49] Passes all constraint tests! So a summary of what's been done in this fork/PR. Instead of moving the cursor, we're warp_closest ing. warp_absolute didn't work, so warp closest has kindof an auto constrain feature so it works beautifully. I'm also contraining to the right side of the window - 1, because the cursors are treating that pixel as the next pixel over, so it was actually thinking it was on the next monitor (assuming fullscreen) when the cursor got to the right or bottom of the window. TL;DR rounding issue. This fix didn't work when you had a fullscreen video playing on a monitor beside, so I also fixed that by ignoring all focus changes or whatever when a constraint actually occured, we obviously just don't want to focus another monitor when constrained, so why not just *disable it when a constraint happened* The PR is now ready, I love Hyprland, and I can't wait to contribute more :) --- src/managers/input/InputManager.cpp | 170 ++++++++++++++-------------- 1 file changed, 88 insertions(+), 82 deletions(-) diff --git a/src/managers/input/InputManager.cpp b/src/managers/input/InputManager.cpp index a388fba9..2f63ecfa 100644 --- a/src/managers/input/InputManager.cpp +++ b/src/managers/input/InputManager.cpp @@ -35,6 +35,8 @@ void CInputManager::mouseMoveUnified(uint32_t time, bool refocus) { Vector2D mouseCoords = getMouseCoordsInternal(); const auto PMONITOR = g_pCompositor->getMonitorFromCursor(); + bool didConstraintOnCursor = false; + // constraints // All constraints TODO: multiple mice? if (g_pCompositor->m_sSeat.mouse->currentConstraint) { @@ -67,6 +69,8 @@ void CInputManager::mouseMoveUnified(uint32_t time, bool refocus) { wlr_cursor_warp_closest(g_pCompositor->m_sWLRCursor, g_pCompositor->m_sSeat.mouse->mouse, newConstrainedCoords.x, newConstrainedCoords.y); mouseCoords = newConstrainedCoords; + + didConstraintOnCursor = true; } } else { if ((!CONSTRAINTWINDOW->m_bIsX11 && PMONITOR && CONSTRAINTWINDOW->m_iWorkspaceID == PMONITOR->activeWorkspace) || (CONSTRAINTWINDOW->m_bIsX11)) { @@ -84,110 +88,112 @@ void CInputManager::mouseMoveUnified(uint32_t time, bool refocus) { // focus wlr_surface* foundSurface = nullptr; - if (PMONITOR && PMONITOR != g_pCompositor->m_pLastMonitor) { - g_pCompositor->m_pLastMonitor = PMONITOR; + if (!didConstraintOnCursor) { + if (PMONITOR && PMONITOR != g_pCompositor->m_pLastMonitor) { + g_pCompositor->m_pLastMonitor = PMONITOR; - // set active workspace and deactivate all other in wlr - const auto ACTIVEWORKSPACE = g_pCompositor->getWorkspaceByID(PMONITOR->activeWorkspace); - g_pCompositor->deactivateAllWLRWorkspaces(ACTIVEWORKSPACE->m_pWlrHandle); - ACTIVEWORKSPACE->setActive(true); + // set active workspace and deactivate all other in wlr + const auto ACTIVEWORKSPACE = g_pCompositor->getWorkspaceByID(PMONITOR->activeWorkspace); + g_pCompositor->deactivateAllWLRWorkspaces(ACTIVEWORKSPACE->m_pWlrHandle); + ACTIVEWORKSPACE->setActive(true); - // event - g_pEventManager->postEvent(SHyprIPCEvent("activemon", PMONITOR->szName + "," + ACTIVEWORKSPACE->m_szName)); - } + // event + g_pEventManager->postEvent(SHyprIPCEvent("activemon", PMONITOR->szName + "," + ACTIVEWORKSPACE->m_szName)); + } - Vector2D surfaceCoords; - Vector2D surfacePos = Vector2D(-1337, -1337); - CWindow* pFoundWindow = nullptr; + Vector2D surfaceCoords; + Vector2D surfacePos = Vector2D(-1337, -1337); + CWindow* pFoundWindow = nullptr; - // overlay is above fullscreen - if (!foundSurface) - foundSurface = g_pCompositor->vectorToLayerSurface(mouseCoords, &PMONITOR->m_aLayerSurfaceLists[ZWLR_LAYER_SHELL_V1_LAYER_OVERLAY], &surfaceCoords); + // overlay is above fullscreen + if (!foundSurface) + foundSurface = g_pCompositor->vectorToLayerSurface(mouseCoords, &PMONITOR->m_aLayerSurfaceLists[ZWLR_LAYER_SHELL_V1_LAYER_OVERLAY], &surfaceCoords); - // then, we check if the workspace doesnt have a fullscreen window - const auto PWORKSPACE = g_pCompositor->getWorkspaceByID(PMONITOR->activeWorkspace); - if (PWORKSPACE->m_bHasFullscreenWindow && !foundSurface && PWORKSPACE->m_efFullscreenMode == FULLSCREEN_FULL) { - pFoundWindow = g_pCompositor->getFullscreenWindowOnWorkspace(PWORKSPACE->m_iID); - foundSurface = g_pXWaylandManager->getWindowSurface(pFoundWindow); - surfacePos = pFoundWindow->m_vRealPosition.vec(); + // then, we check if the workspace doesnt have a fullscreen window + const auto PWORKSPACE = g_pCompositor->getWorkspaceByID(PMONITOR->activeWorkspace); + if (PWORKSPACE->m_bHasFullscreenWindow && !foundSurface && PWORKSPACE->m_efFullscreenMode == FULLSCREEN_FULL) { + pFoundWindow = g_pCompositor->getFullscreenWindowOnWorkspace(PWORKSPACE->m_iID); + foundSurface = g_pXWaylandManager->getWindowSurface(pFoundWindow); + surfacePos = pFoundWindow->m_vRealPosition.vec(); - // only check floating because tiled cant be over fullscreen - for (auto w = g_pCompositor->m_lWindows.rbegin(); w != g_pCompositor->m_lWindows.rend(); w++) { - wlr_box box = {w->m_vRealPosition.vec().x, w->m_vRealPosition.vec().y, w->m_vRealSize.vec().x, w->m_vRealSize.vec().y}; - if (((w->m_bIsFloating && w->m_bIsMapped && w->m_bCreatedOverFullscreen) || (w->m_iWorkspaceID == SPECIAL_WORKSPACE_ID && PMONITOR->specialWorkspaceOpen)) && wlr_box_contains_point(&box, mouseCoords.x, mouseCoords.y) && g_pCompositor->isWorkspaceVisible(w->m_iWorkspaceID) && !w->m_bHidden) { - pFoundWindow = &(*w); - + // only check floating because tiled cant be over fullscreen + for (auto w = g_pCompositor->m_lWindows.rbegin(); w != g_pCompositor->m_lWindows.rend(); w++) { + wlr_box box = {w->m_vRealPosition.vec().x, w->m_vRealPosition.vec().y, w->m_vRealSize.vec().x, w->m_vRealSize.vec().y}; + if (((w->m_bIsFloating && w->m_bIsMapped && w->m_bCreatedOverFullscreen) || (w->m_iWorkspaceID == SPECIAL_WORKSPACE_ID && PMONITOR->specialWorkspaceOpen)) && wlr_box_contains_point(&box, mouseCoords.x, mouseCoords.y) && g_pCompositor->isWorkspaceVisible(w->m_iWorkspaceID) && !w->m_bHidden) { + pFoundWindow = &(*w); + + if (!pFoundWindow->m_bIsX11) { + foundSurface = g_pCompositor->vectorWindowToSurface(mouseCoords, pFoundWindow, surfaceCoords); + } else { + foundSurface = g_pXWaylandManager->getWindowSurface(pFoundWindow); + surfacePos = pFoundWindow->m_vRealPosition.vec(); + } + + break; + } + } + } + + if (!foundSurface) + foundSurface = g_pCompositor->vectorToLayerSurface(mouseCoords, &PMONITOR->m_aLayerSurfaceLists[ZWLR_LAYER_SHELL_V1_LAYER_TOP], &surfaceCoords); + + // then windows + if (!foundSurface) { + pFoundWindow = g_pCompositor->vectorToWindowIdeal(mouseCoords); + if (pFoundWindow) { if (!pFoundWindow->m_bIsX11) { foundSurface = g_pCompositor->vectorWindowToSurface(mouseCoords, pFoundWindow, surfaceCoords); } else { foundSurface = g_pXWaylandManager->getWindowSurface(pFoundWindow); surfacePos = pFoundWindow->m_vRealPosition.vec(); } - - break; } } - } - if (!foundSurface) - foundSurface = g_pCompositor->vectorToLayerSurface(mouseCoords, &PMONITOR->m_aLayerSurfaceLists[ZWLR_LAYER_SHELL_V1_LAYER_TOP], &surfaceCoords); + // then surfaces below + if (!foundSurface) + foundSurface = g_pCompositor->vectorToLayerSurface(mouseCoords, &PMONITOR->m_aLayerSurfaceLists[ZWLR_LAYER_SHELL_V1_LAYER_BOTTOM], &surfaceCoords); + + if (!foundSurface) + foundSurface = g_pCompositor->vectorToLayerSurface(mouseCoords, &PMONITOR->m_aLayerSurfaceLists[ZWLR_LAYER_SHELL_V1_LAYER_BACKGROUND], &surfaceCoords); + + + if (!foundSurface) { + wlr_xcursor_manager_set_cursor_image(g_pCompositor->m_sWLRXCursorMgr, "left_ptr", g_pCompositor->m_sWLRCursor); + + wlr_seat_pointer_clear_focus(g_pCompositor->m_sSeat.seat); + + return; + } + + if (time) + wlr_idle_notify_activity(g_pCompositor->m_sWLRIdle, g_pCompositor->m_sSeat.seat); + + Vector2D surfaceLocal = surfacePos == Vector2D(-1337, -1337) ? surfaceCoords : mouseCoords - surfacePos; - // then windows - if (!foundSurface) { - pFoundWindow = g_pCompositor->vectorToWindowIdeal(mouseCoords); if (pFoundWindow) { - if (!pFoundWindow->m_bIsX11) { - foundSurface = g_pCompositor->vectorWindowToSurface(mouseCoords, pFoundWindow, surfaceCoords); + static auto *const PFOLLOWMOUSE = &g_pConfigManager->getConfigValuePtr("input:follow_mouse")->intValue; + if (*PFOLLOWMOUSE != 1 && !refocus) { + if (pFoundWindow != g_pCompositor->m_pLastWindow && g_pCompositor->windowValidMapped(g_pCompositor->m_pLastWindow) && (g_pCompositor->m_pLastWindow->m_bIsFloating != pFoundWindow->m_bIsFloating)) { + // enter if change floating style + g_pCompositor->focusWindow(pFoundWindow, foundSurface); + wlr_seat_pointer_notify_enter(g_pCompositor->m_sSeat.seat, foundSurface, surfaceLocal.x, surfaceLocal.y); + } + else if (*PFOLLOWMOUSE == 2) { + wlr_seat_pointer_notify_enter(g_pCompositor->m_sSeat.seat, foundSurface, surfaceLocal.x, surfaceLocal.y); + } + wlr_seat_pointer_notify_motion(g_pCompositor->m_sSeat.seat, time, surfaceLocal.x, surfaceLocal.y); + return; // don't enter any new surfaces } else { - foundSurface = g_pXWaylandManager->getWindowSurface(pFoundWindow); - surfacePos = pFoundWindow->m_vRealPosition.vec(); - } - } - } - - // then surfaces below - if (!foundSurface) - foundSurface = g_pCompositor->vectorToLayerSurface(mouseCoords, &PMONITOR->m_aLayerSurfaceLists[ZWLR_LAYER_SHELL_V1_LAYER_BOTTOM], &surfaceCoords); - - if (!foundSurface) - foundSurface = g_pCompositor->vectorToLayerSurface(mouseCoords, &PMONITOR->m_aLayerSurfaceLists[ZWLR_LAYER_SHELL_V1_LAYER_BACKGROUND], &surfaceCoords); - - - if (!foundSurface) { - wlr_xcursor_manager_set_cursor_image(g_pCompositor->m_sWLRXCursorMgr, "left_ptr", g_pCompositor->m_sWLRCursor); - - wlr_seat_pointer_clear_focus(g_pCompositor->m_sSeat.seat); - - return; - } - - if (time) - wlr_idle_notify_activity(g_pCompositor->m_sWLRIdle, g_pCompositor->m_sSeat.seat); - - Vector2D surfaceLocal = surfacePos == Vector2D(-1337, -1337) ? surfaceCoords : mouseCoords - surfacePos; - - if (pFoundWindow) { - static auto *const PFOLLOWMOUSE = &g_pConfigManager->getConfigValuePtr("input:follow_mouse")->intValue; - if (*PFOLLOWMOUSE != 1 && !refocus) { - if (pFoundWindow != g_pCompositor->m_pLastWindow && g_pCompositor->windowValidMapped(g_pCompositor->m_pLastWindow) && (g_pCompositor->m_pLastWindow->m_bIsFloating != pFoundWindow->m_bIsFloating)) { - // enter if change floating style g_pCompositor->focusWindow(pFoundWindow, foundSurface); - wlr_seat_pointer_notify_enter(g_pCompositor->m_sSeat.seat, foundSurface, surfaceLocal.x, surfaceLocal.y); } - else if (*PFOLLOWMOUSE == 2) { - wlr_seat_pointer_notify_enter(g_pCompositor->m_sSeat.seat, foundSurface, surfaceLocal.x, surfaceLocal.y); - } - wlr_seat_pointer_notify_motion(g_pCompositor->m_sSeat.seat, time, surfaceLocal.x, surfaceLocal.y); - return; // don't enter any new surfaces - } else { - g_pCompositor->focusWindow(pFoundWindow, foundSurface); } - } - else - g_pCompositor->focusSurface(foundSurface); + else + g_pCompositor->focusSurface(foundSurface); - wlr_seat_pointer_notify_enter(g_pCompositor->m_sSeat.seat, foundSurface, surfaceLocal.x, surfaceLocal.y); - wlr_seat_pointer_notify_motion(g_pCompositor->m_sSeat.seat, time, surfaceLocal.x, surfaceLocal.y); + wlr_seat_pointer_notify_enter(g_pCompositor->m_sSeat.seat, foundSurface, surfaceLocal.x, surfaceLocal.y); + wlr_seat_pointer_notify_motion(g_pCompositor->m_sSeat.seat, time, surfaceLocal.x, surfaceLocal.y); + } } void CInputManager::onMouseButton(wlr_pointer_button_event* e) { From 84d6e640ff6e48c8161e1922349c7bce6b0b335f Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Tue, 21 Jun 2022 22:25:54 +0200 Subject: [PATCH 17/49] support all workspace types in workspace keyword --- src/config/ConfigManager.cpp | 4 ++-- src/config/ConfigManager.hpp | 2 +- src/events/Monitors.cpp | 17 ++++++++++++----- 3 files changed, 15 insertions(+), 8 deletions(-) diff --git a/src/config/ConfigManager.cpp b/src/config/ConfigManager.cpp index d511c05a..b76ab965 100644 --- a/src/config/ConfigManager.cpp +++ b/src/config/ConfigManager.cpp @@ -495,11 +495,11 @@ void CConfigManager::handleWindowRule(const std::string& command, const std::str void CConfigManager::handleDefaultWorkspace(const std::string& command, const std::string& value) { const auto DISPLAY = value.substr(0, value.find_first_of(',')); - const auto WORKSPACEID = stoi(value.substr(value.find_first_of(',') + 1)); + const auto WORKSPACE = value.substr(value.find_first_of(',') + 1); for (auto& mr : m_dMonitorRules) { if (mr.name == DISPLAY) { - mr.defaultWorkspaceID = WORKSPACEID; + mr.defaultWorkspace = WORKSPACE; break; } } diff --git a/src/config/ConfigManager.hpp b/src/config/ConfigManager.hpp index 866b8b8e..0d4386c1 100644 --- a/src/config/ConfigManager.hpp +++ b/src/config/ConfigManager.hpp @@ -28,7 +28,7 @@ struct SMonitorRule { Vector2D offset = Vector2D(0,0); float scale = 1; float refreshRate = 60; - int defaultWorkspaceID = -1; + std::string defaultWorkspace = ""; bool disabled = false; wl_output_transform transform = WL_OUTPUT_TRANSFORM_NORMAL; }; diff --git a/src/events/Monitors.cpp b/src/events/Monitors.cpp index 25756548..afbc0745 100644 --- a/src/events/Monitors.cpp +++ b/src/events/Monitors.cpp @@ -114,7 +114,15 @@ void Events::listener_newOutput(wl_listener* listener, void* data) { wlr_ext_workspace_group_handle_v1_output_enter(PNEWMONITOR->pWLRWorkspaceGroupHandle, PNEWMONITOR->output); // Workspace - const auto WORKSPACEID = monitorRule.defaultWorkspaceID == -1 ? g_pCompositor->m_lWorkspaces.size() + 1 /* Cuz workspaces doesnt have the new one yet and we start with 1 */ : monitorRule.defaultWorkspaceID; + std::string newDefaultWorkspaceName = ""; + auto WORKSPACEID = monitorRule.defaultWorkspace == "" ? g_pCompositor->m_lWorkspaces.size() + 1 : getWorkspaceIDFromString(monitorRule.defaultWorkspace, newDefaultWorkspaceName); + + if (WORKSPACEID == INT_MAX || WORKSPACEID == (long unsigned int)SPECIAL_WORKSPACE_ID) { + WORKSPACEID = g_pCompositor->m_lWorkspaces.size() + 1; + newDefaultWorkspaceName = std::to_string(WORKSPACEID); + + Debug::log(LOG, "Invalid workspace= directive name in monitor parsing, workspace name \"%s\" is invalid.", monitorRule.defaultWorkspace); + } auto PNEWWORKSPACE = g_pCompositor->getWorkspaceByID(WORKSPACEID); @@ -127,14 +135,13 @@ void Events::listener_newOutput(wl_listener* listener, void* data) { g_pLayoutManager->getCurrentLayout()->recalculateMonitor(PNEWMONITOR->ID); PNEWWORKSPACE->startAnim(true,true,true); } else { - g_pCompositor->m_lWorkspaces.emplace_back(newMonitor.ID); - PNEWWORKSPACE = &g_pCompositor->m_lWorkspaces.back(); + PNEWWORKSPACE = &g_pCompositor->m_lWorkspaces.emplace_back(newMonitor.ID); // We are required to set the name here immediately - wlr_ext_workspace_handle_v1_set_name(PNEWWORKSPACE->m_pWlrHandle, std::to_string(WORKSPACEID).c_str()); + wlr_ext_workspace_handle_v1_set_name(PNEWWORKSPACE->m_pWlrHandle, newDefaultWorkspaceName.c_str()); PNEWWORKSPACE->m_iID = WORKSPACEID; - PNEWWORKSPACE->m_szName = std::to_string(WORKSPACEID); + PNEWWORKSPACE->m_szName = newDefaultWorkspaceName; } PNEWMONITOR->activeWorkspace = PNEWWORKSPACE->m_iID; From 1810725a0c2b25710f147799a50233ec22506072 Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Tue, 21 Jun 2022 22:29:11 +0200 Subject: [PATCH 18/49] cleaner code --- src/managers/input/InputManager.cpp | 176 ++++++++++++++-------------- 1 file changed, 87 insertions(+), 89 deletions(-) diff --git a/src/managers/input/InputManager.cpp b/src/managers/input/InputManager.cpp index 2f63ecfa..50a4dc5e 100644 --- a/src/managers/input/InputManager.cpp +++ b/src/managers/input/InputManager.cpp @@ -88,112 +88,110 @@ void CInputManager::mouseMoveUnified(uint32_t time, bool refocus) { // focus wlr_surface* foundSurface = nullptr; - if (!didConstraintOnCursor) { - if (PMONITOR && PMONITOR != g_pCompositor->m_pLastMonitor) { - g_pCompositor->m_pLastMonitor = PMONITOR; + if (didConstraintOnCursor) + return; // don't process when cursor constrained - // set active workspace and deactivate all other in wlr - const auto ACTIVEWORKSPACE = g_pCompositor->getWorkspaceByID(PMONITOR->activeWorkspace); - g_pCompositor->deactivateAllWLRWorkspaces(ACTIVEWORKSPACE->m_pWlrHandle); - ACTIVEWORKSPACE->setActive(true); + if (PMONITOR && PMONITOR != g_pCompositor->m_pLastMonitor) { + g_pCompositor->m_pLastMonitor = PMONITOR; - // event - g_pEventManager->postEvent(SHyprIPCEvent("activemon", PMONITOR->szName + "," + ACTIVEWORKSPACE->m_szName)); - } + // set active workspace and deactivate all other in wlr + const auto ACTIVEWORKSPACE = g_pCompositor->getWorkspaceByID(PMONITOR->activeWorkspace); + g_pCompositor->deactivateAllWLRWorkspaces(ACTIVEWORKSPACE->m_pWlrHandle); + ACTIVEWORKSPACE->setActive(true); - Vector2D surfaceCoords; - Vector2D surfacePos = Vector2D(-1337, -1337); - CWindow* pFoundWindow = nullptr; + // event + g_pEventManager->postEvent(SHyprIPCEvent("activemon", PMONITOR->szName + "," + ACTIVEWORKSPACE->m_szName)); + } - // overlay is above fullscreen - if (!foundSurface) - foundSurface = g_pCompositor->vectorToLayerSurface(mouseCoords, &PMONITOR->m_aLayerSurfaceLists[ZWLR_LAYER_SHELL_V1_LAYER_OVERLAY], &surfaceCoords); + Vector2D surfaceCoords; + Vector2D surfacePos = Vector2D(-1337, -1337); + CWindow* pFoundWindow = nullptr; - // then, we check if the workspace doesnt have a fullscreen window - const auto PWORKSPACE = g_pCompositor->getWorkspaceByID(PMONITOR->activeWorkspace); - if (PWORKSPACE->m_bHasFullscreenWindow && !foundSurface && PWORKSPACE->m_efFullscreenMode == FULLSCREEN_FULL) { - pFoundWindow = g_pCompositor->getFullscreenWindowOnWorkspace(PWORKSPACE->m_iID); - foundSurface = g_pXWaylandManager->getWindowSurface(pFoundWindow); - surfacePos = pFoundWindow->m_vRealPosition.vec(); + // overlay is above fullscreen + if (!foundSurface) + foundSurface = g_pCompositor->vectorToLayerSurface(mouseCoords, &PMONITOR->m_aLayerSurfaceLists[ZWLR_LAYER_SHELL_V1_LAYER_OVERLAY], &surfaceCoords); - // only check floating because tiled cant be over fullscreen - for (auto w = g_pCompositor->m_lWindows.rbegin(); w != g_pCompositor->m_lWindows.rend(); w++) { - wlr_box box = {w->m_vRealPosition.vec().x, w->m_vRealPosition.vec().y, w->m_vRealSize.vec().x, w->m_vRealSize.vec().y}; - if (((w->m_bIsFloating && w->m_bIsMapped && w->m_bCreatedOverFullscreen) || (w->m_iWorkspaceID == SPECIAL_WORKSPACE_ID && PMONITOR->specialWorkspaceOpen)) && wlr_box_contains_point(&box, mouseCoords.x, mouseCoords.y) && g_pCompositor->isWorkspaceVisible(w->m_iWorkspaceID) && !w->m_bHidden) { - pFoundWindow = &(*w); - - if (!pFoundWindow->m_bIsX11) { - foundSurface = g_pCompositor->vectorWindowToSurface(mouseCoords, pFoundWindow, surfaceCoords); - } else { - foundSurface = g_pXWaylandManager->getWindowSurface(pFoundWindow); - surfacePos = pFoundWindow->m_vRealPosition.vec(); - } + // then, we check if the workspace doesnt have a fullscreen window + const auto PWORKSPACE = g_pCompositor->getWorkspaceByID(PMONITOR->activeWorkspace); + if (PWORKSPACE->m_bHasFullscreenWindow && !foundSurface && PWORKSPACE->m_efFullscreenMode == FULLSCREEN_FULL) { + pFoundWindow = g_pCompositor->getFullscreenWindowOnWorkspace(PWORKSPACE->m_iID); + foundSurface = g_pXWaylandManager->getWindowSurface(pFoundWindow); + surfacePos = pFoundWindow->m_vRealPosition.vec(); - break; - } - } - } + // only check floating because tiled cant be over fullscreen + for (auto w = g_pCompositor->m_lWindows.rbegin(); w != g_pCompositor->m_lWindows.rend(); w++) { + wlr_box box = {w->m_vRealPosition.vec().x, w->m_vRealPosition.vec().y, w->m_vRealSize.vec().x, w->m_vRealSize.vec().y}; + if (((w->m_bIsFloating && w->m_bIsMapped && w->m_bCreatedOverFullscreen) || (w->m_iWorkspaceID == SPECIAL_WORKSPACE_ID && PMONITOR->specialWorkspaceOpen)) && wlr_box_contains_point(&box, mouseCoords.x, mouseCoords.y) && g_pCompositor->isWorkspaceVisible(w->m_iWorkspaceID) && !w->m_bHidden) { + pFoundWindow = &(*w); - if (!foundSurface) - foundSurface = g_pCompositor->vectorToLayerSurface(mouseCoords, &PMONITOR->m_aLayerSurfaceLists[ZWLR_LAYER_SHELL_V1_LAYER_TOP], &surfaceCoords); - - // then windows - if (!foundSurface) { - pFoundWindow = g_pCompositor->vectorToWindowIdeal(mouseCoords); - if (pFoundWindow) { if (!pFoundWindow->m_bIsX11) { foundSurface = g_pCompositor->vectorWindowToSurface(mouseCoords, pFoundWindow, surfaceCoords); } else { foundSurface = g_pXWaylandManager->getWindowSurface(pFoundWindow); surfacePos = pFoundWindow->m_vRealPosition.vec(); } + + break; } } - - // then surfaces below - if (!foundSurface) - foundSurface = g_pCompositor->vectorToLayerSurface(mouseCoords, &PMONITOR->m_aLayerSurfaceLists[ZWLR_LAYER_SHELL_V1_LAYER_BOTTOM], &surfaceCoords); - - if (!foundSurface) - foundSurface = g_pCompositor->vectorToLayerSurface(mouseCoords, &PMONITOR->m_aLayerSurfaceLists[ZWLR_LAYER_SHELL_V1_LAYER_BACKGROUND], &surfaceCoords); - - - if (!foundSurface) { - wlr_xcursor_manager_set_cursor_image(g_pCompositor->m_sWLRXCursorMgr, "left_ptr", g_pCompositor->m_sWLRCursor); - - wlr_seat_pointer_clear_focus(g_pCompositor->m_sSeat.seat); - - return; - } - - if (time) - wlr_idle_notify_activity(g_pCompositor->m_sWLRIdle, g_pCompositor->m_sSeat.seat); - - Vector2D surfaceLocal = surfacePos == Vector2D(-1337, -1337) ? surfaceCoords : mouseCoords - surfacePos; - - if (pFoundWindow) { - static auto *const PFOLLOWMOUSE = &g_pConfigManager->getConfigValuePtr("input:follow_mouse")->intValue; - if (*PFOLLOWMOUSE != 1 && !refocus) { - if (pFoundWindow != g_pCompositor->m_pLastWindow && g_pCompositor->windowValidMapped(g_pCompositor->m_pLastWindow) && (g_pCompositor->m_pLastWindow->m_bIsFloating != pFoundWindow->m_bIsFloating)) { - // enter if change floating style - g_pCompositor->focusWindow(pFoundWindow, foundSurface); - wlr_seat_pointer_notify_enter(g_pCompositor->m_sSeat.seat, foundSurface, surfaceLocal.x, surfaceLocal.y); - } - else if (*PFOLLOWMOUSE == 2) { - wlr_seat_pointer_notify_enter(g_pCompositor->m_sSeat.seat, foundSurface, surfaceLocal.x, surfaceLocal.y); - } - wlr_seat_pointer_notify_motion(g_pCompositor->m_sSeat.seat, time, surfaceLocal.x, surfaceLocal.y); - return; // don't enter any new surfaces - } else { - g_pCompositor->focusWindow(pFoundWindow, foundSurface); - } - } - else - g_pCompositor->focusSurface(foundSurface); - - wlr_seat_pointer_notify_enter(g_pCompositor->m_sSeat.seat, foundSurface, surfaceLocal.x, surfaceLocal.y); - wlr_seat_pointer_notify_motion(g_pCompositor->m_sSeat.seat, time, surfaceLocal.x, surfaceLocal.y); } + + if (!foundSurface) + foundSurface = g_pCompositor->vectorToLayerSurface(mouseCoords, &PMONITOR->m_aLayerSurfaceLists[ZWLR_LAYER_SHELL_V1_LAYER_TOP], &surfaceCoords); + + // then windows + if (!foundSurface) { + pFoundWindow = g_pCompositor->vectorToWindowIdeal(mouseCoords); + if (pFoundWindow) { + if (!pFoundWindow->m_bIsX11) { + foundSurface = g_pCompositor->vectorWindowToSurface(mouseCoords, pFoundWindow, surfaceCoords); + } else { + foundSurface = g_pXWaylandManager->getWindowSurface(pFoundWindow); + surfacePos = pFoundWindow->m_vRealPosition.vec(); + } + } + } + + // then surfaces below + if (!foundSurface) + foundSurface = g_pCompositor->vectorToLayerSurface(mouseCoords, &PMONITOR->m_aLayerSurfaceLists[ZWLR_LAYER_SHELL_V1_LAYER_BOTTOM], &surfaceCoords); + + if (!foundSurface) + foundSurface = g_pCompositor->vectorToLayerSurface(mouseCoords, &PMONITOR->m_aLayerSurfaceLists[ZWLR_LAYER_SHELL_V1_LAYER_BACKGROUND], &surfaceCoords); + + if (!foundSurface) { + wlr_xcursor_manager_set_cursor_image(g_pCompositor->m_sWLRXCursorMgr, "left_ptr", g_pCompositor->m_sWLRCursor); + + wlr_seat_pointer_clear_focus(g_pCompositor->m_sSeat.seat); + + return; + } + + if (time) + wlr_idle_notify_activity(g_pCompositor->m_sWLRIdle, g_pCompositor->m_sSeat.seat); + + Vector2D surfaceLocal = surfacePos == Vector2D(-1337, -1337) ? surfaceCoords : mouseCoords - surfacePos; + + if (pFoundWindow) { + static auto* const PFOLLOWMOUSE = &g_pConfigManager->getConfigValuePtr("input:follow_mouse")->intValue; + if (*PFOLLOWMOUSE != 1 && !refocus) { + if (pFoundWindow != g_pCompositor->m_pLastWindow && g_pCompositor->windowValidMapped(g_pCompositor->m_pLastWindow) && (g_pCompositor->m_pLastWindow->m_bIsFloating != pFoundWindow->m_bIsFloating)) { + // enter if change floating style + g_pCompositor->focusWindow(pFoundWindow, foundSurface); + wlr_seat_pointer_notify_enter(g_pCompositor->m_sSeat.seat, foundSurface, surfaceLocal.x, surfaceLocal.y); + } else if (*PFOLLOWMOUSE == 2) { + wlr_seat_pointer_notify_enter(g_pCompositor->m_sSeat.seat, foundSurface, surfaceLocal.x, surfaceLocal.y); + } + wlr_seat_pointer_notify_motion(g_pCompositor->m_sSeat.seat, time, surfaceLocal.x, surfaceLocal.y); + return; // don't enter any new surfaces + } else { + g_pCompositor->focusWindow(pFoundWindow, foundSurface); + } + } else + g_pCompositor->focusSurface(foundSurface); + + wlr_seat_pointer_notify_enter(g_pCompositor->m_sSeat.seat, foundSurface, surfaceLocal.x, surfaceLocal.y); + wlr_seat_pointer_notify_motion(g_pCompositor->m_sSeat.seat, time, surfaceLocal.x, surfaceLocal.y); } void CInputManager::onMouseButton(wlr_pointer_button_event* e) { From 33abb6a5bf6ea815c59a1ac2bcec0413c17e3f6d Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Tue, 21 Jun 2022 22:30:07 +0200 Subject: [PATCH 19/49] dang it autoformat --- src/managers/input/InputManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/managers/input/InputManager.cpp b/src/managers/input/InputManager.cpp index 50a4dc5e..63e2d970 100644 --- a/src/managers/input/InputManager.cpp +++ b/src/managers/input/InputManager.cpp @@ -173,7 +173,7 @@ void CInputManager::mouseMoveUnified(uint32_t time, bool refocus) { Vector2D surfaceLocal = surfacePos == Vector2D(-1337, -1337) ? surfaceCoords : mouseCoords - surfacePos; if (pFoundWindow) { - static auto* const PFOLLOWMOUSE = &g_pConfigManager->getConfigValuePtr("input:follow_mouse")->intValue; + static auto *const PFOLLOWMOUSE = &g_pConfigManager->getConfigValuePtr("input:follow_mouse")->intValue; if (*PFOLLOWMOUSE != 1 && !refocus) { if (pFoundWindow != g_pCompositor->m_pLastWindow && g_pCompositor->windowValidMapped(g_pCompositor->m_pLastWindow) && (g_pCompositor->m_pLastWindow->m_bIsFloating != pFoundWindow->m_bIsFloating)) { // enter if change floating style From 48e33023afdd8e1683f275058d0a4148a41f5de4 Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Tue, 21 Jun 2022 22:42:54 +0200 Subject: [PATCH 20/49] fix crash on number workspace with null mon --- src/helpers/MiscFunctions.cpp | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/src/helpers/MiscFunctions.cpp b/src/helpers/MiscFunctions.cpp index 6f9b465e..55b0ec83 100644 --- a/src/helpers/MiscFunctions.cpp +++ b/src/helpers/MiscFunctions.cpp @@ -158,6 +158,12 @@ int getWorkspaceIDFromString(const std::string& in, std::string& outName) { outName = WORKSPACENAME; } else { if (in[0] == 'm') { + if (!g_pCompositor->m_pLastMonitor) { + Debug::log(ERR, "Relative monitor workspace on monitor null!"); + result = INT_MAX; + return result; + } + // monitor relative result = (int)getPlusMinusKeywordResult(in.substr(1), 0); @@ -207,7 +213,14 @@ int getWorkspaceIDFromString(const std::string& in, std::string& outName) { outName = g_pCompositor->getWorkspaceByID(currentID)->m_szName; } else { - result = std::clamp((int)getPlusMinusKeywordResult(in, g_pCompositor->m_pLastMonitor->activeWorkspace), 1, INT_MAX); + if (g_pCompositor->m_pLastMonitor) + result = std::clamp((int)getPlusMinusKeywordResult(in, g_pCompositor->m_pLastMonitor->activeWorkspace), 1, INT_MAX); + else if (isNumber(in)) + result = std::clamp(std::stoi(in), 1, INT_MAX); + else { + Debug::log(ERR, "Relative workspace on no mon!"); + result = INT_MAX; + } outName = std::to_string(result); } } From 5541098f2026daed21d87fdaa5c85d8329c8cfbc Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Tue, 21 Jun 2022 22:47:27 +0200 Subject: [PATCH 21/49] Added bindl --- src/config/ConfigManager.cpp | 5 +++-- src/config/ConfigManager.hpp | 2 +- src/managers/KeybindManager.cpp | 8 +++----- src/managers/KeybindManager.hpp | 1 + 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/config/ConfigManager.cpp b/src/config/ConfigManager.cpp index b76ab965..2abbdcc4 100644 --- a/src/config/ConfigManager.cpp +++ b/src/config/ConfigManager.cpp @@ -415,7 +415,7 @@ void CConfigManager::handleAnimation(const std::string& command, const std::stri configSetValueSafe("animations:" + ANIMNAME + "_style", curitem); } -void CConfigManager::handleBind(const std::string& command, const std::string& value) { +void CConfigManager::handleBind(const std::string& command, const std::string& value, bool locked) { // example: // bind=SUPER,G,exec,dmenu_run @@ -448,7 +448,7 @@ void CConfigManager::handleBind(const std::string& command, const std::string& v } if (KEY != "") - g_pKeybindManager->addKeybind(SKeybind{KEY, MOD, HANDLER, COMMAND}); + g_pKeybindManager->addKeybind(SKeybind{KEY, MOD, HANDLER, COMMAND, locked}); } void CConfigManager::handleUnbind(const std::string& command, const std::string& value) { @@ -578,6 +578,7 @@ std::string CConfigManager::parseKeyword(const std::string& COMMAND, const std:: } else if (COMMAND == "monitor") handleMonitor(COMMAND, VALUE); else if (COMMAND == "bind") handleBind(COMMAND, VALUE); + else if (COMMAND == "bindl") handleBind(COMMAND, VALUE, true); else if (COMMAND == "unbind") handleUnbind(COMMAND, VALUE); else if (COMMAND == "workspace") handleDefaultWorkspace(COMMAND, VALUE); else if (COMMAND == "windowrule") handleWindowRule(COMMAND, VALUE); diff --git a/src/config/ConfigManager.hpp b/src/config/ConfigManager.hpp index 0d4386c1..407ccce4 100644 --- a/src/config/ConfigManager.hpp +++ b/src/config/ConfigManager.hpp @@ -106,7 +106,7 @@ private: void configSetValueSafe(const std::string&, const std::string&); void handleRawExec(const std::string&, const std::string&); void handleMonitor(const std::string&, const std::string&); - void handleBind(const std::string&, const std::string&); + void handleBind(const std::string&, const std::string&, bool locked = false); void handleUnbind(const std::string&, const std::string&); void handleWindowRule(const std::string&, const std::string&); void handleDefaultWorkspace(const std::string&, const std::string&); diff --git a/src/managers/KeybindManager.cpp b/src/managers/KeybindManager.cpp index 96d8ce60..17c606b9 100644 --- a/src/managers/KeybindManager.cpp +++ b/src/managers/KeybindManager.cpp @@ -72,13 +72,11 @@ bool CKeybindManager::handleKeybinds(const uint32_t& modmask, const xkb_keysym_t if (handleInternalKeybinds(key)) return true; - if (g_pCompositor->m_sSeat.exclusiveClient){ - Debug::log(LOG, "Not handling keybinds due to there being an exclusive inhibited client."); - return false; - } + if (g_pCompositor->m_sSeat.exclusiveClient) + Debug::log(LOG, "Keybind handling only locked (inhibitor)"); for (auto& k : m_lKeybinds) { - if (modmask != k.modmask) + if (modmask != k.modmask || (g_pCompositor->m_sSeat.exclusiveClient && !k.locked)) continue; // oMg such performance hit!!11! diff --git a/src/managers/KeybindManager.hpp b/src/managers/KeybindManager.hpp index cb99aa41..a3dbb8dd 100644 --- a/src/managers/KeybindManager.hpp +++ b/src/managers/KeybindManager.hpp @@ -11,6 +11,7 @@ struct SKeybind { uint32_t modmask = 0; std::string handler = ""; std::string arg = ""; + bool locked = false; }; class CKeybindManager { From 0f1ad16aecfdf89dd5d83d38318de8518157e6ee Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Tue, 21 Jun 2022 22:54:41 +0200 Subject: [PATCH 22/49] added general:no_border_on_floating --- src/config/ConfigManager.cpp | 1 + src/render/Renderer.cpp | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/config/ConfigManager.cpp b/src/config/ConfigManager.cpp index 2abbdcc4..724adb21 100644 --- a/src/config/ConfigManager.cpp +++ b/src/config/ConfigManager.cpp @@ -28,6 +28,7 @@ void CConfigManager::setDefaultVars() { configValues["general:damage_tracking_internal"].intValue = DAMAGE_TRACKING_NONE; configValues["general:border_size"].intValue = 1; + configValues["general:no_border_on_floating"].intValue = 0; configValues["general:gaps_in"].intValue = 5; configValues["general:gaps_out"].intValue = 20; configValues["general:col.active_border"].intValue = 0xffffffff; diff --git a/src/render/Renderer.cpp b/src/render/Renderer.cpp index eb29a65d..b760dac0 100644 --- a/src/render/Renderer.cpp +++ b/src/render/Renderer.cpp @@ -142,6 +142,8 @@ void CHyprRenderer::renderWindow(CWindow* pWindow, SMonitor* pMonitor, timespec* const auto PWORKSPACE = g_pCompositor->getWorkspaceByID(pWindow->m_iWorkspaceID); const auto REALPOS = pWindow->m_vRealPosition.vec() + PWORKSPACE->m_vRenderOffset.vec(); + static const auto PNOFLOATINGBORDERS = &g_pConfigManager->getConfigValuePtr("general:no_border_on_floating")->intValue; + SRenderData renderdata = {pMonitor->output, time, REALPOS.x, REALPOS.y}; renderdata.surface = g_pXWaylandManager->getWindowSurface(pWindow); renderdata.w = std::clamp(pWindow->m_vRealSize.vec().x, (double)5, (double)1337420); // clamp the size to min 5, @@ -149,7 +151,7 @@ void CHyprRenderer::renderWindow(CWindow* pWindow, SMonitor* pMonitor, timespec* renderdata.dontRound = pWindow->m_bIsFullscreen && PWORKSPACE->m_efFullscreenMode == FULLSCREEN_FULL; renderdata.fadeAlpha = pWindow->m_fAlpha.fl() * (PWORKSPACE->m_fAlpha.fl() / 255.f); renderdata.alpha = pWindow->m_bIsFullscreen ? g_pConfigManager->getFloat("decoration:fullscreen_opacity") : pWindow == g_pCompositor->m_pLastWindow ? g_pConfigManager->getFloat("decoration:active_opacity") : g_pConfigManager->getFloat("decoration:inactive_opacity"); - renderdata.decorate = decorate && !pWindow->m_bX11DoesntWantBorders; + renderdata.decorate = decorate && !pWindow->m_bX11DoesntWantBorders && (pWindow->m_bIsFloating ? *PNOFLOATINGBORDERS == 0 : true); renderdata.rounding = pWindow->m_sAdditionalConfigData.rounding; // apply window special data From 4c2459861b9e61b13443efebde5125d5c68221b0 Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Tue, 21 Jun 2022 23:09:20 +0200 Subject: [PATCH 23/49] fix borders sometimes disappearing on certain windows --- src/render/OpenGL.cpp | 40 +++++++++++++++++++++++++++------------- src/render/OpenGL.hpp | 1 + 2 files changed, 28 insertions(+), 13 deletions(-) diff --git a/src/render/OpenGL.cpp b/src/render/OpenGL.cpp index 6a82cb83..d8f64e0c 100644 --- a/src/render/OpenGL.cpp +++ b/src/render/OpenGL.cpp @@ -240,6 +240,10 @@ void CHyprOpenGLImpl::scissor(const int x, const int y, const int w, const int h } void CHyprOpenGLImpl::renderRect(wlr_box* box, const CColor& col, int round) { + renderRectWithDamage(box, col, m_RenderData.pDamage, round); +} + +void CHyprOpenGLImpl::renderRectWithDamage(wlr_box* box, const CColor& col, pixman_region32_t* damage, int round) { RASSERT((box->width > 0 && box->height > 0), "Tried to render rect with width/height < 0!"); RASSERT(m_RenderData.pMonitor, "Tried to render rect without begin()!"); @@ -279,8 +283,8 @@ void CHyprOpenGLImpl::renderRect(wlr_box* box, const CColor& col, int round) { glEnableVertexAttribArray(m_shQUAD.posAttrib); glEnableVertexAttribArray(m_shQUAD.texAttrib); - if (pixman_region32_not_empty(m_RenderData.pDamage)) { - PIXMAN_DAMAGE_FOREACH(m_RenderData.pDamage) { + if (pixman_region32_not_empty(damage)) { + PIXMAN_DAMAGE_FOREACH(damage) { const auto RECT = RECTSARR[i]; scissor(&RECT); glDrawArrays(GL_TRIANGLE_STRIP, 0, 4); @@ -341,6 +345,21 @@ void CHyprOpenGLImpl::renderTextureInternalWithDamage(const CTexture& tex, wlr_b RASSERT(false, "tex.m_iTarget unsupported!"); } + // stencil for when we want a border + if (border) { + glClearStencil(0); + glClear(GL_STENCIL_BUFFER_BIT); + + glEnable(GL_STENCIL_TEST); + + glStencilFunc(GL_ALWAYS, 1, -1); + glStencilOp(GL_REPLACE, GL_REPLACE, GL_REPLACE); + + // hacky fix to fix broken borders. + // TODO: this is kinda slow... question mark? + renderRect(pBox, CColor(0, 0, 0, 0), round); + } + glActiveTexture(GL_TEXTURE0); glBindTexture(tex.m_iTarget, tex.m_iTexID); @@ -374,17 +393,6 @@ void CHyprOpenGLImpl::renderTextureInternalWithDamage(const CTexture& tex, wlr_b glEnableVertexAttribArray(shader->posAttrib); glEnableVertexAttribArray(shader->texAttrib); - // stencil for when we want a border - if (border) { - glClearStencil(0); - glClear(GL_STENCIL_BUFFER_BIT); - - glEnable(GL_STENCIL_TEST); - - glStencilFunc(GL_ALWAYS, 1, -1); - glStencilOp(GL_REPLACE, GL_REPLACE, GL_REPLACE); - } - if (pixman_region32_not_empty(m_RenderData.pDamage)) { PIXMAN_DAMAGE_FOREACH(m_RenderData.pDamage) { const auto RECT = RECTSARR[i]; @@ -609,6 +617,12 @@ void CHyprOpenGLImpl::renderTextureWithBlur(const CTexture& tex, wlr_box* pBox, glStencilFunc(GL_ALWAYS, 1, -1); glStencilOp(GL_KEEP, GL_KEEP, GL_REPLACE); + if (border) { + // hacky fix to fix broken borders. + // TODO: this is kinda slow... question mark? + renderRectWithDamage(pBox, CColor(0,0,0,0), &damage, round); + } + renderTextureInternalWithDamage(tex, pBox, a, &damage, round, false, false, true); // then stop diff --git a/src/render/OpenGL.hpp b/src/render/OpenGL.hpp index 9a8084db..76de6311 100644 --- a/src/render/OpenGL.hpp +++ b/src/render/OpenGL.hpp @@ -53,6 +53,7 @@ public: void end(); void renderRect(wlr_box*, const CColor&, int round = 0); + void renderRectWithDamage(wlr_box*, const CColor&, pixman_region32_t* damage, int round = 0); void renderTexture(wlr_texture*, wlr_box*, float a, int round = 0); void renderTexture(const CTexture&, wlr_box*, float a, int round = 0, bool discardOpaque = false, bool border = false); void renderTextureWithBlur(const CTexture&, wlr_box*, float a, wlr_surface* pSurface, int round = 0, bool border = false); From b9f542a60fd066944659e5b553d341e6b1d34206 Mon Sep 17 00:00:00 2001 From: taylor85345 <36456160+taylor85345@users.noreply.github.com> Date: Tue, 21 Jun 2022 16:13:05 -0700 Subject: [PATCH 24/49] Fixed crash on movetoworkspacesilent --- src/managers/EventManager.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/managers/EventManager.cpp b/src/managers/EventManager.cpp index 409fbd90..e42e87c2 100644 --- a/src/managers/EventManager.cpp +++ b/src/managers/EventManager.cpp @@ -107,7 +107,7 @@ void CEventManager::startThread() { void CEventManager::postEvent(const SHyprIPCEvent event) { if (m_bIgnoreEvents) { - Debug::log(WARN, "Suppressed (ignoreevents true) event of type %s, content: %s"); + Debug::log(WARN, "Suppressed (ignoreevents true) event of type %s, content: %s",event.event.c_str(), event.data.c_str()); return; } @@ -116,4 +116,4 @@ void CEventManager::postEvent(const SHyprIPCEvent event) { m_dQueuedEvents.push_back(ev); eventQueueMutex.unlock(); }, event).detach(); -} \ No newline at end of file +} From 499d2e41bfbc76525c3f03e1fb0a057b910c0c4b Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Wed, 22 Jun 2022 13:01:59 +0200 Subject: [PATCH 25/49] default apply_sens_to_raw to 0 --- example/hyprland.conf | 2 ++ src/config/ConfigManager.cpp | 2 +- src/config/defaultConfig.hpp | 2 ++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/example/hyprland.conf b/example/hyprland.conf index d67355aa..931baf49 100644 --- a/example/hyprland.conf +++ b/example/hyprland.conf @@ -27,6 +27,8 @@ general { col.active_border=0x66ee1111 col.inactive_border=0x66333333 + apply_sens_to_raw=0 # do not apply the sensitivity to raw input (e.g. used by games where you aim) + damage_tracking=full # leave it on full unless you hate your GPU and want to make it suffer } diff --git a/src/config/ConfigManager.cpp b/src/config/ConfigManager.cpp index 724adb21..aba0b1ff 100644 --- a/src/config/ConfigManager.cpp +++ b/src/config/ConfigManager.cpp @@ -20,7 +20,7 @@ CConfigManager::CConfigManager() { void CConfigManager::setDefaultVars() { configValues["general:max_fps"].intValue = 240; configValues["general:sensitivity"].floatValue = 0.25f; - configValues["general:apply_sens_to_raw"].intValue = 1; + configValues["general:apply_sens_to_raw"].intValue = 0; configValues["general:main_mod"].strValue = "SUPER"; // exposed to the user for easier configuring configValues["general:main_mod_internal"].intValue = g_pKeybindManager->stringToModMask("SUPER"); // actually used and automatically calculated diff --git a/src/config/defaultConfig.hpp b/src/config/defaultConfig.hpp index 30ef5009..fbf3981d 100644 --- a/src/config/defaultConfig.hpp +++ b/src/config/defaultConfig.hpp @@ -34,6 +34,8 @@ general { col.active_border=0x66ee1111 col.inactive_border=0x66333333 + apply_sens_to_raw=0 # do not apply the sensitivity to raw input (e.g. used by games where you aim) + damage_tracking=full # leave it on full unless you hate your GPU and want to make it suffer } From 770bada5d541e737ae17744f70eb019494471a29 Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Wed, 22 Jun 2022 15:45:56 +0200 Subject: [PATCH 26/49] Fixed oversized apps' incorrect layout --- src/Compositor.cpp | 9 ++++++- src/config/ConfigManager.cpp | 1 + src/events/Windows.cpp | 8 ++++++ src/managers/XWaylandManager.cpp | 10 ++------ src/managers/input/InputManager.cpp | 8 ++++++ src/render/OpenGL.cpp | 40 +++++++++++++++++++++-------- src/render/OpenGL.hpp | 8 ++++-- src/render/Renderer.cpp | 28 +++++++++++++++++++- 8 files changed, 90 insertions(+), 22 deletions(-) diff --git a/src/Compositor.cpp b/src/Compositor.cpp index 32ffab34..a5339948 100644 --- a/src/Compositor.cpp +++ b/src/Compositor.cpp @@ -443,7 +443,11 @@ wlr_surface* CCompositor::vectorWindowToSurface(const Vector2D& pos, CWindow* pW double subx, suby; - const auto PFOUND = wlr_xdg_surface_surface_at(PSURFACE, pos.x - pWindow->m_vRealPosition.vec().x, pos.y - pWindow->m_vRealPosition.vec().y, &subx, &suby); + // calc for oversized windows... fucking bullshit, again. + wlr_box geom; + wlr_xdg_surface_get_geometry(pWindow->m_uSurface.xdg, &geom); + + const auto PFOUND = wlr_xdg_surface_surface_at(PSURFACE, pos.x - pWindow->m_vRealPosition.vec().x + geom.x, pos.y - pWindow->m_vRealPosition.vec().y + geom.y, &subx, &suby); if (PFOUND) { sl.x = subx; @@ -454,6 +458,9 @@ wlr_surface* CCompositor::vectorWindowToSurface(const Vector2D& pos, CWindow* pW sl.x = pos.x - pWindow->m_vRealPosition.vec().x; sl.y = pos.y - pWindow->m_vRealPosition.vec().y; + sl.x += geom.x; + sl.y += geom.y; + return PSURFACE->surface; } diff --git a/src/config/ConfigManager.cpp b/src/config/ConfigManager.cpp index aba0b1ff..d95f5a05 100644 --- a/src/config/ConfigManager.cpp +++ b/src/config/ConfigManager.cpp @@ -47,6 +47,7 @@ void CConfigManager::setDefaultVars() { configValues["decoration:inactive_opacity"].floatValue = 1; configValues["decoration:fullscreen_opacity"].floatValue = 1; configValues["decoration:multisample_edges"].intValue = 0; + configValues["decoration:no_blur_on_oversized"].intValue = 1; configValues["dwindle:pseudotile"].intValue = 0; configValues["dwindle:col.group_border"].intValue = 0x66777700; diff --git a/src/events/Windows.cpp b/src/events/Windows.cpp index b84b9d2d..48571892 100644 --- a/src/events/Windows.cpp +++ b/src/events/Windows.cpp @@ -19,6 +19,14 @@ void addViewCoords(void* pWindow, int* x, int* y) { const auto PWINDOW = (CWindow*)pWindow; *x += PWINDOW->m_vRealPosition.goalv().x; *y += PWINDOW->m_vRealPosition.goalv().y; + + if (!PWINDOW->m_bIsX11) { + wlr_box geom; + wlr_xdg_surface_get_geometry(PWINDOW->m_uSurface.xdg, &geom); + + *x -= geom.x; + *y -= geom.y; + } } void Events::listener_mapWindow(void* owner, void* data) { diff --git a/src/managers/XWaylandManager.cpp b/src/managers/XWaylandManager.cpp index 5927274e..65f5ddd8 100644 --- a/src/managers/XWaylandManager.cpp +++ b/src/managers/XWaylandManager.cpp @@ -124,14 +124,8 @@ void CHyprXWaylandManager::sendCloseWindow(CWindow* pWindow) { void CHyprXWaylandManager::setWindowSize(CWindow* pWindow, const Vector2D& size) { if (pWindow->m_bIsX11) wlr_xwayland_surface_configure(pWindow->m_uSurface.xwayland, pWindow->m_vRealPosition.vec().x, pWindow->m_vRealPosition.vec().y, size.x, size.y); - else { - // I don't know if this is fucking correct, but the fucking idea of putting shadows into a window's surface is borderline criminal. - - const auto XDELTA = pWindow->m_uSurface.xdg->current.geometry.width && pWindow->m_uSurface.xdg->current.geometry.height ? pWindow->m_uSurface.xdg->surface->current.width - pWindow->m_uSurface.xdg->current.geometry.width : 0; - const auto YDELTA = pWindow->m_uSurface.xdg->current.geometry.width && pWindow->m_uSurface.xdg->current.geometry.height ? pWindow->m_uSurface.xdg->surface->current.height - pWindow->m_uSurface.xdg->current.geometry.height : 0; - - wlr_xdg_toplevel_set_size(pWindow->m_uSurface.xdg->toplevel, size.x - XDELTA, size.y - YDELTA); - } + else + wlr_xdg_toplevel_set_size(pWindow->m_uSurface.xdg->toplevel, size.x, size.y); } void CHyprXWaylandManager::setWindowStyleTiled(CWindow* pWindow, uint32_t edgez) { diff --git a/src/managers/input/InputManager.cpp b/src/managers/input/InputManager.cpp index 63e2d970..6bc59472 100644 --- a/src/managers/input/InputManager.cpp +++ b/src/managers/input/InputManager.cpp @@ -172,6 +172,14 @@ void CInputManager::mouseMoveUnified(uint32_t time, bool refocus) { Vector2D surfaceLocal = surfacePos == Vector2D(-1337, -1337) ? surfaceCoords : mouseCoords - surfacePos; + if (pFoundWindow && !pFoundWindow->m_bIsX11 && surfacePos != Vector2D(-1337, -1337)) { + // calc for oversized windows... fucking bullshit. + wlr_box geom; + wlr_xdg_surface_get_geometry(pFoundWindow->m_uSurface.xdg, &geom); + + surfaceLocal = mouseCoords - surfacePos + Vector2D(geom.x, geom.y); + } + if (pFoundWindow) { static auto *const PFOLLOWMOUSE = &g_pConfigManager->getConfigValuePtr("input:follow_mouse")->intValue; if (*PFOLLOWMOUSE != 1 && !refocus) { diff --git a/src/render/OpenGL.cpp b/src/render/OpenGL.cpp index d8f64e0c..c503cb64 100644 --- a/src/render/OpenGL.cpp +++ b/src/render/OpenGL.cpp @@ -303,15 +303,15 @@ void CHyprOpenGLImpl::renderTexture(wlr_texture* tex, wlr_box* pBox, float alpha renderTexture(CTexture(tex), pBox, alpha, round); } -void CHyprOpenGLImpl::renderTexture(const CTexture& tex, wlr_box* pBox, float alpha, int round, bool discardopaque, bool border) { +void CHyprOpenGLImpl::renderTexture(const CTexture& tex, wlr_box* pBox, float alpha, int round, bool discardopaque, bool border, bool allowPrimary) { RASSERT(m_RenderData.pMonitor, "Tried to render texture without begin()!"); - renderTextureInternalWithDamage(tex, pBox, alpha, m_RenderData.pDamage, round, discardopaque, border); + renderTextureInternalWithDamage(tex, pBox, alpha, m_RenderData.pDamage, round, discardopaque, border, false, allowPrimary); scissor((wlr_box*)nullptr); } -void CHyprOpenGLImpl::renderTextureInternalWithDamage(const CTexture& tex, wlr_box* pBox, float alpha, pixman_region32_t* damage, int round, bool discardOpaque, bool border, bool noAA) { +void CHyprOpenGLImpl::renderTextureInternalWithDamage(const CTexture& tex, wlr_box* pBox, float alpha, pixman_region32_t* damage, int round, bool discardOpaque, bool border, bool noAA, bool allowPrimary) { RASSERT(m_RenderData.pMonitor, "Tried to render texture without begin()!"); RASSERT((tex.m_iTexID > 0), "Attempted to draw NULL texture!"); @@ -358,6 +358,8 @@ void CHyprOpenGLImpl::renderTextureInternalWithDamage(const CTexture& tex, wlr_b // hacky fix to fix broken borders. // TODO: this is kinda slow... question mark? renderRect(pBox, CColor(0, 0, 0, 0), round); + + glDisable(GL_STENCIL_TEST); } glActiveTexture(GL_TEXTURE0); @@ -388,7 +390,19 @@ void CHyprOpenGLImpl::renderTextureInternalWithDamage(const CTexture& tex, wlr_b glUniform1i(glGetUniformLocation(shader->program, "primitiveMultisample"), (int)(*PMULTISAMPLEEDGES == 1 && round != 0 && !border && !noAA)); glVertexAttribPointer(shader->posAttrib, 2, GL_FLOAT, GL_FALSE, 0, fullVerts); - glVertexAttribPointer(shader->texAttrib, 2, GL_FLOAT, GL_FALSE, 0, fullVerts); + + if (allowPrimary && m_RenderData.renderingPrimarySurface && m_RenderData.primarySurfaceUVTopLeft != Vector2D(-1, -1)) { + const float verts[] = { + m_RenderData.primarySurfaceUVBottomRight.x, m_RenderData.primarySurfaceUVTopLeft.y, // top right + m_RenderData.primarySurfaceUVTopLeft.x, m_RenderData.primarySurfaceUVTopLeft.y, // top left + m_RenderData.primarySurfaceUVBottomRight.x, m_RenderData.primarySurfaceUVBottomRight.y, // bottom right + m_RenderData.primarySurfaceUVTopLeft.x, m_RenderData.primarySurfaceUVBottomRight.y, // bottom left + }; + + glVertexAttribPointer(shader->texAttrib, 2, GL_FLOAT, GL_FALSE, 0, verts); + } else { + glVertexAttribPointer(shader->texAttrib, 2, GL_FLOAT, GL_FALSE, 0, fullVerts); + } glEnableVertexAttribArray(shader->posAttrib); glEnableVertexAttribArray(shader->texAttrib); @@ -402,6 +416,8 @@ void CHyprOpenGLImpl::renderTextureInternalWithDamage(const CTexture& tex, wlr_b } if (border) { + glEnable(GL_STENCIL_TEST); + glStencilFunc(GL_EQUAL, 1, -1); glStencilOp(GL_KEEP, GL_KEEP, GL_REPLACE); } @@ -548,9 +564,10 @@ void CHyprOpenGLImpl::renderTextureWithBlur(const CTexture& tex, wlr_box* pBox, RASSERT(m_RenderData.pMonitor, "Tried to render texture with blur without begin()!"); static auto *const PBLURENABLED = &g_pConfigManager->getConfigValuePtr("decoration:blur")->intValue; + static auto* const PNOBLUROVERSIZED = &g_pConfigManager->getConfigValuePtr("decoration:no_blur_on_oversized")->intValue; - if (*PBLURENABLED == 0) { - renderTexture(tex, pBox, a, round, false, border); + if (*PBLURENABLED == 0 || (*PNOBLUROVERSIZED && m_RenderData.primarySurfaceUVTopLeft != Vector2D(-1, -1))) { + renderTexture(tex, pBox, a, round, false, border, true); return; } @@ -607,13 +624,18 @@ void CHyprOpenGLImpl::renderTextureWithBlur(const CTexture& tex, wlr_box* pBox, if (pixman_region32_not_empty(&damage)) { // render our great blurred FB static auto *const PBLURIGNOREOPACITY = &g_pConfigManager->getConfigValuePtr("decoration:blur_ignore_opacity")->intValue; - renderTextureInternalWithDamage(POUTFB->m_cTex, &MONITORBOX, *PBLURIGNOREOPACITY ? 255.f : a, &damage); + renderTextureInternalWithDamage(POUTFB->m_cTex, &MONITORBOX, *PBLURIGNOREOPACITY ? 255.f : a, &damage, 0, false, false, false, true); // render the window, but clear stencil glClearStencil(0); glClear(GL_STENCIL_BUFFER_BIT); - // and write to it + // draw window + glDisable(GL_STENCIL_TEST); + renderTextureInternalWithDamage(tex, pBox, a, &damage, round, false, false, true, true); + glEnable(GL_STENCIL_TEST); + + // prep stencil for border glStencilFunc(GL_ALWAYS, 1, -1); glStencilOp(GL_KEEP, GL_KEEP, GL_REPLACE); @@ -623,8 +645,6 @@ void CHyprOpenGLImpl::renderTextureWithBlur(const CTexture& tex, wlr_box* pBox, renderRectWithDamage(pBox, CColor(0,0,0,0), &damage, round); } - renderTextureInternalWithDamage(tex, pBox, a, &damage, round, false, false, true); - // then stop glStencilFunc(GL_EQUAL, 1, -1); glStencilOp(GL_KEEP, GL_KEEP, GL_REPLACE); diff --git a/src/render/OpenGL.hpp b/src/render/OpenGL.hpp index 76de6311..0648e73a 100644 --- a/src/render/OpenGL.hpp +++ b/src/render/OpenGL.hpp @@ -34,6 +34,10 @@ struct SCurrentRenderData { float projection[9]; pixman_region32_t* pDamage = nullptr; + + bool renderingPrimarySurface = false; + Vector2D primarySurfaceUVTopLeft = Vector2D(-1, -1); + Vector2D primarySurfaceUVBottomRight = Vector2D(-1, -1); }; struct SMonitorRenderData { @@ -55,7 +59,7 @@ public: void renderRect(wlr_box*, const CColor&, int round = 0); void renderRectWithDamage(wlr_box*, const CColor&, pixman_region32_t* damage, int round = 0); void renderTexture(wlr_texture*, wlr_box*, float a, int round = 0); - void renderTexture(const CTexture&, wlr_box*, float a, int round = 0, bool discardOpaque = false, bool border = false); + void renderTexture(const CTexture&, wlr_box*, float a, int round = 0, bool discardOpaque = false, bool border = false, bool allowPrimary = false); void renderTextureWithBlur(const CTexture&, wlr_box*, float a, wlr_surface* pSurface, int round = 0, bool border = false); void makeWindowSnapshot(CWindow*); @@ -111,7 +115,7 @@ private: // returns the out FB, can be either Mirror or MirrorSwap CFramebuffer* blurMainFramebufferWithDamage(float a, wlr_box* pBox, pixman_region32_t* damage); - void renderTextureInternalWithDamage(const CTexture&, wlr_box* pBox, float a, pixman_region32_t* damage, int round = 0, bool discardOpaque = false, bool border = false, bool noAA = false); + void renderTextureInternalWithDamage(const CTexture&, wlr_box* pBox, float a, pixman_region32_t* damage, int round = 0, bool discardOpaque = false, bool border = false, bool noAA = false, bool allowPrimary = false); void renderBorder(wlr_box*, const CColor&, int thick = 1, int round = 0); }; diff --git a/src/render/Renderer.cpp b/src/render/Renderer.cpp index b760dac0..8118af48 100644 --- a/src/render/Renderer.cpp +++ b/src/render/Renderer.cpp @@ -23,8 +23,12 @@ void renderSurface(struct wlr_surface* surface, int x, int y, void* data) { float rounding = RDATA->dontRound ? 0 : RDATA->rounding == -1 ? *PROUNDING : RDATA->rounding; - if (RDATA->surface && surface == RDATA->surface) + g_pHyprOpenGL->m_RenderData.renderingPrimarySurface = false; + + if (RDATA->surface && surface == RDATA->surface) { + g_pHyprOpenGL->m_RenderData.renderingPrimarySurface = true; g_pHyprOpenGL->renderTextureWithBlur(TEXTURE, &windowBox, RDATA->fadeAlpha * RDATA->alpha, surface, rounding, RDATA->decorate); + } else g_pHyprOpenGL->renderTexture(TEXTURE, &windowBox, RDATA->fadeAlpha * RDATA->alpha, rounding, false, false); @@ -166,8 +170,30 @@ void CHyprRenderer::renderWindow(CWindow* pWindow, SMonitor* pMonitor, timespec* for (auto& wd : pWindow->m_dWindowDecorations) wd->draw(pMonitor); + if (!pWindow->m_bIsX11) { + + // To everyone who makes apps with improperly aligned surfaces, + // For example chromium, or GTK devs who allow shadows on windows, + // a sincere FUCK YOU. + + wlr_box geom; + wlr_xdg_surface_get_geometry(pWindow->m_uSurface.xdg, &geom); + + g_pHyprOpenGL->m_RenderData.primarySurfaceUVTopLeft = Vector2D((double)geom.x / (double)pWindow->m_uSurface.xdg->surface->current.width, (double)geom.y / (double)pWindow->m_uSurface.xdg->surface->current.height); + g_pHyprOpenGL->m_RenderData.primarySurfaceUVBottomRight = Vector2D((double)(geom.width + geom.x) / (double)pWindow->m_uSurface.xdg->surface->current.width, (double)(geom.y + geom.height) / (double)pWindow->m_uSurface.xdg->surface->current.height); + + if (g_pHyprOpenGL->m_RenderData.primarySurfaceUVTopLeft == Vector2D() && g_pHyprOpenGL->m_RenderData.primarySurfaceUVBottomRight == Vector2D(1, 1)) { + // No special UV mods needed + g_pHyprOpenGL->m_RenderData.primarySurfaceUVTopLeft = Vector2D(-1, -1); + g_pHyprOpenGL->m_RenderData.primarySurfaceUVBottomRight = Vector2D(-1, -1); + } + } + wlr_surface_for_each_surface(g_pXWaylandManager->getWindowSurface(pWindow), renderSurface, &renderdata); + g_pHyprOpenGL->m_RenderData.primarySurfaceUVTopLeft = Vector2D(-1, -1); + g_pHyprOpenGL->m_RenderData.primarySurfaceUVBottomRight = Vector2D(-1, -1); + if (pWindow->m_bIsX11) { if (pWindow->m_uSurface.xwayland->surface) { wlr_surface_for_each_surface(pWindow->m_uSurface.xwayland->surface, renderSurface, &renderdata); From 0ec903808b793c4e57ebe0b74ca8b80c22ee8b1a Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Wed, 22 Jun 2022 15:52:36 +0200 Subject: [PATCH 27/49] don't use sudo in make config --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index eb306932..bb753451 100644 --- a/Makefile +++ b/Makefile @@ -136,4 +136,4 @@ config: cd subprojects/wlroots && meson ./build --prefix=/usr --buildtype=release cd subprojects/wlroots && ninja -C build/ - cd subprojects/wlroots && sudo ninja -C build/ install + cd subprojects/wlroots && ninja -C build/ install From dbd060247edd9f18b0fe414721bd3a9a64ad1011 Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Wed, 22 Jun 2022 16:00:52 +0200 Subject: [PATCH 28/49] README better banner --- README.md | 3 +- assets/header.svg | 83 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 84 insertions(+), 2 deletions(-) create mode 100644 assets/header.svg diff --git a/README.md b/README.md index 68ff18d5..faf8acca 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@
-![Banner] +banner
@@ -151,7 +151,6 @@ Try it out and report bugs / suggestions! [Preview A]: https://i.imgur.com/NbrTnZH.png [Preview B]: https://i.imgur.com/ZA4Fa8R.png [Preview C]: https://i.imgur.com/BpXxM8H.png -[Banner]: https://raw.githubusercontent.com/vaxerski/Hyprland/main/assets/hyprland.png diff --git a/assets/header.svg b/assets/header.svg new file mode 100644 index 00000000..da64775f --- /dev/null +++ b/assets/header.svg @@ -0,0 +1,83 @@ + + +
+ + + +

Hyprland

+

ハイパーランド

+
+
+
+
From c2ff3d9e76301230b32ffc5f8f30bc5d6aa73625 Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Wed, 22 Jun 2022 16:01:51 +0200 Subject: [PATCH 29/49] more shadow for readme banner --- assets/header.svg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/header.svg b/assets/header.svg index da64775f..922313be 100644 --- a/assets/header.svg +++ b/assets/header.svg @@ -26,7 +26,7 @@ transform: translateY(-50%); z-index=2; text-align: center; - text-shadow: 0 0 1rem #22222277; + text-shadow: 0 0 1rem #222222ff; z-index: 2; } @@ -40,7 +40,7 @@ transform: translateY(-50%); z-index=2; text-align: center; - text-shadow: 0 0 1rem #22222277; + text-shadow: 0 0 0.5rem #222222ff; z-index: 1; } From 19d94b87ab639a0b22ea03809502316470de0f7a Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Wed, 22 Jun 2022 20:23:20 +0200 Subject: [PATCH 30/49] Added keybind submaps --- src/config/ConfigManager.cpp | 10 +++++++++- src/config/ConfigManager.hpp | 3 +++ src/managers/KeybindManager.cpp | 21 ++++++++++++++++++++- src/managers/KeybindManager.hpp | 4 ++++ 4 files changed, 36 insertions(+), 2 deletions(-) diff --git a/src/config/ConfigManager.cpp b/src/config/ConfigManager.cpp index d95f5a05..d742070a 100644 --- a/src/config/ConfigManager.cpp +++ b/src/config/ConfigManager.cpp @@ -450,7 +450,7 @@ void CConfigManager::handleBind(const std::string& command, const std::string& v } if (KEY != "") - g_pKeybindManager->addKeybind(SKeybind{KEY, MOD, HANDLER, COMMAND, locked}); + g_pKeybindManager->addKeybind(SKeybind{KEY, MOD, HANDLER, COMMAND, locked, m_szCurrentSubmap}); } void CConfigManager::handleUnbind(const std::string& command, const std::string& value) { @@ -507,6 +507,13 @@ void CConfigManager::handleDefaultWorkspace(const std::string& command, const st } } +void CConfigManager::handleSubmap(const std::string& command, const std::string& submap) { + if (submap == "reset") + m_szCurrentSubmap = ""; + else + m_szCurrentSubmap = submap; +} + void CConfigManager::handleSource(const std::string& command, const std::string& rawpath) { static const char* const ENVHOME = getenv("HOME"); @@ -587,6 +594,7 @@ std::string CConfigManager::parseKeyword(const std::string& COMMAND, const std:: else if (COMMAND == "bezier") handleBezier(COMMAND, VALUE); else if (COMMAND == "animation") handleAnimation(COMMAND, VALUE); else if (COMMAND == "source") handleSource(COMMAND, VALUE); + else if (COMMAND == "submap") handleSubmap(COMMAND, VALUE); else configSetValueSafe(currentCategory + (currentCategory == "" ? "" : ":") + COMMAND, VALUE); diff --git a/src/config/ConfigManager.hpp b/src/config/ConfigManager.hpp index 407ccce4..8c0bd857 100644 --- a/src/config/ConfigManager.hpp +++ b/src/config/ConfigManager.hpp @@ -88,6 +88,8 @@ private: std::string parseError = ""; // For storing a parse error to display later + std::string m_szCurrentSubmap = ""; // For storing the current keybind submap + bool isFirstLaunch = true; // For exec-once std::deque m_dMonitorRules; @@ -113,6 +115,7 @@ private: void handleBezier(const std::string&, const std::string&); void handleAnimation(const std::string&, const std::string&); void handleSource(const std::string&, const std::string&); + void handleSubmap(const std::string&, const std::string&); }; inline std::unique_ptr g_pConfigManager; \ No newline at end of file diff --git a/src/managers/KeybindManager.cpp b/src/managers/KeybindManager.cpp index 17c606b9..06075554 100644 --- a/src/managers/KeybindManager.cpp +++ b/src/managers/KeybindManager.cpp @@ -30,6 +30,7 @@ CKeybindManager::CKeybindManager() { m_mDispatchers["resizeactive"] = resizeActive; m_mDispatchers["cyclenext"] = circleNext; m_mDispatchers["focuswindowbyclass"] = focusWindowByClass; + m_mDispatchers["submap"] = setSubmap; } void CKeybindManager::addKeybind(SKeybind kb) { @@ -76,7 +77,7 @@ bool CKeybindManager::handleKeybinds(const uint32_t& modmask, const xkb_keysym_t Debug::log(LOG, "Keybind handling only locked (inhibitor)"); for (auto& k : m_lKeybinds) { - if (modmask != k.modmask || (g_pCompositor->m_sSeat.exclusiveClient && !k.locked)) + if (modmask != k.modmask || (g_pCompositor->m_sSeat.exclusiveClient && !k.locked) || k.submap != m_szCurrentSelectedSubmap) continue; // oMg such performance hit!!11! @@ -935,3 +936,21 @@ void CKeybindManager::focusWindowByClass(std::string clazz) { break; } } + +void CKeybindManager::setSubmap(std::string submap) { + if (submap == "reset" || submap == "") { + m_szCurrentSelectedSubmap = ""; + Debug::log(LOG, "Reset active submap to the default one."); + return; + } + + for (auto& k : g_pKeybindManager->m_lKeybinds) { + if (k.submap == submap) { + m_szCurrentSelectedSubmap = submap; + Debug::log(LOG, "Changed keybind submap to %s", submap.c_str()); + return; + } + } + + Debug::log(ERR, "Cannot set submap %s, submap doesn't exist (wasn't registered!)", submap.c_str()); +} diff --git a/src/managers/KeybindManager.hpp b/src/managers/KeybindManager.hpp index a3dbb8dd..4ebf94a3 100644 --- a/src/managers/KeybindManager.hpp +++ b/src/managers/KeybindManager.hpp @@ -12,6 +12,7 @@ struct SKeybind { std::string handler = ""; std::string arg = ""; bool locked = false; + std::string submap = ""; }; class CKeybindManager { @@ -29,6 +30,8 @@ public: private: std::list m_lKeybinds; + inline static std::string m_szCurrentSelectedSubmap = ""; + bool handleInternalKeybinds(xkb_keysym_t); // -------------- Dispatchers -------------- // @@ -57,6 +60,7 @@ private: static void resizeActive(std::string); static void circleNext(std::string); static void focusWindowByClass(std::string); + static void setSubmap(std::string); friend class CCompositor; }; From c21b062fe5703d0c10e99cded3bd337f4b421a8d Mon Sep 17 00:00:00 2001 From: Kainoa Kanter <44733677+ThatOneCalculator@users.noreply.github.com> Date: Wed, 22 Jun 2022 11:25:41 -0700 Subject: [PATCH 31/49] Delete aur directory --- aur/PKGBUILD | 72 ------------------------------------------- aur/PKGBUILD-bin | 56 --------------------------------- aur/PKGBUILD-git | 80 ------------------------------------------------ 3 files changed, 208 deletions(-) delete mode 100644 aur/PKGBUILD delete mode 100644 aur/PKGBUILD-bin delete mode 100644 aur/PKGBUILD-git diff --git a/aur/PKGBUILD b/aur/PKGBUILD deleted file mode 100644 index deab5a93..00000000 --- a/aur/PKGBUILD +++ /dev/null @@ -1,72 +0,0 @@ -# Maintainer: ThatOneCalculator - -_pkgname="hyprland" -pkgname="${_pkgname}" -pkgver="0.4.0beta" -pkgrel=2 -pkgdesc="A dynamic tiling Wayland compositor based on wlroots that doesn't sacrifice on its looks." -arch=(any) -url="https://github.com/vaxerski/Hyprland" -license=('BSD') -depends=( - libxcb - xcb-proto - xcb-util - xcb-util-keysyms - libxfixes - libx11 - libxcomposite - xorg-xinput - libxrender - pixman - wayland-protocols - cairo - pango - polkit - glslang - libinput - libxcb - libxkbcommon - opengl-driver - pixman - wayland - xcb-util-errors - xcb-util-renderutil - xcb-util-wm - seatd - vulkan-icd-loader - vulkan-validation-layers - xorg-xwayland) -makedepends=( - git - cmake - ninja - gcc - gdb - meson - vulkan-headers - wayland-protocols - xorgproto) -source=("${pkgname}-${pkgver}.tar.gz::https://github.com/vaxerski/hyprland/archive/v${pkgver}.tar.gz") -sha256sums=('5969e5f88426f90acdfb5958644733d8a9409389c2d345514c58a66cf74d2f91') -conflicts=("${_pkgname}") -provides=(hyprland) -options=(!makeflags !buildflags) - -build() { - cd "$srcdir/Hyprland-$pkgver" - git submodule update --init - make all -} - -package() { - cd "$srcdir/Hyprland-$pkgver" - mkdir -p "${pkgdir}/usr/share/wayland-sessions" - mkdir -p "${pkgdir}/usr/share/hyprland" - install -Dm755 build/Hyprland -t "${pkgdir}/usr/bin" - install -Dm755 hyprctl/hyprctl -t "${pkgdir}/usr/bin" - install -Dm644 assets/*.png -t "${pkgdir}/usr/share/hyprland" - install -Dm644 example/hyprland.desktop -t "${pkgdir}/usr/share/wayland-sessions" - install -Dm644 example/hyprland.conf -t "${pkgdir}/usr/share/hyprland" - install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/${_pkgname}" -} diff --git a/aur/PKGBUILD-bin b/aur/PKGBUILD-bin deleted file mode 100644 index 62c3a9fa..00000000 --- a/aur/PKGBUILD-bin +++ /dev/null @@ -1,56 +0,0 @@ -# Maintainer: ThatOneCalculator - -_pkgname="hyprland" -pkgname="${_pkgname}-bin" -pkgver="0.4.0beta" -pkgrel=2 -pkgdesc="A dynamic tiling Wayland compositor based on wlroots that doesn't sacrifice on its looks." -arch=(any) -url="https://github.com/vaxerski/Hyprland" -license=('BSD') -depends=( - libxcb - xcb-proto - xcb-util - xcb-util-keysyms - libxfixes - libx11 - libxcomposite - xorg-xinput - libxrender - pixman - wayland-protocols - cairo - pango - polkit - glslang - libinput - libxcb - libxkbcommon - opengl-driver - pixman - wayland - xcb-util-errors - xcb-util-renderutil - xcb-util-wm - seatd - vulkan-icd-loader - vulkan-validation-layers - xorg-xwayland) -source=("${pkgname}-${pkgver}.tar.gz::https://github.com/vaxerski/Hyprland/releases/download/v${pkgver}/v${pkgver}.tar.gz") -sha256sums=('5969e5f88426f90acdfb5958644733d8a9409389c2d345514c58a66cf74d2f91') -conflicts=("${_pkgname}") -provides=(hyprland) - -package() { - cd "$srcdir/Hyprland-$pkgver" - mkdir -p "${pkgdir}/usr/share/wayland-sessions" - mkdir -p "${pkgdir}/usr/share/hyprland" - install -Dm755 ./Hyprland -t "${pkgdir}/usr/bin" - install -Dm755 ./hyprctl -t "${pkgdir}/usr/bin" - install -Dm755 ./libwlroots.so.11032 -t "${pkgdir}/usr/lib" - install -Dm644 assets/*.png -t "${pkgdir}/usr/share/hyprland" - install -Dm644 example/hyprland.desktop -t "${pkgdir}/usr/share/wayland-sessions" - install -Dm644 example/hyprland.conf -t "${pkgdir}/usr/share/hyprland" - install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/${_pkgname}" -} diff --git a/aur/PKGBUILD-git b/aur/PKGBUILD-git deleted file mode 100644 index b6443a2c..00000000 --- a/aur/PKGBUILD-git +++ /dev/null @@ -1,80 +0,0 @@ -# Maintainer: ThatOneCalculator , Sander van Kasteel - -_pkgname="hyprland" -pkgname="${_pkgname}-git" -pkgver=r673.gb62e530 -pkgrel=2 -pkgdesc="A dynamic tiling Wayland compositor based on wlroots that doesn't sacrifice on its looks." -arch=(any) -url="https://github.com/vaxerski/Hyprland" -license=('BSD') -depends=( - libxcb - xcb-proto - xcb-util - xcb-util-keysyms - libxfixes - libx11 - libxcomposite - xorg-xinput - libxrender - pixman - wayland-protocols - cairo - pango - polkit - glslang - libinput - libxcb - libxkbcommon - opengl-driver - pixman - wayland - xcb-util-errors - xcb-util-renderutil - xcb-util-wm - seatd - vulkan-icd-loader - vulkan-validation-layers - xorg-xwayland) -makedepends=( - git - cmake - ninja - gcc - gdb - meson - vulkan-headers - wayland-protocols - xorgproto) -source=("${_pkgname}::git+https://github.com/vaxerski/Hyprland.git") -conflicts=("${_pkgname}") -provides=(hyprland) -sha256sums=('SKIP') -options=(!makeflags !buildflags) - -pkgver() { - cd "$_pkgname" - ( set -o pipefail - git describe --long 2>/dev/null | sed 's/\([^-]*-g\)/r\1/;s/-/./g' || - printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" - ) -} - -build() { - cd "${srcdir}/${_pkgname}" - git submodule update --init - make all -} - -package() { - cd "${srcdir}/${_pkgname}" - mkdir -p "${pkgdir}/usr/share/wayland-sessions" - mkdir -p "${pkgdir}/usr/share/hyprland" - install -Dm755 build/Hyprland -t "${pkgdir}/usr/bin" - install -Dm755 hyprctl/hyprctl -t "${pkgdir}/usr/bin" - install -Dm644 assets/*.png -t "${pkgdir}/usr/share/hyprland" - install -Dm644 example/hyprland.desktop -t "${pkgdir}/usr/share/wayland-sessions" - install -Dm644 example/hyprland.conf -t "${pkgdir}/usr/share/hyprland" - install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/${_pkgname}" -} From ff6e3a4d24cad1442ce7ffc82ba947508bd7ed19 Mon Sep 17 00:00:00 2001 From: Kainoa Kanter <44733677+ThatOneCalculator@users.noreply.github.com> Date: Wed, 22 Jun 2022 11:51:08 -0700 Subject: [PATCH 32/49] T1C: Releases pipeline --- .github/workflows/release.yaml | 51 ++++++++++++++++++++++++++++++++++ .gitmodules | 2 +- 2 files changed, 52 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/release.yaml diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml new file mode 100644 index 00000000..f548aec2 --- /dev/null +++ b/.github/workflows/release.yaml @@ -0,0 +1,51 @@ +name: Release + +on: + push: + tags: + - "v*.*.*" + +jobs: + meson-rl: + name: "Build and release Hyprland with Meson (Arch)" + runs-on: ubuntu-latest + container: + image: archlinux + steps: + - name: Download dependencies + run: | + sed -i 's/SigLevel = Required DatabaseOptional/SigLevel = Optional TrustAll/' /etc/pacman.conf + pacman --noconfirm --noprogressbar -Syyu + pacman --noconfirm --noprogressbar -Sy glslang libepoxy libfontenc libxcvt libxfont2 libxkbfile vulkan-headers vulkan-validation-layers xcb-util-errors xcb-util-renderutil xcb-util-wm xorg-fonts-encodings xorg-server-common xorg-setxkbmap xorg-xkbcomp xorg-xwayland git go clang lld libc++ pkgconf meson ninja wayland wayland-protocols libinput libxkbcommon pixman glm libdrm libglvnd cairo pango systemd scdoc base-devel seatd + - name: Checkout Hyprland + uses: actions/checkout@v3 + with: + submodules: true + - name: Configure + run: | + meson obj-x86_64-pc-linux-gnu \ + -Ddefault_library=static + - name: Compile + run: ninja -C obj-x86_64-pc-linux-gnu + - name: Build wlroots + run: | + sed -i '$ d' ./Makefile + make config + - name: Compress and package artifacts + run: | + mkdir x86_64-pc-linux-gnu + mkdir release-files + mkdir release-files/example + mkdir release-files/assets + DESTDIR=$PWD/x86_64-pc-linux-gnu meson install -C obj-x86_64-pc-linux-gnu --tags runtime + cp ./LICENSE release-files/ + cp subprojects/wlroots/build/libwlroots.so.11032 release-files/ + cp x86_64-pc-linux-gnu/usr/local/bin/* release-files/ + cp -r example/ release-files/ + cp -r assets/ release-files/ + tar -cvf Hyprland.tar.xz -C release-files + - name: Release + uses: softprops/action-gh-release@v1 + if: startsWith(github.ref, 'refs/tags/') + with: + files: Hyprland.tar.xz diff --git a/.gitmodules b/.gitmodules index 01c7b0d5..61cb4cef 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ [submodule "wlroots"] path = subprojects/wlroots - url = https://github.com/ThatOneCalculator/wlroots-mirror + url = https://gitlab.freedesktop.org/wlroots/wlroots.git From 606f4b07940fe66d072e3dbe899c4ba13e057a99 Mon Sep 17 00:00:00 2001 From: ThatOneCalculator Date: Wed, 22 Jun 2022 13:09:37 -0700 Subject: [PATCH 33/49] Fix release action --- .github/workflows/release.yaml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index f548aec2..f58937b4 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -7,7 +7,7 @@ on: jobs: meson-rl: - name: "Build and release Hyprland with Meson (Arch)" + name: "Release Hyprland with Meson (Arch)" runs-on: ubuntu-latest container: image: archlinux @@ -27,10 +27,6 @@ jobs: -Ddefault_library=static - name: Compile run: ninja -C obj-x86_64-pc-linux-gnu - - name: Build wlroots - run: | - sed -i '$ d' ./Makefile - make config - name: Compress and package artifacts run: | mkdir x86_64-pc-linux-gnu @@ -39,11 +35,10 @@ jobs: mkdir release-files/assets DESTDIR=$PWD/x86_64-pc-linux-gnu meson install -C obj-x86_64-pc-linux-gnu --tags runtime cp ./LICENSE release-files/ - cp subprojects/wlroots/build/libwlroots.so.11032 release-files/ cp x86_64-pc-linux-gnu/usr/local/bin/* release-files/ cp -r example/ release-files/ cp -r assets/ release-files/ - tar -cvf Hyprland.tar.xz -C release-files + tar -cvf Hyprland.tar.xz release-files - name: Release uses: softprops/action-gh-release@v1 if: startsWith(github.ref, 'refs/tags/') From 6eefd294af1d378c2a28ad65fb326974d8041a39 Mon Sep 17 00:00:00 2001 From: ThatOneCalculator Date: Wed, 22 Jun 2022 13:18:09 -0700 Subject: [PATCH 34/49] Upload release archive --- .github/workflows/release.yaml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index f58937b4..39cbf3e5 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -39,8 +39,13 @@ jobs: cp -r example/ release-files/ cp -r assets/ release-files/ tar -cvf Hyprland.tar.xz release-files - - name: Release - uses: softprops/action-gh-release@v1 - if: startsWith(github.ref, 'refs/tags/') + - name: Upload release archive + uses: actions/upload-artifact@v3 with: - files: Hyprland.tar.xz + name: Release archive (x86_64-pc-linux-gnu) + path: Hyprland.tar.xz + # - name: Release + # uses: softprops/action-gh-release@v1 + # if: startsWith(github.ref, 'refs/tags/') + # with: + # files: Hyprland.tar.xz From 11a5e6bcbfad9d35b843f928145ba698684b427d Mon Sep 17 00:00:00 2001 From: Mihai Fufezan Date: Wed, 22 Jun 2022 23:23:46 +0300 Subject: [PATCH 35/49] nix: revert to original wlroots repo --- flake.lock | 20 +++++++++++--------- flake.nix | 2 +- nix/update-inputs.sh | 2 +- 3 files changed, 13 insertions(+), 11 deletions(-) diff --git a/flake.lock b/flake.lock index 6f4cc7d0..71e49721 100644 --- a/flake.lock +++ b/flake.lock @@ -2,11 +2,11 @@ "nodes": { "nixpkgs": { "locked": { - "lastModified": 1655221618, - "narHash": "sha256-ht8HRFthDKzYt+il+sGgkBwrv+Ex2l8jdGVpsrPfFME=", + "lastModified": 1655807518, + "narHash": "sha256-5YV29Ry/DpAJc/0Hc/+ISVBAjwHpJvAkeKkcUG5lWsc=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "6616de389ed55fba6eeba60377fc04732d5a207c", + "rev": "a72d7811be1162dd6804c4e36e5402d76fb6e921", "type": "github" }, "original": { @@ -25,17 +25,19 @@ "wlroots": { "flake": false, "locked": { + "host": "gitlab.freedesktop.org", "lastModified": 1654618691, "narHash": "sha256-8y3u8CoigjoZOVbA2wCWBHlDNEakv0AVxU46/cOC00s=", - "owner": "ThatOneCalculator", - "repo": "wlroots-mirror", + "owner": "wlroots", + "repo": "wlroots", "rev": "b89ed9015c3fbe8d339e9d65cf70fdca6e5645bc", - "type": "github" + "type": "gitlab" }, "original": { - "owner": "ThatOneCalculator", - "repo": "wlroots-mirror", - "type": "github" + "host": "gitlab.freedesktop.org", + "owner": "wlroots", + "repo": "wlroots", + "type": "gitlab" } } }, diff --git a/flake.nix b/flake.nix index 9d5569d7..882569a8 100644 --- a/flake.nix +++ b/flake.nix @@ -4,7 +4,7 @@ inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; wlroots = { - url = "github:ThatOneCalculator/wlroots-mirror"; + url = "gitlab:wlroots/wlroots?host=gitlab.freedesktop.org"; flake = false; }; }; diff --git a/nix/update-inputs.sh b/nix/update-inputs.sh index 856dd43a..8c238222 100755 --- a/nix/update-inputs.sh +++ b/nix/update-inputs.sh @@ -10,7 +10,7 @@ if [ $SUB_REV != $CRT_REV ]; then nix flake lock --update-input nixpkgs # update wlroots to submodule revision - nix flake lock --override-input wlroots "github:ThatOneCalculator/wlroots-mirror/$SUB_REV" + nix flake lock --override-input wlroots "gitlab:wlroots/wlroots/$SUB_REV?host=gitlab.freedesktop.org" # remove "dirty" mark from lockfile jq < flake.lock 'del(.nodes.wlroots.original.rev)' | sponge flake.lock From 5614f28dfd11da7f19ed05a63510e65f1afb2f63 Mon Sep 17 00:00:00 2001 From: ThatOneCalculator Date: Wed, 22 Jun 2022 14:45:48 -0700 Subject: [PATCH 36/49] T1C: CMake Release Pipeline (CI) --- .github/workflows/ci.yaml | 48 +++++++++++++++++++------------- .github/workflows/release.yaml | 51 ---------------------------------- 2 files changed, 29 insertions(+), 70 deletions(-) delete mode 100644 .github/workflows/release.yaml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 8adef5c4..65320773 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -13,34 +13,44 @@ jobs: sed -i 's/SigLevel = Required DatabaseOptional/SigLevel = Optional TrustAll/' /etc/pacman.conf pacman --noconfirm --noprogressbar -Syyu pacman --noconfirm --noprogressbar -Sy glslang libepoxy libfontenc libxcvt libxfont2 libxkbfile vulkan-headers vulkan-validation-layers xcb-util-errors xcb-util-renderutil xcb-util-wm xorg-fonts-encodings xorg-server-common xorg-setxkbmap xorg-xkbcomp xorg-xwayland git cmake go clang lld libc++ pkgconf meson ninja wayland wayland-protocols libinput libxkbcommon pixman glm libdrm libglvnd cairo pango systemd scdoc base-devel seatd - - name: Set up user run: | useradd -m githubuser echo -e "root ALL=(ALL:ALL) ALL\ngithubuser ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers - - name: Build wlroots run: | su githubuser -c "cd ~ && git clone https://gitlab.freedesktop.org/wlroots/wlroots" su githubuser -c "cd ~/wlroots && meson build/ --prefix=/usr && ninja -C build/ && sudo ninja -C build/ install && cd .." - - name: Fix permissions for git run: | git config --global --add safe.directory /__w/Hyprland/Hyprland - - name: Checkout Hyprland uses: actions/checkout@v3 with: submodules: recursive - - - name: Build Hyprland With default settings + - name: Build Hyprland run: | git submodule sync --recursive && git submodule update --init --force --recursive make all - - - name: Build Hyprland with LEGACY_RENDERER + - name: Compress and package artifacts run: | - make legacyrenderer + mkdir x86_64-pc-linux-gnu + mkdir hyprland + mkdir hyprland/example + mkdir hyprland/assets + cp ./LICENSE hyprland/ + cp build/Hyprland hyprland/ + cp hyprctl/hyprctl hyprland/ + cp subprojects/wlroots/build/libwlroots.so.11032 release-files/ + cp x86_64-pc-linux-gnu/usr/local/bin/* hyprland/ + cp -r example/ hyprland/ + cp -r assets/ hyprland/ + tar -cvf Hyprland.tar.xz hyprland + - name: Release + uses: actions/upload-artifact@v3 + with: + name: Build archive + path: Hyprland.tar.xz meson: name: "Build Hyprland with Meson (Arch)" @@ -63,13 +73,13 @@ jobs: -Ddefault_library=static - name: Compile run: ninja -C obj-x86_64-pc-linux-gnu - - name: Compress artifacts - run: | - mkdir x86_64-pc-linux-gnu - DESTDIR=$PWD/x86_64-pc-linux-gnu meson install -C obj-x86_64-pc-linux-gnu --tags runtime - tar -cvf x86_64-pc-linux-gnu.tar.xz x86_64-pc-linux-gnu - - name: Upload artifacts - uses: actions/upload-artifact@v3 - with: - name: Build artifacts (x86_64-pc-linux-gnu) - path: x86_64-pc-linux-gnu.tar.xz +# - name: Compress artifacts +# run: | +# mkdir x86_64-pc-linux-gnu +# DESTDIR=$PWD/x86_64-pc-linux-gnu meson install -C obj-x86_64-pc-linux-gnu --tags runtime +# tar -cvf x86_64-pc-linux-gnu.tar.xz x86_64-pc-linux-gnu +# - name: Upload artifacts +# uses: actions/upload-artifact@v3 +# with: +# name: Build artifacts (x86_64-pc-linux-gnu) +# path: x86_64-pc-linux-gnu.tar.xz diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml deleted file mode 100644 index 39cbf3e5..00000000 --- a/.github/workflows/release.yaml +++ /dev/null @@ -1,51 +0,0 @@ -name: Release - -on: - push: - tags: - - "v*.*.*" - -jobs: - meson-rl: - name: "Release Hyprland with Meson (Arch)" - runs-on: ubuntu-latest - container: - image: archlinux - steps: - - name: Download dependencies - run: | - sed -i 's/SigLevel = Required DatabaseOptional/SigLevel = Optional TrustAll/' /etc/pacman.conf - pacman --noconfirm --noprogressbar -Syyu - pacman --noconfirm --noprogressbar -Sy glslang libepoxy libfontenc libxcvt libxfont2 libxkbfile vulkan-headers vulkan-validation-layers xcb-util-errors xcb-util-renderutil xcb-util-wm xorg-fonts-encodings xorg-server-common xorg-setxkbmap xorg-xkbcomp xorg-xwayland git go clang lld libc++ pkgconf meson ninja wayland wayland-protocols libinput libxkbcommon pixman glm libdrm libglvnd cairo pango systemd scdoc base-devel seatd - - name: Checkout Hyprland - uses: actions/checkout@v3 - with: - submodules: true - - name: Configure - run: | - meson obj-x86_64-pc-linux-gnu \ - -Ddefault_library=static - - name: Compile - run: ninja -C obj-x86_64-pc-linux-gnu - - name: Compress and package artifacts - run: | - mkdir x86_64-pc-linux-gnu - mkdir release-files - mkdir release-files/example - mkdir release-files/assets - DESTDIR=$PWD/x86_64-pc-linux-gnu meson install -C obj-x86_64-pc-linux-gnu --tags runtime - cp ./LICENSE release-files/ - cp x86_64-pc-linux-gnu/usr/local/bin/* release-files/ - cp -r example/ release-files/ - cp -r assets/ release-files/ - tar -cvf Hyprland.tar.xz release-files - - name: Upload release archive - uses: actions/upload-artifact@v3 - with: - name: Release archive (x86_64-pc-linux-gnu) - path: Hyprland.tar.xz - # - name: Release - # uses: softprops/action-gh-release@v1 - # if: startsWith(github.ref, 'refs/tags/') - # with: - # files: Hyprland.tar.xz From 2631489a183938b89a5d30bb13232bf2a4b14401 Mon Sep 17 00:00:00 2001 From: ThatOneCalculator Date: Wed, 22 Jun 2022 15:17:21 -0700 Subject: [PATCH 37/49] Syntax error in CI --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 65320773..ba8d2874 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -41,7 +41,7 @@ jobs: cp ./LICENSE hyprland/ cp build/Hyprland hyprland/ cp hyprctl/hyprctl hyprland/ - cp subprojects/wlroots/build/libwlroots.so.11032 release-files/ + cp subprojects/wlroots/build/libwlroots.so.11032 hyprland/ cp x86_64-pc-linux-gnu/usr/local/bin/* hyprland/ cp -r example/ hyprland/ cp -r assets/ hyprland/ From 64f6818a134057b84eb1aac473567b90a75d75d0 Mon Sep 17 00:00:00 2001 From: Kainoa Kanter <44733677+ThatOneCalculator@users.noreply.github.com> Date: Wed, 22 Jun 2022 15:22:22 -0700 Subject: [PATCH 38/49] :finnadie: https://www.youtube.com/watch?v=_asNhzXq72w --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ba8d2874..77c9c48b 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -42,7 +42,7 @@ jobs: cp build/Hyprland hyprland/ cp hyprctl/hyprctl hyprland/ cp subprojects/wlroots/build/libwlroots.so.11032 hyprland/ - cp x86_64-pc-linux-gnu/usr/local/bin/* hyprland/ + cp build/Hyprland hyprland/ cp -r example/ hyprland/ cp -r assets/ hyprland/ tar -cvf Hyprland.tar.xz hyprland From f9745b0d3b85c447c3c8d3421db638f1087a1e91 Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Thu, 23 Jun 2022 09:56:16 +0200 Subject: [PATCH 39/49] allow getWindowInDirection to scan other mons --- src/Compositor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Compositor.cpp b/src/Compositor.cpp index a5339948..1861e5aa 100644 --- a/src/Compositor.cpp +++ b/src/Compositor.cpp @@ -777,7 +777,7 @@ CWindow* CCompositor::getWindowInDirection(CWindow* pWindow, char dir) { CWindow* longestIntersectWindow = nullptr; for (auto& w : m_lWindows) { - if (&w == pWindow || !windowValidMapped(&w) || w.m_bIsFloating || w.m_iWorkspaceID != pWindow->m_iWorkspaceID) + if (&w == pWindow || !windowValidMapped(&w) || w.m_bIsFloating || !isWorkspaceVisible(w.m_iWorkspaceID)) continue; const auto POSB = w.m_vPosition; From 31dc70a41a605b09e31bb7394fc0e339a1b82418 Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Thu, 23 Jun 2022 10:14:59 +0200 Subject: [PATCH 40/49] Added exact to resizeActive and added moveactive --- src/layout/DwindleLayout.cpp | 22 +++++++-- src/layout/DwindleLayout.hpp | 1 + src/layout/IHyprLayout.hpp | 6 +++ src/managers/KeybindManager.cpp | 81 +++++++++++++++++++++++++++++++++ src/managers/KeybindManager.hpp | 1 + 5 files changed, 106 insertions(+), 5 deletions(-) diff --git a/src/layout/DwindleLayout.cpp b/src/layout/DwindleLayout.cpp index ce63ace6..ed8da473 100644 --- a/src/layout/DwindleLayout.cpp +++ b/src/layout/DwindleLayout.cpp @@ -545,11 +545,7 @@ void CHyprDwindleLayout::resizeActiveWindow(const Vector2D& pixResize, CWindow* const auto PNODE = getNodeFromWindow(PWINDOW); if (!PNODE) { - PWINDOW->m_vRealSize.setValueAndWarp(PWINDOW->m_vRealSize.goalv() + pixResize); - PWINDOW->m_vRealSize.setValueAndWarp(Vector2D(std::clamp(PWINDOW->m_vRealSize.vec().x, (double)20, (double)999999), std::clamp(PWINDOW->m_vRealSize.vec().y, (double)20, (double)999999))); - - g_pXWaylandManager->setWindowSize(PWINDOW, PWINDOW->m_vRealSize.goalv()); - + PWINDOW->m_vRealSize = Vector2D(std::clamp((PWINDOW->m_vRealSize.goalv() + pixResize).x, (double)20, (double)999999), std::clamp((PWINDOW->m_vRealSize.goalv() + pixResize).y, (double)20, (double)999999)); return; } @@ -992,4 +988,20 @@ void CHyprDwindleLayout::toggleSplit(CWindow* pWindow) { std::string CHyprDwindleLayout::getLayoutName() { return "dwindle"; +} + +void CHyprDwindleLayout::moveActiveWindow(const Vector2D& delta, CWindow* pWindow) { + const auto PWINDOW = pWindow ? pWindow : g_pCompositor->m_pLastWindow; + + if (!g_pCompositor->windowValidMapped(PWINDOW)) + return; + + if (!PWINDOW->m_bIsFloating) { + Debug::log(LOG, "Dwindle cannot move a tiled window in moveActiveWindow!"); + return; + } + + PWINDOW->m_vRealPosition = PWINDOW->m_vRealPosition.goalv() + delta; + + g_pHyprRenderer->damageWindow(PWINDOW); } \ No newline at end of file diff --git a/src/layout/DwindleLayout.hpp b/src/layout/DwindleLayout.hpp index 766e9f6a..55c123ae 100644 --- a/src/layout/DwindleLayout.hpp +++ b/src/layout/DwindleLayout.hpp @@ -49,6 +49,7 @@ public: virtual void changeWindowFloatingMode(CWindow*); virtual void onBeginDragWindow(); virtual void resizeActiveWindow(const Vector2D&, CWindow* pWindow = nullptr); + virtual void moveActiveWindow(const Vector2D&, CWindow* pWindow = nullptr); virtual void onEndDragWindow(); virtual void onMouseMove(const Vector2D&); virtual void onWindowCreatedFloating(CWindow*); diff --git a/src/layout/IHyprLayout.hpp b/src/layout/IHyprLayout.hpp index 8052fe42..a7268301 100644 --- a/src/layout/IHyprLayout.hpp +++ b/src/layout/IHyprLayout.hpp @@ -55,6 +55,12 @@ public: Optional pWindow for a specific window */ virtual void resizeActiveWindow(const Vector2D&, CWindow* pWindow = nullptr) = 0; + /* + Called when a user requests a move of the current window by a vec + Vector2D holds pixel values + Optional pWindow for a specific window + */ + virtual void moveActiveWindow(const Vector2D&, CWindow* pWindow = nullptr) = 0; /* Called when a window is ended being dragged (mouse up) diff --git a/src/managers/KeybindManager.cpp b/src/managers/KeybindManager.cpp index 06075554..85fb3919 100644 --- a/src/managers/KeybindManager.cpp +++ b/src/managers/KeybindManager.cpp @@ -28,6 +28,7 @@ CKeybindManager::CKeybindManager() { m_mDispatchers["togglespecialworkspace"] = toggleSpecialWorkspace; m_mDispatchers["forcerendererreload"] = forceRendererReload; m_mDispatchers["resizeactive"] = resizeActive; + m_mDispatchers["moveactive"] = moveActive; m_mDispatchers["cyclenext"] = circleNext; m_mDispatchers["focuswindowbyclass"] = focusWindowByClass; m_mDispatchers["submap"] = setSubmap; @@ -892,6 +893,37 @@ void CKeybindManager::resizeActive(std::string args) { std::string x = args.substr(0, args.find_first_of(' ')); std::string y = args.substr(args.find_first_of(' ') + 1); + if (x == "exact") { + std::string newX = y.substr(0, y.find_first_of(' ')); + std::string newY = y.substr(y.find_first_of(' ') + 1); + + if (!isNumber(newX) || !isNumber(newY)) { + Debug::log(ERR, "resizeTiledWindow: exact args not numbers"); + return; + } + + const int X = std::stoi(newX); + const int Y = std::stoi(newY); + + if (X < 10 || Y < 10) { + Debug::log(ERR, "resizeTiledWindow: exact args cannot be < 10"); + return; + } + + // calc the delta + if (!g_pCompositor->windowValidMapped(g_pCompositor->m_pLastWindow)) + return; // ignore + + const auto PWINDOW = g_pCompositor->m_pLastWindow; + + const int DX = X - PWINDOW->m_vRealSize.goalv().x; + const int DY = Y - PWINDOW->m_vRealSize.goalv().y; + + g_pLayoutManager->getCurrentLayout()->resizeActiveWindow(Vector2D(DX, DY)); + + return; + } + if (!isNumber(x) || !isNumber(y)) { Debug::log(ERR, "resizeTiledWindow: args not numbers"); return; @@ -903,6 +935,55 @@ void CKeybindManager::resizeActive(std::string args) { g_pLayoutManager->getCurrentLayout()->resizeActiveWindow(Vector2D(X, Y)); } +void CKeybindManager::moveActive(std::string args) { + if (args.find_first_of(' ') == std::string::npos) + return; + + std::string x = args.substr(0, args.find_first_of(' ')); + std::string y = args.substr(args.find_first_of(' ') + 1); + + if (x == "exact") { + std::string newX = y.substr(0, y.find_first_of(' ')); + std::string newY = y.substr(y.find_first_of(' ') + 1); + + if (!isNumber(newX) || !isNumber(newY)) { + Debug::log(ERR, "moveActive: exact args not numbers"); + return; + } + + const int X = std::stoi(newX); + const int Y = std::stoi(newY); + + if (X < 10 || Y < 10) { + Debug::log(ERR, "moveActive: exact args cannot be < 10"); + return; + } + + // calc the delta + if (!g_pCompositor->windowValidMapped(g_pCompositor->m_pLastWindow)) + return; // ignore + + const auto PWINDOW = g_pCompositor->m_pLastWindow; + + const int DX = X - PWINDOW->m_vRealPosition.goalv().x; + const int DY = Y - PWINDOW->m_vRealPosition.goalv().y; + + g_pLayoutManager->getCurrentLayout()->moveActiveWindow(Vector2D(DX, DY)); + + return; + } + + if (!isNumber(x) || !isNumber(y)) { + Debug::log(ERR, "moveActive: args not numbers"); + return; + } + + const int X = std::stoi(x); + const int Y = std::stoi(y); + + g_pLayoutManager->getCurrentLayout()->moveActiveWindow(Vector2D(X, Y)); +} + void CKeybindManager::circleNext(std::string) { if (!g_pCompositor->windowValidMapped(g_pCompositor->m_pLastWindow)) return; diff --git a/src/managers/KeybindManager.hpp b/src/managers/KeybindManager.hpp index 4ebf94a3..c9132a11 100644 --- a/src/managers/KeybindManager.hpp +++ b/src/managers/KeybindManager.hpp @@ -58,6 +58,7 @@ private: static void toggleSpecialWorkspace(std::string); static void forceRendererReload(std::string); static void resizeActive(std::string); + static void moveActive(std::string); static void circleNext(std::string); static void focusWindowByClass(std::string); static void setSubmap(std::string); From 4945c5887d516fafc84d53e041b2aa901c7c94ee Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Thu, 23 Jun 2022 15:48:31 +0200 Subject: [PATCH 41/49] reload all keyboards and not only the active --- src/managers/input/InputManager.cpp | 38 +++++++++++++---------------- src/managers/input/InputManager.hpp | 4 ++- 2 files changed, 20 insertions(+), 22 deletions(-) diff --git a/src/managers/input/InputManager.cpp b/src/managers/input/InputManager.cpp index 6bc59472..fb4b50ef 100644 --- a/src/managers/input/InputManager.cpp +++ b/src/managers/input/InputManager.cpp @@ -274,20 +274,26 @@ void CInputManager::newKeyboard(wlr_input_device* keyboard) { } void CInputManager::setKeyboardLayout() { + for (auto& k : m_lKeyboards) + applyConfigToKeyboard(&k); +} - const auto RULES = g_pConfigManager->getString("input:kb_rules"); - const auto MODEL = g_pConfigManager->getString("input:kb_model"); - const auto LAYOUT = g_pConfigManager->getString("input:kb_layout"); - const auto VARIANT = g_pConfigManager->getString("input:kb_variant"); - const auto OPTIONS = g_pConfigManager->getString("input:kb_options"); +void CInputManager::applyConfigToKeyboard(SKeyboard* pKeyboard) { + + ASSERT(pKeyboard); + + const auto RULES = g_pConfigManager->getString("input:kb_rules"); + const auto MODEL = g_pConfigManager->getString("input:kb_model"); + const auto LAYOUT = g_pConfigManager->getString("input:kb_layout"); + const auto VARIANT = g_pConfigManager->getString("input:kb_variant"); + const auto OPTIONS = g_pConfigManager->getString("input:kb_options"); xkb_rule_names rules = { .rules = RULES.c_str(), .model = MODEL.c_str(), .layout = LAYOUT.c_str(), .variant = VARIANT.c_str(), - .options = OPTIONS.c_str() - }; + .options = OPTIONS.c_str()}; const auto CONTEXT = xkb_context_new(XKB_CONTEXT_NO_FLAGS); const auto KEYMAP = xkb_keymap_new_from_names(CONTEXT, &rules, XKB_KEYMAP_COMPILE_NO_FLAGS); @@ -298,17 +304,7 @@ void CInputManager::setKeyboardLayout() { return; } - const auto PLASTKEEB = m_pActiveKeyboard->keyboard->keyboard; - - if (!PLASTKEEB) { - xkb_keymap_unref(KEYMAP); - xkb_context_unref(CONTEXT); - - Debug::log(ERR, "No Seat Keyboard???"); - return; - } - - wlr_keyboard_set_keymap(PLASTKEEB, KEYMAP); + wlr_keyboard_set_keymap(pKeyboard->keyboard->keyboard, KEYMAP); wlr_keyboard_modifiers wlrMods = {0}; @@ -321,14 +317,14 @@ void CInputManager::setKeyboardLayout() { } if (wlrMods.locked != 0) { - wlr_keyboard_notify_modifiers(g_pInputManager->m_pActiveKeyboard->keyboard->keyboard, 0, 0, wlrMods.locked, 0); + wlr_keyboard_notify_modifiers(pKeyboard->keyboard->keyboard, 0, 0, wlrMods.locked, 0); } xkb_keymap_unref(KEYMAP); xkb_context_unref(CONTEXT); - Debug::log(LOG, "Set the keyboard layout to %s and variant to %s", rules.layout, rules.variant); -} + Debug::log(LOG, "Set the keyboard layout to %s and variant to %s for keyboard \"%s\"", rules.layout, rules.variant, pKeyboard->keyboard->name); +} void CInputManager::newMouse(wlr_input_device* mouse) { m_lMice.emplace_back(); diff --git a/src/managers/input/InputManager.hpp b/src/managers/input/InputManager.hpp index 18d9857e..ef962bdd 100644 --- a/src/managers/input/InputManager.hpp +++ b/src/managers/input/InputManager.hpp @@ -52,13 +52,15 @@ public: SKeyboard* m_pActiveKeyboard = nullptr; - private: +private: uint32_t m_uiCapabilities = 0; void mouseMoveUnified(uint32_t, bool refocus = false); STabletTool* ensureTabletToolPresent(wlr_tablet_tool*); + + void applyConfigToKeyboard(SKeyboard*); }; inline std::unique_ptr g_pInputManager; \ No newline at end of file From b25bafda0834f58acf50f472bfa0534f5714f30a Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Thu, 23 Jun 2022 18:52:05 +0200 Subject: [PATCH 42/49] guard null context in applyConfigToKeyboard --- src/managers/input/InputManager.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/managers/input/InputManager.cpp b/src/managers/input/InputManager.cpp index fb4b50ef..79a13369 100644 --- a/src/managers/input/InputManager.cpp +++ b/src/managers/input/InputManager.cpp @@ -296,6 +296,12 @@ void CInputManager::applyConfigToKeyboard(SKeyboard* pKeyboard) { .options = OPTIONS.c_str()}; const auto CONTEXT = xkb_context_new(XKB_CONTEXT_NO_FLAGS); + + if (!CONTEXT) { + Debug::log(ERR, "applyConfigToKeyboard: CONTEXT null??"); + return; + } + const auto KEYMAP = xkb_keymap_new_from_names(CONTEXT, &rules, XKB_KEYMAP_COMPILE_NO_FLAGS); if (!KEYMAP) { From ae6007522600c969b5fe45b3888be5f12f343d1c Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Thu, 23 Jun 2022 19:32:00 +0200 Subject: [PATCH 43/49] fix calculating damage offset for oversized popups --- src/events/Popups.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/events/Popups.cpp b/src/events/Popups.cpp index 0b075295..7e619632 100644 --- a/src/events/Popups.cpp +++ b/src/events/Popups.cpp @@ -26,6 +26,14 @@ void addPopupGlobalCoords(void* pPopup, int* x, int* y) { px += curPopup->popup->current.geometry.x; py += curPopup->popup->current.geometry.y; + // fix oversized fucking popups + // kill me + if (curPopup->pSurfaceTree && curPopup->pSurfaceTree->pSurface && !curPopup->parentPopup) { + const auto EXTENTSSURFACE = pixman_region32_extents(&curPopup->pSurfaceTree->pSurface->input_region); + px -= EXTENTSSURFACE->x1; + py -= EXTENTSSURFACE->y1; + } + if (curPopup->parentPopup) { curPopup = curPopup->parentPopup; } else { From f76b9c485246849bc3af838503fedbadf68023f5 Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Thu, 23 Jun 2022 20:39:48 +0200 Subject: [PATCH 44/49] fix: ignore reserved in getWindowInDirection --- src/Compositor.cpp | 14 ++++++++++---- src/Window.cpp | 25 +++++++++++++++++++++++++ src/Window.hpp | 1 + 3 files changed, 36 insertions(+), 4 deletions(-) diff --git a/src/Compositor.cpp b/src/Compositor.cpp index 1861e5aa..be94c093 100644 --- a/src/Compositor.cpp +++ b/src/Compositor.cpp @@ -770,8 +770,11 @@ void CCompositor::cleanupFadingOut() { } CWindow* CCompositor::getWindowInDirection(CWindow* pWindow, char dir) { - const auto POSA = pWindow->m_vPosition; - const auto SIZEA = pWindow->m_vSize; + + const auto WINDOWIDEALBB = pWindow->getWindowIdealBoundingBoxIgnoreReserved(); + + const auto POSA = Vector2D(WINDOWIDEALBB.x, WINDOWIDEALBB.y); + const auto SIZEA = Vector2D(WINDOWIDEALBB.width, WINDOWIDEALBB.height); auto longestIntersect = -1; CWindow* longestIntersectWindow = nullptr; @@ -780,8 +783,11 @@ CWindow* CCompositor::getWindowInDirection(CWindow* pWindow, char dir) { if (&w == pWindow || !windowValidMapped(&w) || w.m_bIsFloating || !isWorkspaceVisible(w.m_iWorkspaceID)) continue; - const auto POSB = w.m_vPosition; - const auto SIZEB = w.m_vSize; + const auto BWINDOWIDEALBB = w.getWindowIdealBoundingBoxIgnoreReserved(); + + const auto POSB = Vector2D(BWINDOWIDEALBB.x, BWINDOWIDEALBB.y); + const auto SIZEB = Vector2D(BWINDOWIDEALBB.width, BWINDOWIDEALBB.height); + switch (dir) { case 'l': if (STICKS(POSA.x, POSB.x + SIZEB.x)) { diff --git a/src/Window.cpp b/src/Window.cpp index 2182d47c..8476360a 100644 --- a/src/Window.cpp +++ b/src/Window.cpp @@ -43,4 +43,29 @@ wlr_box CWindow::getFullWindowBoundingBox() { m_vRealSize.vec().y + maxExtents.topLeft.y + maxExtents.bottomRight.y}; return finalBox; +} + +wlr_box CWindow::getWindowIdealBoundingBoxIgnoreReserved() { + + const auto PMONITOR = g_pCompositor->getMonitorFromID(m_iMonitorID); + + auto POS = m_vPosition; + auto SIZE = m_vSize; + + if (DELTALESSTHAN(POS.y - PMONITOR->vecPosition.y, PMONITOR->vecReservedTopLeft.y, 1)) { + POS.y = PMONITOR->vecPosition.y; + SIZE.y += PMONITOR->vecReservedTopLeft.y; + } + if (DELTALESSTHAN(POS.x - PMONITOR->vecPosition.x, PMONITOR->vecReservedTopLeft.x, 1)) { + POS.x = PMONITOR->vecPosition.x; + SIZE.x += PMONITOR->vecReservedTopLeft.x; + } + if (DELTALESSTHAN(POS.x + SIZE.x - PMONITOR->vecPosition.x, PMONITOR->vecSize.x - PMONITOR->vecReservedBottomRight.x, 1)) { + SIZE.x += PMONITOR->vecReservedBottomRight.x; + } + if (DELTALESSTHAN(POS.y + SIZE.y - PMONITOR->vecPosition.y, PMONITOR->vecSize.y - PMONITOR->vecReservedBottomRight.y, 1)) { + SIZE.y += PMONITOR->vecReservedBottomRight.y; + } + + return wlr_box{(int)POS.x, (int)POS.y, (int)SIZE.x, (int)SIZE.y}; } \ No newline at end of file diff --git a/src/Window.hpp b/src/Window.hpp index 7d357292..06140303 100644 --- a/src/Window.hpp +++ b/src/Window.hpp @@ -108,5 +108,6 @@ public: // methods wlr_box getFullWindowBoundingBox(); + wlr_box getWindowIdealBoundingBoxIgnoreReserved(); }; \ No newline at end of file From e4e323a0df852305cd5ee0922e2142319dc92c1f Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Thu, 23 Jun 2022 20:51:01 +0200 Subject: [PATCH 45/49] dwindle: disallow swaps between workspaces --- src/layout/DwindleLayout.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/layout/DwindleLayout.cpp b/src/layout/DwindleLayout.cpp index ed8da473..fb966153 100644 --- a/src/layout/DwindleLayout.cpp +++ b/src/layout/DwindleLayout.cpp @@ -902,6 +902,11 @@ void CHyprDwindleLayout::switchWindows(CWindow* pWindow, CWindow* pWindow2) { if (!PNODE2 || !PNODE) return; + if (PNODE->workspaceID != PNODE2->workspaceID) { + Debug::log(ERR, "Dwindle: Rejecting a swap between workspaces"); + return; + } + // we will not delete the nodes, just fix the tree if (PNODE2->pParent == PNODE->pParent) { const auto PPARENT = PNODE->pParent; From 218675246f1a6b2292b8d4fb5672ba710e47ec9a Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Thu, 23 Jun 2022 21:46:36 +0200 Subject: [PATCH 46/49] guard pkeyboard in onMouseButton --- src/managers/input/InputManager.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/managers/input/InputManager.cpp b/src/managers/input/InputManager.cpp index 79a13369..46d6338e 100644 --- a/src/managers/input/InputManager.cpp +++ b/src/managers/input/InputManager.cpp @@ -207,6 +207,11 @@ void CInputManager::onMouseButton(wlr_pointer_button_event* e) { const auto PKEYBOARD = wlr_seat_get_keyboard(g_pCompositor->m_sSeat.seat); + if (!PKEYBOARD) { // ??? + Debug::log(ERR, "No active keyboard in onMouseButton??"); + return; + } + switch (e->state) { case WLR_BUTTON_PRESSED: if (!g_pCompositor->m_sSeat.mouse->currentConstraint) From 81e36298bf23045b553b51201ace31d1a403ede2 Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Fri, 24 Jun 2022 15:52:42 +0200 Subject: [PATCH 47/49] dont scale thick in border --- src/render/OpenGL.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/render/OpenGL.cpp b/src/render/OpenGL.cpp index c503cb64..bc5d80ca 100644 --- a/src/render/OpenGL.cpp +++ b/src/render/OpenGL.cpp @@ -683,7 +683,7 @@ void CHyprOpenGLImpl::renderBorder(wlr_box* box, const CColor& col, int thick, i box->width += 2 * thick; box->height += 2 * thick; - round += thick * m_RenderData.pMonitor->scale; // cuz yeah + round += thick; // cuz yeah // only draw on non-stencild. glStencilFunc(GL_NOTEQUAL, 1, -1); From 3e8842e1f8d50263d56b0df3ae37708b4be428d6 Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Fri, 24 Jun 2022 15:59:59 +0200 Subject: [PATCH 48/49] fix janky pixel maths with scaled textures --- src/render/OpenGL.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/render/OpenGL.cpp b/src/render/OpenGL.cpp index bc5d80ca..85dd29be 100644 --- a/src/render/OpenGL.cpp +++ b/src/render/OpenGL.cpp @@ -378,8 +378,8 @@ void CHyprOpenGLImpl::renderTextureInternalWithDamage(const CTexture& tex, wlr_b // so we need to do some maf const auto TOPLEFT = Vector2D(round, round); - const auto BOTTOMRIGHT = Vector2D(tex.m_vSize.x - round, tex.m_vSize.y - round); - const auto FULLSIZE = tex.m_vSize; + const auto BOTTOMRIGHT = Vector2D(pBox->width - round, pBox->height - round); + const auto FULLSIZE = Vector2D(pBox->width, pBox->height); static auto *const PMULTISAMPLEEDGES = &g_pConfigManager->getConfigValuePtr("decoration:multisample_edges")->intValue; // Rounded corners From e7467c60f9fe9e66c74dd8dc7c752a73ed4bc4db Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Fri, 24 Jun 2022 16:25:57 +0200 Subject: [PATCH 49/49] fix windowrule regex logic and add title: --- src/config/ConfigManager.cpp | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/src/config/ConfigManager.cpp b/src/config/ConfigManager.cpp index d742070a..c3621847 100644 --- a/src/config/ConfigManager.cpp +++ b/src/config/ConfigManager.cpp @@ -911,15 +911,26 @@ std::vector CConfigManager::getMatchingRules(CWindow* pWindow) { std::string title = g_pXWaylandManager->getTitle(pWindow); std::string appidclass = g_pXWaylandManager->getAppIDClass(pWindow); + Debug::log(LOG, "Searching for matching rules for %s (title: %s)", appidclass.c_str(), title.c_str()); + for (auto& rule : m_dWindowRules) { // check if we have a matching rule try { - std::regex classCheck(rule.szValue); + if (rule.szValue.find("title:") == 0) { + // we have a title rule. + std::regex RULECHECK(rule.szValue.substr(6)); - if (!std::regex_search(title, classCheck) && !std::regex_search(appidclass, classCheck)) - continue; + if (!std::regex_search(title, RULECHECK)) + continue; + } else { + std::regex classCheck(rule.szValue); + + if (!std::regex_search(appidclass, classCheck)) + continue; + } } catch (...) { Debug::log(ERR, "Regex error at %s", rule.szValue.c_str()); + continue; } // applies. Read the rule and behave accordingly