commit 884e42d5f8705b74841fc990868ffc0cd8d95309 Author: Igor Drożniak Date: Thu Oct 3 19:13:57 2019 +0200 Initial Commit. diff --git a/.config/dconf/user b/.config/dconf/user new file mode 100644 index 0000000..8e6f915 Binary files /dev/null and b/.config/dconf/user differ diff --git a/.config/dmenu b/.config/dmenu new file mode 160000 index 0000000..2e0bad4 --- /dev/null +++ b/.config/dmenu @@ -0,0 +1 @@ +Subproject commit 2e0bad4e47444c90873ff73ac14b7adfb0bfa556 diff --git a/.config/dunst/dunstrc b/.config/dunst/dunstrc new file mode 100644 index 0000000..a9c19c4 --- /dev/null +++ b/.config/dunst/dunstrc @@ -0,0 +1,237 @@ +[global] + ### Display ### + + # Which monitor should the notifications be displayed on + monitor = 0 + + # Display notification on focused monitor. Possible modes are: + # mouse: follow mouse pointer + # keyboard: follow window with keyboard focus + # none: don't follow anything + # + # "keyboard" needs a window manager that exports the + # _NET_ACTIVE_WINDOW property. + # This should be the case for almost all modern window managers. + # + # If this option is set to mouse or keyboard, the monitor option + # will be ignored. + follow = keyboard + + # The geometry of the window: + # [{width}]x{height}[+/-{x}+/-{y}] + # The geometry of the message window. + # The height is measured in number of notifications everything else + # in pixels. If the width is omitted but the height is given + # ("-geometry x2"), the message window expands over the whole screen + # (dmenu-like). If width is 0, the window expands to the longest + # message displayed. A positive x is measured from the left, a + # negative from the right side of the screen. Y is measured from + # the top and down respectively. + # The width can be negative. In this case the actual width is the + # screen width minus the width defined in within the geometry option. + geometry = "435x5-0+0" + + # Show how many messages are currently hidden (because of geometry) + indicate_hidden = yes + + # Shrink window if it's smaller than the width. Will be ignored if + # width is 0. + shrink = no + + # The transparency of the window. Range: [0; 100]. + # This option will only work if a compositing window manager is + # present (e.g. xcompmgr, compiz, etc.). + transparency = 0 + + # The height of the entire notification. If the height is smaller + # than the font height and padding combined, it will be raised + # to the font height and padding. + notification_height = 0 + + # Draw a line of "separator_height" pixel height between two + # notifications. + # Set to 0 to disable. + separator_height = 0 + + # Padding between text and separator + padding = 6 + + # Horizontal padding + horizontal_padding = 6 + + # Defines width in pixels of frame around the notification window. + # Set to 0 to disable. + frame_width = 2 + + # Define a color for the separator. + # possible values are: + # * auto: dunst tries to find a color fitting to the background; + # * foreground: use the same color as the foreground; + # * frame: use the same color as the frame; + # * anything else will be interpreted as a X color. + separator_color = frame + + # Sort messages by urgency + sort = yes + + # Don't remove messages, if the user is idle (no mouse or keyboard input) + # for longer than idle_threshold seconds. + # Set to 0 to disable. + # Transient notifications ignore this setting. + idle_threshold = 0 + + ### Text ### + + font = DejaVu Sans Mono 11 + + # The spacing between lines. If the height is smaller than the + # font height, it will get raised to the font height. + line_height = 0 + + # Possible values are: + # full: Allow a small subset of html markup in notifications: + # bold + # italic + # strikethrough + # underline + # + # For a complete reference see + # . + # + # strip: This setting is provided for compatibility with some broken + # clients that send markup even though it's not enabled on the + # server. Dunst will try to strip the markup but the parsing is + # simplistic so using this option outside of matching rules for + # specific applications *IS GREATLY DISCOURAGED*. + # + # no: Disable markup parsing, incoming notifications will be treated as + # plain text. Dunst will not advertise that it has the body-markup + # capability if this is set as a global setting. + # + # It's important to note that markup inside the format option will be parsed + # regardless of what this is set to. + markup = full + + # The format of the message. Possible variables are: + # %a appname + # %s summary + # %b body + # %i iconname (including its path) + # %I iconname (without its path) + # %p progress value if set ([ 0%] to [100%]) or nothing + # %n progress value if set without any extra characters + # %% Literal % + # Markup is allowed + format = "%s\n%b" + + # Alignment of message text. + # Possible values are "left", "center" and "right". + alignment = left + + # Show age of message if message is older than show_age_threshold + # seconds. + # Set to -1 to disable. + show_age_threshold = 60 + + # Split notifications into multiple lines if they don't fit into + # geometry. + word_wrap = yes + + # When word_wrap is set to no, specify where to ellipsize long lines. + # Possible values are "start", "middle" and "end". + ellipsize = middle + + # Ignore newlines '\n' in notifications + ignore_newline = no + + # Merge multiple notifications with the same content + stack_duplicates = true + + # Hide the count of merged notifications with the same content + hide_duplicate_count = false + + # Display indicators for URLs (U) and actions (A) + show_indicators = no + + ### Icons ### + + # Align icons left/right/off + icon_position = left + + # Scale larger icons down to this size, set to 0 to disable + max_icon_size = 32 + + # Paths to default icons + #icon_path = /usr/share/icons/gnome/16x16/status/:/usr/share/icons/gnome/16x16/devices/ + icon_path = /kthxbye + + ### History ### + + # Should a notification popped up from history be sticky or timeout + # as if it would normally do + sticky_history = yes + + # Maximum amount of notifications kept in history + history_length = 20 + + ### Misc/Advanced ### + + # dmenu or rofi path + dmenu = /usr/bin/rofi -dmenu -p dunst: + + # Browser for opening urls in context menu + browser = /usr/bin/qutebrowser + + # Always run rule-defined scripts, even if the notification is suppressed + always_run_script = true + + # Define the title of the windows spawned by dunst + title = Dunst + + # Define the class of the windows spawned by dunst + class = Dunst + +[shortcuts] + + # Shortcuts are specified as [modifier+][modifier+]...key + # Available modifiers are "ctrl", "mod1" (the alt-key), "mod2", + # "mod3" and "mod4" (windows-key) + # Xev might be helpful to find names for keys + + # Close notification + close = ctrl+space + + # Close all notifications. + close_all = ctrl+shift+space + + # Redisplay last message(s) + history = ctrl+grave + + # Context menu. + context = ctrl+shift+period + +[urgency_low] + background = "#181b21" + foreground = "#5f819d" + frame_color = "#5f819d" + timeout = 5 + # Icon for notifications with low urgency, uncomment to enable + #icon = /path/to/icon + +[urgency_normal] + background = "#181b21" + foreground = "#5f819d" + frame_color = "#5f819d" + timeout = 5 + # Icon for notifications with normal urgency, uncomment to enable + #icon = /path/to/icon + +[urgency_critical] + background = "#181b21" + foreground = "#5f819d" + frame_color = "#a54242" + timeout = 0 + # Icon for notifications with critical urgency, uncomment to enable + #icon = /path/to/icon + +# vim: ft=cfg diff --git a/.config/i3/config b/.config/i3/config new file mode 100644 index 0000000..d7875ff --- /dev/null +++ b/.config/i3/config @@ -0,0 +1,377 @@ +# +# _ _____ +# (_)___ / __ _ __ _ _ __ ___ +# | | |_ \ _____ / _` |/ _` | '_ \/ __| +# | |___) |_____| (_| | (_| | |_) \__ \ +# |_|____/ \__, |\__,_| .__/|___/ +# |___/ |_| +# + + +# Xresources var value +set_from_resource $bg background +set_from_resource $fg foreground +set_from_resource $black color0 +set_from_resource $black_l color8 +set_from_resource $red color1 +set_from_resource $red_l color9 +set_from_resource $green color2 +set_from_resource $green_l color10 +set_from_resource $yellow color3 +set_from_resource $yellow_l color11 +set_from_resource $blue color4 +set_from_resource $blue_l color12 +set_from_resource $magenta color5 +set_from_resource $red_l color13 +set_from_resource $cyan color6 +set_from_resource $cyan_l color14 +set_from_resource $white color7 +set_from_resource $white_l color15 +set $transp #00000000 + +# class bd bg txt ind child_bd +client.focused $black_l $black_l $blue $blue $blue +client.unfocused $bg $bg $blue $bg $bg +client.focused_inactive $black_l $black_l $blue $bg $bg +client.urgent $bg $bg $blue $bg $bg +client.placeholder $bg $bg $blue $bg $bg +client.background $bg + +# Font +font pango:DejaVu Sans Mono 11 + +# Mod key (Super) +set $Mod Mod4 +# Moe key (Alt) +set $Moe Mod1 +# Terminal (ST) +set $TERMINAL st + +# Direction keys +set $up k +set $down j +set $left h +set $right l + +# Workspaces Icons +set $ws1 "1: " +set $ws2 "2: " +set $ws3 "3: " +set $ws4 "4: " +set $ws5 "5: " +set $ws6 "6: " +set $ws7 "7: " +set $ws8 "8: " +set $ws9 "9: " +set $ws10 "10: " +set $ws11 "11: " + + +# ~~~~~~~~~~~~~~~ +# Border & Gaps +# ~~~~~~~~~~~~~~~ + +# Border & Title +for_window [class="^.*"] border pixel 2, title_format " %title " +smart_borders on + +# Gaps +gaps inner 5 +gaps outer 8 + +new_window pixel +new_float normal +hide_edge_borders none +popup_during_fullscreen smart + +# Changing Border style +bindsym $Mod+o border pixel 2 +bindsym $Mod+Shift+o border none + + +# ~~~~~~~~~~~ +# Autostart +# ~~~~~~~~~~~ + +# Remap buttons + keyboard layout +exec --no-startup-id setxkbmap pl -option 'caps:ctrl_modifier' +exec --no-startup-id xcape -e 'Caps_Lock=Escape' +exec --no-startup-id xmodmap -e "keysym Menu = Super_R" + +# Load .Xresources configs +exec_always --no-startup-id xrdb -load ~/.Xresources + +# Hide mouse cursor after X seconds +exec --no-startup-id unclutter --timeout 5 --jitter 2 & + +# That nice bar +exec_always --no-startup-id ~/.config/polybar/launch.sh + +# Prevent desktop idleness in full-screen mode +exec --no-startup-id caffeine + +# X11 Compositor +exec --no-startup-id compton + +# Notification daemon +exec --no-startup-id dunst + +# Music daemon +exec --no-startup-id mpd + +# If you have a numpad you may want to enable this and install numlockx +#exec --no-startup-id numlockx + +# Keyring for storing saved passwords +exec --no-startup-id gnome-keyring-daemon --start --components=pkcs11,secrets,ssh + +# Polkit, required for authentication +exec --no-startup-id /usr/libexec/polkit-gnome-authentication-agent-1 + +# Wallpaper (don't edit directly there, use ~/.script/wallpaper.sh) +exec --no-startup-id xwallpaper --daemon --zoom ~/.config/wallpaper + +# Syncthing +exec --no-startup-id syncthing -no-browser + +# Scratchpad +exec --no-startup-id keepassxc -name keepassxc-sp + + +# ~~~~~~~~~~~~~ +# Keybindings +# ~~~~~~~~~~~~~ + +# Restart i3 +bindsym $Mod+Shift+r restart + +# Kill focused window +bindsym $Mod+Shift+q kill + +# Hide polybar +bindsym $Mod+bracketleft exec --no-startup-id killall -9 polybar +bindsym $Mod+bracketright exec --no-startup-id .config/polybar/launch.sh + +# Launcher +bindsym $Mod+d exec --no-startup-id dmenu_run -f -i +bindsym $Mod+Shift+d exec --no-startup-id i3-dmenu-desktop --dmenu="dmenu -f -i" + +# Applications +bindsym $Mod+Return exec --no-startup-id $TERMINAL +bindsym $Mod+f exec --no-startup-id $HOME/.local/share/tor-browser/Browser/start-tor-browser +bindsym $Mod+Shift+f exec --no-startup-id $BROWSER +bindsym $Mod+r exec --no-startup-id $TERMINAL -n 'ncmpcpp' -e 'ncmpcpp' +bindsym $Mod+t exec --no-startup-id $HOME/.script/dmenu-messenger.sh +bindsym $Mod+b exec --no-startup-id blueman-manager +bindsym $Mod+p [instance="keepassxc-sp"] scratchpad show; [instance="keepassxc-sp"] move position center +bindsym $Mod+u exec --no-startup-id exec ~/.script/dmenu-unicode.sh +bindsym $Mod+m exec --no-startup-id $TERMINAL -n 'neomutt' -e 'neomutt' +bindsym $Mod+Shift+m exec --no-startup-id ~/.config/mutt/etc/mailsync.sh +bindsym $Mod+n exec --no-startup-id redshift -O 3500 -b 0.8 +bindsym $Mod+Shift+n exec --no-startup-id redshift -x +bindsym $Mod+g exec --no-startup-id gcolor2 + +# Compton +bindsym $Mod+c exec --no-startup-id compton +bindsym $Mod+Shift+c exec --no-startup-id killall -9 compton + +# Logout +bindsym $Mod+x exec --no-startup-id ~/.script/dmenu-logout.sh + +# Screenshot +bindsym Print exec --no-startup-id ~/.script/dmenu-screenshot.sh + +# Center floating app +bindsym $Mod+s move position center +# Move to corner +bindsym $Mod+Shift+s exec --no-startup-id ~/.script/i3-corner.sh 3 + + +# sndio +# bindsym $Mod+$Moe+$up exec --no-startup-id ~/.script/sndio.sh up 1 +# bindsym $Mod+$Moe+$down exec --no-startup-id ~/.script/sndio.sh down 1 +# bindsym XF86AudioRaiseVolume exec --no-startup-id ~/.script/sndio.sh up 1 +# bindsym XF86AudioLowerVolume exec --no-startup-id ~/.script/sndio.sh down 1 + + +# Audio - Vim bindings +bindsym $Mod+$Moe+$up exec --no-startup-id pamixer -i 1 +bindsym $Mod+$Moe+$down exec --no-startup-id pamixer -d 1 +# Audio - XF86 bindings +bindsym XF86AudioRaiseVolume exec --no-startup-id pamixer -i 1 +bindsym XF86AudioLowerVolume exec --no-startup-id pamixer -d 1 +bindsym XF86AudioMute exec --no-startup-id pamixer -t +bindsym XF86AudioPlay exec --no-startup-id mpc play +bindsym XF86AudioNext exec --no-startup-id mpc next +bindsym XF86AudioPrev exec --no-startup-id mpc prev +bindsym XF86AudioStop exec --no-startup-id mpc stop +bindsym XF86AudioPause exec --no-startup-id mpc pause + +# Backlight - Vim bindings +bindsym $Mod+$Moe+$right exec --no-startup-id light -A 1 +bindsym $Mod+$Moe+$left exec --no-startup-id light -U 1 +# Backlight - XF86 bindings +bindsym XF86MonBrightnessUp exec --no-startup-id light -A 1 +bindsym XF86MonBrightnessDown exec --no-startup-id light -U 1 + +# Fullscreen +bindsym F11 fullscreen + + +# ~~~~~~~~~~~~~~~~~~~~ +# Workspace Bindings +# ~~~~~~~~~~~~~~~~~~~~ + +# Switch to Workspace +bindsym $Mod+1 workspace $ws1 +bindsym $Mod+2 workspace $ws2 +bindsym $Mod+3 workspace $ws3 +bindsym $Mod+4 workspace $ws4 +bindsym $Mod+5 workspace $ws5 +bindsym $Mod+6 workspace $ws6 +bindsym $Mod+7 workspace $ws7 +bindsym $Mod+8 workspace $ws8 +bindsym $Mod+9 workspace $ws9 +bindsym $Mod+0 workspace $ws10 +bindsym $Mod+minus workspace $ws11 + +# Next/Previous Workspace +bindsym $Mod+$down workspace next +bindsym $Mod+$up workspace prev + +# Back and forth +bindsym $Mod+Tab workspace back_and_forth + +# Move focused container to Workspace +bindsym $Mod+Ctrl+1 move container to workspace $ws1 +bindsym $Mod+Ctrl+2 move container to workspace $ws2 +bindsym $Mod+Ctrl+3 move container to workspace $ws3 +bindsym $Mod+Ctrl+4 move container to workspace $ws4 +bindsym $Mod+Ctrl+5 move container to workspace $ws5 +bindsym $Mod+Ctrl+6 move container to workspace $ws6 +bindsym $Mod+Ctrl+7 move container to workspace $ws7 +bindsym $Mod+Ctrl+8 move container to workspace $ws8 +bindsym $Mod+Ctrl+9 move container to workspace $ws9 +bindsym $Mod+Ctrl+0 move container to workspace $ws10 +bindsym $Mod+Ctrl+underscore move container to workspace $ws11 +bindsym $Mod+Shift+1 move container to workspace $ws1; workspace $ws1 +bindsym $Mod+Shift+2 move container to workspace $ws2; workspace $ws2 +bindsym $Mod+Shift+3 move container to workspace $ws3; workspace $ws3 +bindsym $Mod+Shift+4 move container to workspace $ws4; workspace $ws4 +bindsym $Mod+Shift+5 move container to workspace $ws5; workspace $ws5 +bindsym $Mod+Shift+6 move container to workspace $ws6; workspace $ws6 +bindsym $Mod+Shift+7 move container to workspace $ws7; workspace $ws7 +bindsym $Mod+Shift+8 move container to workspace $ws8; workspace $ws8 +bindsym $Mod+Shift+9 move container to workspace $ws9; workspace $ws9 +bindsym $Mod+Shift+0 move container to workspace $ws10; workspace $ws10 +bindsym $Mod+Shift+underscore move container to workspace $ws11; workspace $ws11 + + +# ~~~~~~~~~~~~~~~~~~~~~~~~~~ +# Container/Window control +# ~~~~~~~~~~~~~~~~~~~~~~~~~~ + +# Enable floating +bindsym $Mod+Shift+space floating toggle + +# Change focus on mouse click +focus_follows_mouse no + +# Change focus +bindsym $Moe+$left focus left +bindsym $Moe+$down focus down +bindsym $Moe+$up focus up +bindsym $Moe+$right focus right + +# Focus to parent/child +bindsym $Moe+p focus parent +bindsym $Moe+c focus child + +# Move focused window +bindsym $Mod+Shift+$left move left 40px +bindsym $Mod+Shift+$down move down 40px +bindsym $Mod+Shift+$up move up 40px +bindsym $Mod+Shift+$right move right 40px +# Mod + Mouse +floating_modifier $Mod + +# Resize focused window +bindsym $Mod+Ctrl+$up resize shrink height 20 px or 2 ppt +bindsym $Mod+Ctrl+$down resize grow height 20 px or 2 ppt +bindsym $Mod+Ctrl+$left resize shrink width 20 px or 2 ppt +bindsym $Mod+Ctrl+$right resize grow width 20 px or 2 ppt + +# Switch to new window on other workspace +#focus_on_window_activation focus +# Switch to workspace with urgent window +#for_window [urgent="latest"] focus + +# Container layout +bindsym $Mod+w layout tabbed +bindsym $Mod+Shift+w layout stacking +bindsym $Mod+e layout toggle split + +# Split window +bindsym $Mod+less split vertical +bindsym $Mod+greater split horizontal +default_orientation horizontal + + +# ~~~~~~~~~~~~~~~~~~~~~~ +# Application Settings +# ~~~~~~~~~~~~~~~~~~~~~~ + +# Tor Browser (WS1) +assign [class="Tor Browser"] workspace $ws1 +for_window [class="Tor Browser"] floating enable + +# Coding (WS2) +assign [class="Code - OSS"] workspace $ws2 + +# Messaging (WS4) +assign [class="TelegramDesktop"] workspace $ws4 +assign [class="Riot"] workspace $ws4 +assign [class="Signal"] workspace $ws4 +assign [class="Wire"] workspace $ws4 + +# Mail (WS5) +assign [instance="neomutt"] workspace $ws5 + +# Documents (WS6) +assign [class="Zathura"] workspace $ws6 +assign [class="Evince"] workspace $ws6 +assign [class="libreoffice"] workspace $ws6 + +# Graphics (WS7) +assign [class="Gimp"] workspace $ws7 +assign [class="Inkscape"] workspace $ws7 + +# Gaming +assign [class="retroarch"] workspace $ws8 + +# Audio (WS9) +assign [class="Rhythmbox"] workspace $ws9 +assign [instance="ncmpcpp"] workspace $ws9 + +# Video (WS10) +assign [class="obs"] workspace $ws10 +assign [class="vlc"] workspace $ws10 + +# Clearnet Browsers (WS11) +assign [class="qutebrowser"] workspace $ws11 +assign [class="Firefox"] workspace $ws11 +assign [class="Chromium"] workspace $ws11 +assign [class="Epiphany"] workspace $ws11 +assign [class="Falkon"] workspace $ws11 +assign [class="Midori"] workspace $ws11 + +# Scratchpad +for_window [instance="keepassxc-sp"] move scratchpad +for_window [instance="keepassxc-sp"] border pixel 3 +for_window [instance="keepassxc-sp"] resize set 800 600 + +# Other +for_window [class="Gsimplecal"] floating enable + + +# vim: filetype=i3 diff --git a/.config/mpd/database b/.config/mpd/database new file mode 100644 index 0000000..4186d9b Binary files /dev/null and b/.config/mpd/database differ diff --git a/.config/mpd/log b/.config/mpd/log new file mode 100644 index 0000000..03e0000 --- /dev/null +++ b/.config/mpd/log @@ -0,0 +1,4092 @@ +Oct 03 17:07 : exception: Failed to open '/home/igor/.config/mpd/state': No such file or directory +Oct 03 17:07 : exception: Failed to access /home/igor/Music: No such file or directory +Oct 03 17:07 : exception: RTIOThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted +Oct 03 17:25 : client: [0] opened from 127.0.0.1:34976 +Oct 03 17:25 : client: [0] closed +Oct 03 17:25 : client: [1] opened from 127.0.0.1:34980 +Oct 03 17:25 : client: [1] closed +Oct 03 17:25 : client: [2] opened from 127.0.0.1:34984 +Oct 03 17:25 : client: [2] closed +Oct 03 17:25 : client: [3] opened from 127.0.0.1:34988 +Oct 03 17:25 : client: [3] closed +Oct 03 17:25 : client: [4] opened from 127.0.0.1:34992 +Oct 03 17:25 : client: [4] closed +Oct 03 17:25 : client: [5] opened from 127.0.0.1:34996 +Oct 03 17:25 : client: [5] closed +Oct 03 17:25 : client: [6] opened from 127.0.0.1:35000 +Oct 03 17:25 : client: [6] closed +Oct 03 17:25 : client: [7] opened from 127.0.0.1:35004 +Oct 03 17:25 : client: [7] closed +Oct 03 17:25 : client: [8] opened from 127.0.0.1:35008 +Oct 03 17:25 : client: [8] closed +Oct 03 17:25 : client: [9] opened from 127.0.0.1:35012 +Oct 03 17:25 : client: [9] closed +Oct 03 17:26 : client: [10] opened from 127.0.0.1:35016 +Oct 03 17:26 : client: [10] closed +Oct 03 17:26 : client: [11] opened from 127.0.0.1:35020 +Oct 03 17:26 : client: [11] closed +Oct 03 17:26 : client: [12] opened from 127.0.0.1:35024 +Oct 03 17:26 : client: [12] closed +Oct 03 17:26 : client: [13] opened from 127.0.0.1:35028 +Oct 03 17:26 : client: [13] closed +Oct 03 17:26 : client: [14] opened from 127.0.0.1:35032 +Oct 03 17:26 : client: [14] closed +Oct 03 17:26 : client: [15] opened from 127.0.0.1:35036 +Oct 03 17:26 : client: [15] closed +Oct 03 17:26 : client: [16] opened from 127.0.0.1:35040 +Oct 03 17:26 : client: [16] closed +Oct 03 17:26 : client: [17] opened from 127.0.0.1:35044 +Oct 03 17:26 : client: [17] closed +Oct 03 17:26 : client: [18] opened from 127.0.0.1:35048 +Oct 03 17:26 : client: [18] closed +Oct 03 17:26 : client: [19] opened from 127.0.0.1:35052 +Oct 03 17:26 : client: [19] closed +Oct 03 17:26 : client: [20] opened from 127.0.0.1:35056 +Oct 03 17:26 : client: [20] closed +Oct 03 17:26 : client: [21] opened from 127.0.0.1:35060 +Oct 03 17:26 : client: [21] closed +Oct 03 17:26 : client: [22] opened from 127.0.0.1:35064 +Oct 03 17:26 : client: [22] closed +Oct 03 17:26 : client: [23] opened from 127.0.0.1:35068 +Oct 03 17:26 : client: [23] closed +Oct 03 17:26 : client: [24] opened from 127.0.0.1:35072 +Oct 03 17:26 : client: [24] closed +Oct 03 17:26 : client: [25] opened from 127.0.0.1:35076 +Oct 03 17:26 : client: [25] closed +Oct 03 17:26 : client: [26] opened from 127.0.0.1:35080 +Oct 03 17:26 : client: [26] closed +Oct 03 17:26 : client: [27] opened from 127.0.0.1:35084 +Oct 03 17:26 : client: [27] closed +Oct 03 17:26 : client: [28] opened from 127.0.0.1:35088 +Oct 03 17:26 : client: [28] closed +Oct 03 17:26 : client: [29] opened from 127.0.0.1:35092 +Oct 03 17:26 : client: [29] closed +Oct 03 17:26 : client: [30] opened from 127.0.0.1:35096 +Oct 03 17:26 : client: [30] closed +Oct 03 17:26 : client: [31] opened from 127.0.0.1:35100 +Oct 03 17:26 : client: [31] closed +Oct 03 17:26 : client: [32] opened from 127.0.0.1:35104 +Oct 03 17:26 : client: [32] closed +Oct 03 17:26 : client: [33] opened from 127.0.0.1:35108 +Oct 03 17:26 : client: [33] closed +Oct 03 17:26 : client: [34] opened from 127.0.0.1:35112 +Oct 03 17:26 : client: [34] closed +Oct 03 17:27 : client: [35] opened from 127.0.0.1:35116 +Oct 03 17:27 : client: [35] closed +Oct 03 17:27 : client: [36] opened from 127.0.0.1:35120 +Oct 03 17:27 : client: [36] closed +Oct 03 17:27 : client: [37] opened from 127.0.0.1:35124 +Oct 03 17:27 : client: [37] closed +Oct 03 17:27 : client: [38] opened from 127.0.0.1:35128 +Oct 03 17:27 : client: [38] closed +Oct 03 17:27 : client: [39] opened from 127.0.0.1:35132 +Oct 03 17:27 : client: [39] closed +Oct 03 17:27 : client: [40] opened from 127.0.0.1:35136 +Oct 03 17:27 : client: [40] closed +Oct 03 17:27 : client: [41] opened from 127.0.0.1:35142 +Oct 03 17:27 : client: [41] closed +Oct 03 17:27 : client: [42] opened from 127.0.0.1:35146 +Oct 03 17:27 : client: [42] closed +Oct 03 17:27 : client: [43] opened from 127.0.0.1:35150 +Oct 03 17:27 : client: [43] closed +Oct 03 17:27 : client: [44] opened from 127.0.0.1:35154 +Oct 03 17:27 : client: [44] closed +Oct 03 17:27 : client: [45] opened from 127.0.0.1:35158 +Oct 03 17:27 : client: [45] closed +Oct 03 17:27 : client: [46] opened from 127.0.0.1:35162 +Oct 03 17:27 : client: [46] closed +Oct 03 17:27 : client: [47] opened from 127.0.0.1:35166 +Oct 03 17:27 : client: [47] closed +Oct 03 17:27 : client: [48] opened from 127.0.0.1:35170 +Oct 03 17:27 : client: [48] closed +Oct 03 17:27 : client: [49] opened from 127.0.0.1:35174 +Oct 03 17:27 : client: [49] closed +Oct 03 17:27 : client: [50] opened from 127.0.0.1:35178 +Oct 03 17:27 : client: [50] closed +Oct 03 17:27 : client: [51] opened from 127.0.0.1:35182 +Oct 03 17:27 : client: [51] closed +Oct 03 17:27 : client: [52] opened from 127.0.0.1:35186 +Oct 03 17:27 : client: [52] closed +Oct 03 17:27 : client: [53] opened from 127.0.0.1:35190 +Oct 03 17:27 : client: [53] closed +Oct 03 17:27 : client: [54] opened from 127.0.0.1:35194 +Oct 03 17:27 : client: [54] closed +Oct 03 17:27 : client: [55] opened from 127.0.0.1:35198 +Oct 03 17:27 : client: [55] closed +Oct 03 17:27 : client: [56] opened from 127.0.0.1:35202 +Oct 03 17:27 : client: [56] closed +Oct 03 17:27 : client: [57] opened from 127.0.0.1:35206 +Oct 03 17:27 : client: [57] closed +Oct 03 17:27 : client: [58] opened from 127.0.0.1:35210 +Oct 03 17:27 : client: [58] closed +Oct 03 17:28 : client: [59] opened from 127.0.0.1:35214 +Oct 03 17:28 : client: [59] closed +Oct 03 17:28 : client: [60] opened from 127.0.0.1:35218 +Oct 03 17:28 : client: [60] closed +Oct 03 17:28 : client: [61] opened from 127.0.0.1:35222 +Oct 03 17:28 : client: [61] closed +Oct 03 17:28 : client: [62] opened from 127.0.0.1:35226 +Oct 03 17:28 : client: [62] closed +Oct 03 17:28 : client: [63] opened from 127.0.0.1:35234 +Oct 03 17:28 : client: [63] closed +Oct 03 17:28 : client: [64] opened from 127.0.0.1:35238 +Oct 03 17:28 : client: [64] closed +Oct 03 17:28 : client: [65] opened from 127.0.0.1:35242 +Oct 03 17:28 : client: [65] closed +Oct 03 17:28 : client: [66] opened from 127.0.0.1:35246 +Oct 03 17:28 : client: [66] closed +Oct 03 17:28 : client: [67] opened from 127.0.0.1:35250 +Oct 03 17:28 : client: [67] closed +Oct 03 17:28 : client: [68] opened from 127.0.0.1:35254 +Oct 03 17:28 : client: [68] closed +Oct 03 17:28 : client: [69] opened from 127.0.0.1:35258 +Oct 03 17:28 : client: [69] closed +Oct 03 17:28 : client: [70] opened from 127.0.0.1:35262 +Oct 03 17:28 : client: [70] closed +Oct 03 17:28 : client: [71] opened from 127.0.0.1:35266 +Oct 03 17:28 : client: [71] closed +Oct 03 17:28 : client: [72] opened from 127.0.0.1:35270 +Oct 03 17:28 : client: [72] closed +Oct 03 17:28 : client: [73] opened from 127.0.0.1:35274 +Oct 03 17:28 : client: [73] closed +Oct 03 17:28 : client: [74] opened from 127.0.0.1:35278 +Oct 03 17:28 : client: [74] closed +Oct 03 17:28 : client: [75] opened from 127.0.0.1:35282 +Oct 03 17:28 : client: [75] closed +Oct 03 17:28 : client: [76] opened from 127.0.0.1:35286 +Oct 03 17:28 : client: [76] closed +Oct 03 17:28 : client: [77] opened from 127.0.0.1:35290 +Oct 03 17:28 : client: [77] closed +Oct 03 17:28 : client: [78] opened from 127.0.0.1:35294 +Oct 03 17:28 : client: [78] closed +Oct 03 17:28 : client: [79] opened from 127.0.0.1:35298 +Oct 03 17:28 : client: [79] closed +Oct 03 17:28 : client: [80] opened from 127.0.0.1:35302 +Oct 03 17:28 : client: [80] closed +Oct 03 17:28 : client: [81] opened from 127.0.0.1:35306 +Oct 03 17:28 : client: [81] closed +Oct 03 17:28 : client: [82] opened from 127.0.0.1:35310 +Oct 03 17:28 : client: [82] closed +Oct 03 17:28 : client: [83] opened from 127.0.0.1:35314 +Oct 03 17:28 : client: [83] closed +Oct 03 17:28 : client: [84] opened from 127.0.0.1:35318 +Oct 03 17:28 : client: [84] closed +Oct 03 17:29 : client: [85] opened from 127.0.0.1:35322 +Oct 03 17:29 : client: [85] closed +Oct 03 17:29 : client: [86] opened from 127.0.0.1:35326 +Oct 03 17:29 : client: [86] closed +Oct 03 17:29 : client: [87] opened from 127.0.0.1:35330 +Oct 03 17:29 : client: [87] closed +Oct 03 17:29 : client: [88] opened from 127.0.0.1:35334 +Oct 03 17:29 : client: [88] closed +Oct 03 17:29 : client: [89] opened from 127.0.0.1:35338 +Oct 03 17:29 : client: [89] closed +Oct 03 17:29 : client: [90] opened from 127.0.0.1:35342 +Oct 03 17:29 : client: [90] closed +Oct 03 17:29 : client: [91] opened from 127.0.0.1:35346 +Oct 03 17:29 : client: [91] closed +Oct 03 17:29 : client: [92] opened from 127.0.0.1:35350 +Oct 03 17:29 : client: [92] closed +Oct 03 17:29 : client: [93] opened from 127.0.0.1:35354 +Oct 03 17:29 : client: [93] closed +Oct 03 17:29 : client: [94] opened from 127.0.0.1:35358 +Oct 03 17:29 : client: [94] closed +Oct 03 17:29 : client: [95] opened from 127.0.0.1:35362 +Oct 03 17:29 : client: [95] closed +Oct 03 17:29 : client: [96] opened from 127.0.0.1:35366 +Oct 03 17:29 : client: [96] closed +Oct 03 17:29 : client: [97] opened from 127.0.0.1:35370 +Oct 03 17:29 : client: [97] closed +Oct 03 17:29 : client: [98] opened from 127.0.0.1:35374 +Oct 03 17:29 : client: [98] closed +Oct 03 17:29 : client: [99] opened from 127.0.0.1:35378 +Oct 03 17:29 : client: [99] closed +Oct 03 17:29 : client: [100] opened from 127.0.0.1:35382 +Oct 03 17:29 : client: [100] closed +Oct 03 17:29 : client: [101] opened from 127.0.0.1:35386 +Oct 03 17:29 : client: [101] closed +Oct 03 17:29 : client: [102] opened from 127.0.0.1:35390 +Oct 03 17:29 : client: [102] closed +Oct 03 17:29 : client: [103] opened from 127.0.0.1:35394 +Oct 03 17:29 : client: [103] closed +Oct 03 17:29 : client: [104] opened from 127.0.0.1:35398 +Oct 03 17:29 : client: [104] closed +Oct 03 17:29 : client: [105] opened from 127.0.0.1:35402 +Oct 03 17:29 : client: [105] closed +Oct 03 17:29 : client: [106] opened from 127.0.0.1:35406 +Oct 03 17:29 : client: [106] closed +Oct 03 17:29 : client: [107] opened from 127.0.0.1:35448 +Oct 03 17:29 : client: [107] closed +Oct 03 17:29 : client: [108] opened from 127.0.0.1:35452 +Oct 03 17:29 : client: [108] closed +Oct 03 17:29 : client: [109] opened from 127.0.0.1:35504 +Oct 03 17:29 : client: [109] closed +Oct 03 17:29 : client: [110] opened from 127.0.0.1:35508 +Oct 03 17:29 : client: [110] closed +Oct 03 17:30 : client: [111] opened from 127.0.0.1:35512 +Oct 03 17:30 : client: [111] closed +Oct 03 17:30 : client: [112] opened from 127.0.0.1:35516 +Oct 03 17:30 : client: [112] closed +Oct 03 17:30 : client: [113] opened from 127.0.0.1:35520 +Oct 03 17:30 : client: [113] closed +Oct 03 17:30 : client: [114] opened from 127.0.0.1:35524 +Oct 03 17:30 : client: [114] closed +Oct 03 17:30 : client: [115] opened from 127.0.0.1:35528 +Oct 03 17:30 : client: [115] closed +Oct 03 17:30 : client: [116] opened from 127.0.0.1:35532 +Oct 03 17:30 : client: [116] closed +Oct 03 17:30 : client: [117] opened from 127.0.0.1:35536 +Oct 03 17:30 : client: [117] closed +Oct 03 17:30 : client: [118] opened from 127.0.0.1:35540 +Oct 03 17:30 : client: [118] closed +Oct 03 17:30 : client: [119] opened from 127.0.0.1:35544 +Oct 03 17:30 : client: [119] closed +Oct 03 17:30 : client: [120] opened from 127.0.0.1:35548 +Oct 03 17:30 : client: [120] closed +Oct 03 17:30 : client: [121] opened from 127.0.0.1:35552 +Oct 03 17:30 : client: [121] closed +Oct 03 17:30 : client: [122] opened from 127.0.0.1:35556 +Oct 03 17:30 : client: [122] closed +Oct 03 17:30 : client: [123] opened from 127.0.0.1:35560 +Oct 03 17:30 : client: [123] closed +Oct 03 17:30 : client: [124] opened from 127.0.0.1:35564 +Oct 03 17:30 : client: [124] closed +Oct 03 17:30 : client: [125] opened from 127.0.0.1:35572 +Oct 03 17:30 : client: [125] closed +Oct 03 17:30 : client: [126] opened from 127.0.0.1:35576 +Oct 03 17:30 : client: [126] closed +Oct 03 17:30 : client: [127] opened from 127.0.0.1:35580 +Oct 03 17:30 : client: [127] closed +Oct 03 17:30 : client: [128] opened from 127.0.0.1:35584 +Oct 03 17:30 : client: [128] closed +Oct 03 17:30 : client: [129] opened from 127.0.0.1:35592 +Oct 03 17:30 : client: [129] closed +Oct 03 17:30 : client: [130] opened from 127.0.0.1:35596 +Oct 03 17:30 : client: [130] closed +Oct 03 17:30 : client: [131] opened from 127.0.0.1:35600 +Oct 03 17:30 : client: [131] closed +Oct 03 17:30 : client: [132] opened from 127.0.0.1:35604 +Oct 03 17:30 : client: [132] closed +Oct 03 17:30 : client: [133] opened from 127.0.0.1:35608 +Oct 03 17:30 : client: [133] closed +Oct 03 17:30 : client: [134] opened from 127.0.0.1:35612 +Oct 03 17:30 : client: [134] closed +Oct 03 17:31 : client: [135] opened from 127.0.0.1:35616 +Oct 03 17:31 : client: [135] closed +Oct 03 17:31 : client: [136] opened from 127.0.0.1:35620 +Oct 03 17:31 : client: [136] closed +Oct 03 17:31 : client: [137] opened from 127.0.0.1:35624 +Oct 03 17:31 : exception: Failed to open /home/igor/.config/mpd/playlists: No such file or directory +Oct 03 17:31 : client: [138] opened from 127.0.0.1:35628 +Oct 03 17:31 : client: [138] closed +Oct 03 17:31 : client: [139] opened from 127.0.0.1:35632 +Oct 03 17:31 : client: [139] closed +Oct 03 17:31 : client: [137] closed +Oct 03 17:31 : client: [140] opened from 127.0.0.1:35636 +Oct 03 17:31 : client: [140] closed +Oct 03 17:31 : client: [141] opened from 127.0.0.1:35640 +Oct 03 17:31 : client: [141] closed +Oct 03 17:31 : client: [142] opened from 127.0.0.1:35644 +Oct 03 17:31 : client: [142] closed +Oct 03 17:31 : client: [143] opened from 127.0.0.1:35648 +Oct 03 17:31 : client: [143] closed +Oct 03 17:31 : client: [144] opened from 127.0.0.1:35652 +Oct 03 17:31 : client: [144] closed +Oct 03 17:31 : client: [145] opened from 127.0.0.1:35656 +Oct 03 17:31 : client: [145] closed +Oct 03 17:31 : client: [146] opened from 127.0.0.1:35660 +Oct 03 17:31 : client: [146] closed +Oct 03 17:31 : client: [147] opened from 127.0.0.1:35664 +Oct 03 17:31 : client: [147] closed +Oct 03 17:31 : client: [148] opened from 127.0.0.1:35668 +Oct 03 17:31 : client: [148] closed +Oct 03 17:31 : client: [149] opened from 127.0.0.1:35672 +Oct 03 17:31 : client: [149] closed +Oct 03 17:31 : client: [150] opened from 127.0.0.1:35676 +Oct 03 17:31 : client: [150] closed +Oct 03 17:31 : client: [151] opened from 127.0.0.1:35680 +Oct 03 17:31 : client: [151] closed +Oct 03 17:31 : client: [152] opened from 127.0.0.1:35684 +Oct 03 17:31 : client: [152] closed +Oct 03 17:31 : client: [153] opened from 127.0.0.1:35688 +Oct 03 17:31 : client: [153] closed +Oct 03 17:31 : client: [154] opened from 127.0.0.1:35692 +Oct 03 17:31 : client: [154] closed +Oct 03 17:31 : client: [155] opened from 127.0.0.1:35696 +Oct 03 17:31 : client: [155] closed +Oct 03 17:31 : client: [156] opened from 127.0.0.1:35700 +Oct 03 17:31 : client: [156] closed +Oct 03 17:31 : client: [157] opened from 127.0.0.1:35704 +Oct 03 17:31 : client: [157] closed +Oct 03 17:31 : client: [158] opened from 127.0.0.1:35708 +Oct 03 17:31 : client: [158] closed +Oct 03 17:31 : client: [159] opened from 127.0.0.1:35712 +Oct 03 17:31 : client: [159] closed +Oct 03 17:32 : client: [160] opened from 127.0.0.1:35716 +Oct 03 17:32 : client: [160] closed +Oct 03 17:32 : client: [161] opened from 127.0.0.1:35720 +Oct 03 17:32 : client: [161] closed +Oct 03 17:32 : client: [162] opened from 127.0.0.1:35724 +Oct 03 17:32 : client: [162] closed +Oct 03 17:32 : client: [163] opened from 127.0.0.1:35728 +Oct 03 17:32 : client: [163] closed +Oct 03 17:32 : client: [164] opened from 127.0.0.1:35732 +Oct 03 17:32 : client: [164] closed +Oct 03 17:32 : client: [165] opened from 127.0.0.1:35736 +Oct 03 17:32 : client: [165] closed +Oct 03 17:32 : client: [166] opened from 127.0.0.1:35740 +Oct 03 17:32 : client: [166] closed +Oct 03 17:32 : client: [167] opened from 127.0.0.1:35744 +Oct 03 17:32 : client: [167] closed +Oct 03 17:32 : client: [168] opened from 127.0.0.1:35748 +Oct 03 17:32 : client: [168] closed +Oct 03 17:32 : client: [169] opened from 127.0.0.1:35752 +Oct 03 17:32 : client: [169] closed +Oct 03 17:32 : client: [170] opened from 127.0.0.1:35762 +Oct 03 17:32 : client: [170] closed +Oct 03 17:32 : client: [171] opened from 127.0.0.1:35766 +Oct 03 17:32 : client: [171] closed +Oct 03 17:32 : client: [172] opened from 127.0.0.1:35770 +Oct 03 17:32 : client: [172] closed +Oct 03 17:32 : client: [173] opened from 127.0.0.1:35774 +Oct 03 17:32 : client: [173] closed +Oct 03 17:32 : client: [174] opened from 127.0.0.1:35782 +Oct 03 17:32 : client: [174] closed +Oct 03 17:32 : client: [175] opened from 127.0.0.1:35786 +Oct 03 17:32 : client: [175] closed +Oct 03 17:32 : client: [176] opened from 127.0.0.1:35800 +Oct 03 17:32 : client: [176] closed +Oct 03 17:32 : client: [177] opened from 127.0.0.1:35804 +Oct 03 17:32 : client: [177] closed +Oct 03 17:32 : client: [178] opened from 127.0.0.1:35842 +Oct 03 17:32 : client: [178] closed +Oct 03 17:32 : client: [179] opened from 127.0.0.1:35846 +Oct 03 17:32 : client: [179] closed +Oct 03 17:32 : client: [180] opened from 127.0.0.1:35882 +Oct 03 17:32 : client: [180] closed +Oct 03 17:32 : client: [181] opened from 127.0.0.1:35886 +Oct 03 17:32 : client: [181] closed +Oct 03 17:32 : client: [182] opened from 127.0.0.1:35890 +Oct 03 17:32 : client: [182] closed +Oct 03 17:32 : client: [183] opened from 127.0.0.1:35894 +Oct 03 17:32 : client: [183] closed +Oct 03 17:33 : client: [184] opened from 127.0.0.1:35898 +Oct 03 17:33 : client: [184] closed +Oct 03 17:33 : client: [185] opened from 127.0.0.1:35902 +Oct 03 17:33 : client: [185] closed +Oct 03 17:33 : client: [186] opened from 127.0.0.1:35910 +Oct 03 17:33 : client: [186] closed +Oct 03 17:33 : client: [187] opened from 127.0.0.1:35914 +Oct 03 17:33 : client: [187] closed +Oct 03 17:33 : client: [188] opened from 127.0.0.1:35922 +Oct 03 17:33 : client: [188] closed +Oct 03 17:33 : client: [189] opened from 127.0.0.1:35926 +Oct 03 17:33 : client: [189] closed +Oct 03 17:33 : client: [190] opened from 127.0.0.1:35930 +Oct 03 17:33 : client: [190] closed +Oct 03 17:33 : client: [191] opened from 127.0.0.1:35934 +Oct 03 17:33 : client: [191] closed +Oct 03 17:33 : client: [192] opened from 127.0.0.1:35938 +Oct 03 17:33 : client: [192] closed +Oct 03 17:33 : client: [193] opened from 127.0.0.1:35942 +Oct 03 17:33 : client: [193] closed +Oct 03 17:33 : client: [194] opened from 127.0.0.1:35946 +Oct 03 17:33 : client: [194] closed +Oct 03 17:33 : client: [195] opened from 127.0.0.1:35950 +Oct 03 17:33 : client: [195] closed +Oct 03 17:33 : client: [196] opened from 127.0.0.1:35954 +Oct 03 17:33 : client: [196] closed +Oct 03 17:33 : client: [197] opened from 127.0.0.1:35958 +Oct 03 17:33 : client: [197] closed +Oct 03 17:33 : client: [198] opened from 127.0.0.1:35962 +Oct 03 17:33 : client: [198] closed +Oct 03 17:33 : client: [199] opened from 127.0.0.1:35966 +Oct 03 17:33 : client: [199] closed +Oct 03 17:33 : client: [200] opened from 127.0.0.1:35970 +Oct 03 17:33 : client: [200] closed +Oct 03 17:33 : client: [201] opened from 127.0.0.1:35974 +Oct 03 17:33 : client: [201] closed +Oct 03 17:33 : client: [202] opened from 127.0.0.1:35978 +Oct 03 17:33 : client: [202] closed +Oct 03 17:33 : client: [203] opened from 127.0.0.1:35982 +Oct 03 17:33 : client: [203] closed +Oct 03 17:33 : client: [204] opened from 127.0.0.1:35986 +Oct 03 17:33 : client: [204] closed +Oct 03 17:33 : client: [205] opened from 127.0.0.1:35990 +Oct 03 17:33 : client: [205] closed +Oct 03 17:33 : client: [206] opened from 127.0.0.1:35994 +Oct 03 17:33 : client: [206] closed +Oct 03 17:33 : client: [207] opened from 127.0.0.1:35998 +Oct 03 17:33 : client: [207] closed +Oct 03 17:34 : client: [208] opened from 127.0.0.1:36002 +Oct 03 17:34 : client: [208] closed +Oct 03 17:34 : client: [209] opened from 127.0.0.1:36006 +Oct 03 17:34 : client: [209] closed +Oct 03 17:34 : client: [210] opened from 127.0.0.1:36010 +Oct 03 17:34 : client: [210] closed +Oct 03 17:34 : client: [211] opened from 127.0.0.1:36014 +Oct 03 17:34 : client: [211] closed +Oct 03 17:34 : client: [212] opened from 127.0.0.1:36018 +Oct 03 17:34 : client: [212] closed +Oct 03 17:34 : client: [213] opened from 127.0.0.1:36022 +Oct 03 17:34 : client: [213] closed +Oct 03 17:34 : client: [214] opened from 127.0.0.1:36032 +Oct 03 17:34 : client: [214] closed +Oct 03 17:34 : client: [215] opened from 127.0.0.1:36036 +Oct 03 17:34 : client: [215] closed +Oct 03 17:34 : client: [216] opened from 127.0.0.1:36040 +Oct 03 17:34 : client: [216] closed +Oct 03 17:34 : client: [217] opened from 127.0.0.1:36044 +Oct 03 17:34 : client: [217] closed +Oct 03 17:34 : client: [218] opened from 127.0.0.1:36048 +Oct 03 17:34 : client: [218] closed +Oct 03 17:34 : client: [219] opened from 127.0.0.1:36052 +Oct 03 17:34 : client: [219] closed +Oct 03 17:34 : client: [220] opened from 127.0.0.1:36056 +Oct 03 17:34 : client: [220] closed +Oct 03 17:34 : client: [221] opened from 127.0.0.1:36060 +Oct 03 17:34 : client: [221] closed +Oct 03 17:34 : client: [222] opened from 127.0.0.1:36064 +Oct 03 17:34 : client: [222] closed +Oct 03 17:34 : client: [223] opened from 127.0.0.1:36068 +Oct 03 17:34 : client: [223] closed +Oct 03 17:34 : client: [224] opened from 127.0.0.1:36072 +Oct 03 17:34 : client: [224] closed +Oct 03 17:34 : client: [225] opened from 127.0.0.1:36076 +Oct 03 17:34 : client: [225] closed +Oct 03 17:34 : client: [226] opened from 127.0.0.1:36080 +Oct 03 17:34 : client: [226] closed +Oct 03 17:34 : client: [227] opened from 127.0.0.1:36084 +Oct 03 17:34 : client: [227] closed +Oct 03 17:34 : client: [228] opened from 127.0.0.1:36088 +Oct 03 17:34 : client: [228] closed +Oct 03 17:34 : client: [229] opened from 127.0.0.1:36092 +Oct 03 17:34 : client: [229] closed +Oct 03 17:34 : client: [230] opened from 127.0.0.1:36096 +Oct 03 17:34 : client: [230] closed +Oct 03 17:34 : client: [231] opened from 127.0.0.1:36100 +Oct 03 17:34 : client: [231] closed +Oct 03 17:35 : client: [232] opened from 127.0.0.1:36104 +Oct 03 17:35 : client: [232] closed +Oct 03 17:35 : client: [233] opened from 127.0.0.1:36108 +Oct 03 17:35 : client: [233] closed +Oct 03 17:35 : client: [234] opened from 127.0.0.1:36112 +Oct 03 17:35 : client: [234] closed +Oct 03 17:35 : client: [235] opened from 127.0.0.1:36116 +Oct 03 17:35 : client: [235] closed +Oct 03 17:35 : client: [236] opened from 127.0.0.1:36120 +Oct 03 17:35 : client: [236] closed +Oct 03 17:35 : client: [237] opened from 127.0.0.1:36124 +Oct 03 17:35 : client: [237] closed +Oct 03 17:35 : client: [238] opened from 127.0.0.1:36128 +Oct 03 17:35 : client: [238] closed +Oct 03 17:35 : client: [239] opened from 127.0.0.1:36132 +Oct 03 17:35 : client: [239] closed +Oct 03 17:35 : client: [240] opened from 127.0.0.1:36136 +Oct 03 17:35 : client: [240] closed +Oct 03 17:35 : client: [241] opened from 127.0.0.1:36140 +Oct 03 17:35 : client: [241] closed +Oct 03 17:35 : client: [242] opened from 127.0.0.1:36144 +Oct 03 17:35 : client: [242] closed +Oct 03 17:35 : client: [243] opened from 127.0.0.1:36148 +Oct 03 17:35 : client: [243] closed +Oct 03 17:35 : client: [244] opened from 127.0.0.1:36152 +Oct 03 17:35 : client: [244] closed +Oct 03 17:35 : client: [245] opened from 127.0.0.1:36156 +Oct 03 17:35 : client: [245] closed +Oct 03 17:35 : client: [246] opened from 127.0.0.1:36160 +Oct 03 17:35 : client: [246] closed +Oct 03 17:35 : client: [247] opened from 127.0.0.1:36164 +Oct 03 17:35 : client: [247] closed +Oct 03 17:35 : client: [248] opened from 127.0.0.1:36168 +Oct 03 17:35 : client: [248] closed +Oct 03 17:35 : client: [249] opened from 127.0.0.1:36172 +Oct 03 17:35 : client: [249] closed +Oct 03 17:35 : client: [250] opened from 127.0.0.1:36176 +Oct 03 17:35 : client: [250] closed +Oct 03 17:35 : client: [251] opened from 127.0.0.1:36180 +Oct 03 17:35 : client: [251] closed +Oct 03 17:35 : client: [252] opened from 127.0.0.1:36184 +Oct 03 17:35 : client: [252] closed +Oct 03 17:35 : client: [253] opened from 127.0.0.1:36188 +Oct 03 17:35 : client: [253] closed +Oct 03 17:36 : client: [254] opened from 127.0.0.1:36192 +Oct 03 17:36 : client: [254] closed +Oct 03 17:36 : client: [255] opened from 127.0.0.1:36196 +Oct 03 17:36 : client: [255] closed +Oct 03 17:36 : client: [256] opened from 127.0.0.1:36200 +Oct 03 17:36 : client: [256] closed +Oct 03 17:36 : client: [257] opened from 127.0.0.1:36204 +Oct 03 17:36 : client: [257] closed +Oct 03 17:36 : client: [258] opened from 127.0.0.1:36242 +Oct 03 17:36 : client: [258] closed +Oct 03 17:36 : client: [259] opened from 127.0.0.1:36246 +Oct 03 17:36 : client: [259] closed +Oct 03 17:36 : client: [260] opened from 127.0.0.1:36250 +Oct 03 17:36 : client: [260] closed +Oct 03 17:36 : client: [261] opened from 127.0.0.1:36254 +Oct 03 17:36 : client: [261] closed +Oct 03 17:36 : client: [262] opened from 127.0.0.1:36272 +Oct 03 17:36 : client: [262] closed +Oct 03 17:36 : client: [263] opened from 127.0.0.1:36276 +Oct 03 17:36 : client: [263] closed +Oct 03 17:36 : client: [264] opened from 127.0.0.1:36320 +Oct 03 17:36 : client: [264] closed +Oct 03 17:36 : client: [265] opened from 127.0.0.1:36324 +Oct 03 17:36 : client: [265] closed +Oct 03 17:36 : client: [266] opened from 127.0.0.1:36328 +Oct 03 17:36 : client: [266] closed +Oct 03 17:36 : client: [267] opened from 127.0.0.1:36332 +Oct 03 17:36 : client: [267] closed +Oct 03 17:36 : client: [268] opened from 127.0.0.1:36336 +Oct 03 17:36 : client: [268] closed +Oct 03 17:36 : client: [269] opened from 127.0.0.1:36340 +Oct 03 17:36 : client: [269] closed +Oct 03 17:36 : client: [270] opened from 127.0.0.1:36354 +Oct 03 17:36 : client: [270] closed +Oct 03 17:36 : client: [271] opened from 127.0.0.1:36358 +Oct 03 17:36 : client: [271] closed +Oct 03 17:36 : client: [272] opened from 127.0.0.1:36392 +Oct 03 17:36 : client: [272] closed +Oct 03 17:36 : client: [273] opened from 127.0.0.1:36396 +Oct 03 17:36 : client: [273] closed +Oct 03 17:36 : client: [274] opened from 127.0.0.1:36404 +Oct 03 17:36 : client: [274] closed +Oct 03 17:36 : client: [275] opened from 127.0.0.1:36408 +Oct 03 17:36 : client: [275] closed +Oct 03 17:36 : client: [276] opened from 127.0.0.1:36412 +Oct 03 17:36 : client: [276] closed +Oct 03 17:36 : client: [277] opened from 127.0.0.1:36416 +Oct 03 17:36 : client: [277] closed +Oct 03 17:37 : client: [278] opened from 127.0.0.1:36420 +Oct 03 17:37 : client: [278] closed +Oct 03 17:37 : client: [279] opened from 127.0.0.1:36424 +Oct 03 17:37 : client: [279] closed +Oct 03 17:37 : client: [280] opened from 127.0.0.1:36428 +Oct 03 17:37 : client: [280] closed +Oct 03 17:37 : client: [281] opened from 127.0.0.1:36432 +Oct 03 17:37 : client: [281] closed +Oct 03 17:37 : client: [282] opened from 127.0.0.1:36436 +Oct 03 17:37 : client: [282] closed +Oct 03 17:37 : client: [283] opened from 127.0.0.1:36440 +Oct 03 17:37 : client: [283] closed +Oct 03 17:37 : client: [284] opened from 127.0.0.1:36444 +Oct 03 17:37 : client: [284] closed +Oct 03 17:37 : client: [285] opened from 127.0.0.1:36448 +Oct 03 17:37 : client: [285] closed +Oct 03 17:37 : client: [286] opened from 127.0.0.1:36452 +Oct 03 17:37 : client: [286] closed +Oct 03 17:37 : client: [287] opened from 127.0.0.1:36456 +Oct 03 17:37 : client: [287] closed +Oct 03 17:37 : client: [288] opened from 127.0.0.1:36460 +Oct 03 17:37 : client: [288] closed +Oct 03 17:37 : client: [289] opened from 127.0.0.1:36464 +Oct 03 17:37 : client: [289] closed +Oct 03 17:37 : client: [290] opened from 127.0.0.1:36468 +Oct 03 17:37 : client: [290] closed +Oct 03 17:37 : client: [291] opened from 127.0.0.1:36472 +Oct 03 17:37 : client: [291] closed +Oct 03 17:37 : client: [292] opened from 127.0.0.1:36476 +Oct 03 17:37 : client: [292] closed +Oct 03 17:37 : client: [293] opened from 127.0.0.1:36480 +Oct 03 17:37 : client: [293] closed +Oct 03 17:37 : client: [294] opened from 127.0.0.1:36484 +Oct 03 17:37 : client: [294] closed +Oct 03 17:37 : client: [295] opened from 127.0.0.1:36488 +Oct 03 17:37 : client: [295] closed +Oct 03 17:37 : client: [296] opened from 127.0.0.1:36492 +Oct 03 17:37 : client: [296] closed +Oct 03 17:37 : client: [297] opened from 127.0.0.1:36496 +Oct 03 17:37 : client: [297] closed +Oct 03 17:37 : client: [298] opened from 127.0.0.1:36500 +Oct 03 17:37 : client: [298] closed +Oct 03 17:37 : client: [299] opened from 127.0.0.1:36504 +Oct 03 17:37 : client: [299] closed +Oct 03 17:37 : client: [300] opened from 127.0.0.1:36508 +Oct 03 17:37 : client: [300] closed +Oct 03 17:37 : client: [301] opened from 127.0.0.1:36512 +Oct 03 17:37 : client: [301] closed +Oct 03 17:38 : client: [302] opened from 127.0.0.1:36516 +Oct 03 17:38 : client: [302] closed +Oct 03 17:38 : client: [303] opened from 127.0.0.1:36520 +Oct 03 17:38 : client: [303] closed +Oct 03 17:38 : client: [304] opened from 127.0.0.1:36524 +Oct 03 17:38 : client: [304] closed +Oct 03 17:38 : client: [305] opened from 127.0.0.1:36528 +Oct 03 17:38 : client: [305] closed +Oct 03 17:38 : client: [306] opened from 127.0.0.1:36532 +Oct 03 17:38 : client: [306] closed +Oct 03 17:38 : client: [307] opened from 127.0.0.1:36536 +Oct 03 17:38 : client: [307] closed +Oct 03 17:38 : client: [308] opened from 127.0.0.1:36540 +Oct 03 17:38 : client: [308] closed +Oct 03 17:38 : client: [309] opened from 127.0.0.1:36544 +Oct 03 17:38 : client: [309] closed +Oct 03 17:38 : client: [310] opened from 127.0.0.1:36550 +Oct 03 17:38 : client: [310] closed +Oct 03 17:38 : client: [311] opened from 127.0.0.1:36554 +Oct 03 17:38 : client: [311] closed +Oct 03 17:38 : client: [312] opened from 127.0.0.1:36560 +Oct 03 17:38 : client: [312] closed +Oct 03 17:38 : client: [313] opened from 127.0.0.1:36564 +Oct 03 17:38 : client: [313] closed +Oct 03 17:38 : client: [314] opened from 127.0.0.1:36594 +Oct 03 17:38 : client: [314] closed +Oct 03 17:38 : client: [315] opened from 127.0.0.1:36598 +Oct 03 17:38 : client: [315] closed +Oct 03 17:38 : client: [316] opened from 127.0.0.1:36606 +Oct 03 17:38 : client: [316] closed +Oct 03 17:38 : client: [317] opened from 127.0.0.1:36610 +Oct 03 17:38 : client: [317] closed +Oct 03 17:38 : client: [318] opened from 127.0.0.1:36614 +Oct 03 17:38 : client: [318] closed +Oct 03 17:38 : client: [319] opened from 127.0.0.1:36618 +Oct 03 17:38 : client: [319] closed +Oct 03 17:38 : client: [320] opened from 127.0.0.1:36622 +Oct 03 17:38 : client: [320] closed +Oct 03 17:38 : client: [321] opened from 127.0.0.1:36626 +Oct 03 17:38 : client: [321] closed +Oct 03 17:38 : client: [322] opened from 127.0.0.1:36630 +Oct 03 17:38 : client: [322] closed +Oct 03 17:38 : client: [323] opened from 127.0.0.1:36634 +Oct 03 17:38 : client: [323] closed +Oct 03 17:38 : client: [324] opened from 127.0.0.1:36638 +Oct 03 17:38 : client: [324] closed +Oct 03 17:38 : client: [325] opened from 127.0.0.1:36642 +Oct 03 17:38 : client: [325] closed +Oct 03 17:39 : client: [326] opened from 127.0.0.1:36646 +Oct 03 17:39 : client: [326] closed +Oct 03 17:39 : client: [327] opened from 127.0.0.1:36650 +Oct 03 17:39 : client: [327] closed +Oct 03 17:39 : client: [328] opened from 127.0.0.1:36654 +Oct 03 17:39 : client: [328] closed +Oct 03 17:39 : client: [329] opened from 127.0.0.1:36658 +Oct 03 17:39 : client: [329] closed +Oct 03 17:39 : client: [330] opened from 127.0.0.1:36662 +Oct 03 17:39 : client: [330] closed +Oct 03 17:39 : client: [331] opened from 127.0.0.1:36666 +Oct 03 17:39 : client: [331] closed +Oct 03 17:39 : client: [332] opened from 127.0.0.1:36672 +Oct 03 17:39 : client: [332] closed +Oct 03 17:39 : client: [333] opened from 127.0.0.1:36676 +Oct 03 17:39 : client: [333] closed +Oct 03 17:39 : client: [334] opened from 127.0.0.1:36686 +Oct 03 17:39 : client: [334] closed +Oct 03 17:39 : client: [335] opened from 127.0.0.1:36690 +Oct 03 17:39 : client: [335] closed +Oct 03 17:39 : client: [336] opened from 127.0.0.1:36700 +Oct 03 17:39 : client: [336] closed +Oct 03 17:39 : client: [337] opened from 127.0.0.1:36704 +Oct 03 17:39 : client: [337] closed +Oct 03 17:39 : client: [338] opened from 127.0.0.1:36716 +Oct 03 17:39 : client: [338] closed +Oct 03 17:39 : client: [339] opened from 127.0.0.1:36720 +Oct 03 17:39 : client: [339] closed +Oct 03 17:39 : client: [340] opened from 127.0.0.1:36730 +Oct 03 17:39 : client: [340] closed +Oct 03 17:39 : client: [341] opened from 127.0.0.1:36734 +Oct 03 17:39 : client: [341] closed +Oct 03 17:39 : client: [342] opened from 127.0.0.1:36742 +Oct 03 17:39 : client: [342] closed +Oct 03 17:39 : client: [343] opened from 127.0.0.1:36746 +Oct 03 17:39 : client: [343] closed +Oct 03 17:39 : client: [344] opened from 127.0.0.1:36758 +Oct 03 17:39 : client: [344] closed +Oct 03 17:39 : client: [345] opened from 127.0.0.1:36762 +Oct 03 17:39 : client: [345] closed +Oct 03 17:39 : client: [346] opened from 127.0.0.1:36770 +Oct 03 17:39 : client: [346] closed +Oct 03 17:39 : client: [347] opened from 127.0.0.1:36774 +Oct 03 17:39 : client: [347] closed +Oct 03 17:39 : client: [348] opened from 127.0.0.1:36786 +Oct 03 17:39 : client: [348] closed +Oct 03 17:39 : client: [349] opened from 127.0.0.1:36790 +Oct 03 17:39 : client: [349] closed +Oct 03 17:40 : client: [350] opened from 127.0.0.1:36800 +Oct 03 17:40 : client: [350] closed +Oct 03 17:40 : client: [351] opened from 127.0.0.1:36804 +Oct 03 17:40 : client: [351] closed +Oct 03 17:40 : client: [352] opened from 127.0.0.1:36814 +Oct 03 17:40 : client: [352] closed +Oct 03 17:40 : client: [353] opened from 127.0.0.1:36818 +Oct 03 17:40 : client: [353] closed +Oct 03 17:40 : client: [354] opened from 127.0.0.1:36830 +Oct 03 17:40 : client: [354] closed +Oct 03 17:40 : client: [355] opened from 127.0.0.1:36834 +Oct 03 17:40 : client: [355] closed +Oct 03 17:40 : client: [356] opened from 127.0.0.1:36850 +Oct 03 17:40 : client: [356] closed +Oct 03 17:40 : client: [357] opened from 127.0.0.1:36854 +Oct 03 17:40 : client: [357] closed +Oct 03 17:40 : client: [358] opened from 127.0.0.1:36890 +Oct 03 17:40 : client: [358] closed +Oct 03 17:40 : client: [359] opened from 127.0.0.1:36894 +Oct 03 17:40 : client: [359] closed +Oct 03 17:40 : client: [360] opened from 127.0.0.1:36902 +Oct 03 17:40 : client: [360] closed +Oct 03 17:40 : client: [361] opened from 127.0.0.1:36906 +Oct 03 17:40 : client: [361] closed +Oct 03 17:40 : client: [362] opened from 127.0.0.1:36914 +Oct 03 17:40 : client: [362] closed +Oct 03 17:40 : client: [363] opened from 127.0.0.1:36918 +Oct 03 17:40 : client: [363] closed +Oct 03 17:40 : client: [364] opened from 127.0.0.1:36926 +Oct 03 17:40 : client: [364] closed +Oct 03 17:40 : client: [365] opened from 127.0.0.1:36930 +Oct 03 17:40 : client: [365] closed +Oct 03 17:40 : client: [366] opened from 127.0.0.1:36934 +Oct 03 17:40 : client: [366] closed +Oct 03 17:40 : client: [367] opened from 127.0.0.1:36938 +Oct 03 17:40 : client: [367] closed +Oct 03 17:40 : client: [368] opened from 127.0.0.1:36942 +Oct 03 17:40 : client: [368] closed +Oct 03 17:40 : client: [369] opened from 127.0.0.1:36946 +Oct 03 17:40 : client: [369] closed +Oct 03 17:40 : client: [370] opened from 127.0.0.1:36950 +Oct 03 17:40 : client: [370] closed +Oct 03 17:40 : client: [371] opened from 127.0.0.1:36954 +Oct 03 17:40 : client: [371] closed +Oct 03 17:40 : client: [372] opened from 127.0.0.1:36958 +Oct 03 17:40 : client: [372] closed +Oct 03 17:40 : client: [373] opened from 127.0.0.1:36962 +Oct 03 17:40 : client: [373] closed +Oct 03 17:41 : client: [374] opened from 127.0.0.1:36966 +Oct 03 17:41 : client: [374] closed +Oct 03 17:41 : client: [375] opened from 127.0.0.1:36970 +Oct 03 17:41 : client: [375] closed +Oct 03 17:41 : client: [376] opened from 127.0.0.1:36974 +Oct 03 17:41 : client: [376] closed +Oct 03 17:41 : client: [377] opened from 127.0.0.1:36978 +Oct 03 17:41 : client: [377] closed +Oct 03 17:41 : client: [378] opened from 127.0.0.1:36982 +Oct 03 17:41 : client: [378] closed +Oct 03 17:41 : client: [379] opened from 127.0.0.1:36986 +Oct 03 17:41 : client: [379] closed +Oct 03 17:41 : client: [380] opened from 127.0.0.1:36990 +Oct 03 17:41 : client: [380] closed +Oct 03 17:41 : client: [381] opened from 127.0.0.1:36994 +Oct 03 17:41 : client: [381] closed +Oct 03 17:41 : client: [382] opened from 127.0.0.1:36998 +Oct 03 17:41 : client: [382] closed +Oct 03 17:41 : client: [383] opened from 127.0.0.1:37002 +Oct 03 17:41 : client: [383] closed +Oct 03 17:41 : client: [384] opened from 127.0.0.1:37006 +Oct 03 17:41 : client: [384] closed +Oct 03 17:41 : client: [385] opened from 127.0.0.1:37010 +Oct 03 17:41 : client: [385] closed +Oct 03 17:41 : client: [386] opened from 127.0.0.1:37014 +Oct 03 17:41 : client: [386] closed +Oct 03 17:41 : client: [387] opened from 127.0.0.1:37018 +Oct 03 17:41 : client: [387] closed +Oct 03 17:41 : client: [388] opened from 127.0.0.1:37022 +Oct 03 17:41 : client: [388] closed +Oct 03 17:41 : client: [389] opened from 127.0.0.1:37026 +Oct 03 17:41 : client: [389] closed +Oct 03 17:41 : client: [390] opened from 127.0.0.1:37030 +Oct 03 17:41 : client: [390] closed +Oct 03 17:41 : client: [391] opened from 127.0.0.1:37034 +Oct 03 17:41 : client: [391] closed +Oct 03 17:41 : client: [392] opened from 127.0.0.1:37038 +Oct 03 17:41 : client: [392] closed +Oct 03 17:41 : client: [393] opened from 127.0.0.1:37042 +Oct 03 17:41 : client: [393] closed +Oct 03 17:41 : client: [394] opened from 127.0.0.1:37046 +Oct 03 17:41 : client: [394] closed +Oct 03 17:41 : client: [395] opened from 127.0.0.1:37050 +Oct 03 17:41 : client: [395] closed +Oct 03 17:41 : client: [396] opened from 127.0.0.1:37054 +Oct 03 17:41 : client: [396] closed +Oct 03 17:41 : client: [397] opened from 127.0.0.1:37058 +Oct 03 17:41 : client: [397] closed +Oct 03 17:42 : client: [398] opened from 127.0.0.1:37062 +Oct 03 17:42 : client: [398] closed +Oct 03 17:42 : client: [399] opened from 127.0.0.1:37066 +Oct 03 17:42 : client: [399] closed +Oct 03 17:42 : client: [400] opened from 127.0.0.1:37070 +Oct 03 17:42 : client: [400] closed +Oct 03 17:42 : client: [401] opened from 127.0.0.1:37074 +Oct 03 17:42 : client: [401] closed +Oct 03 17:42 : client: [402] opened from 127.0.0.1:37078 +Oct 03 17:42 : client: [402] closed +Oct 03 17:42 : client: [403] opened from 127.0.0.1:37082 +Oct 03 17:42 : client: [403] closed +Oct 03 17:42 : client: [404] opened from 127.0.0.1:37090 +Oct 03 17:42 : client: [404] closed +Oct 03 17:42 : client: [405] opened from 127.0.0.1:37094 +Oct 03 17:42 : client: [405] closed +Oct 03 17:42 : client: [406] opened from 127.0.0.1:37104 +Oct 03 17:42 : client: [406] closed +Oct 03 17:42 : client: [407] opened from 127.0.0.1:37108 +Oct 03 17:42 : client: [407] closed +Oct 03 17:42 : client: [408] opened from 127.0.0.1:37112 +Oct 03 17:42 : client: [408] closed +Oct 03 17:42 : client: [409] opened from 127.0.0.1:37116 +Oct 03 17:42 : client: [409] closed +Oct 03 17:42 : client: [410] opened from 127.0.0.1:37126 +Oct 03 17:42 : client: [410] closed +Oct 03 17:42 : client: [411] opened from 127.0.0.1:37130 +Oct 03 17:42 : client: [411] closed +Oct 03 17:42 : client: [412] opened from 127.0.0.1:37178 +Oct 03 17:42 : client: [412] closed +Oct 03 17:42 : client: [413] opened from 127.0.0.1:37182 +Oct 03 17:42 : client: [413] closed +Oct 03 17:42 : client: [414] opened from 127.0.0.1:37188 +Oct 03 17:42 : client: [414] closed +Oct 03 17:42 : client: [415] opened from 127.0.0.1:37192 +Oct 03 17:42 : client: [415] closed +Oct 03 17:42 : client: [416] opened from 127.0.0.1:37196 +Oct 03 17:42 : client: [416] closed +Oct 03 17:42 : client: [417] opened from 127.0.0.1:37200 +Oct 03 17:42 : client: [417] closed +Oct 03 17:42 : client: [418] opened from 127.0.0.1:37204 +Oct 03 17:42 : client: [418] closed +Oct 03 17:42 : client: [419] opened from 127.0.0.1:37208 +Oct 03 17:42 : client: [419] closed +Oct 03 17:42 : client: [420] opened from 127.0.0.1:37226 +Oct 03 17:42 : client: [420] closed +Oct 03 17:42 : client: [421] opened from 127.0.0.1:37230 +Oct 03 17:42 : client: [421] closed +Oct 03 17:43 : client: [422] opened from 127.0.0.1:37234 +Oct 03 17:43 : client: [422] closed +Oct 03 17:43 : client: [423] opened from 127.0.0.1:37238 +Oct 03 17:43 : client: [423] closed +Oct 03 17:43 : client: [424] opened from 127.0.0.1:37242 +Oct 03 17:43 : client: [424] closed +Oct 03 17:43 : client: [425] opened from 127.0.0.1:37246 +Oct 03 17:43 : client: [425] closed +Oct 03 17:43 : client: [426] opened from 127.0.0.1:37250 +Oct 03 17:43 : client: [426] closed +Oct 03 17:43 : client: [427] opened from 127.0.0.1:37254 +Oct 03 17:43 : client: [427] closed +Oct 03 17:43 : client: [428] opened from 127.0.0.1:37258 +Oct 03 17:43 : client: [428] closed +Oct 03 17:43 : client: [429] opened from 127.0.0.1:37262 +Oct 03 17:43 : client: [429] closed +Oct 03 17:43 : client: [430] opened from 127.0.0.1:37266 +Oct 03 17:43 : client: [430] closed +Oct 03 17:43 : client: [431] opened from 127.0.0.1:37270 +Oct 03 17:43 : client: [431] closed +Oct 03 17:43 : client: [432] opened from 127.0.0.1:37274 +Oct 03 17:43 : client: [432] closed +Oct 03 17:43 : client: [433] opened from 127.0.0.1:37278 +Oct 03 17:43 : client: [433] closed +Oct 03 17:43 : client: [434] opened from 127.0.0.1:37282 +Oct 03 17:43 : client: [434] closed +Oct 03 17:43 : client: [435] opened from 127.0.0.1:37286 +Oct 03 17:43 : client: [435] closed +Oct 03 17:43 : client: [436] opened from 127.0.0.1:37290 +Oct 03 17:43 : client: [436] closed +Oct 03 17:43 : client: [437] opened from 127.0.0.1:37294 +Oct 03 17:43 : client: [437] closed +Oct 03 17:43 : client: [438] opened from 127.0.0.1:37298 +Oct 03 17:43 : client: [438] closed +Oct 03 17:43 : client: [439] opened from 127.0.0.1:37302 +Oct 03 17:43 : client: [439] closed +Oct 03 17:43 : client: [440] opened from 127.0.0.1:37306 +Oct 03 17:43 : client: [440] closed +Oct 03 17:43 : client: [441] opened from 127.0.0.1:37310 +Oct 03 17:43 : client: [441] closed +Oct 03 17:43 : client: [442] opened from 127.0.0.1:37314 +Oct 03 17:43 : client: [442] closed +Oct 03 17:43 : client: [443] opened from 127.0.0.1:37318 +Oct 03 17:43 : client: [443] closed +Oct 03 17:43 : client: [444] opened from 127.0.0.1:37322 +Oct 03 17:43 : client: [444] closed +Oct 03 17:43 : client: [445] opened from 127.0.0.1:37326 +Oct 03 17:43 : client: [445] closed +Oct 03 17:44 : client: [446] opened from 127.0.0.1:37330 +Oct 03 17:44 : client: [446] closed +Oct 03 17:44 : client: [447] opened from 127.0.0.1:37334 +Oct 03 17:44 : client: [447] closed +Oct 03 17:44 : client: [448] opened from 127.0.0.1:37338 +Oct 03 17:44 : client: [448] closed +Oct 03 17:44 : client: [449] opened from 127.0.0.1:37342 +Oct 03 17:44 : client: [449] closed +Oct 03 17:44 : client: [450] opened from 127.0.0.1:37348 +Oct 03 17:44 : client: [450] closed +Oct 03 17:44 : client: [451] opened from 127.0.0.1:37352 +Oct 03 17:44 : client: [451] closed +Oct 03 17:44 : client: [452] opened from 127.0.0.1:37356 +Oct 03 17:44 : client: [452] closed +Oct 03 17:44 : client: [453] opened from 127.0.0.1:37360 +Oct 03 17:44 : client: [453] closed +Oct 03 17:44 : client: [454] opened from 127.0.0.1:37370 +Oct 03 17:44 : client: [454] closed +Oct 03 17:44 : client: [455] opened from 127.0.0.1:37374 +Oct 03 17:44 : client: [455] closed +Oct 03 17:44 : client: [456] opened from 127.0.0.1:37532 +Oct 03 17:44 : client: [456] closed +Oct 03 17:44 : client: [457] opened from 127.0.0.1:37536 +Oct 03 17:44 : client: [457] closed +Oct 03 17:44 : client: [458] opened from 127.0.0.1:37540 +Oct 03 17:44 : client: [458] closed +Oct 03 17:44 : client: [459] opened from 127.0.0.1:37544 +Oct 03 17:44 : client: [459] closed +Oct 03 17:44 : client: [460] opened from 127.0.0.1:37548 +Oct 03 17:44 : client: [460] closed +Oct 03 17:44 : client: [461] opened from 127.0.0.1:37552 +Oct 03 17:44 : client: [461] closed +Oct 03 17:44 : client: [462] opened from 127.0.0.1:37556 +Oct 03 17:44 : client: [462] closed +Oct 03 17:44 : client: [463] opened from 127.0.0.1:37560 +Oct 03 17:44 : client: [463] closed +Oct 03 17:44 : client: [464] opened from 127.0.0.1:37564 +Oct 03 17:44 : client: [464] closed +Oct 03 17:44 : client: [465] opened from 127.0.0.1:37568 +Oct 03 17:44 : client: [465] closed +Oct 03 17:44 : client: [466] opened from 127.0.0.1:37572 +Oct 03 17:44 : client: [466] closed +Oct 03 17:44 : client: [467] opened from 127.0.0.1:37576 +Oct 03 17:44 : client: [467] closed +Oct 03 17:44 : client: [468] opened from 127.0.0.1:37584 +Oct 03 17:44 : client: [468] closed +Oct 03 17:44 : client: [469] opened from 127.0.0.1:37588 +Oct 03 17:44 : client: [469] closed +Oct 03 17:45 : client: [470] opened from 127.0.0.1:37594 +Oct 03 17:45 : client: [470] closed +Oct 03 17:45 : client: [471] opened from 127.0.0.1:37598 +Oct 03 17:45 : client: [471] closed +Oct 03 17:45 : client: [472] opened from 127.0.0.1:37604 +Oct 03 17:45 : client: [472] closed +Oct 03 17:45 : client: [473] opened from 127.0.0.1:37608 +Oct 03 17:45 : client: [473] closed +Oct 03 17:45 : client: [474] opened from 127.0.0.1:37612 +Oct 03 17:45 : client: [474] closed +Oct 03 17:45 : client: [475] opened from 127.0.0.1:37616 +Oct 03 17:45 : client: [475] closed +Oct 03 17:45 : client: [476] opened from 127.0.0.1:37620 +Oct 03 17:45 : client: [476] closed +Oct 03 17:45 : client: [477] opened from 127.0.0.1:37624 +Oct 03 17:45 : client: [477] closed +Oct 03 17:45 : client: [478] opened from 127.0.0.1:37628 +Oct 03 17:45 : client: [478] closed +Oct 03 17:45 : client: [479] opened from 127.0.0.1:37632 +Oct 03 17:45 : client: [479] closed +Oct 03 17:45 : client: [480] opened from 127.0.0.1:37636 +Oct 03 17:45 : client: [480] closed +Oct 03 17:45 : client: [481] opened from 127.0.0.1:37640 +Oct 03 17:45 : client: [481] closed +Oct 03 17:45 : client: [482] opened from 127.0.0.1:37682 +Oct 03 17:45 : client: [482] closed +Oct 03 17:45 : client: [483] opened from 127.0.0.1:37686 +Oct 03 17:45 : client: [483] closed +Oct 03 17:45 : client: [484] opened from 127.0.0.1:37744 +Oct 03 17:45 : client: [484] closed +Oct 03 17:45 : client: [485] opened from 127.0.0.1:37748 +Oct 03 17:45 : client: [485] closed +Oct 03 17:45 : client: [486] opened from 127.0.0.1:37752 +Oct 03 17:45 : client: [486] closed +Oct 03 17:45 : client: [487] opened from 127.0.0.1:37756 +Oct 03 17:45 : client: [487] closed +Oct 03 17:45 : client: [488] opened from 127.0.0.1:37760 +Oct 03 17:45 : client: [488] closed +Oct 03 17:45 : client: [489] opened from 127.0.0.1:37764 +Oct 03 17:45 : client: [489] closed +Oct 03 17:45 : client: [490] opened from 127.0.0.1:37780 +Oct 03 17:45 : client: [490] closed +Oct 03 17:45 : client: [491] opened from 127.0.0.1:37784 +Oct 03 17:45 : client: [491] closed +Oct 03 17:45 : client: [492] opened from 127.0.0.1:37790 +Oct 03 17:45 : client: [492] closed +Oct 03 17:45 : client: [493] opened from 127.0.0.1:37794 +Oct 03 17:45 : client: [493] closed +Oct 03 17:46 : client: [494] opened from 127.0.0.1:37800 +Oct 03 17:46 : client: [494] closed +Oct 03 17:46 : client: [495] opened from 127.0.0.1:37804 +Oct 03 17:46 : client: [495] closed +Oct 03 17:46 : client: [496] opened from 127.0.0.1:37808 +Oct 03 17:46 : client: [496] closed +Oct 03 17:46 : client: [497] opened from 127.0.0.1:37812 +Oct 03 17:46 : client: [497] closed +Oct 03 17:46 : client: [498] opened from 127.0.0.1:37816 +Oct 03 17:46 : client: [498] closed +Oct 03 17:46 : client: [499] opened from 127.0.0.1:37820 +Oct 03 17:46 : client: [499] closed +Oct 03 17:46 : client: [500] opened from 127.0.0.1:37826 +Oct 03 17:46 : client: [500] closed +Oct 03 17:46 : client: [501] opened from 127.0.0.1:37830 +Oct 03 17:46 : client: [501] closed +Oct 03 17:46 : client: [502] opened from 127.0.0.1:37836 +Oct 03 17:46 : client: [502] closed +Oct 03 17:46 : client: [503] opened from 127.0.0.1:37840 +Oct 03 17:46 : client: [503] closed +Oct 03 17:46 : client: [504] opened from 127.0.0.1:37844 +Oct 03 17:46 : client: [504] closed +Oct 03 17:46 : client: [505] opened from 127.0.0.1:37848 +Oct 03 17:46 : client: [505] closed +Oct 03 17:46 : client: [506] opened from 127.0.0.1:37852 +Oct 03 17:46 : client: [506] closed +Oct 03 17:46 : client: [507] opened from 127.0.0.1:37856 +Oct 03 17:46 : client: [507] closed +Oct 03 17:46 : client: [508] opened from 127.0.0.1:37866 +Oct 03 17:46 : client: [508] closed +Oct 03 17:46 : client: [509] opened from 127.0.0.1:37870 +Oct 03 17:46 : client: [509] closed +Oct 03 17:46 : client: [510] opened from 127.0.0.1:37874 +Oct 03 17:46 : client: [510] closed +Oct 03 17:46 : client: [511] opened from 127.0.0.1:37878 +Oct 03 17:46 : client: [511] closed +Oct 03 17:46 : client: [512] opened from 127.0.0.1:37882 +Oct 03 17:46 : client: [512] closed +Oct 03 17:46 : client: [513] opened from 127.0.0.1:37886 +Oct 03 17:46 : client: [513] closed +Oct 03 17:46 : client: [514] opened from 127.0.0.1:37890 +Oct 03 17:46 : client: [514] closed +Oct 03 17:46 : client: [515] opened from 127.0.0.1:37894 +Oct 03 17:46 : client: [515] closed +Oct 03 17:46 : client: [516] opened from 127.0.0.1:37898 +Oct 03 17:46 : client: [516] closed +Oct 03 17:46 : client: [517] opened from 127.0.0.1:37902 +Oct 03 17:46 : client: [517] closed +Oct 03 17:47 : client: [518] opened from 127.0.0.1:37906 +Oct 03 17:47 : client: [518] closed +Oct 03 17:47 : client: [519] opened from 127.0.0.1:37910 +Oct 03 17:47 : client: [519] closed +Oct 03 17:47 : client: [520] opened from 127.0.0.1:37914 +Oct 03 17:47 : client: [520] closed +Oct 03 17:47 : client: [521] opened from 127.0.0.1:37918 +Oct 03 17:47 : client: [521] closed +Oct 03 17:47 : client: [522] opened from 127.0.0.1:37922 +Oct 03 17:47 : client: [522] closed +Oct 03 17:47 : client: [523] opened from 127.0.0.1:37926 +Oct 03 17:47 : client: [523] closed +Oct 03 17:47 : client: [524] opened from 127.0.0.1:37930 +Oct 03 17:47 : client: [524] closed +Oct 03 17:47 : client: [525] opened from 127.0.0.1:37934 +Oct 03 17:47 : client: [525] closed +Oct 03 17:47 : client: [526] opened from 127.0.0.1:37938 +Oct 03 17:47 : client: [526] closed +Oct 03 17:47 : client: [527] opened from 127.0.0.1:37942 +Oct 03 17:47 : client: [527] closed +Oct 03 17:47 : client: [528] opened from 127.0.0.1:37946 +Oct 03 17:47 : client: [528] closed +Oct 03 17:47 : client: [529] opened from 127.0.0.1:37950 +Oct 03 17:47 : client: [529] closed +Oct 03 17:47 : client: [530] opened from 127.0.0.1:37954 +Oct 03 17:47 : client: [530] closed +Oct 03 17:47 : client: [531] opened from 127.0.0.1:37958 +Oct 03 17:47 : client: [531] closed +Oct 03 17:47 : client: [532] opened from 127.0.0.1:37962 +Oct 03 17:47 : client: [532] closed +Oct 03 17:47 : client: [533] opened from 127.0.0.1:37966 +Oct 03 17:47 : client: [533] closed +Oct 03 17:47 : client: [534] opened from 127.0.0.1:37970 +Oct 03 17:47 : client: [534] closed +Oct 03 17:47 : client: [535] opened from 127.0.0.1:37974 +Oct 03 17:47 : client: [535] closed +Oct 03 17:47 : client: [536] opened from 127.0.0.1:37978 +Oct 03 17:47 : client: [536] closed +Oct 03 17:47 : client: [537] opened from 127.0.0.1:37982 +Oct 03 17:47 : client: [537] closed +Oct 03 17:47 : client: [538] opened from 127.0.0.1:37986 +Oct 03 17:47 : client: [538] closed +Oct 03 17:47 : client: [539] opened from 127.0.0.1:37990 +Oct 03 17:47 : client: [539] closed +Oct 03 17:47 : client: [540] opened from 127.0.0.1:37994 +Oct 03 17:47 : client: [540] closed +Oct 03 17:47 : client: [541] opened from 127.0.0.1:37998 +Oct 03 17:47 : client: [541] closed +Oct 03 17:48 : client: [542] opened from 127.0.0.1:38002 +Oct 03 17:48 : client: [542] closed +Oct 03 17:48 : client: [543] opened from 127.0.0.1:38006 +Oct 03 17:48 : client: [543] closed +Oct 03 17:48 : client: [544] opened from 127.0.0.1:38010 +Oct 03 17:48 : client: [544] closed +Oct 03 17:48 : client: [545] opened from 127.0.0.1:38014 +Oct 03 17:48 : client: [545] closed +Oct 03 17:48 : client: [546] opened from 127.0.0.1:38018 +Oct 03 17:48 : client: [546] closed +Oct 03 17:48 : client: [547] opened from 127.0.0.1:38022 +Oct 03 17:48 : client: [547] closed +Oct 03 17:48 : client: [548] opened from 127.0.0.1:38026 +Oct 03 17:48 : client: [548] closed +Oct 03 17:48 : client: [549] opened from 127.0.0.1:38030 +Oct 03 17:48 : client: [549] closed +Oct 03 17:48 : client: [550] opened from 127.0.0.1:38034 +Oct 03 17:48 : client: [550] closed +Oct 03 17:48 : client: [551] opened from 127.0.0.1:38038 +Oct 03 17:48 : client: [551] closed +Oct 03 17:48 : client: [552] opened from 127.0.0.1:38042 +Oct 03 17:48 : client: [552] closed +Oct 03 17:48 : client: [553] opened from 127.0.0.1:38046 +Oct 03 17:48 : client: [553] closed +Oct 03 17:48 : client: [554] opened from 127.0.0.1:38050 +Oct 03 17:48 : client: [554] closed +Oct 03 17:48 : client: [555] opened from 127.0.0.1:38054 +Oct 03 17:48 : client: [555] closed +Oct 03 17:48 : client: [556] opened from 127.0.0.1:38058 +Oct 03 17:48 : client: [556] closed +Oct 03 17:48 : client: [557] opened from 127.0.0.1:38062 +Oct 03 17:48 : client: [557] closed +Oct 03 17:48 : client: [558] opened from 127.0.0.1:38066 +Oct 03 17:48 : client: [558] closed +Oct 03 17:48 : client: [559] opened from 127.0.0.1:38070 +Oct 03 17:48 : client: [559] closed +Oct 03 17:48 : client: [560] opened from 127.0.0.1:38074 +Oct 03 17:48 : client: [560] closed +Oct 03 17:48 : client: [561] opened from 127.0.0.1:38078 +Oct 03 17:48 : client: [561] closed +Oct 03 17:48 : client: [562] opened from 127.0.0.1:38082 +Oct 03 17:48 : client: [562] closed +Oct 03 17:48 : client: [563] opened from 127.0.0.1:38086 +Oct 03 17:48 : client: [563] closed +Oct 03 17:48 : client: [564] opened from 127.0.0.1:38090 +Oct 03 17:48 : client: [564] closed +Oct 03 17:48 : client: [565] opened from 127.0.0.1:38094 +Oct 03 17:48 : client: [565] closed +Oct 03 17:49 : client: [566] opened from 127.0.0.1:38098 +Oct 03 17:49 : client: [566] closed +Oct 03 17:49 : client: [567] opened from 127.0.0.1:38102 +Oct 03 17:49 : client: [567] closed +Oct 03 17:49 : client: [568] opened from 127.0.0.1:38106 +Oct 03 17:49 : client: [568] closed +Oct 03 17:49 : client: [569] opened from 127.0.0.1:38110 +Oct 03 17:49 : client: [569] closed +Oct 03 17:49 : client: [570] opened from 127.0.0.1:38114 +Oct 03 17:49 : client: [570] closed +Oct 03 17:49 : client: [571] opened from 127.0.0.1:38118 +Oct 03 17:49 : client: [571] closed +Oct 03 17:49 : client: [572] opened from 127.0.0.1:38122 +Oct 03 17:49 : client: [572] closed +Oct 03 17:49 : client: [573] opened from 127.0.0.1:38126 +Oct 03 17:49 : client: [573] closed +Oct 03 17:49 : client: [574] opened from 127.0.0.1:38130 +Oct 03 17:49 : client: [574] closed +Oct 03 17:49 : client: [575] opened from 127.0.0.1:38134 +Oct 03 17:49 : client: [575] closed +Oct 03 17:49 : client: [576] opened from 127.0.0.1:38138 +Oct 03 17:49 : client: [576] closed +Oct 03 17:49 : client: [577] opened from 127.0.0.1:38142 +Oct 03 17:49 : client: [577] closed +Oct 03 17:49 : client: [578] opened from 127.0.0.1:38146 +Oct 03 17:49 : client: [578] closed +Oct 03 17:49 : client: [579] opened from 127.0.0.1:38150 +Oct 03 17:49 : client: [579] closed +Oct 03 17:49 : client: [580] opened from 127.0.0.1:38154 +Oct 03 17:49 : client: [580] closed +Oct 03 17:49 : client: [581] opened from 127.0.0.1:38158 +Oct 03 17:49 : client: [581] closed +Oct 03 17:49 : client: [582] opened from 127.0.0.1:38162 +Oct 03 17:49 : client: [582] closed +Oct 03 17:49 : client: [583] opened from 127.0.0.1:38166 +Oct 03 17:49 : client: [583] closed +Oct 03 17:49 : client: [584] opened from 127.0.0.1:38170 +Oct 03 17:49 : client: [584] closed +Oct 03 17:49 : client: [585] opened from 127.0.0.1:38174 +Oct 03 17:49 : client: [585] closed +Oct 03 17:49 : client: [586] opened from 127.0.0.1:38178 +Oct 03 17:49 : client: [586] closed +Oct 03 17:49 : client: [587] opened from 127.0.0.1:38182 +Oct 03 17:49 : client: [587] closed +Oct 03 17:49 : client: [588] opened from 127.0.0.1:38188 +Oct 03 17:49 : client: [588] closed +Oct 03 17:49 : client: [589] opened from 127.0.0.1:38192 +Oct 03 17:49 : client: [589] closed +Oct 03 17:50 : client: [590] opened from 127.0.0.1:38196 +Oct 03 17:50 : client: [590] closed +Oct 03 17:50 : client: [591] opened from 127.0.0.1:38200 +Oct 03 17:50 : client: [591] closed +Oct 03 17:50 : client: [592] opened from 127.0.0.1:38204 +Oct 03 17:50 : client: [592] closed +Oct 03 17:50 : client: [593] opened from 127.0.0.1:38208 +Oct 03 17:50 : client: [593] closed +Oct 03 17:50 : client: [594] opened from 127.0.0.1:38212 +Oct 03 17:50 : client: [594] closed +Oct 03 17:50 : client: [595] opened from 127.0.0.1:38216 +Oct 03 17:50 : client: [595] closed +Oct 03 17:50 : client: [596] opened from 127.0.0.1:38220 +Oct 03 17:50 : client: [596] closed +Oct 03 17:50 : client: [597] opened from 127.0.0.1:38224 +Oct 03 17:50 : client: [597] closed +Oct 03 17:50 : client: [598] opened from 127.0.0.1:38230 +Oct 03 17:50 : client: [598] closed +Oct 03 17:50 : client: [599] opened from 127.0.0.1:38234 +Oct 03 17:50 : client: [599] closed +Oct 03 17:50 : client: [600] opened from 127.0.0.1:38238 +Oct 03 17:50 : client: [600] closed +Oct 03 17:50 : client: [601] opened from 127.0.0.1:38242 +Oct 03 17:50 : client: [601] closed +Oct 03 17:50 : client: [602] opened from 127.0.0.1:38248 +Oct 03 17:50 : client: [602] closed +Oct 03 17:50 : client: [603] opened from 127.0.0.1:38252 +Oct 03 17:50 : client: [603] closed +Oct 03 17:50 : client: [604] opened from 127.0.0.1:38328 +Oct 03 17:50 : client: [604] closed +Oct 03 17:50 : client: [605] opened from 127.0.0.1:38332 +Oct 03 17:50 : client: [605] closed +Oct 03 17:50 : client: [606] opened from 127.0.0.1:38336 +Oct 03 17:50 : client: [606] closed +Oct 03 17:50 : client: [607] opened from 127.0.0.1:38340 +Oct 03 17:50 : client: [607] closed +Oct 03 17:50 : client: [608] opened from 127.0.0.1:38344 +Oct 03 17:50 : client: [608] closed +Oct 03 17:50 : client: [609] opened from 127.0.0.1:38348 +Oct 03 17:50 : client: [609] closed +Oct 03 17:50 : client: [610] opened from 127.0.0.1:38352 +Oct 03 17:50 : client: [610] closed +Oct 03 17:50 : client: [611] opened from 127.0.0.1:38356 +Oct 03 17:50 : client: [611] closed +Oct 03 17:50 : client: [612] opened from 127.0.0.1:38360 +Oct 03 17:50 : client: [612] closed +Oct 03 17:50 : client: [613] opened from 127.0.0.1:38364 +Oct 03 17:50 : client: [613] closed +Oct 03 17:51 : client: [614] opened from 127.0.0.1:38368 +Oct 03 17:51 : client: [614] closed +Oct 03 17:51 : client: [615] opened from 127.0.0.1:38372 +Oct 03 17:51 : client: [615] closed +Oct 03 17:51 : client: [616] opened from 127.0.0.1:38376 +Oct 03 17:51 : client: [616] closed +Oct 03 17:51 : client: [617] opened from 127.0.0.1:38380 +Oct 03 17:51 : client: [617] closed +Oct 03 17:51 : client: [618] opened from 127.0.0.1:38388 +Oct 03 17:51 : client: [618] closed +Oct 03 17:51 : client: [619] opened from 127.0.0.1:38392 +Oct 03 17:51 : client: [619] closed +Oct 03 17:51 : client: [620] opened from 127.0.0.1:38396 +Oct 03 17:51 : client: [620] closed +Oct 03 17:51 : client: [621] opened from 127.0.0.1:38400 +Oct 03 17:51 : client: [621] closed +Oct 03 17:51 : client: [622] opened from 127.0.0.1:38484 +Oct 03 17:51 : client: [622] closed +Oct 03 17:51 : client: [623] opened from 127.0.0.1:38488 +Oct 03 17:51 : client: [623] closed +Oct 03 17:51 : client: [624] opened from 127.0.0.1:38544 +Oct 03 17:51 : client: [624] closed +Oct 03 17:51 : client: [625] opened from 127.0.0.1:38548 +Oct 03 17:51 : client: [625] closed +Oct 03 17:51 : client: [626] opened from 127.0.0.1:38552 +Oct 03 17:51 : client: [626] closed +Oct 03 17:51 : client: [627] opened from 127.0.0.1:38556 +Oct 03 17:51 : client: [627] closed +Oct 03 17:51 : client: [628] opened from 127.0.0.1:38560 +Oct 03 17:51 : client: [628] closed +Oct 03 17:51 : client: [629] opened from 127.0.0.1:38564 +Oct 03 17:51 : client: [629] closed +Oct 03 17:51 : client: [630] opened from 127.0.0.1:38568 +Oct 03 17:51 : client: [630] closed +Oct 03 17:51 : client: [631] opened from 127.0.0.1:38572 +Oct 03 17:51 : client: [631] closed +Oct 03 17:51 : client: [632] opened from 127.0.0.1:38576 +Oct 03 17:51 : client: [632] closed +Oct 03 17:51 : client: [633] opened from 127.0.0.1:38580 +Oct 03 17:51 : client: [633] closed +Oct 03 17:51 : client: [634] opened from 127.0.0.1:38584 +Oct 03 17:51 : client: [634] closed +Oct 03 17:51 : client: [635] opened from 127.0.0.1:38588 +Oct 03 17:51 : client: [635] closed +Oct 03 17:51 : client: [636] opened from 127.0.0.1:38592 +Oct 03 17:51 : client: [636] closed +Oct 03 17:51 : client: [637] opened from 127.0.0.1:38596 +Oct 03 17:51 : client: [637] closed +Oct 03 17:52 : client: [638] opened from 127.0.0.1:38600 +Oct 03 17:52 : client: [638] closed +Oct 03 17:52 : client: [639] opened from 127.0.0.1:38604 +Oct 03 17:52 : client: [639] closed +Oct 03 17:52 : client: [640] opened from 127.0.0.1:38608 +Oct 03 17:52 : client: [640] closed +Oct 03 17:52 : client: [641] opened from 127.0.0.1:38612 +Oct 03 17:52 : client: [641] closed +Oct 03 17:52 : client: [642] opened from 127.0.0.1:38616 +Oct 03 17:52 : client: [642] closed +Oct 03 17:52 : client: [643] opened from 127.0.0.1:38620 +Oct 03 17:52 : client: [643] closed +Oct 03 17:52 : client: [644] opened from 127.0.0.1:38624 +Oct 03 17:52 : client: [644] closed +Oct 03 17:52 : client: [645] opened from 127.0.0.1:38628 +Oct 03 17:52 : client: [645] closed +Oct 03 17:52 : client: [646] opened from 127.0.0.1:38632 +Oct 03 17:52 : client: [646] closed +Oct 03 17:52 : client: [647] opened from 127.0.0.1:38636 +Oct 03 17:52 : client: [647] closed +Oct 03 17:52 : client: [648] opened from 127.0.0.1:38640 +Oct 03 17:52 : client: [648] closed +Oct 03 17:52 : client: [649] opened from 127.0.0.1:38644 +Oct 03 17:52 : client: [649] closed +Oct 03 17:52 : client: [650] opened from 127.0.0.1:38648 +Oct 03 17:52 : client: [650] closed +Oct 03 17:52 : client: [651] opened from 127.0.0.1:38652 +Oct 03 17:52 : client: [651] closed +Oct 03 17:52 : client: [652] opened from 127.0.0.1:38656 +Oct 03 17:52 : client: [652] closed +Oct 03 17:52 : client: [653] opened from 127.0.0.1:38660 +Oct 03 17:52 : client: [653] closed +Oct 03 17:52 : client: [654] opened from 127.0.0.1:38664 +Oct 03 17:52 : client: [654] closed +Oct 03 17:52 : client: [655] opened from 127.0.0.1:38668 +Oct 03 17:52 : client: [655] closed +Oct 03 17:52 : client: [656] opened from 127.0.0.1:38672 +Oct 03 17:52 : client: [656] closed +Oct 03 17:52 : client: [657] opened from 127.0.0.1:38676 +Oct 03 17:52 : client: [657] closed +Oct 03 17:52 : client: [658] opened from 127.0.0.1:38680 +Oct 03 17:52 : client: [658] closed +Oct 03 17:52 : client: [659] opened from 127.0.0.1:38684 +Oct 03 17:52 : client: [659] closed +Oct 03 17:52 : client: [660] opened from 127.0.0.1:38688 +Oct 03 17:52 : client: [660] closed +Oct 03 17:52 : client: [661] opened from 127.0.0.1:38692 +Oct 03 17:52 : client: [661] closed +Oct 03 17:53 : client: [662] opened from 127.0.0.1:38696 +Oct 03 17:53 : client: [662] closed +Oct 03 17:53 : client: [663] opened from 127.0.0.1:38700 +Oct 03 17:53 : client: [663] closed +Oct 03 17:53 : client: [664] opened from 127.0.0.1:38704 +Oct 03 17:53 : client: [664] closed +Oct 03 17:53 : client: [665] opened from 127.0.0.1:38708 +Oct 03 17:53 : client: [665] closed +Oct 03 17:53 : client: [666] opened from 127.0.0.1:38712 +Oct 03 17:53 : client: [666] closed +Oct 03 17:53 : client: [667] opened from 127.0.0.1:38716 +Oct 03 17:53 : client: [667] closed +Oct 03 17:53 : client: [668] opened from 127.0.0.1:38720 +Oct 03 17:53 : client: [668] closed +Oct 03 17:53 : client: [669] opened from 127.0.0.1:38724 +Oct 03 17:53 : client: [669] closed +Oct 03 17:53 : client: [670] opened from 127.0.0.1:38728 +Oct 03 17:53 : client: [670] closed +Oct 03 17:53 : client: [671] opened from 127.0.0.1:38732 +Oct 03 17:53 : client: [671] closed +Oct 03 17:53 : client: [672] opened from 127.0.0.1:38736 +Oct 03 17:53 : client: [672] closed +Oct 03 17:53 : client: [673] opened from 127.0.0.1:38740 +Oct 03 17:53 : client: [673] closed +Oct 03 17:53 : client: [674] opened from 127.0.0.1:38744 +Oct 03 17:53 : client: [674] closed +Oct 03 17:53 : client: [675] opened from 127.0.0.1:38748 +Oct 03 17:53 : client: [675] closed +Oct 03 17:53 : client: [676] opened from 127.0.0.1:38752 +Oct 03 17:53 : client: [676] closed +Oct 03 17:53 : client: [677] opened from 127.0.0.1:38756 +Oct 03 17:53 : client: [677] closed +Oct 03 17:53 : client: [678] opened from 127.0.0.1:38760 +Oct 03 17:53 : client: [678] closed +Oct 03 17:53 : client: [679] opened from 127.0.0.1:38764 +Oct 03 17:53 : client: [679] closed +Oct 03 17:53 : client: [680] opened from 127.0.0.1:38768 +Oct 03 17:53 : client: [680] closed +Oct 03 17:53 : client: [681] opened from 127.0.0.1:38772 +Oct 03 17:53 : client: [681] closed +Oct 03 17:53 : client: [682] opened from 127.0.0.1:38776 +Oct 03 17:53 : client: [682] closed +Oct 03 17:53 : client: [683] opened from 127.0.0.1:38780 +Oct 03 17:53 : client: [683] closed +Oct 03 17:53 : client: [684] opened from 127.0.0.1:38802 +Oct 03 17:53 : client: [684] closed +Oct 03 17:53 : client: [685] opened from 127.0.0.1:38806 +Oct 03 17:53 : client: [685] closed +Oct 03 17:54 : client: [686] opened from 127.0.0.1:38814 +Oct 03 17:54 : client: [686] closed +Oct 03 17:54 : client: [687] opened from 127.0.0.1:38818 +Oct 03 17:54 : client: [687] closed +Oct 03 17:54 : client: [688] opened from 127.0.0.1:38842 +Oct 03 17:54 : client: [688] closed +Oct 03 17:54 : client: [689] opened from 127.0.0.1:38846 +Oct 03 17:54 : client: [689] closed +Oct 03 17:54 : client: [690] opened from 127.0.0.1:38850 +Oct 03 17:54 : client: [690] closed +Oct 03 17:54 : client: [691] opened from 127.0.0.1:38854 +Oct 03 17:54 : client: [691] closed +Oct 03 17:54 : client: [692] opened from 127.0.0.1:38860 +Oct 03 17:54 : client: [692] closed +Oct 03 17:54 : client: [693] opened from 127.0.0.1:38864 +Oct 03 17:54 : client: [693] closed +Oct 03 17:54 : client: [694] opened from 127.0.0.1:38868 +Oct 03 17:54 : client: [694] closed +Oct 03 17:54 : client: [695] opened from 127.0.0.1:38872 +Oct 03 17:54 : client: [695] closed +Oct 03 17:54 : client: [696] opened from 127.0.0.1:38876 +Oct 03 17:54 : client: [696] closed +Oct 03 17:54 : client: [697] opened from 127.0.0.1:38880 +Oct 03 17:54 : client: [697] closed +Oct 03 17:54 : client: [698] opened from 127.0.0.1:38884 +Oct 03 17:54 : client: [698] closed +Oct 03 17:54 : client: [699] opened from 127.0.0.1:38888 +Oct 03 17:54 : client: [699] closed +Oct 03 17:54 : client: [700] opened from 127.0.0.1:38892 +Oct 03 17:54 : client: [700] closed +Oct 03 17:54 : client: [701] opened from 127.0.0.1:38896 +Oct 03 17:54 : client: [701] closed +Oct 03 17:54 : client: [702] opened from 127.0.0.1:38900 +Oct 03 17:54 : client: [702] closed +Oct 03 17:54 : client: [703] opened from 127.0.0.1:38904 +Oct 03 17:54 : client: [703] closed +Oct 03 17:54 : client: [704] opened from 127.0.0.1:38908 +Oct 03 17:54 : client: [704] closed +Oct 03 17:54 : client: [705] opened from 127.0.0.1:38912 +Oct 03 17:54 : client: [705] closed +Oct 03 17:54 : client: [706] opened from 127.0.0.1:38916 +Oct 03 17:54 : client: [706] closed +Oct 03 17:54 : client: [707] opened from 127.0.0.1:38920 +Oct 03 17:54 : client: [707] closed +Oct 03 17:54 : client: [708] opened from 127.0.0.1:38928 +Oct 03 17:54 : client: [708] closed +Oct 03 17:54 : client: [709] opened from 127.0.0.1:38932 +Oct 03 17:54 : client: [709] closed +Oct 03 17:55 : client: [710] opened from 127.0.0.1:38938 +Oct 03 17:55 : client: [710] closed +Oct 03 17:55 : client: [711] opened from 127.0.0.1:38942 +Oct 03 17:55 : client: [711] closed +Oct 03 17:55 : client: [712] opened from 127.0.0.1:38946 +Oct 03 17:55 : client: [712] closed +Oct 03 17:55 : client: [713] opened from 127.0.0.1:38950 +Oct 03 17:55 : client: [713] closed +Oct 03 17:55 : client: [714] opened from 127.0.0.1:38954 +Oct 03 17:55 : client: [714] closed +Oct 03 17:55 : client: [715] opened from 127.0.0.1:38958 +Oct 03 17:55 : client: [715] closed +Oct 03 17:55 : client: [716] opened from 127.0.0.1:38962 +Oct 03 17:55 : client: [716] closed +Oct 03 17:55 : client: [717] opened from 127.0.0.1:38966 +Oct 03 17:55 : client: [717] closed +Oct 03 17:55 : client: [718] opened from 127.0.0.1:38970 +Oct 03 17:55 : client: [718] closed +Oct 03 17:55 : client: [719] opened from 127.0.0.1:38974 +Oct 03 17:55 : client: [719] closed +Oct 03 17:55 : client: [720] opened from 127.0.0.1:38978 +Oct 03 17:55 : client: [720] closed +Oct 03 17:55 : client: [721] opened from 127.0.0.1:38982 +Oct 03 17:55 : client: [721] closed +Oct 03 17:55 : client: [722] opened from 127.0.0.1:38986 +Oct 03 17:55 : client: [722] closed +Oct 03 17:55 : client: [723] opened from 127.0.0.1:38990 +Oct 03 17:55 : client: [723] closed +Oct 03 17:55 : client: [724] opened from 127.0.0.1:38994 +Oct 03 17:55 : client: [724] closed +Oct 03 17:55 : client: [725] opened from 127.0.0.1:38998 +Oct 03 17:55 : client: [725] closed +Oct 03 17:55 : client: [726] opened from 127.0.0.1:39002 +Oct 03 17:55 : client: [726] closed +Oct 03 17:55 : client: [727] opened from 127.0.0.1:39006 +Oct 03 17:55 : client: [727] closed +Oct 03 17:55 : client: [728] opened from 127.0.0.1:39010 +Oct 03 17:55 : client: [728] closed +Oct 03 17:55 : client: [729] opened from 127.0.0.1:39014 +Oct 03 17:55 : client: [729] closed +Oct 03 17:55 : client: [730] opened from 127.0.0.1:39018 +Oct 03 17:55 : client: [730] closed +Oct 03 17:55 : client: [731] opened from 127.0.0.1:39022 +Oct 03 17:55 : client: [731] closed +Oct 03 17:55 : client: [732] opened from 127.0.0.1:39026 +Oct 03 17:55 : client: [732] closed +Oct 03 17:55 : client: [733] opened from 127.0.0.1:39030 +Oct 03 17:55 : client: [733] closed +Oct 03 17:56 : client: [734] opened from 127.0.0.1:39034 +Oct 03 17:56 : client: [734] closed +Oct 03 17:56 : client: [735] opened from 127.0.0.1:39038 +Oct 03 17:56 : client: [735] closed +Oct 03 17:56 : client: [736] opened from 127.0.0.1:39042 +Oct 03 17:56 : client: [736] closed +Oct 03 17:56 : client: [737] opened from 127.0.0.1:39046 +Oct 03 17:56 : client: [737] closed +Oct 03 17:56 : client: [738] opened from 127.0.0.1:39050 +Oct 03 17:56 : client: [738] closed +Oct 03 17:56 : client: [739] opened from 127.0.0.1:39054 +Oct 03 17:56 : client: [739] closed +Oct 03 17:56 : client: [740] opened from 127.0.0.1:39060 +Oct 03 17:56 : client: [740] closed +Oct 03 17:56 : client: [741] opened from 127.0.0.1:39064 +Oct 03 17:56 : client: [741] closed +Oct 03 17:56 : client: [742] opened from 127.0.0.1:39080 +Oct 03 17:56 : client: [742] closed +Oct 03 17:56 : client: [743] opened from 127.0.0.1:39084 +Oct 03 17:56 : client: [743] closed +Oct 03 17:56 : client: [744] opened from 127.0.0.1:39090 +Oct 03 17:56 : client: [744] closed +Oct 03 17:56 : client: [745] opened from 127.0.0.1:39094 +Oct 03 17:56 : client: [745] closed +Oct 03 17:56 : client: [746] opened from 127.0.0.1:39098 +Oct 03 17:56 : client: [746] closed +Oct 03 17:56 : client: [747] opened from 127.0.0.1:39102 +Oct 03 17:56 : client: [747] closed +Oct 03 17:56 : client: [748] opened from 127.0.0.1:39106 +Oct 03 17:56 : client: [748] closed +Oct 03 17:56 : client: [749] opened from 127.0.0.1:39110 +Oct 03 17:56 : client: [749] closed +Oct 03 17:56 : client: [750] opened from 127.0.0.1:39114 +Oct 03 17:56 : client: [750] closed +Oct 03 17:56 : client: [751] opened from 127.0.0.1:39118 +Oct 03 17:56 : client: [751] closed +Oct 03 17:56 : client: [752] opened from 127.0.0.1:39122 +Oct 03 17:56 : client: [752] closed +Oct 03 17:56 : client: [753] opened from 127.0.0.1:39126 +Oct 03 17:56 : client: [753] closed +Oct 03 17:56 : client: [754] opened from 127.0.0.1:39130 +Oct 03 17:56 : client: [754] closed +Oct 03 17:56 : client: [755] opened from 127.0.0.1:39134 +Oct 03 17:56 : client: [755] closed +Oct 03 17:56 : client: [756] opened from 127.0.0.1:39138 +Oct 03 17:56 : client: [756] closed +Oct 03 17:56 : client: [757] opened from 127.0.0.1:39142 +Oct 03 17:56 : client: [757] closed +Oct 03 17:57 : client: [758] opened from 127.0.0.1:39146 +Oct 03 17:57 : client: [758] closed +Oct 03 17:57 : client: [759] opened from 127.0.0.1:39150 +Oct 03 17:57 : client: [759] closed +Oct 03 17:57 : client: [760] opened from 127.0.0.1:39154 +Oct 03 17:57 : client: [760] closed +Oct 03 17:57 : client: [761] opened from 127.0.0.1:39158 +Oct 03 17:57 : client: [761] closed +Oct 03 17:57 : client: [762] opened from 127.0.0.1:39162 +Oct 03 17:57 : client: [762] closed +Oct 03 17:57 : client: [763] opened from 127.0.0.1:39166 +Oct 03 17:57 : client: [763] closed +Oct 03 17:57 : client: [764] opened from 127.0.0.1:39170 +Oct 03 17:57 : client: [764] closed +Oct 03 17:57 : client: [765] opened from 127.0.0.1:39174 +Oct 03 17:57 : client: [765] closed +Oct 03 17:57 : client: [766] opened from 127.0.0.1:39178 +Oct 03 17:57 : client: [766] closed +Oct 03 17:57 : client: [767] opened from 127.0.0.1:39182 +Oct 03 17:57 : client: [767] closed +Oct 03 17:57 : client: [768] opened from 127.0.0.1:39186 +Oct 03 17:57 : client: [768] closed +Oct 03 17:57 : client: [769] opened from 127.0.0.1:39190 +Oct 03 17:57 : client: [769] closed +Oct 03 17:57 : client: [770] opened from 127.0.0.1:39194 +Oct 03 17:57 : client: [770] closed +Oct 03 17:57 : client: [771] opened from 127.0.0.1:39198 +Oct 03 17:57 : client: [771] closed +Oct 03 17:57 : client: [772] opened from 127.0.0.1:39202 +Oct 03 17:57 : client: [772] closed +Oct 03 17:57 : client: [773] opened from 127.0.0.1:39206 +Oct 03 17:57 : client: [773] closed +Oct 03 17:57 : client: [774] opened from 127.0.0.1:39210 +Oct 03 17:57 : client: [774] closed +Oct 03 17:57 : client: [775] opened from 127.0.0.1:39214 +Oct 03 17:57 : client: [775] closed +Oct 03 17:57 : client: [776] opened from 127.0.0.1:39218 +Oct 03 17:57 : client: [776] closed +Oct 03 17:57 : client: [777] opened from 127.0.0.1:39222 +Oct 03 17:57 : client: [777] closed +Oct 03 17:57 : client: [778] opened from 127.0.0.1:39226 +Oct 03 17:57 : client: [778] closed +Oct 03 17:57 : client: [779] opened from 127.0.0.1:39230 +Oct 03 17:57 : client: [779] closed +Oct 03 17:57 : client: [780] opened from 127.0.0.1:39234 +Oct 03 17:57 : client: [780] closed +Oct 03 17:57 : client: [781] opened from 127.0.0.1:39238 +Oct 03 17:57 : client: [781] closed +Oct 03 17:58 : client: [782] opened from 127.0.0.1:39242 +Oct 03 17:58 : client: [782] closed +Oct 03 17:58 : client: [783] opened from 127.0.0.1:39246 +Oct 03 17:58 : client: [783] closed +Oct 03 17:58 : client: [784] opened from 127.0.0.1:39250 +Oct 03 17:58 : client: [784] closed +Oct 03 17:58 : client: [785] opened from 127.0.0.1:39254 +Oct 03 17:58 : client: [785] closed +Oct 03 17:58 : client: [786] opened from 127.0.0.1:39258 +Oct 03 17:58 : client: [786] closed +Oct 03 17:58 : client: [787] opened from 127.0.0.1:39262 +Oct 03 17:58 : client: [787] closed +Oct 03 17:58 : client: [788] opened from 127.0.0.1:39266 +Oct 03 17:58 : client: [788] closed +Oct 03 17:58 : client: [789] opened from 127.0.0.1:39270 +Oct 03 17:58 : client: [789] closed +Oct 03 17:58 : client: [790] opened from 127.0.0.1:39274 +Oct 03 17:58 : client: [790] closed +Oct 03 17:58 : client: [791] opened from 127.0.0.1:39278 +Oct 03 17:58 : client: [791] closed +Oct 03 17:58 : client: [792] opened from 127.0.0.1:39282 +Oct 03 17:58 : client: [792] closed +Oct 03 17:58 : client: [793] opened from 127.0.0.1:39286 +Oct 03 17:58 : client: [793] closed +Oct 03 17:58 : client: [794] opened from 127.0.0.1:39290 +Oct 03 17:58 : client: [794] closed +Oct 03 17:58 : client: [795] opened from 127.0.0.1:39294 +Oct 03 17:58 : client: [795] closed +Oct 03 17:58 : client: [796] opened from 127.0.0.1:39298 +Oct 03 17:58 : client: [796] closed +Oct 03 17:58 : client: [797] opened from 127.0.0.1:39302 +Oct 03 17:58 : client: [797] closed +Oct 03 17:58 : client: [798] opened from 127.0.0.1:39306 +Oct 03 17:58 : client: [798] closed +Oct 03 17:58 : client: [799] opened from 127.0.0.1:39310 +Oct 03 17:58 : client: [799] closed +Oct 03 17:58 : client: [800] opened from 127.0.0.1:39314 +Oct 03 17:58 : client: [800] closed +Oct 03 17:58 : client: [801] opened from 127.0.0.1:39318 +Oct 03 17:58 : client: [801] closed +Oct 03 17:58 : client: [802] opened from 127.0.0.1:39322 +Oct 03 17:58 : client: [802] closed +Oct 03 17:58 : client: [803] opened from 127.0.0.1:39326 +Oct 03 17:58 : client: [803] closed +Oct 03 17:58 : client: [804] opened from 127.0.0.1:39330 +Oct 03 17:58 : client: [804] closed +Oct 03 17:58 : client: [805] opened from 127.0.0.1:39334 +Oct 03 17:58 : client: [805] closed +Oct 03 17:59 : client: [806] opened from 127.0.0.1:39338 +Oct 03 17:59 : client: [806] closed +Oct 03 17:59 : client: [807] opened from 127.0.0.1:39342 +Oct 03 17:59 : client: [807] closed +Oct 03 17:59 : client: [808] opened from 127.0.0.1:39346 +Oct 03 17:59 : client: [808] closed +Oct 03 17:59 : client: [809] opened from 127.0.0.1:39350 +Oct 03 17:59 : client: [809] closed +Oct 03 17:59 : client: [810] opened from 127.0.0.1:39354 +Oct 03 17:59 : client: [810] closed +Oct 03 17:59 : client: [811] opened from 127.0.0.1:39358 +Oct 03 17:59 : client: [811] closed +Oct 03 17:59 : client: [812] opened from 127.0.0.1:39362 +Oct 03 17:59 : client: [812] closed +Oct 03 17:59 : client: [813] opened from 127.0.0.1:39366 +Oct 03 17:59 : client: [813] closed +Oct 03 17:59 : client: [814] opened from 127.0.0.1:39370 +Oct 03 17:59 : client: [814] closed +Oct 03 17:59 : client: [815] opened from 127.0.0.1:39374 +Oct 03 17:59 : client: [815] closed +Oct 03 17:59 : client: [816] opened from 127.0.0.1:39378 +Oct 03 17:59 : client: [816] closed +Oct 03 17:59 : client: [817] opened from 127.0.0.1:39382 +Oct 03 17:59 : client: [817] closed +Oct 03 17:59 : client: [818] opened from 127.0.0.1:39386 +Oct 03 17:59 : client: [818] closed +Oct 03 17:59 : client: [819] opened from 127.0.0.1:39390 +Oct 03 17:59 : client: [819] closed +Oct 03 17:59 : client: [820] opened from 127.0.0.1:39394 +Oct 03 17:59 : client: [820] closed +Oct 03 17:59 : client: [821] opened from 127.0.0.1:39398 +Oct 03 17:59 : client: [821] closed +Oct 03 17:59 : client: [822] opened from 127.0.0.1:39402 +Oct 03 17:59 : client: [822] closed +Oct 03 17:59 : client: [823] opened from 127.0.0.1:39406 +Oct 03 17:59 : client: [823] closed +Oct 03 17:59 : client: [824] opened from 127.0.0.1:39410 +Oct 03 17:59 : client: [824] closed +Oct 03 17:59 : client: [825] opened from 127.0.0.1:39414 +Oct 03 17:59 : client: [825] closed +Oct 03 17:59 : client: [826] opened from 127.0.0.1:39418 +Oct 03 17:59 : client: [826] closed +Oct 03 17:59 : client: [827] opened from 127.0.0.1:39422 +Oct 03 17:59 : client: [827] closed +Oct 03 17:59 : client: [828] opened from 127.0.0.1:39426 +Oct 03 17:59 : client: [828] closed +Oct 03 17:59 : client: [829] opened from 127.0.0.1:39430 +Oct 03 17:59 : client: [829] closed +Oct 03 18:00 : client: [830] opened from 127.0.0.1:39434 +Oct 03 18:00 : client: [830] closed +Oct 03 18:00 : client: [831] opened from 127.0.0.1:39438 +Oct 03 18:00 : client: [831] closed +Oct 03 18:00 : client: [832] opened from 127.0.0.1:39442 +Oct 03 18:00 : client: [832] closed +Oct 03 18:00 : client: [833] opened from 127.0.0.1:39446 +Oct 03 18:00 : client: [833] closed +Oct 03 18:00 : client: [834] opened from 127.0.0.1:39450 +Oct 03 18:00 : client: [834] closed +Oct 03 18:00 : client: [835] opened from 127.0.0.1:39454 +Oct 03 18:00 : client: [835] closed +Oct 03 18:00 : client: [836] opened from 127.0.0.1:39458 +Oct 03 18:00 : client: [836] closed +Oct 03 18:00 : client: [837] opened from 127.0.0.1:39462 +Oct 03 18:00 : client: [837] closed +Oct 03 18:00 : client: [838] opened from 127.0.0.1:39466 +Oct 03 18:00 : client: [838] closed +Oct 03 18:00 : client: [839] opened from 127.0.0.1:39470 +Oct 03 18:00 : client: [839] closed +Oct 03 18:00 : client: [840] opened from 127.0.0.1:39474 +Oct 03 18:00 : client: [840] closed +Oct 03 18:00 : client: [841] opened from 127.0.0.1:39478 +Oct 03 18:00 : client: [841] closed +Oct 03 18:00 : client: [842] opened from 127.0.0.1:39486 +Oct 03 18:00 : client: [842] closed +Oct 03 18:00 : client: [843] opened from 127.0.0.1:39490 +Oct 03 18:00 : client: [843] closed +Oct 03 18:00 : client: [844] opened from 127.0.0.1:39516 +Oct 03 18:00 : client: [844] closed +Oct 03 18:00 : client: [845] opened from 127.0.0.1:39520 +Oct 03 18:00 : client: [845] closed +Oct 03 18:00 : client: [846] opened from 127.0.0.1:39544 +Oct 03 18:00 : client: [846] closed +Oct 03 18:00 : client: [847] opened from 127.0.0.1:39548 +Oct 03 18:00 : client: [847] closed +Oct 03 18:00 : client: [848] opened from 127.0.0.1:39554 +Oct 03 18:00 : client: [848] closed +Oct 03 18:00 : client: [849] opened from 127.0.0.1:39558 +Oct 03 18:00 : client: [849] closed +Oct 03 18:00 : client: [850] opened from 127.0.0.1:39564 +Oct 03 18:00 : client: [850] closed +Oct 03 18:00 : client: [851] opened from 127.0.0.1:39568 +Oct 03 18:00 : client: [851] closed +Oct 03 18:00 : client: [852] opened from 127.0.0.1:39572 +Oct 03 18:00 : client: [852] closed +Oct 03 18:00 : client: [853] opened from 127.0.0.1:39576 +Oct 03 18:00 : client: [853] closed +Oct 03 18:01 : client: [854] opened from 127.0.0.1:39580 +Oct 03 18:01 : client: [854] closed +Oct 03 18:01 : client: [855] opened from 127.0.0.1:39584 +Oct 03 18:01 : client: [855] closed +Oct 03 18:01 : client: [856] opened from 127.0.0.1:39588 +Oct 03 18:01 : client: [856] closed +Oct 03 18:01 : client: [857] opened from 127.0.0.1:39592 +Oct 03 18:01 : client: [857] closed +Oct 03 18:01 : client: [858] opened from 127.0.0.1:39600 +Oct 03 18:01 : client: [858] closed +Oct 03 18:01 : client: [859] opened from 127.0.0.1:39604 +Oct 03 18:01 : client: [859] closed +Oct 03 18:01 : client: [860] opened from 127.0.0.1:39608 +Oct 03 18:01 : client: [860] closed +Oct 03 18:01 : client: [861] opened from 127.0.0.1:39612 +Oct 03 18:01 : client: [861] closed +Oct 03 18:01 : client: [862] opened from 127.0.0.1:39634 +Oct 03 18:01 : client: [862] closed +Oct 03 18:01 : client: [863] opened from 127.0.0.1:39638 +Oct 03 18:01 : client: [863] closed +Oct 03 18:01 : client: [864] opened from 127.0.0.1:39666 +Oct 03 18:01 : client: [864] closed +Oct 03 18:01 : client: [865] opened from 127.0.0.1:39670 +Oct 03 18:01 : client: [865] closed +Oct 03 18:01 : client: [866] opened from 127.0.0.1:39674 +Oct 03 18:01 : client: [866] closed +Oct 03 18:01 : client: [867] opened from 127.0.0.1:39678 +Oct 03 18:01 : client: [867] closed +Oct 03 18:01 : client: [868] opened from 127.0.0.1:39700 +Oct 03 18:01 : client: [868] closed +Oct 03 18:01 : client: [869] opened from 127.0.0.1:39704 +Oct 03 18:01 : client: [869] closed +Oct 03 18:01 : client: [870] opened from 127.0.0.1:39746 +Oct 03 18:01 : client: [870] closed +Oct 03 18:01 : client: [871] opened from 127.0.0.1:39750 +Oct 03 18:01 : client: [871] closed +Oct 03 18:01 : client: [872] opened from 127.0.0.1:39778 +Oct 03 18:01 : client: [872] closed +Oct 03 18:01 : client: [873] opened from 127.0.0.1:39782 +Oct 03 18:01 : client: [873] closed +Oct 03 18:01 : client: [874] opened from 127.0.0.1:39786 +Oct 03 18:01 : client: [874] closed +Oct 03 18:01 : client: [875] opened from 127.0.0.1:39790 +Oct 03 18:01 : client: [875] closed +Oct 03 18:01 : client: [876] opened from 127.0.0.1:39794 +Oct 03 18:01 : client: [876] closed +Oct 03 18:01 : client: [877] opened from 127.0.0.1:39798 +Oct 03 18:01 : client: [877] closed +Oct 03 18:02 : client: [878] opened from 127.0.0.1:39802 +Oct 03 18:02 : client: [878] closed +Oct 03 18:02 : client: [879] opened from 127.0.0.1:39806 +Oct 03 18:02 : client: [879] closed +Oct 03 18:02 : client: [880] opened from 127.0.0.1:39810 +Oct 03 18:02 : client: [880] closed +Oct 03 18:02 : client: [881] opened from 127.0.0.1:39814 +Oct 03 18:02 : client: [881] closed +Oct 03 18:02 : client: [882] opened from 127.0.0.1:39818 +Oct 03 18:02 : client: [882] closed +Oct 03 18:02 : client: [883] opened from 127.0.0.1:39822 +Oct 03 18:02 : client: [883] closed +Oct 03 18:02 : client: [884] opened from 127.0.0.1:39826 +Oct 03 18:02 : client: [884] closed +Oct 03 18:02 : client: [885] opened from 127.0.0.1:39830 +Oct 03 18:02 : client: [885] closed +Oct 03 18:02 : client: [886] opened from 127.0.0.1:39834 +Oct 03 18:02 : client: [886] closed +Oct 03 18:02 : client: [887] opened from 127.0.0.1:39838 +Oct 03 18:02 : client: [887] closed +Oct 03 18:02 : client: [888] opened from 127.0.0.1:39842 +Oct 03 18:02 : client: [888] closed +Oct 03 18:02 : client: [889] opened from 127.0.0.1:39846 +Oct 03 18:02 : client: [889] closed +Oct 03 18:02 : client: [890] opened from 127.0.0.1:39852 +Oct 03 18:02 : client: [890] closed +Oct 03 18:02 : client: [891] opened from 127.0.0.1:39856 +Oct 03 18:02 : client: [891] closed +Oct 03 18:02 : client: [892] opened from 127.0.0.1:39860 +Oct 03 18:02 : client: [892] closed +Oct 03 18:02 : client: [893] opened from 127.0.0.1:39864 +Oct 03 18:02 : client: [893] closed +Oct 03 18:02 : client: [894] opened from 127.0.0.1:39868 +Oct 03 18:02 : client: [894] closed +Oct 03 18:02 : client: [895] opened from 127.0.0.1:39872 +Oct 03 18:02 : client: [895] closed +Oct 03 18:02 : client: [896] opened from 127.0.0.1:39876 +Oct 03 18:02 : client: [896] closed +Oct 03 18:02 : client: [897] opened from 127.0.0.1:39880 +Oct 03 18:02 : client: [897] closed +Oct 03 18:02 : client: [898] opened from 127.0.0.1:39884 +Oct 03 18:02 : client: [898] closed +Oct 03 18:02 : client: [899] opened from 127.0.0.1:39888 +Oct 03 18:02 : client: [899] closed +Oct 03 18:02 : client: [900] opened from 127.0.0.1:39892 +Oct 03 18:02 : client: [900] closed +Oct 03 18:02 : client: [901] opened from 127.0.0.1:39896 +Oct 03 18:02 : client: [901] closed +Oct 03 18:03 : client: [902] opened from 127.0.0.1:39900 +Oct 03 18:03 : client: [902] closed +Oct 03 18:03 : client: [903] opened from 127.0.0.1:39904 +Oct 03 18:03 : client: [903] closed +Oct 03 18:03 : client: [904] opened from 127.0.0.1:39908 +Oct 03 18:03 : client: [904] closed +Oct 03 18:03 : client: [905] opened from 127.0.0.1:39912 +Oct 03 18:03 : client: [905] closed +Oct 03 18:03 : client: [906] opened from 127.0.0.1:39916 +Oct 03 18:03 : client: [906] closed +Oct 03 18:03 : client: [907] opened from 127.0.0.1:39920 +Oct 03 18:03 : client: [907] closed +Oct 03 18:03 : client: [908] opened from 127.0.0.1:39924 +Oct 03 18:03 : client: [908] closed +Oct 03 18:03 : client: [909] opened from 127.0.0.1:39928 +Oct 03 18:03 : client: [909] closed +Oct 03 18:03 : client: [910] opened from 127.0.0.1:39932 +Oct 03 18:03 : client: [910] closed +Oct 03 18:03 : client: [911] opened from 127.0.0.1:39936 +Oct 03 18:03 : client: [911] closed +Oct 03 18:03 : client: [912] opened from 127.0.0.1:39940 +Oct 03 18:03 : client: [912] closed +Oct 03 18:03 : client: [913] opened from 127.0.0.1:39944 +Oct 03 18:03 : client: [913] closed +Oct 03 18:03 : client: [914] opened from 127.0.0.1:39948 +Oct 03 18:03 : client: [914] closed +Oct 03 18:03 : client: [915] opened from 127.0.0.1:39952 +Oct 03 18:03 : client: [915] closed +Oct 03 18:03 : client: [916] opened from 127.0.0.1:39956 +Oct 03 18:03 : client: [916] closed +Oct 03 18:03 : client: [917] opened from 127.0.0.1:39960 +Oct 03 18:03 : client: [917] closed +Oct 03 18:03 : client: [918] opened from 127.0.0.1:39964 +Oct 03 18:03 : client: [918] closed +Oct 03 18:03 : client: [919] opened from 127.0.0.1:39968 +Oct 03 18:03 : client: [919] closed +Oct 03 18:03 : client: [920] opened from 127.0.0.1:39972 +Oct 03 18:03 : client: [920] closed +Oct 03 18:03 : client: [921] opened from 127.0.0.1:39976 +Oct 03 18:03 : client: [921] closed +Oct 03 18:03 : client: [922] opened from 127.0.0.1:39982 +Oct 03 18:03 : client: [922] closed +Oct 03 18:03 : client: [923] opened from 127.0.0.1:39986 +Oct 03 18:03 : client: [923] closed +Oct 03 18:03 : client: [924] opened from 127.0.0.1:39990 +Oct 03 18:03 : client: [924] closed +Oct 03 18:03 : client: [925] opened from 127.0.0.1:39994 +Oct 03 18:03 : client: [925] closed +Oct 03 18:04 : client: [926] opened from 127.0.0.1:39998 +Oct 03 18:04 : client: [926] closed +Oct 03 18:04 : client: [927] opened from 127.0.0.1:40002 +Oct 03 18:04 : client: [927] closed +Oct 03 18:04 : client: [928] opened from 127.0.0.1:40006 +Oct 03 18:04 : client: [928] closed +Oct 03 18:04 : client: [929] opened from 127.0.0.1:40010 +Oct 03 18:04 : client: [929] closed +Oct 03 18:04 : client: [930] opened from 127.0.0.1:40014 +Oct 03 18:04 : client: [930] closed +Oct 03 18:04 : client: [931] opened from 127.0.0.1:40018 +Oct 03 18:04 : client: [931] closed +Oct 03 18:04 : client: [932] opened from 127.0.0.1:40022 +Oct 03 18:04 : client: [932] closed +Oct 03 18:04 : client: [933] opened from 127.0.0.1:40026 +Oct 03 18:04 : client: [933] closed +Oct 03 18:04 : client: [934] opened from 127.0.0.1:40030 +Oct 03 18:04 : client: [934] closed +Oct 03 18:04 : client: [935] opened from 127.0.0.1:40034 +Oct 03 18:04 : client: [935] closed +Oct 03 18:04 : client: [936] opened from 127.0.0.1:40050 +Oct 03 18:04 : client: [936] closed +Oct 03 18:04 : client: [937] opened from 127.0.0.1:40054 +Oct 03 18:04 : client: [937] closed +Oct 03 18:04 : client: [938] opened from 127.0.0.1:40072 +Oct 03 18:04 : client: [938] closed +Oct 03 18:04 : client: [939] opened from 127.0.0.1:40076 +Oct 03 18:04 : client: [939] closed +Oct 03 18:04 : client: [940] opened from 127.0.0.1:40084 +Oct 03 18:04 : client: [940] closed +Oct 03 18:04 : client: [941] opened from 127.0.0.1:40088 +Oct 03 18:04 : client: [941] closed +Oct 03 18:04 : client: [942] opened from 127.0.0.1:40092 +Oct 03 18:04 : client: [942] closed +Oct 03 18:04 : client: [943] opened from 127.0.0.1:40096 +Oct 03 18:04 : client: [943] closed +Oct 03 18:04 : client: [944] opened from 127.0.0.1:40100 +Oct 03 18:04 : client: [944] closed +Oct 03 18:04 : client: [945] opened from 127.0.0.1:40104 +Oct 03 18:04 : client: [945] closed +Oct 03 18:04 : client: [946] opened from 127.0.0.1:40110 +Oct 03 18:04 : client: [946] closed +Oct 03 18:04 : client: [947] opened from 127.0.0.1:40114 +Oct 03 18:04 : client: [947] closed +Oct 03 18:04 : client: [948] opened from 127.0.0.1:40120 +Oct 03 18:04 : client: [948] closed +Oct 03 18:04 : client: [949] opened from 127.0.0.1:40124 +Oct 03 18:04 : client: [949] closed +Oct 03 18:05 : client: [950] opened from 127.0.0.1:40130 +Oct 03 18:05 : client: [950] closed +Oct 03 18:05 : client: [951] opened from 127.0.0.1:40134 +Oct 03 18:05 : client: [951] closed +Oct 03 18:05 : client: [952] opened from 127.0.0.1:40138 +Oct 03 18:05 : client: [952] closed +Oct 03 18:05 : client: [953] opened from 127.0.0.1:40142 +Oct 03 18:05 : client: [953] closed +Oct 03 18:05 : client: [954] opened from 127.0.0.1:40146 +Oct 03 18:05 : client: [954] closed +Oct 03 18:05 : client: [955] opened from 127.0.0.1:40150 +Oct 03 18:05 : client: [955] closed +Oct 03 18:05 : client: [956] opened from 127.0.0.1:40154 +Oct 03 18:05 : client: [956] closed +Oct 03 18:05 : client: [957] opened from 127.0.0.1:40158 +Oct 03 18:05 : client: [957] closed +Oct 03 18:05 : client: [958] opened from 127.0.0.1:40162 +Oct 03 18:05 : client: [958] closed +Oct 03 18:05 : client: [959] opened from 127.0.0.1:40166 +Oct 03 18:05 : client: [959] closed +Oct 03 18:05 : client: [960] opened from 127.0.0.1:40170 +Oct 03 18:05 : client: [960] closed +Oct 03 18:05 : client: [961] opened from 127.0.0.1:40174 +Oct 03 18:05 : client: [961] closed +Oct 03 18:05 : client: [962] opened from 127.0.0.1:40178 +Oct 03 18:05 : client: [962] closed +Oct 03 18:05 : client: [963] opened from 127.0.0.1:40182 +Oct 03 18:05 : client: [963] closed +Oct 03 18:05 : client: [964] opened from 127.0.0.1:40186 +Oct 03 18:05 : client: [964] closed +Oct 03 18:05 : client: [965] opened from 127.0.0.1:40190 +Oct 03 18:05 : client: [965] closed +Oct 03 18:05 : client: [966] opened from 127.0.0.1:40194 +Oct 03 18:05 : client: [966] closed +Oct 03 18:05 : client: [967] opened from 127.0.0.1:40198 +Oct 03 18:05 : client: [967] closed +Oct 03 18:05 : client: [968] opened from 127.0.0.1:40202 +Oct 03 18:05 : client: [968] closed +Oct 03 18:05 : client: [969] opened from 127.0.0.1:40206 +Oct 03 18:05 : client: [969] closed +Oct 03 18:05 : client: [970] opened from 127.0.0.1:40210 +Oct 03 18:05 : client: [970] closed +Oct 03 18:05 : client: [971] opened from 127.0.0.1:40214 +Oct 03 18:05 : client: [971] closed +Oct 03 18:05 : client: [972] opened from 127.0.0.1:40218 +Oct 03 18:05 : client: [972] closed +Oct 03 18:05 : client: [973] opened from 127.0.0.1:40222 +Oct 03 18:05 : client: [973] closed +Oct 03 18:06 : client: [974] opened from 127.0.0.1:40226 +Oct 03 18:06 : client: [974] closed +Oct 03 18:06 : client: [975] opened from 127.0.0.1:40230 +Oct 03 18:06 : client: [975] closed +Oct 03 18:06 : client: [976] opened from 127.0.0.1:40234 +Oct 03 18:06 : client: [976] closed +Oct 03 18:06 : client: [977] opened from 127.0.0.1:40238 +Oct 03 18:06 : client: [977] closed +Oct 03 18:06 : client: [978] opened from 127.0.0.1:40242 +Oct 03 18:06 : client: [978] closed +Oct 03 18:06 : client: [979] opened from 127.0.0.1:40246 +Oct 03 18:06 : client: [979] closed +Oct 03 18:06 : client: [980] opened from 127.0.0.1:40250 +Oct 03 18:06 : client: [980] closed +Oct 03 18:06 : client: [981] opened from 127.0.0.1:40254 +Oct 03 18:06 : client: [981] closed +Oct 03 18:06 : client: [982] opened from 127.0.0.1:40258 +Oct 03 18:06 : client: [982] closed +Oct 03 18:06 : client: [983] opened from 127.0.0.1:40262 +Oct 03 18:06 : client: [983] closed +Oct 03 18:06 : client: [984] opened from 127.0.0.1:40268 +Oct 03 18:06 : client: [984] closed +Oct 03 18:06 : client: [985] opened from 127.0.0.1:40272 +Oct 03 18:06 : client: [985] closed +Oct 03 18:06 : client: [986] opened from 127.0.0.1:40278 +Oct 03 18:06 : client: [986] closed +Oct 03 18:06 : client: [987] opened from 127.0.0.1:40282 +Oct 03 18:06 : client: [987] closed +Oct 03 18:06 : client: [988] opened from 127.0.0.1:40300 +Oct 03 18:06 : client: [988] closed +Oct 03 18:06 : client: [989] opened from 127.0.0.1:40304 +Oct 03 18:06 : client: [989] closed +Oct 03 18:06 : client: [990] opened from 127.0.0.1:40308 +Oct 03 18:06 : client: [990] closed +Oct 03 18:06 : client: [991] opened from 127.0.0.1:40312 +Oct 03 18:06 : client: [991] closed +Oct 03 18:06 : client: [992] opened from 127.0.0.1:40318 +Oct 03 18:06 : client: [992] closed +Oct 03 18:06 : client: [993] opened from 127.0.0.1:40322 +Oct 03 18:06 : client: [993] closed +Oct 03 18:06 : client: [994] opened from 127.0.0.1:40326 +Oct 03 18:06 : client: [994] closed +Oct 03 18:06 : client: [995] opened from 127.0.0.1:40330 +Oct 03 18:06 : client: [995] closed +Oct 03 18:06 : client: [996] opened from 127.0.0.1:40334 +Oct 03 18:06 : client: [996] closed +Oct 03 18:06 : client: [997] opened from 127.0.0.1:40338 +Oct 03 18:06 : client: [997] closed +Oct 03 18:07 : client: [998] opened from 127.0.0.1:40396 +Oct 03 18:07 : client: [998] closed +Oct 03 18:07 : client: [999] opened from 127.0.0.1:40400 +Oct 03 18:07 : client: [999] closed +Oct 03 18:07 : client: [1000] opened from 127.0.0.1:40590 +Oct 03 18:07 : client: [1000] closed +Oct 03 18:07 : client: [1001] opened from 127.0.0.1:40594 +Oct 03 18:07 : client: [1001] closed +Oct 03 18:07 : client: [1002] opened from 127.0.0.1:40636 +Oct 03 18:07 : client: [1002] closed +Oct 03 18:07 : client: [1003] opened from 127.0.0.1:40640 +Oct 03 18:07 : client: [1003] closed +Oct 03 18:07 : client: [1004] opened from 127.0.0.1:40664 +Oct 03 18:07 : client: [1004] closed +Oct 03 18:07 : client: [1005] opened from 127.0.0.1:40668 +Oct 03 18:07 : client: [1005] closed +Oct 03 18:07 : client: [1006] opened from 127.0.0.1:40720 +Oct 03 18:07 : client: [1006] closed +Oct 03 18:07 : client: [1007] opened from 127.0.0.1:40724 +Oct 03 18:07 : client: [1007] closed +Oct 03 18:07 : client: [1008] opened from 127.0.0.1:40738 +Oct 03 18:07 : client: [1008] closed +Oct 03 18:07 : client: [1009] opened from 127.0.0.1:40742 +Oct 03 18:07 : client: [1009] closed +Oct 03 18:07 : client: [1010] opened from 127.0.0.1:40746 +Oct 03 18:07 : client: [1010] closed +Oct 03 18:07 : client: [1011] opened from 127.0.0.1:40750 +Oct 03 18:07 : client: [1011] closed +Oct 03 18:07 : client: [1012] opened from 127.0.0.1:40754 +Oct 03 18:07 : client: [1012] closed +Oct 03 18:07 : client: [1013] opened from 127.0.0.1:40758 +Oct 03 18:07 : client: [1013] closed +Oct 03 18:07 : client: [1014] opened from 127.0.0.1:40762 +Oct 03 18:07 : client: [1014] closed +Oct 03 18:07 : client: [1015] opened from 127.0.0.1:40766 +Oct 03 18:07 : client: [1015] closed +Oct 03 18:07 : client: [1016] opened from 127.0.0.1:40770 +Oct 03 18:07 : client: [1016] closed +Oct 03 18:07 : client: [1017] opened from 127.0.0.1:40774 +Oct 03 18:07 : client: [1017] closed +Oct 03 18:07 : client: [1018] opened from 127.0.0.1:40780 +Oct 03 18:07 : client: [1018] closed +Oct 03 18:07 : client: [1019] opened from 127.0.0.1:40784 +Oct 03 18:07 : client: [1019] closed +Oct 03 18:07 : client: [1020] opened from 127.0.0.1:40790 +Oct 03 18:07 : client: [1020] closed +Oct 03 18:07 : client: [1021] opened from 127.0.0.1:40794 +Oct 03 18:07 : client: [1021] closed +Oct 03 18:08 : client: [1022] opened from 127.0.0.1:40798 +Oct 03 18:08 : client: [1022] closed +Oct 03 18:08 : client: [1023] opened from 127.0.0.1:40802 +Oct 03 18:08 : client: [1023] closed +Oct 03 18:08 : client: [1024] opened from 127.0.0.1:40806 +Oct 03 18:08 : client: [1024] closed +Oct 03 18:08 : client: [1025] opened from 127.0.0.1:40810 +Oct 03 18:08 : client: [1025] closed +Oct 03 18:08 : client: [1026] opened from 127.0.0.1:40814 +Oct 03 18:08 : client: [1026] closed +Oct 03 18:08 : client: [1027] opened from 127.0.0.1:40818 +Oct 03 18:08 : client: [1027] closed +Oct 03 18:08 : client: [1028] opened from 127.0.0.1:40822 +Oct 03 18:08 : client: [1028] closed +Oct 03 18:08 : client: [1029] opened from 127.0.0.1:40826 +Oct 03 18:08 : client: [1029] closed +Oct 03 18:08 : client: [1030] opened from 127.0.0.1:40852 +Oct 03 18:08 : client: [1030] closed +Oct 03 18:08 : client: [1031] opened from 127.0.0.1:40856 +Oct 03 18:08 : client: [1031] closed +Oct 03 18:08 : client: [1032] opened from 127.0.0.1:40860 +Oct 03 18:08 : client: [1032] closed +Oct 03 18:08 : client: [1033] opened from 127.0.0.1:40864 +Oct 03 18:08 : client: [1033] closed +Oct 03 18:08 : client: [1034] opened from 127.0.0.1:40868 +Oct 03 18:08 : client: [1034] closed +Oct 03 18:08 : client: [1035] opened from 127.0.0.1:40872 +Oct 03 18:08 : client: [1035] closed +Oct 03 18:08 : client: [1036] opened from 127.0.0.1:40876 +Oct 03 18:08 : client: [1036] closed +Oct 03 18:08 : client: [1037] opened from 127.0.0.1:40880 +Oct 03 18:08 : client: [1037] closed +Oct 03 18:08 : client: [1038] opened from 127.0.0.1:40884 +Oct 03 18:08 : client: [1038] closed +Oct 03 18:08 : client: [1039] opened from 127.0.0.1:40888 +Oct 03 18:08 : client: [1039] closed +Oct 03 18:08 : client: [1040] opened from 127.0.0.1:40892 +Oct 03 18:08 : client: [1040] closed +Oct 03 18:08 : client: [1041] opened from 127.0.0.1:40896 +Oct 03 18:08 : client: [1041] closed +Oct 03 18:08 : client: [1042] opened from 127.0.0.1:40900 +Oct 03 18:08 : client: [1042] closed +Oct 03 18:08 : client: [1043] opened from 127.0.0.1:40904 +Oct 03 18:08 : client: [1043] closed +Oct 03 18:08 : client: [1044] opened from 127.0.0.1:40908 +Oct 03 18:08 : client: [1044] closed +Oct 03 18:08 : client: [1045] opened from 127.0.0.1:40912 +Oct 03 18:08 : client: [1045] closed +Oct 03 18:09 : client: [1046] opened from 127.0.0.1:40926 +Oct 03 18:09 : client: [1046] closed +Oct 03 18:09 : client: [1047] opened from 127.0.0.1:40930 +Oct 03 18:09 : client: [1047] closed +Oct 03 18:09 : client: [1048] opened from 127.0.0.1:40948 +Oct 03 18:09 : client: [1048] closed +Oct 03 18:09 : client: [1049] opened from 127.0.0.1:40952 +Oct 03 18:09 : client: [1049] closed +Oct 03 18:09 : client: [1050] opened from 127.0.0.1:40956 +Oct 03 18:09 : client: [1050] closed +Oct 03 18:09 : client: [1051] opened from 127.0.0.1:40960 +Oct 03 18:09 : client: [1051] closed +Oct 03 18:09 : client: [1052] opened from 127.0.0.1:40964 +Oct 03 18:09 : client: [1052] closed +Oct 03 18:09 : client: [1053] opened from 127.0.0.1:40968 +Oct 03 18:09 : client: [1053] closed +Oct 03 18:09 : client: [1054] opened from 127.0.0.1:40972 +Oct 03 18:09 : client: [1054] closed +Oct 03 18:09 : client: [1055] opened from 127.0.0.1:40976 +Oct 03 18:09 : client: [1055] closed +Oct 03 18:09 : client: [1056] opened from 127.0.0.1:40980 +Oct 03 18:09 : client: [1056] closed +Oct 03 18:09 : client: [1057] opened from 127.0.0.1:40984 +Oct 03 18:09 : client: [1057] closed +Oct 03 18:09 : client: [1058] opened from 127.0.0.1:40988 +Oct 03 18:09 : client: [1058] closed +Oct 03 18:09 : client: [1059] opened from 127.0.0.1:40992 +Oct 03 18:09 : client: [1059] closed +Oct 03 18:09 : client: [1060] opened from 127.0.0.1:40996 +Oct 03 18:09 : client: [1060] closed +Oct 03 18:09 : client: [1061] opened from 127.0.0.1:41000 +Oct 03 18:09 : client: [1061] closed +Oct 03 18:09 : client: [1062] opened from 127.0.0.1:41004 +Oct 03 18:09 : client: [1062] closed +Oct 03 18:09 : client: [1063] opened from 127.0.0.1:41008 +Oct 03 18:09 : client: [1063] closed +Oct 03 18:09 : client: [1064] opened from 127.0.0.1:41012 +Oct 03 18:09 : client: [1064] closed +Oct 03 18:09 : client: [1065] opened from 127.0.0.1:41016 +Oct 03 18:09 : client: [1065] closed +Oct 03 18:09 : client: [1066] opened from 127.0.0.1:41020 +Oct 03 18:09 : client: [1066] closed +Oct 03 18:09 : client: [1067] opened from 127.0.0.1:41024 +Oct 03 18:09 : client: [1067] closed +Oct 03 18:09 : client: [1068] opened from 127.0.0.1:41030 +Oct 03 18:09 : client: [1068] closed +Oct 03 18:09 : client: [1069] opened from 127.0.0.1:41034 +Oct 03 18:09 : client: [1069] closed +Oct 03 18:10 : client: [1070] opened from 127.0.0.1:41038 +Oct 03 18:10 : client: [1070] closed +Oct 03 18:10 : client: [1071] opened from 127.0.0.1:41042 +Oct 03 18:10 : client: [1071] closed +Oct 03 18:10 : client: [1072] opened from 127.0.0.1:41046 +Oct 03 18:10 : client: [1072] closed +Oct 03 18:10 : client: [1073] opened from 127.0.0.1:41050 +Oct 03 18:10 : client: [1073] closed +Oct 03 18:10 : client: [1074] opened from 127.0.0.1:41054 +Oct 03 18:10 : client: [1074] closed +Oct 03 18:10 : client: [1075] opened from 127.0.0.1:41058 +Oct 03 18:10 : client: [1075] closed +Oct 03 18:10 : client: [1076] opened from 127.0.0.1:41064 +Oct 03 18:10 : client: [1076] closed +Oct 03 18:10 : client: [1077] opened from 127.0.0.1:41068 +Oct 03 18:10 : client: [1077] closed +Oct 03 18:10 : client: [1078] opened from 127.0.0.1:41072 +Oct 03 18:10 : client: [1078] closed +Oct 03 18:10 : client: [1079] opened from 127.0.0.1:41076 +Oct 03 18:10 : client: [1079] closed +Oct 03 18:10 : client: [1080] opened from 127.0.0.1:41080 +Oct 03 18:10 : client: [1080] closed +Oct 03 18:10 : client: [1081] opened from 127.0.0.1:41084 +Oct 03 18:10 : client: [1081] closed +Oct 03 18:10 : client: [1082] opened from 127.0.0.1:41088 +Oct 03 18:10 : client: [1082] closed +Oct 03 18:10 : client: [1083] opened from 127.0.0.1:41092 +Oct 03 18:10 : client: [1083] closed +Oct 03 18:10 : client: [1084] opened from 127.0.0.1:41096 +Oct 03 18:10 : client: [1084] closed +Oct 03 18:10 : client: [1085] opened from 127.0.0.1:41100 +Oct 03 18:10 : client: [1085] closed +Oct 03 18:10 : client: [1086] opened from 127.0.0.1:41104 +Oct 03 18:10 : client: [1086] closed +Oct 03 18:10 : client: [1087] opened from 127.0.0.1:41108 +Oct 03 18:10 : client: [1087] closed +Oct 03 18:10 : client: [1088] opened from 127.0.0.1:41112 +Oct 03 18:10 : client: [1088] closed +Oct 03 18:10 : client: [1089] opened from 127.0.0.1:41116 +Oct 03 18:10 : client: [1089] closed +Oct 03 18:10 : client: [1090] opened from 127.0.0.1:41120 +Oct 03 18:10 : client: [1090] closed +Oct 03 18:10 : client: [1091] opened from 127.0.0.1:41124 +Oct 03 18:10 : client: [1091] closed +Oct 03 18:10 : client: [1092] opened from 127.0.0.1:41128 +Oct 03 18:10 : client: [1092] closed +Oct 03 18:10 : client: [1093] opened from 127.0.0.1:41132 +Oct 03 18:10 : client: [1093] closed +Oct 03 18:11 : client: [1094] opened from 127.0.0.1:41136 +Oct 03 18:11 : client: [1094] closed +Oct 03 18:11 : client: [1095] opened from 127.0.0.1:41140 +Oct 03 18:11 : client: [1095] closed +Oct 03 18:11 : client: [1096] opened from 127.0.0.1:41144 +Oct 03 18:11 : client: [1096] closed +Oct 03 18:11 : client: [1097] opened from 127.0.0.1:41148 +Oct 03 18:11 : client: [1097] closed +Oct 03 18:11 : client: [1098] opened from 127.0.0.1:41152 +Oct 03 18:11 : client: [1098] closed +Oct 03 18:11 : client: [1099] opened from 127.0.0.1:41156 +Oct 03 18:11 : client: [1099] closed +Oct 03 18:11 : client: [1100] opened from 127.0.0.1:41160 +Oct 03 18:11 : client: [1100] closed +Oct 03 18:11 : client: [1101] opened from 127.0.0.1:41164 +Oct 03 18:11 : client: [1101] closed +Oct 03 18:11 : client: [1102] opened from 127.0.0.1:41168 +Oct 03 18:11 : client: [1102] closed +Oct 03 18:11 : client: [1103] opened from 127.0.0.1:41172 +Oct 03 18:11 : client: [1103] closed +Oct 03 18:11 : client: [1104] opened from 127.0.0.1:41176 +Oct 03 18:11 : client: [1104] closed +Oct 03 18:11 : client: [1105] opened from 127.0.0.1:41180 +Oct 03 18:11 : client: [1105] closed +Oct 03 18:11 : client: [1106] opened from 127.0.0.1:41184 +Oct 03 18:11 : client: [1106] closed +Oct 03 18:11 : client: [1107] opened from 127.0.0.1:41188 +Oct 03 18:11 : client: [1107] closed +Oct 03 18:11 : client: [1108] opened from 127.0.0.1:41192 +Oct 03 18:11 : client: [1108] closed +Oct 03 18:11 : client: [1109] opened from 127.0.0.1:41196 +Oct 03 18:11 : client: [1109] closed +Oct 03 18:11 : client: [1110] opened from 127.0.0.1:41200 +Oct 03 18:11 : client: [1110] closed +Oct 03 18:11 : client: [1111] opened from 127.0.0.1:41204 +Oct 03 18:11 : client: [1111] closed +Oct 03 18:11 : client: [1112] opened from 127.0.0.1:41220 +Oct 03 18:11 : client: [1112] closed +Oct 03 18:11 : client: [1113] opened from 127.0.0.1:41224 +Oct 03 18:11 : client: [1113] closed +Oct 03 18:11 : client: [1114] opened from 127.0.0.1:41228 +Oct 03 18:11 : client: [1114] closed +Oct 03 18:11 : client: [1115] opened from 127.0.0.1:41232 +Oct 03 18:11 : client: [1115] closed +Oct 03 18:11 : client: [1116] opened from 127.0.0.1:41236 +Oct 03 18:11 : client: [1116] closed +Oct 03 18:11 : client: [1117] opened from 127.0.0.1:41240 +Oct 03 18:11 : client: [1117] closed +Oct 03 18:12 : client: [1118] opened from 127.0.0.1:41244 +Oct 03 18:12 : client: [1118] closed +Oct 03 18:12 : client: [1119] opened from 127.0.0.1:41248 +Oct 03 18:12 : client: [1119] closed +Oct 03 18:12 : client: [1120] opened from 127.0.0.1:41252 +Oct 03 18:12 : client: [1120] closed +Oct 03 18:12 : client: [1121] opened from 127.0.0.1:41256 +Oct 03 18:12 : client: [1121] closed +Oct 03 18:12 : client: [1122] opened from 127.0.0.1:41260 +Oct 03 18:12 : client: [1122] closed +Oct 03 18:12 : client: [1123] opened from 127.0.0.1:41264 +Oct 03 18:12 : client: [1123] closed +Oct 03 18:12 : client: [1124] opened from 127.0.0.1:41268 +Oct 03 18:12 : client: [1124] closed +Oct 03 18:12 : client: [1125] opened from 127.0.0.1:41272 +Oct 03 18:12 : client: [1125] closed +Oct 03 18:12 : client: [1126] opened from 127.0.0.1:41276 +Oct 03 18:12 : client: [1126] closed +Oct 03 18:12 : client: [1127] opened from 127.0.0.1:41280 +Oct 03 18:12 : client: [1127] closed +Oct 03 18:12 : client: [1128] opened from 127.0.0.1:41284 +Oct 03 18:12 : client: [1128] closed +Oct 03 18:12 : client: [1129] opened from 127.0.0.1:41288 +Oct 03 18:12 : client: [1129] closed +Oct 03 18:12 : client: [1130] opened from 127.0.0.1:41292 +Oct 03 18:12 : client: [1130] closed +Oct 03 18:12 : client: [1131] opened from 127.0.0.1:41296 +Oct 03 18:12 : client: [1131] closed +Oct 03 18:12 : client: [1132] opened from 127.0.0.1:41300 +Oct 03 18:12 : client: [1132] closed +Oct 03 18:12 : client: [1133] opened from 127.0.0.1:41304 +Oct 03 18:12 : client: [1133] closed +Oct 03 18:12 : client: [1134] opened from 127.0.0.1:41308 +Oct 03 18:12 : client: [1134] closed +Oct 03 18:12 : client: [1135] opened from 127.0.0.1:41312 +Oct 03 18:12 : client: [1135] closed +Oct 03 18:12 : client: [1136] opened from 127.0.0.1:41316 +Oct 03 18:12 : client: [1136] closed +Oct 03 18:12 : client: [1137] opened from 127.0.0.1:41320 +Oct 03 18:12 : client: [1137] closed +Oct 03 18:12 : client: [1138] opened from 127.0.0.1:41324 +Oct 03 18:12 : client: [1138] closed +Oct 03 18:12 : client: [1139] opened from 127.0.0.1:41328 +Oct 03 18:12 : client: [1139] closed +Oct 03 18:12 : client: [1140] opened from 127.0.0.1:41332 +Oct 03 18:12 : client: [1140] closed +Oct 03 18:12 : client: [1141] opened from 127.0.0.1:41336 +Oct 03 18:12 : client: [1141] closed +Oct 03 18:13 : client: [1142] opened from 127.0.0.1:41340 +Oct 03 18:13 : client: [1142] closed +Oct 03 18:13 : client: [1143] opened from 127.0.0.1:41344 +Oct 03 18:13 : client: [1143] closed +Oct 03 18:13 : client: [1144] opened from 127.0.0.1:41348 +Oct 03 18:13 : client: [1144] closed +Oct 03 18:13 : client: [1145] opened from 127.0.0.1:41352 +Oct 03 18:13 : client: [1145] closed +Oct 03 18:13 : client: [1146] opened from 127.0.0.1:41356 +Oct 03 18:13 : client: [1146] closed +Oct 03 18:13 : client: [1147] opened from 127.0.0.1:41360 +Oct 03 18:13 : client: [1147] closed +Oct 03 18:13 : client: [1148] opened from 127.0.0.1:41364 +Oct 03 18:13 : client: [1148] closed +Oct 03 18:13 : client: [1149] opened from 127.0.0.1:41368 +Oct 03 18:13 : client: [1149] closed +Oct 03 18:13 : client: [1150] opened from 127.0.0.1:41376 +Oct 03 18:13 : client: [1150] closed +Oct 03 18:13 : client: [1151] opened from 127.0.0.1:41380 +Oct 03 18:13 : client: [1151] closed +Oct 03 18:13 : client: [1152] opened from 127.0.0.1:41388 +Oct 03 18:13 : client: [1152] closed +Oct 03 18:13 : client: [1153] opened from 127.0.0.1:41392 +Oct 03 18:13 : client: [1153] closed +Oct 03 18:13 : client: [1154] opened from 127.0.0.1:41396 +Oct 03 18:13 : client: [1154] closed +Oct 03 18:13 : client: [1155] opened from 127.0.0.1:41400 +Oct 03 18:13 : client: [1155] closed +Oct 03 18:13 : client: [1156] opened from 127.0.0.1:41410 +Oct 03 18:13 : client: [1156] closed +Oct 03 18:13 : client: [1157] opened from 127.0.0.1:41414 +Oct 03 18:13 : client: [1157] closed +Oct 03 18:13 : client: [1158] opened from 127.0.0.1:41418 +Oct 03 18:13 : client: [1158] closed +Oct 03 18:13 : client: [1159] opened from 127.0.0.1:41422 +Oct 03 18:13 : client: [1159] closed +Oct 03 18:13 : client: [1160] opened from 127.0.0.1:41426 +Oct 03 18:13 : client: [1160] closed +Oct 03 18:13 : client: [1161] opened from 127.0.0.1:41430 +Oct 03 18:13 : client: [1161] closed +Oct 03 18:13 : client: [1162] opened from 127.0.0.1:41436 +Oct 03 18:13 : client: [1162] closed +Oct 03 18:13 : client: [1163] opened from 127.0.0.1:41440 +Oct 03 18:13 : client: [1163] closed +Oct 03 18:13 : client: [1164] opened from 127.0.0.1:41444 +Oct 03 18:13 : client: [1164] closed +Oct 03 18:13 : client: [1165] opened from 127.0.0.1:41448 +Oct 03 18:13 : client: [1165] closed +Oct 03 18:14 : client: [1166] opened from 127.0.0.1:41452 +Oct 03 18:14 : client: [1166] closed +Oct 03 18:14 : client: [1167] opened from 127.0.0.1:41456 +Oct 03 18:14 : client: [1167] closed +Oct 03 18:14 : client: [1168] opened from 127.0.0.1:41460 +Oct 03 18:14 : client: [1168] closed +Oct 03 18:14 : client: [1169] opened from 127.0.0.1:41464 +Oct 03 18:14 : client: [1169] closed +Oct 03 18:14 : client: [1170] opened from 127.0.0.1:41468 +Oct 03 18:14 : client: [1170] closed +Oct 03 18:14 : client: [1171] opened from 127.0.0.1:41472 +Oct 03 18:14 : client: [1171] closed +Oct 03 18:14 : client: [1172] opened from 127.0.0.1:41476 +Oct 03 18:14 : client: [1172] closed +Oct 03 18:14 : client: [1173] opened from 127.0.0.1:41480 +Oct 03 18:14 : client: [1173] closed +Oct 03 18:14 : client: [1174] opened from 127.0.0.1:41484 +Oct 03 18:14 : client: [1174] closed +Oct 03 18:14 : client: [1175] opened from 127.0.0.1:41488 +Oct 03 18:14 : client: [1175] closed +Oct 03 18:14 : client: [1176] opened from 127.0.0.1:41492 +Oct 03 18:14 : client: [1176] closed +Oct 03 18:14 : client: [1177] opened from 127.0.0.1:41496 +Oct 03 18:14 : client: [1177] closed +Oct 03 18:14 : client: [1178] opened from 127.0.0.1:41500 +Oct 03 18:14 : client: [1178] closed +Oct 03 18:14 : client: [1179] opened from 127.0.0.1:41504 +Oct 03 18:14 : client: [1179] closed +Oct 03 18:14 : client: [1180] opened from 127.0.0.1:41508 +Oct 03 18:14 : client: [1180] closed +Oct 03 18:14 : client: [1181] opened from 127.0.0.1:41512 +Oct 03 18:14 : client: [1181] closed +Oct 03 18:14 : client: [1182] opened from 127.0.0.1:41516 +Oct 03 18:14 : client: [1182] closed +Oct 03 18:14 : client: [1183] opened from 127.0.0.1:41520 +Oct 03 18:14 : client: [1183] closed +Oct 03 18:14 : client: [1184] opened from 127.0.0.1:41524 +Oct 03 18:14 : client: [1184] closed +Oct 03 18:14 : client: [1185] opened from 127.0.0.1:41528 +Oct 03 18:14 : client: [1185] closed +Oct 03 18:14 : client: [1186] opened from 127.0.0.1:41532 +Oct 03 18:14 : client: [1186] closed +Oct 03 18:14 : client: [1187] opened from 127.0.0.1:41536 +Oct 03 18:14 : client: [1187] closed +Oct 03 18:14 : client: [1188] opened from 127.0.0.1:41540 +Oct 03 18:14 : client: [1188] closed +Oct 03 18:14 : client: [1189] opened from 127.0.0.1:41544 +Oct 03 18:14 : client: [1189] closed +Oct 03 18:15 : client: [1190] opened from 127.0.0.1:41548 +Oct 03 18:15 : client: [1190] closed +Oct 03 18:15 : client: [1191] opened from 127.0.0.1:41552 +Oct 03 18:15 : client: [1191] closed +Oct 03 18:15 : client: [1192] opened from 127.0.0.1:41556 +Oct 03 18:15 : client: [1192] closed +Oct 03 18:15 : client: [1193] opened from 127.0.0.1:41560 +Oct 03 18:15 : client: [1193] closed +Oct 03 18:15 : client: [1194] opened from 127.0.0.1:41590 +Oct 03 18:15 : client: [1194] closed +Oct 03 18:15 : client: [1195] opened from 127.0.0.1:41594 +Oct 03 18:15 : client: [1195] closed +Oct 03 18:15 : client: [1196] opened from 127.0.0.1:41616 +Oct 03 18:15 : client: [1196] closed +Oct 03 18:15 : client: [1197] opened from 127.0.0.1:41620 +Oct 03 18:15 : client: [1197] closed +Oct 03 18:15 : client: [1198] opened from 127.0.0.1:41630 +Oct 03 18:15 : client: [1198] closed +Oct 03 18:15 : client: [1199] opened from 127.0.0.1:41634 +Oct 03 18:15 : client: [1199] closed +Oct 03 18:15 : client: [1200] opened from 127.0.0.1:41640 +Oct 03 18:15 : client: [1200] closed +Oct 03 18:15 : client: [1201] opened from 127.0.0.1:41644 +Oct 03 18:15 : client: [1201] closed +Oct 03 18:15 : client: [1202] opened from 127.0.0.1:41658 +Oct 03 18:15 : client: [1202] closed +Oct 03 18:15 : client: [1203] opened from 127.0.0.1:41662 +Oct 03 18:15 : client: [1203] closed +Oct 03 18:15 : client: [1204] opened from 127.0.0.1:41666 +Oct 03 18:15 : client: [1204] closed +Oct 03 18:15 : client: [1205] opened from 127.0.0.1:41670 +Oct 03 18:15 : client: [1205] closed +Oct 03 18:15 : client: [1206] opened from 127.0.0.1:41674 +Oct 03 18:15 : client: [1206] closed +Oct 03 18:15 : client: [1207] opened from 127.0.0.1:41678 +Oct 03 18:15 : client: [1207] closed +Oct 03 18:15 : client: [1208] opened from 127.0.0.1:41682 +Oct 03 18:15 : client: [1208] closed +Oct 03 18:15 : client: [1209] opened from 127.0.0.1:41686 +Oct 03 18:15 : client: [1209] closed +Oct 03 18:15 : client: [1210] opened from 127.0.0.1:41690 +Oct 03 18:15 : client: [1210] closed +Oct 03 18:15 : client: [1211] opened from 127.0.0.1:41694 +Oct 03 18:15 : client: [1211] closed +Oct 03 18:15 : client: [1212] opened from 127.0.0.1:41698 +Oct 03 18:15 : client: [1212] closed +Oct 03 18:15 : client: [1213] opened from 127.0.0.1:41702 +Oct 03 18:15 : client: [1213] closed +Oct 03 18:16 : client: [1214] opened from 127.0.0.1:41706 +Oct 03 18:16 : client: [1214] closed +Oct 03 18:16 : client: [1215] opened from 127.0.0.1:41710 +Oct 03 18:16 : client: [1215] closed +Oct 03 18:16 : client: [1216] opened from 127.0.0.1:41714 +Oct 03 18:16 : client: [1216] closed +Oct 03 18:16 : client: [1217] opened from 127.0.0.1:41718 +Oct 03 18:16 : client: [1217] closed +Oct 03 18:16 : client: [1218] opened from 127.0.0.1:41722 +Oct 03 18:16 : client: [1218] closed +Oct 03 18:16 : client: [1219] opened from 127.0.0.1:41726 +Oct 03 18:16 : client: [1219] closed +Oct 03 18:16 : client: [1220] opened from 127.0.0.1:41730 +Oct 03 18:16 : client: [1220] closed +Oct 03 18:16 : client: [1221] opened from 127.0.0.1:41734 +Oct 03 18:16 : client: [1221] closed +Oct 03 18:16 : client: [1222] opened from 127.0.0.1:41738 +Oct 03 18:16 : client: [1222] closed +Oct 03 18:16 : client: [1223] opened from 127.0.0.1:41742 +Oct 03 18:16 : client: [1223] closed +Oct 03 18:16 : client: [1224] opened from 127.0.0.1:41746 +Oct 03 18:16 : client: [1225] opened from 127.0.0.1:41750 +Oct 03 18:16 : client: [1225] closed +Oct 03 18:16 : client: [1226] opened from 127.0.0.1:41754 +Oct 03 18:16 : client: [1226] closed +Oct 03 18:16 : update: added /Linus Said - Music Parody (Momma Said).webm +Oct 03 18:16 : exception: Failed to open /home/igor/.config/mpd/playlists: No such file or directory +Oct 03 18:16 : client: [1227] opened from 127.0.0.1:41758 +Oct 03 18:16 : client: [1227] closed +Oct 03 18:16 : client: [1228] opened from 127.0.0.1:41762 +Oct 03 18:16 : client: [1228] closed +Oct 03 18:16 : exception: OutputThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted +Oct 03 18:16 : exception: OutputThread could not get realtime scheduling, continuing anyway: sched_setscheduler failed: Operation not permitted +Oct 03 18:16 : client: [1229] opened from 127.0.0.1:41766 +Oct 03 18:16 : client: [1229] closed +Oct 03 18:16 : client: [1230] opened from 127.0.0.1:41770 +Oct 03 18:16 : client: [1230] closed +Oct 03 18:16 : exception: Failed to open /home/igor/.config/mpd/playlists: No such file or directory +Oct 03 18:16 : exception: Failed to open /home/igor/.config/mpd/playlists: No such file or directory +Oct 03 18:16 : exception: Failed to open /home/igor/.config/mpd/playlists: No such file or directory +Oct 03 18:16 : exception: Failed to open /home/igor/.config/mpd/playlists: No such file or directory +Oct 03 18:16 : client: [1231] opened from 127.0.0.1:41774 +Oct 03 18:16 : client: [1231] closed +Oct 03 18:16 : client: [1232] opened from 127.0.0.1:41778 +Oct 03 18:16 : client: [1232] closed +Oct 03 18:16 : exception: Failed to open /home/igor/.config/mpd/playlists: No such file or directory +Oct 03 18:16 : client: [1233] opened from 127.0.0.1:41782 +Oct 03 18:16 : client: [1233] closed +Oct 03 18:16 : client: [1234] opened from 127.0.0.1:41786 +Oct 03 18:16 : client: [1234] closed +Oct 03 18:16 : client: [1224] closed +Oct 03 18:16 : client: [1235] opened from 127.0.0.1:41790 +Oct 03 18:16 : client: [1235] closed +Oct 03 18:16 : client: [1236] opened from 127.0.0.1:41794 +Oct 03 18:16 : client: [1236] closed +Oct 03 18:16 : client: [1237] opened from 127.0.0.1:41798 +Oct 03 18:16 : client: [1237] closed +Oct 03 18:16 : client: [1238] opened from 127.0.0.1:41802 +Oct 03 18:16 : client: [1238] closed +Oct 03 18:17 : client: [1239] opened from 127.0.0.1:41806 +Oct 03 18:17 : client: [1240] opened from 127.0.0.1:41810 +Oct 03 18:17 : client: [1240] closed +Oct 03 18:17 : client: [1241] opened from 127.0.0.1:41814 +Oct 03 18:17 : client: [1241] closed +Oct 03 18:17 : client: [1242] opened from 127.0.0.1:41818 +Oct 03 18:17 : client: [1242] closed +Oct 03 18:17 : client: [1243] opened from 127.0.0.1:41822 +Oct 03 18:17 : client: [1243] closed +Oct 03 18:17 : client: [1244] opened from 127.0.0.1:41826 +Oct 03 18:17 : client: [1244] closed +Oct 03 18:17 : client: [1245] opened from 127.0.0.1:41830 +Oct 03 18:17 : client: [1245] closed +Oct 03 18:17 : client: [1246] opened from 127.0.0.1:41834 +Oct 03 18:17 : client: [1246] closed +Oct 03 18:17 : client: [1247] opened from 127.0.0.1:41838 +Oct 03 18:17 : client: [1247] closed +Oct 03 18:17 : client: [1248] opened from 127.0.0.1:41842 +Oct 03 18:17 : client: [1248] closed +Oct 03 18:17 : client: [1249] opened from 127.0.0.1:41846 +Oct 03 18:17 : client: [1249] closed +Oct 03 18:17 : client: [1250] opened from 127.0.0.1:41850 +Oct 03 18:17 : client: [1250] closed +Oct 03 18:17 : client: [1251] opened from 127.0.0.1:41854 +Oct 03 18:17 : client: [1251] closed +Oct 03 18:17 : exception: Failed to open /home/igor/.config/mpd/playlists: No such file or directory +Oct 03 18:17 : exception: Failed to open /home/igor/.config/mpd/playlists: No such file or directory +Oct 03 18:17 : exception: Failed to open /home/igor/.config/mpd/playlists: No such file or directory +Oct 03 18:17 : exception: Failed to open /home/igor/.config/mpd/playlists: No such file or directory +Oct 03 18:17 : exception: Failed to open /home/igor/.config/mpd/playlists: No such file or directory +Oct 03 18:17 : exception: Failed to open /home/igor/.config/mpd/playlists: No such file or directory +Oct 03 18:17 : exception: Failed to open /home/igor/.config/mpd/playlists: No such file or directory +Oct 03 18:17 : exception: Failed to open /home/igor/.config/mpd/playlists: No such file or directory +Oct 03 18:17 : exception: Failed to open /home/igor/.config/mpd/playlists: No such file or directory +Oct 03 18:17 : exception: Failed to open /home/igor/.config/mpd/playlists: No such file or directory +Oct 03 18:17 : exception: Failed to open /home/igor/.config/mpd/playlists: No such file or directory +Oct 03 18:17 : exception: Failed to open /home/igor/.config/mpd/playlists: No such file or directory +Oct 03 18:17 : exception: Failed to open /home/igor/.config/mpd/playlists: No such file or directory +Oct 03 18:17 : exception: Failed to open /home/igor/.config/mpd/playlists: No such file or directory +Oct 03 18:17 : client: [1252] opened from 127.0.0.1:41858 +Oct 03 18:17 : client: [1252] closed +Oct 03 18:17 : client: [1253] opened from 127.0.0.1:41862 +Oct 03 18:17 : client: [1253] closed +Oct 03 18:17 : exception: Failed to open /home/igor/.config/mpd/playlists: No such file or directory +Oct 03 18:17 : exception: Failed to open /home/igor/.config/mpd/playlists: No such file or directory +Oct 03 18:17 : exception: Failed to open /home/igor/.config/mpd/playlists: No such file or directory +Oct 03 18:17 : exception: Failed to open /home/igor/.config/mpd/playlists: No such file or directory +Oct 03 18:17 : exception: Failed to open /home/igor/.config/mpd/playlists: No such file or directory +Oct 03 18:17 : client: [1254] opened from 127.0.0.1:41866 +Oct 03 18:17 : client: [1254] closed +Oct 03 18:17 : client: [1255] opened from 127.0.0.1:41870 +Oct 03 18:17 : client: [1255] closed +Oct 03 18:17 : client: [1256] opened from 127.0.0.1:41874 +Oct 03 18:17 : client: [1256] closed +Oct 03 18:17 : client: [1257] opened from 127.0.0.1:41878 +Oct 03 18:17 : client: [1257] closed +Oct 03 18:17 : client: [1258] opened from 127.0.0.1:41940 +Oct 03 18:17 : client: [1258] closed +Oct 03 18:17 : client: [1259] opened from 127.0.0.1:41944 +Oct 03 18:17 : client: [1259] closed +Oct 03 18:17 : client: [1260] opened from 127.0.0.1:41980 +Oct 03 18:17 : client: [1260] closed +Oct 03 18:17 : client: [1261] opened from 127.0.0.1:41984 +Oct 03 18:17 : client: [1261] closed +Oct 03 18:17 : client: [1262] opened from 127.0.0.1:42008 +Oct 03 18:17 : client: [1262] closed +Oct 03 18:17 : client: [1263] opened from 127.0.0.1:42012 +Oct 03 18:17 : client: [1263] closed +Oct 03 18:18 : client: [1264] opened from 127.0.0.1:42040 +Oct 03 18:18 : client: [1264] closed +Oct 03 18:18 : client: [1265] opened from 127.0.0.1:42044 +Oct 03 18:18 : client: [1265] closed +Oct 03 18:18 : client: [1266] opened from 127.0.0.1:42048 +Oct 03 18:18 : client: [1266] closed +Oct 03 18:18 : client: [1267] opened from 127.0.0.1:42052 +Oct 03 18:18 : client: [1267] closed +Oct 03 18:18 : client: [1268] opened from 127.0.0.1:42058 +Oct 03 18:18 : client: [1268] closed +Oct 03 18:18 : client: [1269] opened from 127.0.0.1:42062 +Oct 03 18:18 : client: [1269] closed +Oct 03 18:18 : client: [1270] opened from 127.0.0.1:42086 +Oct 03 18:18 : client: [1270] closed +Oct 03 18:18 : client: [1271] opened from 127.0.0.1:42090 +Oct 03 18:18 : client: [1271] closed +Oct 03 18:18 : client: [1272] opened from 127.0.0.1:42102 +Oct 03 18:18 : client: [1272] closed +Oct 03 18:18 : client: [1273] opened from 127.0.0.1:42106 +Oct 03 18:18 : client: [1273] closed +Oct 03 18:18 : client: [1274] opened from 127.0.0.1:42116 +Oct 03 18:18 : client: [1274] closed +Oct 03 18:18 : client: [1275] opened from 127.0.0.1:42120 +Oct 03 18:18 : client: [1275] closed +Oct 03 18:18 : client: [1276] opened from 127.0.0.1:42128 +Oct 03 18:18 : client: [1276] closed +Oct 03 18:18 : client: [1277] opened from 127.0.0.1:42132 +Oct 03 18:18 : client: [1277] closed +Oct 03 18:18 : client: [1278] opened from 127.0.0.1:42142 +Oct 03 18:18 : client: [1278] closed +Oct 03 18:18 : client: [1279] opened from 127.0.0.1:42146 +Oct 03 18:18 : client: [1279] closed +Oct 03 18:18 : client: [1280] opened from 127.0.0.1:42158 +Oct 03 18:18 : client: [1280] closed +Oct 03 18:18 : client: [1281] opened from 127.0.0.1:42162 +Oct 03 18:18 : client: [1281] closed +Oct 03 18:18 : client: [1282] opened from 127.0.0.1:42170 +Oct 03 18:18 : client: [1282] closed +Oct 03 18:18 : client: [1283] opened from 127.0.0.1:42174 +Oct 03 18:18 : client: [1283] closed +Oct 03 18:18 : client: [1284] opened from 127.0.0.1:42178 +Oct 03 18:18 : client: [1284] closed +Oct 03 18:18 : client: [1285] opened from 127.0.0.1:42182 +Oct 03 18:18 : client: [1285] closed +Oct 03 18:18 : client: [1286] opened from 127.0.0.1:42186 +Oct 03 18:18 : client: [1286] closed +Oct 03 18:18 : client: [1287] opened from 127.0.0.1:42190 +Oct 03 18:18 : client: [1287] closed +Oct 03 18:19 : client: [1288] opened from 127.0.0.1:42214 +Oct 03 18:19 : client: [1288] closed +Oct 03 18:19 : client: [1289] opened from 127.0.0.1:42218 +Oct 03 18:19 : client: [1289] closed +Oct 03 18:19 : client: [1290] opened from 127.0.0.1:42226 +Oct 03 18:19 : client: [1290] closed +Oct 03 18:19 : client: [1291] opened from 127.0.0.1:42230 +Oct 03 18:19 : client: [1291] closed +Oct 03 18:19 : client: [1292] opened from 127.0.0.1:42234 +Oct 03 18:19 : client: [1292] closed +Oct 03 18:19 : client: [1293] opened from 127.0.0.1:42238 +Oct 03 18:19 : client: [1293] closed +Oct 03 18:19 : client: [1294] opened from 127.0.0.1:42242 +Oct 03 18:19 : client: [1294] closed +Oct 03 18:19 : client: [1295] opened from 127.0.0.1:42246 +Oct 03 18:19 : client: [1295] closed +Oct 03 18:19 : client: [1296] opened from 127.0.0.1:42250 +Oct 03 18:19 : client: [1296] closed +Oct 03 18:19 : client: [1297] opened from 127.0.0.1:42254 +Oct 03 18:19 : client: [1297] closed +Oct 03 18:19 : client: [1298] opened from 127.0.0.1:42258 +Oct 03 18:19 : client: [1298] closed +Oct 03 18:19 : client: [1299] opened from 127.0.0.1:42262 +Oct 03 18:19 : client: [1299] closed +Oct 03 18:19 : client: [1300] opened from 127.0.0.1:42266 +Oct 03 18:19 : client: [1300] closed +Oct 03 18:19 : client: [1301] opened from 127.0.0.1:42270 +Oct 03 18:19 : client: [1301] closed +Oct 03 18:19 : client: [1302] opened from 127.0.0.1:42274 +Oct 03 18:19 : client: [1302] closed +Oct 03 18:19 : client: [1303] opened from 127.0.0.1:42278 +Oct 03 18:19 : client: [1303] closed +Oct 03 18:19 : client: [1304] opened from 127.0.0.1:42284 +Oct 03 18:19 : client: [1304] closed +Oct 03 18:19 : client: [1305] opened from 127.0.0.1:42288 +Oct 03 18:19 : client: [1305] closed +Oct 03 18:19 : client: [1306] opened from 127.0.0.1:42292 +Oct 03 18:19 : client: [1306] closed +Oct 03 18:19 : client: [1307] opened from 127.0.0.1:42296 +Oct 03 18:19 : client: [1307] closed +Oct 03 18:19 : client: [1308] opened from 127.0.0.1:42302 +Oct 03 18:19 : client: [1308] closed +Oct 03 18:19 : client: [1309] opened from 127.0.0.1:42306 +Oct 03 18:19 : client: [1309] closed +Oct 03 18:19 : ffmpeg/opus: Could not update timestamps for discarded samples. +Oct 03 18:19 : client: [1310] opened from 127.0.0.1:42310 +Oct 03 18:19 : client: [1310] closed +Oct 03 18:19 : client: [1311] opened from 127.0.0.1:42314 +Oct 03 18:19 : client: [1311] closed +Oct 03 18:20 : client: [1312] opened from 127.0.0.1:42346 +Oct 03 18:20 : client: [1312] closed +Oct 03 18:20 : client: [1313] opened from 127.0.0.1:42350 +Oct 03 18:20 : client: [1313] closed +Oct 03 18:20 : player: played "Linus Said - Music Parody (Momma Said).webm" +Oct 03 18:20 : client: [1314] opened from 127.0.0.1:42388 +Oct 03 18:20 : client: [1314] closed +Oct 03 18:20 : client: [1315] opened from 127.0.0.1:42392 +Oct 03 18:20 : client: [1315] closed +Oct 03 18:20 : client: [1316] opened from 127.0.0.1:42396 +Oct 03 18:20 : client: [1316] closed +Oct 03 18:20 : client: [1317] opened from 127.0.0.1:42400 +Oct 03 18:20 : client: [1317] closed +Oct 03 18:20 : client: [1318] opened from 127.0.0.1:42404 +Oct 03 18:20 : client: [1318] closed +Oct 03 18:20 : client: [1319] opened from 127.0.0.1:42408 +Oct 03 18:20 : client: [1319] closed +Oct 03 18:20 : client: [1320] opened from 127.0.0.1:42416 +Oct 03 18:20 : client: [1320] closed +Oct 03 18:20 : client: [1321] opened from 127.0.0.1:42420 +Oct 03 18:20 : client: [1321] closed +Oct 03 18:20 : client: [1322] opened from 127.0.0.1:42434 +Oct 03 18:20 : client: [1322] closed +Oct 03 18:20 : client: [1323] opened from 127.0.0.1:42438 +Oct 03 18:20 : client: [1323] closed +Oct 03 18:20 : client: [1324] opened from 127.0.0.1:42442 +Oct 03 18:20 : client: [1324] closed +Oct 03 18:20 : client: [1325] opened from 127.0.0.1:42446 +Oct 03 18:20 : client: [1325] closed +Oct 03 18:20 : client: [1326] opened from 127.0.0.1:42452 +Oct 03 18:20 : client: [1326] closed +Oct 03 18:20 : client: [1327] opened from 127.0.0.1:42456 +Oct 03 18:20 : client: [1327] closed +Oct 03 18:20 : client: [1328] opened from 127.0.0.1:42460 +Oct 03 18:20 : client: [1328] closed +Oct 03 18:20 : client: [1329] opened from 127.0.0.1:42464 +Oct 03 18:20 : client: [1329] closed +Oct 03 18:20 : client: [1330] opened from 127.0.0.1:42468 +Oct 03 18:20 : client: [1330] closed +Oct 03 18:20 : client: [1331] opened from 127.0.0.1:42472 +Oct 03 18:20 : client: [1331] closed +Oct 03 18:20 : client: [1332] opened from 127.0.0.1:42498 +Oct 03 18:20 : client: [1332] closed +Oct 03 18:20 : client: [1333] opened from 127.0.0.1:42502 +Oct 03 18:20 : client: [1333] closed +Oct 03 18:20 : client: [1334] opened from 127.0.0.1:42534 +Oct 03 18:20 : client: [1334] closed +Oct 03 18:20 : client: [1335] opened from 127.0.0.1:42538 +Oct 03 18:20 : client: [1335] closed +Oct 03 18:21 : client: [1336] opened from 127.0.0.1:42542 +Oct 03 18:21 : client: [1336] closed +Oct 03 18:21 : client: [1337] opened from 127.0.0.1:42546 +Oct 03 18:21 : client: [1337] closed +Oct 03 18:21 : client: [1338] opened from 127.0.0.1:42550 +Oct 03 18:21 : client: [1338] closed +Oct 03 18:21 : client: [1339] opened from 127.0.0.1:42554 +Oct 03 18:21 : client: [1339] closed +Oct 03 18:21 : client: [1340] opened from 127.0.0.1:42558 +Oct 03 18:21 : client: [1340] closed +Oct 03 18:21 : client: [1341] opened from 127.0.0.1:42562 +Oct 03 18:21 : client: [1341] closed +Oct 03 18:21 : client: [1342] opened from 127.0.0.1:42566 +Oct 03 18:21 : client: [1342] closed +Oct 03 18:21 : client: [1343] opened from 127.0.0.1:42570 +Oct 03 18:21 : client: [1343] closed +Oct 03 18:21 : client: [1344] opened from 127.0.0.1:42574 +Oct 03 18:21 : client: [1344] closed +Oct 03 18:21 : client: [1345] opened from 127.0.0.1:42578 +Oct 03 18:21 : client: [1345] closed +Oct 03 18:21 : client: [1346] opened from 127.0.0.1:42582 +Oct 03 18:21 : client: [1346] closed +Oct 03 18:21 : client: [1347] opened from 127.0.0.1:42586 +Oct 03 18:21 : client: [1347] closed +Oct 03 18:21 : client: [1348] opened from 127.0.0.1:42604 +Oct 03 18:21 : client: [1348] closed +Oct 03 18:21 : client: [1349] opened from 127.0.0.1:42608 +Oct 03 18:21 : client: [1349] closed +Oct 03 18:21 : client: [1350] opened from 127.0.0.1:42612 +Oct 03 18:21 : client: [1350] closed +Oct 03 18:21 : client: [1351] opened from 127.0.0.1:42616 +Oct 03 18:21 : client: [1351] closed +Oct 03 18:21 : client: [1352] opened from 127.0.0.1:42630 +Oct 03 18:21 : client: [1352] closed +Oct 03 18:21 : client: [1353] opened from 127.0.0.1:42634 +Oct 03 18:21 : client: [1353] closed +Oct 03 18:21 : client: [1354] opened from 127.0.0.1:42648 +Oct 03 18:21 : client: [1354] closed +Oct 03 18:21 : client: [1355] opened from 127.0.0.1:42652 +Oct 03 18:21 : client: [1355] closed +Oct 03 18:21 : client: [1356] opened from 127.0.0.1:42662 +Oct 03 18:21 : client: [1356] closed +Oct 03 18:21 : client: [1357] opened from 127.0.0.1:42666 +Oct 03 18:21 : client: [1357] closed +Oct 03 18:21 : client: [1358] opened from 127.0.0.1:42676 +Oct 03 18:21 : client: [1358] closed +Oct 03 18:21 : client: [1359] opened from 127.0.0.1:42680 +Oct 03 18:21 : client: [1359] closed +Oct 03 18:22 : client: [1360] opened from 127.0.0.1:42684 +Oct 03 18:22 : client: [1360] closed +Oct 03 18:22 : client: [1361] opened from 127.0.0.1:42688 +Oct 03 18:22 : client: [1361] closed +Oct 03 18:22 : client: [1362] opened from 127.0.0.1:42692 +Oct 03 18:22 : client: [1362] closed +Oct 03 18:22 : client: [1363] opened from 127.0.0.1:42696 +Oct 03 18:22 : client: [1363] closed +Oct 03 18:22 : client: [1364] opened from 127.0.0.1:42700 +Oct 03 18:22 : client: [1364] closed +Oct 03 18:22 : client: [1365] opened from 127.0.0.1:42704 +Oct 03 18:22 : client: [1365] closed +Oct 03 18:22 : client: [1366] opened from 127.0.0.1:42708 +Oct 03 18:22 : client: [1366] closed +Oct 03 18:22 : client: [1367] opened from 127.0.0.1:42712 +Oct 03 18:22 : client: [1367] closed +Oct 03 18:22 : client: [1368] opened from 127.0.0.1:42716 +Oct 03 18:22 : client: [1368] closed +Oct 03 18:22 : client: [1369] opened from 127.0.0.1:42720 +Oct 03 18:22 : client: [1369] closed +Oct 03 18:22 : client: [1370] opened from 127.0.0.1:42724 +Oct 03 18:22 : client: [1370] closed +Oct 03 18:22 : client: [1371] opened from 127.0.0.1:42728 +Oct 03 18:22 : client: [1371] closed +Oct 03 18:22 : client: [1372] opened from 127.0.0.1:42732 +Oct 03 18:22 : client: [1372] closed +Oct 03 18:22 : client: [1373] opened from 127.0.0.1:42736 +Oct 03 18:22 : client: [1373] closed +Oct 03 18:22 : client: [1374] opened from 127.0.0.1:42740 +Oct 03 18:22 : client: [1374] closed +Oct 03 18:22 : client: [1375] opened from 127.0.0.1:42744 +Oct 03 18:22 : client: [1375] closed +Oct 03 18:22 : client: [1376] opened from 127.0.0.1:42748 +Oct 03 18:22 : client: [1376] closed +Oct 03 18:22 : client: [1377] opened from 127.0.0.1:42752 +Oct 03 18:22 : client: [1377] closed +Oct 03 18:22 : client: [1378] opened from 127.0.0.1:42756 +Oct 03 18:22 : client: [1378] closed +Oct 03 18:22 : client: [1379] opened from 127.0.0.1:42760 +Oct 03 18:22 : client: [1379] closed +Oct 03 18:22 : client: [1380] opened from 127.0.0.1:42764 +Oct 03 18:22 : client: [1380] closed +Oct 03 18:22 : client: [1381] opened from 127.0.0.1:42768 +Oct 03 18:22 : client: [1381] closed +Oct 03 18:22 : client: [1382] opened from 127.0.0.1:42772 +Oct 03 18:22 : client: [1382] closed +Oct 03 18:22 : client: [1383] opened from 127.0.0.1:42776 +Oct 03 18:22 : client: [1383] closed +Oct 03 18:23 : client: [1384] opened from 127.0.0.1:42780 +Oct 03 18:23 : client: [1384] closed +Oct 03 18:23 : client: [1385] opened from 127.0.0.1:42784 +Oct 03 18:23 : client: [1385] closed +Oct 03 18:23 : client: [1386] opened from 127.0.0.1:42788 +Oct 03 18:23 : client: [1386] closed +Oct 03 18:23 : client: [1387] opened from 127.0.0.1:42792 +Oct 03 18:23 : client: [1387] closed +Oct 03 18:23 : client: [1388] opened from 127.0.0.1:42796 +Oct 03 18:23 : client: [1388] closed +Oct 03 18:23 : client: [1389] opened from 127.0.0.1:42800 +Oct 03 18:23 : client: [1389] closed +Oct 03 18:23 : client: [1390] opened from 127.0.0.1:42804 +Oct 03 18:23 : client: [1390] closed +Oct 03 18:23 : client: [1391] opened from 127.0.0.1:42808 +Oct 03 18:23 : client: [1391] closed +Oct 03 18:23 : client: [1392] opened from 127.0.0.1:42812 +Oct 03 18:23 : client: [1392] closed +Oct 03 18:23 : client: [1393] opened from 127.0.0.1:42816 +Oct 03 18:23 : client: [1393] closed +Oct 03 18:23 : client: [1394] opened from 127.0.0.1:42820 +Oct 03 18:23 : client: [1394] closed +Oct 03 18:23 : client: [1395] opened from 127.0.0.1:42824 +Oct 03 18:23 : client: [1395] closed +Oct 03 18:23 : client: [1396] opened from 127.0.0.1:42832 +Oct 03 18:23 : client: [1396] closed +Oct 03 18:23 : client: [1397] opened from 127.0.0.1:42836 +Oct 03 18:23 : client: [1397] closed +Oct 03 18:23 : client: [1398] opened from 127.0.0.1:42840 +Oct 03 18:23 : client: [1398] closed +Oct 03 18:23 : client: [1399] opened from 127.0.0.1:42844 +Oct 03 18:23 : client: [1399] closed +Oct 03 18:23 : client: [1400] opened from 127.0.0.1:42860 +Oct 03 18:23 : client: [1400] closed +Oct 03 18:23 : client: [1401] opened from 127.0.0.1:42864 +Oct 03 18:23 : client: [1401] closed +Oct 03 18:23 : client: [1402] opened from 127.0.0.1:42870 +Oct 03 18:23 : client: [1402] closed +Oct 03 18:23 : client: [1403] opened from 127.0.0.1:42874 +Oct 03 18:23 : client: [1403] closed +Oct 03 18:23 : client: [1404] opened from 127.0.0.1:42878 +Oct 03 18:23 : client: [1404] closed +Oct 03 18:23 : client: [1405] opened from 127.0.0.1:42882 +Oct 03 18:23 : client: [1405] closed +Oct 03 18:23 : client: [1406] opened from 127.0.0.1:42910 +Oct 03 18:23 : client: [1406] closed +Oct 03 18:23 : client: [1407] opened from 127.0.0.1:42914 +Oct 03 18:23 : client: [1407] closed +Oct 03 18:24 : client: [1408] opened from 127.0.0.1:42934 +Oct 03 18:24 : client: [1408] closed +Oct 03 18:24 : client: [1409] opened from 127.0.0.1:42938 +Oct 03 18:24 : client: [1409] closed +Oct 03 18:24 : client: [1410] opened from 127.0.0.1:42948 +Oct 03 18:24 : client: [1410] closed +Oct 03 18:24 : client: [1411] opened from 127.0.0.1:42952 +Oct 03 18:24 : client: [1411] closed +Oct 03 18:24 : client: [1412] opened from 127.0.0.1:42956 +Oct 03 18:24 : client: [1412] closed +Oct 03 18:24 : client: [1413] opened from 127.0.0.1:42960 +Oct 03 18:24 : client: [1413] closed +Oct 03 18:24 : client: [1414] opened from 127.0.0.1:42984 +Oct 03 18:24 : client: [1414] closed +Oct 03 18:24 : client: [1415] opened from 127.0.0.1:42988 +Oct 03 18:24 : client: [1415] closed +Oct 03 18:24 : client: [1416] opened from 127.0.0.1:42992 +Oct 03 18:24 : client: [1416] closed +Oct 03 18:24 : client: [1417] opened from 127.0.0.1:42996 +Oct 03 18:24 : client: [1417] closed +Oct 03 18:24 : client: [1418] opened from 127.0.0.1:43000 +Oct 03 18:24 : client: [1418] closed +Oct 03 18:24 : client: [1419] opened from 127.0.0.1:43004 +Oct 03 18:24 : client: [1419] closed +Oct 03 18:24 : client: [1420] opened from 127.0.0.1:43008 +Oct 03 18:24 : client: [1420] closed +Oct 03 18:24 : client: [1421] opened from 127.0.0.1:43012 +Oct 03 18:24 : client: [1421] closed +Oct 03 18:24 : client: [1422] opened from 127.0.0.1:43016 +Oct 03 18:24 : client: [1422] closed +Oct 03 18:24 : client: [1423] opened from 127.0.0.1:43020 +Oct 03 18:24 : client: [1423] closed +Oct 03 18:24 : client: [1424] opened from 127.0.0.1:43046 +Oct 03 18:24 : client: [1424] closed +Oct 03 18:24 : client: [1425] opened from 127.0.0.1:43050 +Oct 03 18:24 : client: [1425] closed +Oct 03 18:24 : client: [1426] opened from 127.0.0.1:43062 +Oct 03 18:24 : client: [1426] closed +Oct 03 18:24 : client: [1427] opened from 127.0.0.1:43066 +Oct 03 18:24 : client: [1427] closed +Oct 03 18:24 : client: [1428] opened from 127.0.0.1:43084 +Oct 03 18:24 : client: [1428] closed +Oct 03 18:24 : client: [1429] opened from 127.0.0.1:43088 +Oct 03 18:24 : client: [1429] closed +Oct 03 18:25 : client: [1430] opened from 127.0.0.1:43120 +Oct 03 18:25 : client: [1430] closed +Oct 03 18:25 : client: [1431] opened from 127.0.0.1:43124 +Oct 03 18:25 : client: [1431] closed +Oct 03 18:25 : client: [1432] opened from 127.0.0.1:43128 +Oct 03 18:25 : client: [1432] closed +Oct 03 18:25 : client: [1433] opened from 127.0.0.1:43132 +Oct 03 18:25 : client: [1433] closed +Oct 03 18:25 : client: [1434] opened from 127.0.0.1:43136 +Oct 03 18:25 : client: [1434] closed +Oct 03 18:25 : client: [1435] opened from 127.0.0.1:43140 +Oct 03 18:25 : client: [1435] closed +Oct 03 18:25 : client: [1436] opened from 127.0.0.1:43156 +Oct 03 18:25 : client: [1436] closed +Oct 03 18:25 : client: [1437] opened from 127.0.0.1:43160 +Oct 03 18:25 : client: [1437] closed +Oct 03 18:25 : client: [1438] opened from 127.0.0.1:43178 +Oct 03 18:25 : client: [1438] closed +Oct 03 18:25 : client: [1439] opened from 127.0.0.1:43182 +Oct 03 18:25 : client: [1439] closed +Oct 03 18:25 : client: [1440] opened from 127.0.0.1:43186 +Oct 03 18:25 : client: [1440] closed +Oct 03 18:25 : client: [1441] opened from 127.0.0.1:43190 +Oct 03 18:25 : client: [1441] closed +Oct 03 18:25 : ffmpeg/opus: Could not update timestamps for discarded samples. +Oct 03 18:25 : client: [1442] opened from 127.0.0.1:43194 +Oct 03 18:25 : client: [1442] closed +Oct 03 18:25 : client: [1443] opened from 127.0.0.1:43198 +Oct 03 18:25 : client: [1443] closed +Oct 03 18:25 : client: [1444] opened from 127.0.0.1:43202 +Oct 03 18:25 : client: [1444] closed +Oct 03 18:25 : client: [1445] opened from 127.0.0.1:43206 +Oct 03 18:25 : client: [1445] closed +Oct 03 18:25 : player: played "Linus Said - Music Parody (Momma Said).webm" +Oct 03 18:25 : client: [1446] opened from 127.0.0.1:43210 +Oct 03 18:25 : client: [1446] closed +Oct 03 18:25 : client: [1447] opened from 127.0.0.1:43214 +Oct 03 18:25 : client: [1447] closed +Oct 03 18:25 : client: [1448] opened from 127.0.0.1:43218 +Oct 03 18:25 : client: [1448] closed +Oct 03 18:25 : client: [1449] opened from 127.0.0.1:43222 +Oct 03 18:25 : client: [1449] closed +Oct 03 18:25 : client: [1450] opened from 127.0.0.1:43226 +Oct 03 18:25 : client: [1450] closed +Oct 03 18:25 : client: [1451] opened from 127.0.0.1:43230 +Oct 03 18:25 : client: [1451] closed +Oct 03 18:25 : client: [1452] opened from 127.0.0.1:43234 +Oct 03 18:25 : client: [1452] closed +Oct 03 18:25 : client: [1453] opened from 127.0.0.1:43238 +Oct 03 18:25 : client: [1453] closed +Oct 03 18:26 : client: [1454] opened from 127.0.0.1:43242 +Oct 03 18:26 : client: [1454] closed +Oct 03 18:26 : client: [1455] opened from 127.0.0.1:43246 +Oct 03 18:26 : client: [1455] closed +Oct 03 18:26 : client: [1456] opened from 127.0.0.1:43250 +Oct 03 18:26 : client: [1456] closed +Oct 03 18:26 : client: [1457] opened from 127.0.0.1:43254 +Oct 03 18:26 : client: [1457] closed +Oct 03 18:26 : client: [1458] opened from 127.0.0.1:43258 +Oct 03 18:26 : client: [1458] closed +Oct 03 18:26 : client: [1459] opened from 127.0.0.1:43262 +Oct 03 18:26 : client: [1459] closed +Oct 03 18:26 : client: [1460] opened from 127.0.0.1:43266 +Oct 03 18:26 : client: [1460] closed +Oct 03 18:26 : client: [1461] opened from 127.0.0.1:43270 +Oct 03 18:26 : client: [1461] closed +Oct 03 18:26 : client: [1462] opened from 127.0.0.1:43274 +Oct 03 18:26 : client: [1462] closed +Oct 03 18:26 : client: [1463] opened from 127.0.0.1:43278 +Oct 03 18:26 : client: [1463] closed +Oct 03 18:26 : client: [1464] opened from 127.0.0.1:43282 +Oct 03 18:26 : client: [1464] closed +Oct 03 18:26 : client: [1465] opened from 127.0.0.1:43286 +Oct 03 18:26 : client: [1465] closed +Oct 03 18:26 : client: [1466] opened from 127.0.0.1:43290 +Oct 03 18:26 : client: [1466] closed +Oct 03 18:26 : client: [1467] opened from 127.0.0.1:43294 +Oct 03 18:26 : client: [1467] closed +Oct 03 18:26 : client: [1468] opened from 127.0.0.1:43298 +Oct 03 18:26 : client: [1468] closed +Oct 03 18:26 : client: [1469] opened from 127.0.0.1:43302 +Oct 03 18:26 : client: [1469] closed +Oct 03 18:26 : client: [1470] opened from 127.0.0.1:43306 +Oct 03 18:26 : client: [1470] closed +Oct 03 18:26 : client: [1471] opened from 127.0.0.1:43310 +Oct 03 18:26 : client: [1471] closed +Oct 03 18:26 : client: [1472] opened from 127.0.0.1:43314 +Oct 03 18:26 : client: [1472] closed +Oct 03 18:26 : client: [1473] opened from 127.0.0.1:43318 +Oct 03 18:26 : client: [1473] closed +Oct 03 18:26 : client: [1474] opened from 127.0.0.1:43322 +Oct 03 18:26 : client: [1474] closed +Oct 03 18:26 : client: [1475] opened from 127.0.0.1:43326 +Oct 03 18:26 : client: [1475] closed +Oct 03 18:26 : client: [1476] opened from 127.0.0.1:43330 +Oct 03 18:26 : client: [1476] closed +Oct 03 18:26 : client: [1477] opened from 127.0.0.1:43334 +Oct 03 18:26 : client: [1477] closed +Oct 03 18:27 : client: [1478] opened from 127.0.0.1:43338 +Oct 03 18:27 : client: [1478] closed +Oct 03 18:27 : client: [1479] opened from 127.0.0.1:43342 +Oct 03 18:27 : client: [1479] closed +Oct 03 18:27 : client: [1480] opened from 127.0.0.1:43346 +Oct 03 18:27 : client: [1480] closed +Oct 03 18:27 : client: [1481] opened from 127.0.0.1:43350 +Oct 03 18:27 : client: [1481] closed +Oct 03 18:27 : client: [1482] opened from 127.0.0.1:43354 +Oct 03 18:27 : client: [1482] closed +Oct 03 18:27 : client: [1483] opened from 127.0.0.1:43358 +Oct 03 18:27 : client: [1483] closed +Oct 03 18:27 : client: [1484] opened from 127.0.0.1:43362 +Oct 03 18:27 : client: [1484] closed +Oct 03 18:27 : client: [1485] opened from 127.0.0.1:43366 +Oct 03 18:27 : client: [1485] closed +Oct 03 18:27 : client: [1486] opened from 127.0.0.1:43370 +Oct 03 18:27 : client: [1486] closed +Oct 03 18:27 : client: [1487] opened from 127.0.0.1:43374 +Oct 03 18:27 : client: [1487] closed +Oct 03 18:27 : client: [1488] opened from 127.0.0.1:43378 +Oct 03 18:27 : client: [1488] closed +Oct 03 18:27 : client: [1489] opened from 127.0.0.1:43382 +Oct 03 18:27 : client: [1489] closed +Oct 03 18:27 : client: [1490] opened from 127.0.0.1:43386 +Oct 03 18:27 : client: [1490] closed +Oct 03 18:27 : client: [1491] opened from 127.0.0.1:43390 +Oct 03 18:27 : client: [1491] closed +Oct 03 18:27 : client: [1492] opened from 127.0.0.1:43394 +Oct 03 18:27 : client: [1492] closed +Oct 03 18:27 : client: [1493] opened from 127.0.0.1:43398 +Oct 03 18:27 : client: [1493] closed +Oct 03 18:27 : client: [1494] opened from 127.0.0.1:43402 +Oct 03 18:27 : client: [1494] closed +Oct 03 18:27 : client: [1495] opened from 127.0.0.1:43406 +Oct 03 18:27 : client: [1495] closed +Oct 03 18:27 : client: [1496] opened from 127.0.0.1:43410 +Oct 03 18:27 : client: [1496] closed +Oct 03 18:27 : client: [1497] opened from 127.0.0.1:43414 +Oct 03 18:27 : client: [1497] closed +Oct 03 18:27 : client: [1498] opened from 127.0.0.1:43418 +Oct 03 18:27 : client: [1498] closed +Oct 03 18:27 : client: [1499] opened from 127.0.0.1:43422 +Oct 03 18:27 : client: [1499] closed +Oct 03 18:27 : client: [1500] opened from 127.0.0.1:43426 +Oct 03 18:27 : client: [1500] closed +Oct 03 18:27 : client: [1501] opened from 127.0.0.1:43430 +Oct 03 18:27 : client: [1501] closed +Oct 03 18:28 : client: [1502] opened from 127.0.0.1:43434 +Oct 03 18:28 : client: [1502] closed +Oct 03 18:28 : client: [1503] opened from 127.0.0.1:43438 +Oct 03 18:28 : client: [1503] closed +Oct 03 18:28 : client: [1504] opened from 127.0.0.1:43442 +Oct 03 18:28 : client: [1504] closed +Oct 03 18:28 : client: [1505] opened from 127.0.0.1:43446 +Oct 03 18:28 : client: [1505] closed +Oct 03 18:28 : client: [1506] opened from 127.0.0.1:43450 +Oct 03 18:28 : client: [1506] closed +Oct 03 18:28 : client: [1507] opened from 127.0.0.1:43454 +Oct 03 18:28 : client: [1507] closed +Oct 03 18:28 : client: [1508] opened from 127.0.0.1:43458 +Oct 03 18:28 : client: [1508] closed +Oct 03 18:28 : client: [1509] opened from 127.0.0.1:43462 +Oct 03 18:28 : client: [1509] closed +Oct 03 18:28 : client: [1510] opened from 127.0.0.1:43466 +Oct 03 18:28 : client: [1510] closed +Oct 03 18:28 : client: [1511] opened from 127.0.0.1:43470 +Oct 03 18:28 : client: [1511] closed +Oct 03 18:28 : client: [1512] opened from 127.0.0.1:43474 +Oct 03 18:28 : client: [1512] closed +Oct 03 18:28 : client: [1513] opened from 127.0.0.1:43478 +Oct 03 18:28 : client: [1513] closed +Oct 03 18:28 : client: [1514] opened from 127.0.0.1:43482 +Oct 03 18:28 : client: [1514] closed +Oct 03 18:28 : client: [1515] opened from 127.0.0.1:43486 +Oct 03 18:28 : client: [1515] closed +Oct 03 18:28 : client: [1516] opened from 127.0.0.1:43490 +Oct 03 18:28 : client: [1516] closed +Oct 03 18:28 : client: [1517] opened from 127.0.0.1:43494 +Oct 03 18:28 : client: [1517] closed +Oct 03 18:28 : client: [1518] opened from 127.0.0.1:43498 +Oct 03 18:28 : client: [1518] closed +Oct 03 18:28 : client: [1519] opened from 127.0.0.1:43502 +Oct 03 18:28 : client: [1519] closed +Oct 03 18:28 : client: [1520] opened from 127.0.0.1:43506 +Oct 03 18:28 : client: [1520] closed +Oct 03 18:28 : client: [1521] opened from 127.0.0.1:43510 +Oct 03 18:28 : client: [1521] closed +Oct 03 18:28 : client: [1522] opened from 127.0.0.1:43514 +Oct 03 18:28 : client: [1522] closed +Oct 03 18:28 : client: [1523] opened from 127.0.0.1:43518 +Oct 03 18:28 : client: [1523] closed +Oct 03 18:28 : client: [1524] opened from 127.0.0.1:43522 +Oct 03 18:28 : client: [1524] closed +Oct 03 18:28 : client: [1525] opened from 127.0.0.1:43526 +Oct 03 18:28 : client: [1525] closed +Oct 03 18:29 : client: [1526] opened from 127.0.0.1:43530 +Oct 03 18:29 : client: [1526] closed +Oct 03 18:29 : client: [1527] opened from 127.0.0.1:43534 +Oct 03 18:29 : client: [1527] closed +Oct 03 18:29 : client: [1528] opened from 127.0.0.1:43538 +Oct 03 18:29 : client: [1528] closed +Oct 03 18:29 : client: [1529] opened from 127.0.0.1:43542 +Oct 03 18:29 : client: [1529] closed +Oct 03 18:29 : client: [1530] opened from 127.0.0.1:43546 +Oct 03 18:29 : client: [1530] closed +Oct 03 18:29 : client: [1531] opened from 127.0.0.1:43550 +Oct 03 18:29 : client: [1531] closed +Oct 03 18:29 : client: [1532] opened from 127.0.0.1:43554 +Oct 03 18:29 : client: [1532] closed +Oct 03 18:29 : client: [1533] opened from 127.0.0.1:43558 +Oct 03 18:29 : client: [1533] closed +Oct 03 18:29 : client: [1534] opened from 127.0.0.1:43562 +Oct 03 18:29 : client: [1534] closed +Oct 03 18:29 : client: [1535] opened from 127.0.0.1:43566 +Oct 03 18:29 : client: [1535] closed +Oct 03 18:29 : client: [1536] opened from 127.0.0.1:43570 +Oct 03 18:29 : client: [1536] closed +Oct 03 18:29 : client: [1537] opened from 127.0.0.1:43574 +Oct 03 18:29 : client: [1537] closed +Oct 03 18:29 : client: [1538] opened from 127.0.0.1:43578 +Oct 03 18:29 : client: [1538] closed +Oct 03 18:29 : client: [1539] opened from 127.0.0.1:43582 +Oct 03 18:29 : client: [1539] closed +Oct 03 18:29 : client: [1540] opened from 127.0.0.1:43586 +Oct 03 18:29 : client: [1540] closed +Oct 03 18:29 : client: [1541] opened from 127.0.0.1:43590 +Oct 03 18:29 : client: [1541] closed +Oct 03 18:29 : client: [1542] opened from 127.0.0.1:43594 +Oct 03 18:29 : client: [1542] closed +Oct 03 18:29 : client: [1543] opened from 127.0.0.1:43598 +Oct 03 18:29 : client: [1543] closed +Oct 03 18:29 : client: [1544] opened from 127.0.0.1:43602 +Oct 03 18:29 : client: [1544] closed +Oct 03 18:29 : client: [1545] opened from 127.0.0.1:43606 +Oct 03 18:29 : client: [1545] closed +Oct 03 18:29 : client: [1546] opened from 127.0.0.1:43610 +Oct 03 18:29 : client: [1546] closed +Oct 03 18:29 : client: [1547] opened from 127.0.0.1:43614 +Oct 03 18:29 : client: [1547] closed +Oct 03 18:29 : client: [1548] opened from 127.0.0.1:43620 +Oct 03 18:29 : client: [1548] closed +Oct 03 18:29 : client: [1549] opened from 127.0.0.1:43624 +Oct 03 18:29 : client: [1549] closed +Oct 03 18:30 : client: [1550] opened from 127.0.0.1:43628 +Oct 03 18:30 : client: [1550] closed +Oct 03 18:30 : client: [1551] opened from 127.0.0.1:43632 +Oct 03 18:30 : client: [1551] closed +Oct 03 18:30 : client: [1552] opened from 127.0.0.1:43636 +Oct 03 18:30 : client: [1552] closed +Oct 03 18:30 : client: [1553] opened from 127.0.0.1:43640 +Oct 03 18:30 : client: [1553] closed +Oct 03 18:30 : client: [1554] opened from 127.0.0.1:43644 +Oct 03 18:30 : client: [1554] closed +Oct 03 18:30 : client: [1555] opened from 127.0.0.1:43648 +Oct 03 18:30 : client: [1555] closed +Oct 03 18:30 : client: [1556] opened from 127.0.0.1:43652 +Oct 03 18:30 : client: [1556] closed +Oct 03 18:30 : client: [1557] opened from 127.0.0.1:43656 +Oct 03 18:30 : client: [1557] closed +Oct 03 18:30 : client: [1558] opened from 127.0.0.1:43660 +Oct 03 18:30 : client: [1558] closed +Oct 03 18:30 : client: [1559] opened from 127.0.0.1:43664 +Oct 03 18:30 : client: [1559] closed +Oct 03 18:30 : client: [1560] opened from 127.0.0.1:43668 +Oct 03 18:30 : client: [1560] closed +Oct 03 18:30 : client: [1561] opened from 127.0.0.1:43672 +Oct 03 18:30 : client: [1561] closed +Oct 03 18:30 : client: [1562] opened from 127.0.0.1:43678 +Oct 03 18:30 : client: [1562] closed +Oct 03 18:30 : client: [1563] opened from 127.0.0.1:43682 +Oct 03 18:30 : client: [1563] closed +Oct 03 18:30 : client: [1564] opened from 127.0.0.1:43686 +Oct 03 18:30 : client: [1564] closed +Oct 03 18:30 : client: [1565] opened from 127.0.0.1:43690 +Oct 03 18:30 : client: [1565] closed +Oct 03 18:30 : client: [1566] opened from 127.0.0.1:43694 +Oct 03 18:30 : client: [1566] closed +Oct 03 18:30 : client: [1567] opened from 127.0.0.1:43698 +Oct 03 18:30 : client: [1567] closed +Oct 03 18:30 : client: [1568] opened from 127.0.0.1:43702 +Oct 03 18:30 : client: [1568] closed +Oct 03 18:30 : client: [1569] opened from 127.0.0.1:43706 +Oct 03 18:30 : client: [1569] closed +Oct 03 18:30 : client: [1570] opened from 127.0.0.1:43712 +Oct 03 18:30 : client: [1570] closed +Oct 03 18:30 : client: [1571] opened from 127.0.0.1:43716 +Oct 03 18:30 : client: [1571] closed +Oct 03 18:30 : client: [1572] opened from 127.0.0.1:43720 +Oct 03 18:30 : client: [1572] closed +Oct 03 18:30 : client: [1573] opened from 127.0.0.1:43724 +Oct 03 18:30 : client: [1573] closed +Oct 03 18:31 : client: [1574] opened from 127.0.0.1:43728 +Oct 03 18:31 : client: [1574] closed +Oct 03 18:31 : client: [1575] opened from 127.0.0.1:43732 +Oct 03 18:31 : client: [1575] closed +Oct 03 18:31 : client: [1576] opened from 127.0.0.1:43736 +Oct 03 18:31 : client: [1576] closed +Oct 03 18:31 : client: [1577] opened from 127.0.0.1:43740 +Oct 03 18:31 : client: [1577] closed +Oct 03 18:31 : client: [1578] opened from 127.0.0.1:43744 +Oct 03 18:31 : client: [1578] closed +Oct 03 18:31 : client: [1579] opened from 127.0.0.1:43748 +Oct 03 18:31 : client: [1579] closed +Oct 03 18:31 : client: [1580] opened from 127.0.0.1:43752 +Oct 03 18:31 : client: [1580] closed +Oct 03 18:31 : client: [1581] opened from 127.0.0.1:43756 +Oct 03 18:31 : client: [1581] closed +Oct 03 18:31 : client: [1582] opened from 127.0.0.1:43760 +Oct 03 18:31 : client: [1582] closed +Oct 03 18:31 : client: [1583] opened from 127.0.0.1:43764 +Oct 03 18:31 : client: [1583] closed +Oct 03 18:31 : client: [1584] opened from 127.0.0.1:43768 +Oct 03 18:31 : client: [1584] closed +Oct 03 18:31 : client: [1585] opened from 127.0.0.1:43772 +Oct 03 18:31 : client: [1585] closed +Oct 03 18:31 : client: [1586] opened from 127.0.0.1:43776 +Oct 03 18:31 : client: [1586] closed +Oct 03 18:31 : client: [1587] opened from 127.0.0.1:43780 +Oct 03 18:31 : client: [1587] closed +Oct 03 18:31 : client: [1588] opened from 127.0.0.1:43784 +Oct 03 18:31 : client: [1588] closed +Oct 03 18:31 : client: [1589] opened from 127.0.0.1:43788 +Oct 03 18:31 : client: [1589] closed +Oct 03 18:31 : client: [1590] opened from 127.0.0.1:43792 +Oct 03 18:31 : client: [1590] closed +Oct 03 18:31 : client: [1591] opened from 127.0.0.1:43796 +Oct 03 18:31 : client: [1591] closed +Oct 03 18:31 : client: [1592] opened from 127.0.0.1:43800 +Oct 03 18:31 : client: [1592] closed +Oct 03 18:31 : client: [1593] opened from 127.0.0.1:43804 +Oct 03 18:31 : client: [1593] closed +Oct 03 18:31 : client: [1594] opened from 127.0.0.1:43808 +Oct 03 18:31 : client: [1594] closed +Oct 03 18:31 : client: [1595] opened from 127.0.0.1:43812 +Oct 03 18:31 : client: [1595] closed +Oct 03 18:31 : client: [1596] opened from 127.0.0.1:43816 +Oct 03 18:31 : client: [1596] closed +Oct 03 18:31 : client: [1597] opened from 127.0.0.1:43820 +Oct 03 18:31 : client: [1597] closed +Oct 03 18:32 : client: [1598] opened from 127.0.0.1:43824 +Oct 03 18:32 : client: [1598] closed +Oct 03 18:32 : client: [1599] opened from 127.0.0.1:43828 +Oct 03 18:32 : client: [1599] closed +Oct 03 18:32 : client: [1600] opened from 127.0.0.1:43832 +Oct 03 18:32 : client: [1600] closed +Oct 03 18:32 : client: [1601] opened from 127.0.0.1:43836 +Oct 03 18:32 : client: [1601] closed +Oct 03 18:32 : client: [1602] opened from 127.0.0.1:43840 +Oct 03 18:32 : client: [1602] closed +Oct 03 18:32 : client: [1603] opened from 127.0.0.1:43844 +Oct 03 18:32 : client: [1603] closed +Oct 03 18:32 : client: [1604] opened from 127.0.0.1:43848 +Oct 03 18:32 : client: [1604] closed +Oct 03 18:32 : client: [1605] opened from 127.0.0.1:43852 +Oct 03 18:32 : client: [1605] closed +Oct 03 18:32 : client: [1606] opened from 127.0.0.1:43856 +Oct 03 18:32 : client: [1606] closed +Oct 03 18:32 : client: [1607] opened from 127.0.0.1:43860 +Oct 03 18:32 : client: [1607] closed +Oct 03 18:32 : client: [1608] opened from 127.0.0.1:43864 +Oct 03 18:32 : client: [1608] closed +Oct 03 18:32 : client: [1609] opened from 127.0.0.1:43868 +Oct 03 18:32 : client: [1609] closed +Oct 03 18:32 : client: [1610] opened from 127.0.0.1:43872 +Oct 03 18:32 : client: [1610] closed +Oct 03 18:32 : client: [1611] opened from 127.0.0.1:43876 +Oct 03 18:32 : client: [1611] closed +Oct 03 18:32 : client: [1612] opened from 127.0.0.1:43880 +Oct 03 18:32 : client: [1612] closed +Oct 03 18:32 : client: [1613] opened from 127.0.0.1:43884 +Oct 03 18:32 : client: [1613] closed +Oct 03 18:32 : client: [1614] opened from 127.0.0.1:43888 +Oct 03 18:32 : client: [1614] closed +Oct 03 18:32 : client: [1615] opened from 127.0.0.1:43892 +Oct 03 18:32 : client: [1615] closed +Oct 03 18:32 : client: [1616] opened from 127.0.0.1:43896 +Oct 03 18:32 : client: [1616] closed +Oct 03 18:32 : client: [1617] opened from 127.0.0.1:43900 +Oct 03 18:32 : client: [1617] closed +Oct 03 18:32 : client: [1618] opened from 127.0.0.1:43904 +Oct 03 18:32 : client: [1618] closed +Oct 03 18:32 : client: [1619] opened from 127.0.0.1:43908 +Oct 03 18:32 : client: [1619] closed +Oct 03 18:32 : client: [1620] opened from 127.0.0.1:43912 +Oct 03 18:32 : client: [1620] closed +Oct 03 18:32 : client: [1621] opened from 127.0.0.1:43916 +Oct 03 18:32 : client: [1621] closed +Oct 03 18:33 : client: [1622] opened from 127.0.0.1:43920 +Oct 03 18:33 : client: [1622] closed +Oct 03 18:33 : client: [1623] opened from 127.0.0.1:43924 +Oct 03 18:33 : client: [1623] closed +Oct 03 18:33 : client: [1624] opened from 127.0.0.1:43928 +Oct 03 18:33 : client: [1624] closed +Oct 03 18:33 : client: [1625] opened from 127.0.0.1:43932 +Oct 03 18:33 : client: [1625] closed +Oct 03 18:33 : client: [1626] opened from 127.0.0.1:43936 +Oct 03 18:33 : client: [1626] closed +Oct 03 18:33 : client: [1627] opened from 127.0.0.1:43940 +Oct 03 18:33 : client: [1627] closed +Oct 03 18:33 : client: [1628] opened from 127.0.0.1:43944 +Oct 03 18:33 : client: [1628] closed +Oct 03 18:33 : client: [1629] opened from 127.0.0.1:43948 +Oct 03 18:33 : client: [1629] closed +Oct 03 18:33 : client: [1630] opened from 127.0.0.1:43952 +Oct 03 18:33 : client: [1630] closed +Oct 03 18:33 : client: [1631] opened from 127.0.0.1:43956 +Oct 03 18:33 : client: [1631] closed +Oct 03 18:33 : client: [1632] opened from 127.0.0.1:43960 +Oct 03 18:33 : client: [1632] closed +Oct 03 18:33 : client: [1633] opened from 127.0.0.1:43964 +Oct 03 18:33 : client: [1633] closed +Oct 03 18:33 : client: [1634] opened from 127.0.0.1:43968 +Oct 03 18:33 : client: [1634] closed +Oct 03 18:33 : client: [1635] opened from 127.0.0.1:43972 +Oct 03 18:33 : client: [1635] closed +Oct 03 18:33 : client: [1636] opened from 127.0.0.1:43976 +Oct 03 18:33 : client: [1636] closed +Oct 03 18:33 : client: [1637] opened from 127.0.0.1:43980 +Oct 03 18:33 : client: [1637] closed +Oct 03 18:33 : client: [1638] opened from 127.0.0.1:43984 +Oct 03 18:33 : client: [1638] closed +Oct 03 18:33 : client: [1639] opened from 127.0.0.1:43988 +Oct 03 18:33 : client: [1639] closed +Oct 03 18:33 : client: [1640] opened from 127.0.0.1:43992 +Oct 03 18:33 : client: [1640] closed +Oct 03 18:33 : client: [1641] opened from 127.0.0.1:43996 +Oct 03 18:33 : client: [1641] closed +Oct 03 18:33 : client: [1642] opened from 127.0.0.1:44000 +Oct 03 18:33 : client: [1642] closed +Oct 03 18:33 : client: [1643] opened from 127.0.0.1:44004 +Oct 03 18:33 : client: [1643] closed +Oct 03 18:33 : client: [1644] opened from 127.0.0.1:44008 +Oct 03 18:33 : client: [1644] closed +Oct 03 18:33 : client: [1645] opened from 127.0.0.1:44012 +Oct 03 18:33 : client: [1645] closed +Oct 03 18:34 : client: [1646] opened from 127.0.0.1:44016 +Oct 03 18:34 : client: [1646] closed +Oct 03 18:34 : client: [1647] opened from 127.0.0.1:44020 +Oct 03 18:34 : client: [1647] closed +Oct 03 18:34 : client: [1648] opened from 127.0.0.1:44024 +Oct 03 18:34 : client: [1648] closed +Oct 03 18:34 : client: [1649] opened from 127.0.0.1:44028 +Oct 03 18:34 : client: [1649] closed +Oct 03 18:34 : client: [1650] opened from 127.0.0.1:44032 +Oct 03 18:34 : client: [1650] closed +Oct 03 18:34 : client: [1651] opened from 127.0.0.1:44036 +Oct 03 18:34 : client: [1651] closed +Oct 03 18:34 : client: [1652] opened from 127.0.0.1:44040 +Oct 03 18:34 : client: [1652] closed +Oct 03 18:34 : client: [1653] opened from 127.0.0.1:44044 +Oct 03 18:34 : client: [1653] closed +Oct 03 18:34 : client: [1654] opened from 127.0.0.1:44048 +Oct 03 18:34 : client: [1654] closed +Oct 03 18:34 : client: [1655] opened from 127.0.0.1:44052 +Oct 03 18:34 : client: [1655] closed +Oct 03 18:34 : client: [1656] opened from 127.0.0.1:44056 +Oct 03 18:34 : client: [1656] closed +Oct 03 18:34 : client: [1657] opened from 127.0.0.1:44060 +Oct 03 18:34 : client: [1657] closed +Oct 03 18:34 : client: [1658] opened from 127.0.0.1:44064 +Oct 03 18:34 : client: [1658] closed +Oct 03 18:34 : client: [1659] opened from 127.0.0.1:44068 +Oct 03 18:34 : client: [1659] closed +Oct 03 18:34 : client: [1660] opened from 127.0.0.1:44074 +Oct 03 18:34 : client: [1660] closed +Oct 03 18:34 : client: [1661] opened from 127.0.0.1:44078 +Oct 03 18:34 : client: [1661] closed +Oct 03 18:34 : client: [1662] opened from 127.0.0.1:44082 +Oct 03 18:34 : client: [1662] closed +Oct 03 18:34 : client: [1663] opened from 127.0.0.1:44086 +Oct 03 18:34 : client: [1663] closed +Oct 03 18:34 : client: [1664] opened from 127.0.0.1:44090 +Oct 03 18:34 : client: [1664] closed +Oct 03 18:34 : client: [1665] opened from 127.0.0.1:44094 +Oct 03 18:34 : client: [1665] closed +Oct 03 18:34 : client: [1666] opened from 127.0.0.1:44098 +Oct 03 18:34 : client: [1666] closed +Oct 03 18:34 : client: [1667] opened from 127.0.0.1:44102 +Oct 03 18:34 : client: [1667] closed +Oct 03 18:34 : client: [1668] opened from 127.0.0.1:44106 +Oct 03 18:34 : client: [1668] closed +Oct 03 18:34 : client: [1669] opened from 127.0.0.1:44110 +Oct 03 18:34 : client: [1669] closed +Oct 03 18:35 : client: [1670] opened from 127.0.0.1:44114 +Oct 03 18:35 : client: [1670] closed +Oct 03 18:35 : client: [1671] opened from 127.0.0.1:44118 +Oct 03 18:35 : client: [1671] closed +Oct 03 18:35 : client: [1672] opened from 127.0.0.1:44122 +Oct 03 18:35 : client: [1672] closed +Oct 03 18:35 : client: [1673] opened from 127.0.0.1:44126 +Oct 03 18:35 : client: [1673] closed +Oct 03 18:35 : client: [1674] opened from 127.0.0.1:44130 +Oct 03 18:35 : client: [1674] closed +Oct 03 18:35 : client: [1675] opened from 127.0.0.1:44134 +Oct 03 18:35 : client: [1675] closed +Oct 03 18:35 : client: [1676] opened from 127.0.0.1:44138 +Oct 03 18:35 : client: [1676] closed +Oct 03 18:35 : client: [1677] opened from 127.0.0.1:44142 +Oct 03 18:35 : client: [1677] closed +Oct 03 18:35 : client: [1678] opened from 127.0.0.1:44146 +Oct 03 18:35 : client: [1678] closed +Oct 03 18:35 : client: [1679] opened from 127.0.0.1:44150 +Oct 03 18:35 : client: [1679] closed +Oct 03 18:35 : client: [1680] opened from 127.0.0.1:44154 +Oct 03 18:35 : client: [1680] closed +Oct 03 18:35 : client: [1681] opened from 127.0.0.1:44158 +Oct 03 18:35 : client: [1681] closed +Oct 03 18:35 : client: [1682] opened from 127.0.0.1:44162 +Oct 03 18:35 : client: [1682] closed +Oct 03 18:35 : client: [1683] opened from 127.0.0.1:44166 +Oct 03 18:35 : client: [1683] closed +Oct 03 18:35 : client: [1684] opened from 127.0.0.1:44170 +Oct 03 18:35 : client: [1684] closed +Oct 03 18:35 : client: [1685] opened from 127.0.0.1:44174 +Oct 03 18:35 : client: [1685] closed +Oct 03 18:35 : client: [1686] opened from 127.0.0.1:44178 +Oct 03 18:35 : client: [1686] closed +Oct 03 18:35 : client: [1687] opened from 127.0.0.1:44182 +Oct 03 18:35 : client: [1687] closed +Oct 03 18:35 : client: [1688] opened from 127.0.0.1:44186 +Oct 03 18:35 : client: [1688] closed +Oct 03 18:35 : client: [1689] opened from 127.0.0.1:44190 +Oct 03 18:35 : client: [1689] closed +Oct 03 18:35 : client: [1690] opened from 127.0.0.1:44194 +Oct 03 18:35 : client: [1690] closed +Oct 03 18:35 : client: [1691] opened from 127.0.0.1:44198 +Oct 03 18:35 : client: [1691] closed +Oct 03 18:35 : client: [1692] opened from 127.0.0.1:44202 +Oct 03 18:35 : client: [1692] closed +Oct 03 18:35 : client: [1693] opened from 127.0.0.1:44206 +Oct 03 18:35 : client: [1693] closed +Oct 03 18:36 : client: [1694] opened from 127.0.0.1:44210 +Oct 03 18:36 : client: [1694] closed +Oct 03 18:36 : client: [1695] opened from 127.0.0.1:44214 +Oct 03 18:36 : client: [1695] closed +Oct 03 18:36 : client: [1696] opened from 127.0.0.1:44218 +Oct 03 18:36 : client: [1696] closed +Oct 03 18:36 : client: [1697] opened from 127.0.0.1:44222 +Oct 03 18:36 : client: [1697] closed +Oct 03 18:36 : client: [1698] opened from 127.0.0.1:44226 +Oct 03 18:36 : client: [1698] closed +Oct 03 18:36 : client: [1699] opened from 127.0.0.1:44230 +Oct 03 18:36 : client: [1699] closed +Oct 03 18:36 : client: [1700] opened from 127.0.0.1:44234 +Oct 03 18:36 : client: [1700] closed +Oct 03 18:36 : client: [1701] opened from 127.0.0.1:44238 +Oct 03 18:36 : client: [1701] closed +Oct 03 18:36 : client: [1702] opened from 127.0.0.1:44242 +Oct 03 18:36 : client: [1702] closed +Oct 03 18:36 : client: [1703] opened from 127.0.0.1:44246 +Oct 03 18:36 : client: [1703] closed +Oct 03 18:36 : client: [1704] opened from 127.0.0.1:44250 +Oct 03 18:36 : client: [1704] closed +Oct 03 18:36 : client: [1705] opened from 127.0.0.1:44254 +Oct 03 18:36 : client: [1705] closed +Oct 03 18:36 : client: [1706] opened from 127.0.0.1:44258 +Oct 03 18:36 : client: [1706] closed +Oct 03 18:36 : client: [1707] opened from 127.0.0.1:44262 +Oct 03 18:36 : client: [1707] closed +Oct 03 18:36 : client: [1708] opened from 127.0.0.1:44266 +Oct 03 18:36 : client: [1708] closed +Oct 03 18:36 : client: [1709] opened from 127.0.0.1:44270 +Oct 03 18:36 : client: [1709] closed +Oct 03 18:36 : client: [1710] opened from 127.0.0.1:44274 +Oct 03 18:36 : client: [1710] closed +Oct 03 18:36 : client: [1711] opened from 127.0.0.1:44278 +Oct 03 18:36 : client: [1711] closed +Oct 03 18:36 : client: [1712] opened from 127.0.0.1:44282 +Oct 03 18:36 : client: [1712] closed +Oct 03 18:36 : client: [1713] opened from 127.0.0.1:44286 +Oct 03 18:36 : client: [1713] closed +Oct 03 18:36 : client: [1714] opened from 127.0.0.1:44290 +Oct 03 18:36 : client: [1714] closed +Oct 03 18:36 : client: [1715] opened from 127.0.0.1:44294 +Oct 03 18:36 : client: [1715] closed +Oct 03 18:36 : client: [1716] opened from 127.0.0.1:44298 +Oct 03 18:36 : client: [1716] closed +Oct 03 18:36 : client: [1717] opened from 127.0.0.1:44302 +Oct 03 18:36 : client: [1717] closed +Oct 03 18:37 : client: [1718] opened from 127.0.0.1:44306 +Oct 03 18:37 : client: [1718] closed +Oct 03 18:37 : client: [1719] opened from 127.0.0.1:44310 +Oct 03 18:37 : client: [1719] closed +Oct 03 18:37 : client: [1720] opened from 127.0.0.1:44314 +Oct 03 18:37 : client: [1720] closed +Oct 03 18:37 : client: [1721] opened from 127.0.0.1:44318 +Oct 03 18:37 : client: [1721] closed +Oct 03 18:37 : client: [1722] opened from 127.0.0.1:44322 +Oct 03 18:37 : client: [1722] closed +Oct 03 18:37 : client: [1723] opened from 127.0.0.1:44326 +Oct 03 18:37 : client: [1723] closed +Oct 03 18:37 : client: [1724] opened from 127.0.0.1:44330 +Oct 03 18:37 : client: [1724] closed +Oct 03 18:37 : client: [1725] opened from 127.0.0.1:44334 +Oct 03 18:37 : client: [1725] closed +Oct 03 18:37 : client: [1726] opened from 127.0.0.1:44338 +Oct 03 18:37 : client: [1726] closed +Oct 03 18:37 : client: [1727] opened from 127.0.0.1:44342 +Oct 03 18:37 : client: [1727] closed +Oct 03 18:37 : client: [1728] opened from 127.0.0.1:44346 +Oct 03 18:37 : client: [1728] closed +Oct 03 18:37 : client: [1729] opened from 127.0.0.1:44350 +Oct 03 18:37 : client: [1729] closed +Oct 03 18:37 : client: [1730] opened from 127.0.0.1:44354 +Oct 03 18:37 : client: [1730] closed +Oct 03 18:37 : client: [1731] opened from 127.0.0.1:44358 +Oct 03 18:37 : client: [1731] closed +Oct 03 18:37 : client: [1732] opened from 127.0.0.1:44362 +Oct 03 18:37 : client: [1732] closed +Oct 03 18:37 : client: [1733] opened from 127.0.0.1:44366 +Oct 03 18:37 : client: [1733] closed +Oct 03 18:37 : client: [1734] opened from 127.0.0.1:44370 +Oct 03 18:37 : client: [1734] closed +Oct 03 18:37 : client: [1735] opened from 127.0.0.1:44374 +Oct 03 18:37 : client: [1735] closed +Oct 03 18:37 : client: [1736] opened from 127.0.0.1:44378 +Oct 03 18:37 : client: [1736] closed +Oct 03 18:37 : client: [1737] opened from 127.0.0.1:44382 +Oct 03 18:37 : client: [1737] closed +Oct 03 18:37 : client: [1738] opened from 127.0.0.1:44386 +Oct 03 18:37 : client: [1738] closed +Oct 03 18:37 : client: [1739] opened from 127.0.0.1:44390 +Oct 03 18:37 : client: [1739] closed +Oct 03 18:37 : client: [1740] opened from 127.0.0.1:44394 +Oct 03 18:37 : client: [1740] closed +Oct 03 18:37 : client: [1741] opened from 127.0.0.1:44398 +Oct 03 18:37 : client: [1741] closed +Oct 03 18:38 : client: [1742] opened from 127.0.0.1:44402 +Oct 03 18:38 : client: [1742] closed +Oct 03 18:38 : client: [1743] opened from 127.0.0.1:44406 +Oct 03 18:38 : client: [1743] closed +Oct 03 18:38 : client: [1744] opened from 127.0.0.1:44410 +Oct 03 18:38 : client: [1744] closed +Oct 03 18:38 : client: [1745] opened from 127.0.0.1:44414 +Oct 03 18:38 : client: [1745] closed +Oct 03 18:38 : client: [1746] opened from 127.0.0.1:44418 +Oct 03 18:38 : client: [1746] closed +Oct 03 18:38 : client: [1747] opened from 127.0.0.1:44422 +Oct 03 18:38 : client: [1747] closed +Oct 03 18:38 : client: [1748] opened from 127.0.0.1:44426 +Oct 03 18:38 : client: [1748] closed +Oct 03 18:38 : client: [1749] opened from 127.0.0.1:44430 +Oct 03 18:38 : client: [1749] closed +Oct 03 18:38 : client: [1750] opened from 127.0.0.1:44434 +Oct 03 18:38 : client: [1750] closed +Oct 03 18:38 : client: [1751] opened from 127.0.0.1:44438 +Oct 03 18:38 : client: [1751] closed +Oct 03 18:38 : client: [1752] opened from 127.0.0.1:44442 +Oct 03 18:38 : client: [1752] closed +Oct 03 18:38 : client: [1753] opened from 127.0.0.1:44446 +Oct 03 18:38 : client: [1753] closed +Oct 03 18:38 : client: [1754] opened from 127.0.0.1:44450 +Oct 03 18:38 : client: [1754] closed +Oct 03 18:38 : client: [1755] opened from 127.0.0.1:44454 +Oct 03 18:38 : client: [1755] closed +Oct 03 18:38 : client: [1756] opened from 127.0.0.1:44458 +Oct 03 18:38 : client: [1756] closed +Oct 03 18:38 : client: [1757] opened from 127.0.0.1:44462 +Oct 03 18:38 : client: [1757] closed +Oct 03 18:38 : client: [1758] opened from 127.0.0.1:44466 +Oct 03 18:38 : client: [1758] closed +Oct 03 18:38 : client: [1759] opened from 127.0.0.1:44470 +Oct 03 18:38 : client: [1759] closed +Oct 03 18:38 : client: [1760] opened from 127.0.0.1:44474 +Oct 03 18:38 : client: [1760] closed +Oct 03 18:38 : client: [1761] opened from 127.0.0.1:44478 +Oct 03 18:38 : client: [1761] closed +Oct 03 18:38 : client: [1762] opened from 127.0.0.1:44482 +Oct 03 18:38 : client: [1762] closed +Oct 03 18:38 : client: [1763] opened from 127.0.0.1:44486 +Oct 03 18:38 : client: [1763] closed +Oct 03 18:38 : client: [1764] opened from 127.0.0.1:44490 +Oct 03 18:38 : client: [1764] closed +Oct 03 18:38 : client: [1765] opened from 127.0.0.1:44494 +Oct 03 18:38 : client: [1765] closed +Oct 03 18:39 : client: [1766] opened from 127.0.0.1:44498 +Oct 03 18:39 : client: [1766] closed +Oct 03 18:39 : client: [1767] opened from 127.0.0.1:44502 +Oct 03 18:39 : client: [1767] closed +Oct 03 18:39 : client: [1768] opened from 127.0.0.1:44506 +Oct 03 18:39 : client: [1768] closed +Oct 03 18:39 : client: [1769] opened from 127.0.0.1:44510 +Oct 03 18:39 : client: [1769] closed +Oct 03 18:39 : client: [1770] opened from 127.0.0.1:44514 +Oct 03 18:39 : client: [1770] closed +Oct 03 18:39 : client: [1771] opened from 127.0.0.1:44518 +Oct 03 18:39 : client: [1771] closed +Oct 03 18:39 : client: [1772] opened from 127.0.0.1:44522 +Oct 03 18:39 : client: [1772] closed +Oct 03 18:39 : client: [1773] opened from 127.0.0.1:44526 +Oct 03 18:39 : client: [1773] closed +Oct 03 18:39 : client: [1774] opened from 127.0.0.1:44530 +Oct 03 18:39 : client: [1774] closed +Oct 03 18:39 : client: [1775] opened from 127.0.0.1:44534 +Oct 03 18:39 : client: [1775] closed +Oct 03 18:39 : client: [1776] opened from 127.0.0.1:44538 +Oct 03 18:39 : client: [1776] closed +Oct 03 18:39 : client: [1777] opened from 127.0.0.1:44542 +Oct 03 18:39 : client: [1777] closed +Oct 03 18:39 : client: [1778] opened from 127.0.0.1:44546 +Oct 03 18:39 : client: [1778] closed +Oct 03 18:39 : client: [1779] opened from 127.0.0.1:44550 +Oct 03 18:39 : client: [1779] closed +Oct 03 18:39 : client: [1780] opened from 127.0.0.1:44572 +Oct 03 18:39 : client: [1780] closed +Oct 03 18:39 : client: [1781] opened from 127.0.0.1:44576 +Oct 03 18:39 : client: [1781] closed +Oct 03 18:39 : client: [1782] opened from 127.0.0.1:44584 +Oct 03 18:39 : client: [1782] closed +Oct 03 18:39 : client: [1783] opened from 127.0.0.1:44588 +Oct 03 18:39 : client: [1783] closed +Oct 03 18:39 : client: [1784] opened from 127.0.0.1:44592 +Oct 03 18:39 : client: [1784] closed +Oct 03 18:39 : client: [1785] opened from 127.0.0.1:44596 +Oct 03 18:39 : client: [1785] closed +Oct 03 18:39 : client: [1786] opened from 127.0.0.1:44600 +Oct 03 18:39 : client: [1786] closed +Oct 03 18:39 : client: [1787] opened from 127.0.0.1:44604 +Oct 03 18:39 : client: [1787] closed +Oct 03 18:39 : client: [1788] opened from 127.0.0.1:44608 +Oct 03 18:39 : client: [1788] closed +Oct 03 18:39 : client: [1789] opened from 127.0.0.1:44612 +Oct 03 18:39 : client: [1789] closed +Oct 03 18:40 : client: [1790] opened from 127.0.0.1:44616 +Oct 03 18:40 : client: [1790] closed +Oct 03 18:40 : client: [1791] opened from 127.0.0.1:44620 +Oct 03 18:40 : client: [1791] closed +Oct 03 18:40 : client: [1792] opened from 127.0.0.1:44624 +Oct 03 18:40 : client: [1792] closed +Oct 03 18:40 : client: [1793] opened from 127.0.0.1:44628 +Oct 03 18:40 : client: [1793] closed +Oct 03 18:40 : client: [1794] opened from 127.0.0.1:44632 +Oct 03 18:40 : client: [1794] closed +Oct 03 18:40 : client: [1795] opened from 127.0.0.1:44636 +Oct 03 18:40 : client: [1795] closed +Oct 03 18:40 : client: [1796] opened from 127.0.0.1:44640 +Oct 03 18:40 : client: [1796] closed +Oct 03 18:40 : client: [1797] opened from 127.0.0.1:44644 +Oct 03 18:40 : client: [1797] closed +Oct 03 18:40 : client: [1798] opened from 127.0.0.1:44648 +Oct 03 18:40 : client: [1798] closed +Oct 03 18:40 : client: [1799] opened from 127.0.0.1:44652 +Oct 03 18:40 : client: [1799] closed +Oct 03 18:40 : client: [1800] opened from 127.0.0.1:44656 +Oct 03 18:40 : client: [1800] closed +Oct 03 18:40 : client: [1801] opened from 127.0.0.1:44660 +Oct 03 18:40 : client: [1801] closed +Oct 03 18:40 : client: [1802] opened from 127.0.0.1:44664 +Oct 03 18:40 : client: [1802] closed +Oct 03 18:40 : client: [1803] opened from 127.0.0.1:44668 +Oct 03 18:40 : client: [1803] closed +Oct 03 18:40 : client: [1804] opened from 127.0.0.1:44672 +Oct 03 18:40 : client: [1804] closed +Oct 03 18:40 : client: [1805] opened from 127.0.0.1:44676 +Oct 03 18:40 : client: [1805] closed +Oct 03 18:40 : client: [1806] opened from 127.0.0.1:44680 +Oct 03 18:40 : client: [1806] closed +Oct 03 18:40 : client: [1807] opened from 127.0.0.1:44684 +Oct 03 18:40 : client: [1807] closed +Oct 03 18:40 : client: [1808] opened from 127.0.0.1:44688 +Oct 03 18:40 : client: [1808] closed +Oct 03 18:40 : client: [1809] opened from 127.0.0.1:44692 +Oct 03 18:40 : client: [1809] closed +Oct 03 18:40 : client: [1810] opened from 127.0.0.1:44696 +Oct 03 18:40 : client: [1810] closed +Oct 03 18:40 : client: [1811] opened from 127.0.0.1:44700 +Oct 03 18:40 : client: [1811] closed +Oct 03 18:40 : client: [1812] opened from 127.0.0.1:44704 +Oct 03 18:40 : client: [1812] closed +Oct 03 18:40 : client: [1813] opened from 127.0.0.1:44708 +Oct 03 18:40 : client: [1813] closed +Oct 03 18:41 : client: [1814] opened from 127.0.0.1:44720 +Oct 03 18:41 : client: [1814] closed +Oct 03 18:41 : client: [1815] opened from 127.0.0.1:44724 +Oct 03 18:41 : client: [1815] closed +Oct 03 18:41 : client: [1816] opened from 127.0.0.1:44738 +Oct 03 18:41 : client: [1816] closed +Oct 03 18:41 : client: [1817] opened from 127.0.0.1:44742 +Oct 03 18:41 : client: [1817] closed +Oct 03 18:41 : client: [1818] opened from 127.0.0.1:44748 +Oct 03 18:41 : client: [1818] closed +Oct 03 18:41 : client: [1819] opened from 127.0.0.1:44752 +Oct 03 18:41 : client: [1819] closed +Oct 03 18:41 : client: [1820] opened from 127.0.0.1:44756 +Oct 03 18:41 : client: [1820] closed +Oct 03 18:41 : client: [1821] opened from 127.0.0.1:44760 +Oct 03 18:41 : client: [1821] closed +Oct 03 18:41 : client: [1822] opened from 127.0.0.1:44764 +Oct 03 18:41 : client: [1822] closed +Oct 03 18:41 : client: [1823] opened from 127.0.0.1:44768 +Oct 03 18:41 : client: [1823] closed +Oct 03 18:41 : client: [1824] opened from 127.0.0.1:44772 +Oct 03 18:41 : client: [1824] closed +Oct 03 18:41 : client: [1825] opened from 127.0.0.1:44776 +Oct 03 18:41 : client: [1825] closed +Oct 03 18:41 : client: [1826] opened from 127.0.0.1:44780 +Oct 03 18:41 : client: [1826] closed +Oct 03 18:41 : client: [1827] opened from 127.0.0.1:44784 +Oct 03 18:41 : client: [1827] closed +Oct 03 18:41 : client: [1828] opened from 127.0.0.1:44788 +Oct 03 18:41 : client: [1828] closed +Oct 03 18:41 : client: [1829] opened from 127.0.0.1:44792 +Oct 03 18:41 : client: [1829] closed +Oct 03 18:41 : client: [1830] opened from 127.0.0.1:44796 +Oct 03 18:41 : client: [1830] closed +Oct 03 18:41 : client: [1831] opened from 127.0.0.1:44800 +Oct 03 18:41 : client: [1831] closed +Oct 03 18:41 : client: [1832] opened from 127.0.0.1:44804 +Oct 03 18:41 : client: [1832] closed +Oct 03 18:41 : client: [1833] opened from 127.0.0.1:44808 +Oct 03 18:41 : client: [1833] closed +Oct 03 18:41 : client: [1834] opened from 127.0.0.1:44814 +Oct 03 18:41 : client: [1834] closed +Oct 03 18:41 : client: [1835] opened from 127.0.0.1:44818 +Oct 03 18:41 : client: [1835] closed +Oct 03 18:41 : client: [1836] opened from 127.0.0.1:44824 +Oct 03 18:41 : client: [1836] closed +Oct 03 18:41 : client: [1837] opened from 127.0.0.1:44828 +Oct 03 18:41 : client: [1837] closed +Oct 03 18:42 : client: [1838] opened from 127.0.0.1:44866 +Oct 03 18:42 : client: [1838] closed +Oct 03 18:42 : client: [1839] opened from 127.0.0.1:44870 +Oct 03 18:42 : client: [1839] closed +Oct 03 18:42 : client: [1840] opened from 127.0.0.1:44912 +Oct 03 18:42 : client: [1840] closed +Oct 03 18:42 : client: [1841] opened from 127.0.0.1:44916 +Oct 03 18:42 : client: [1841] closed +Oct 03 18:42 : client: [1842] opened from 127.0.0.1:44920 +Oct 03 18:42 : client: [1842] closed +Oct 03 18:42 : client: [1843] opened from 127.0.0.1:44924 +Oct 03 18:42 : client: [1843] closed +Oct 03 18:42 : client: [1844] opened from 127.0.0.1:44938 +Oct 03 18:42 : client: [1844] closed +Oct 03 18:42 : client: [1845] opened from 127.0.0.1:44942 +Oct 03 18:42 : client: [1845] closed +Oct 03 18:42 : client: [1846] opened from 127.0.0.1:45014 +Oct 03 18:42 : client: [1846] closed +Oct 03 18:42 : client: [1847] opened from 127.0.0.1:45018 +Oct 03 18:42 : client: [1847] closed +Oct 03 18:42 : client: [1848] opened from 127.0.0.1:45022 +Oct 03 18:42 : client: [1848] closed +Oct 03 18:42 : client: [1849] opened from 127.0.0.1:45026 +Oct 03 18:42 : client: [1849] closed +Oct 03 18:42 : client: [1850] opened from 127.0.0.1:45040 +Oct 03 18:42 : client: [1850] closed +Oct 03 18:42 : client: [1851] opened from 127.0.0.1:45044 +Oct 03 18:42 : client: [1851] closed +Oct 03 18:42 : client: [1852] opened from 127.0.0.1:45048 +Oct 03 18:42 : client: [1852] closed +Oct 03 18:42 : client: [1853] opened from 127.0.0.1:45052 +Oct 03 18:42 : client: [1853] closed +Oct 03 18:42 : client: [1854] opened from 127.0.0.1:45056 +Oct 03 18:42 : client: [1854] closed +Oct 03 18:42 : client: [1855] opened from 127.0.0.1:45060 +Oct 03 18:42 : client: [1855] closed +Oct 03 18:42 : client: [1856] opened from 127.0.0.1:45092 +Oct 03 18:42 : client: [1856] closed +Oct 03 18:42 : client: [1857] opened from 127.0.0.1:45096 +Oct 03 18:42 : client: [1857] closed +Oct 03 18:42 : client: [1858] opened from 127.0.0.1:45100 +Oct 03 18:42 : client: [1858] closed +Oct 03 18:42 : client: [1859] opened from 127.0.0.1:45104 +Oct 03 18:42 : client: [1859] closed +Oct 03 18:42 : client: [1860] opened from 127.0.0.1:45130 +Oct 03 18:42 : client: [1860] closed +Oct 03 18:42 : client: [1861] opened from 127.0.0.1:45134 +Oct 03 18:42 : client: [1861] closed +Oct 03 18:43 : client: [1862] opened from 127.0.0.1:45138 +Oct 03 18:43 : client: [1862] closed +Oct 03 18:43 : client: [1863] opened from 127.0.0.1:45142 +Oct 03 18:43 : client: [1863] closed +Oct 03 18:43 : client: [1864] opened from 127.0.0.1:45146 +Oct 03 18:43 : client: [1864] closed +Oct 03 18:43 : client: [1865] opened from 127.0.0.1:45150 +Oct 03 18:43 : client: [1865] closed +Oct 03 18:43 : client: [1866] opened from 127.0.0.1:45154 +Oct 03 18:43 : client: [1866] closed +Oct 03 18:43 : client: [1867] opened from 127.0.0.1:45158 +Oct 03 18:43 : client: [1867] closed +Oct 03 18:43 : client: [1868] opened from 127.0.0.1:45162 +Oct 03 18:43 : client: [1868] closed +Oct 03 18:43 : client: [1869] opened from 127.0.0.1:45166 +Oct 03 18:43 : client: [1869] closed +Oct 03 18:43 : client: [1870] opened from 127.0.0.1:45170 +Oct 03 18:43 : exception: Failed to open /home/igor/.config/mpd/playlists: No such file or directory +Oct 03 18:43 : client: [1871] opened from 127.0.0.1:45174 +Oct 03 18:43 : client: [1871] closed +Oct 03 18:43 : client: [1872] opened from 127.0.0.1:45178 +Oct 03 18:43 : client: [1872] closed +Oct 03 18:43 : client: [1873] opened from 127.0.0.1:45182 +Oct 03 18:43 : client: [1873] closed +Oct 03 18:43 : client: [1874] opened from 127.0.0.1:45186 +Oct 03 18:43 : client: [1874] closed +Oct 03 18:43 : client: [1870] closed +Oct 03 18:43 : client: [1875] opened from 127.0.0.1:45190 +Oct 03 18:43 : client: [1875] closed +Oct 03 18:43 : client: [1876] opened from 127.0.0.1:45194 +Oct 03 18:43 : client: [1876] closed +Oct 03 18:43 : client: [1877] opened from 127.0.0.1:45198 +Oct 03 18:43 : client: [1877] closed +Oct 03 18:43 : client: [1878] opened from 127.0.0.1:45202 +Oct 03 18:43 : client: [1878] closed +Oct 03 18:43 : client: [1879] opened from 127.0.0.1:45216 +Oct 03 18:43 : client: [1879] closed +Oct 03 18:43 : client: [1880] opened from 127.0.0.1:45220 +Oct 03 18:43 : client: [1880] closed +Oct 03 18:43 : client: [1881] opened from 127.0.0.1:45224 +Oct 03 18:43 : client: [1881] closed +Oct 03 18:43 : client: [1882] opened from 127.0.0.1:45228 +Oct 03 18:43 : client: [1882] closed +Oct 03 18:43 : client: [1883] opened from 127.0.0.1:45232 +Oct 03 18:43 : client: [1883] closed +Oct 03 18:43 : client: [1884] opened from 127.0.0.1:45236 +Oct 03 18:43 : client: [1884] closed +Oct 03 18:43 : client: [1885] opened from 127.0.0.1:45240 +Oct 03 18:43 : client: [1885] closed +Oct 03 18:43 : client: [1886] opened from 127.0.0.1:45244 +Oct 03 18:43 : client: [1886] closed +Oct 03 18:44 : client: [1887] opened from 127.0.0.1:45248 +Oct 03 18:44 : client: [1887] closed +Oct 03 18:44 : client: [1888] opened from 127.0.0.1:45252 +Oct 03 18:44 : client: [1888] closed +Oct 03 18:44 : client: [1889] opened from 127.0.0.1:45256 +Oct 03 18:44 : client: [1889] closed +Oct 03 18:44 : client: [1890] opened from 127.0.0.1:45260 +Oct 03 18:44 : client: [1890] closed +Oct 03 18:44 : client: [1891] opened from 127.0.0.1:45264 +Oct 03 18:44 : client: [1891] closed +Oct 03 18:44 : client: [1892] opened from 127.0.0.1:45268 +Oct 03 18:44 : client: [1892] closed +Oct 03 18:44 : client: [1893] opened from 127.0.0.1:45306 +Oct 03 18:44 : client: [1893] closed +Oct 03 18:44 : client: [1894] opened from 127.0.0.1:45310 +Oct 03 18:44 : client: [1894] closed +Oct 03 18:44 : client: [1895] opened from 127.0.0.1:45314 +Oct 03 18:44 : client: [1895] closed +Oct 03 18:44 : client: [1896] opened from 127.0.0.1:45318 +Oct 03 18:44 : client: [1896] closed +Oct 03 18:44 : client: [1897] opened from 127.0.0.1:45322 +Oct 03 18:44 : client: [1897] closed +Oct 03 18:44 : client: [1898] opened from 127.0.0.1:45326 +Oct 03 18:44 : client: [1898] closed +Oct 03 18:44 : client: [1899] opened from 127.0.0.1:45330 +Oct 03 18:44 : client: [1899] closed +Oct 03 18:44 : client: [1900] opened from 127.0.0.1:45334 +Oct 03 18:44 : client: [1900] closed +Oct 03 18:44 : client: [1901] opened from 127.0.0.1:45338 +Oct 03 18:44 : client: [1901] closed +Oct 03 18:44 : client: [1902] opened from 127.0.0.1:45342 +Oct 03 18:44 : client: [1902] closed +Oct 03 18:44 : client: [1903] opened from 127.0.0.1:45346 +Oct 03 18:44 : client: [1903] closed +Oct 03 18:44 : client: [1904] opened from 127.0.0.1:45350 +Oct 03 18:44 : client: [1904] closed +Oct 03 18:44 : client: [1905] opened from 127.0.0.1:45354 +Oct 03 18:44 : client: [1905] closed +Oct 03 18:44 : client: [1906] opened from 127.0.0.1:45358 +Oct 03 18:44 : client: [1906] closed +Oct 03 18:44 : client: [1907] opened from 127.0.0.1:45362 +Oct 03 18:44 : client: [1907] closed +Oct 03 18:44 : client: [1908] opened from 127.0.0.1:45366 +Oct 03 18:44 : client: [1908] closed +Oct 03 18:44 : client: [1909] opened from 127.0.0.1:45370 +Oct 03 18:44 : client: [1909] closed +Oct 03 18:44 : client: [1910] opened from 127.0.0.1:45374 +Oct 03 18:44 : client: [1910] closed +Oct 03 18:45 : client: [1911] opened from 127.0.0.1:45378 +Oct 03 18:45 : client: [1911] closed +Oct 03 18:45 : client: [1912] opened from 127.0.0.1:45382 +Oct 03 18:45 : client: [1912] closed +Oct 03 18:45 : client: [1913] opened from 127.0.0.1:45388 +Oct 03 18:45 : client: [1913] closed +Oct 03 18:45 : client: [1914] opened from 127.0.0.1:45392 +Oct 03 18:45 : client: [1914] closed +Oct 03 18:45 : client: [1915] opened from 127.0.0.1:45396 +Oct 03 18:45 : client: [1915] closed +Oct 03 18:45 : client: [1916] opened from 127.0.0.1:45400 +Oct 03 18:45 : client: [1916] closed +Oct 03 18:45 : client: [1917] opened from 127.0.0.1:45404 +Oct 03 18:45 : client: [1917] closed +Oct 03 18:45 : client: [1918] opened from 127.0.0.1:45408 +Oct 03 18:45 : client: [1918] closed +Oct 03 18:45 : client: [1919] opened from 127.0.0.1:45424 +Oct 03 18:45 : client: [1919] closed +Oct 03 18:45 : client: [1920] opened from 127.0.0.1:45428 +Oct 03 18:45 : client: [1920] closed +Oct 03 18:45 : client: [1921] opened from 127.0.0.1:45440 +Oct 03 18:45 : client: [1921] closed +Oct 03 18:45 : client: [1922] opened from 127.0.0.1:45444 +Oct 03 18:45 : client: [1922] closed +Oct 03 18:45 : client: [1923] opened from 127.0.0.1:45448 +Oct 03 18:45 : client: [1923] closed +Oct 03 18:45 : client: [1924] opened from 127.0.0.1:45452 +Oct 03 18:45 : client: [1924] closed +Oct 03 18:45 : client: [1925] opened from 127.0.0.1:45468 +Oct 03 18:45 : client: [1925] closed +Oct 03 18:45 : client: [1926] opened from 127.0.0.1:45472 +Oct 03 18:45 : client: [1926] closed +Oct 03 18:45 : client: [1927] opened from 127.0.0.1:45476 +Oct 03 18:45 : client: [1927] closed +Oct 03 18:45 : client: [1928] opened from 127.0.0.1:45480 +Oct 03 18:45 : client: [1928] closed +Oct 03 18:45 : client: [1929] opened from 127.0.0.1:45512 +Oct 03 18:45 : client: [1929] closed +Oct 03 18:45 : client: [1930] opened from 127.0.0.1:45516 +Oct 03 18:45 : client: [1930] closed +Oct 03 18:45 : client: [1931] opened from 127.0.0.1:45528 +Oct 03 18:45 : client: [1931] closed +Oct 03 18:45 : client: [1932] opened from 127.0.0.1:45532 +Oct 03 18:45 : client: [1932] closed +Oct 03 18:45 : client: [1933] opened from 127.0.0.1:45536 +Oct 03 18:45 : client: [1933] closed +Oct 03 18:45 : client: [1934] opened from 127.0.0.1:45540 +Oct 03 18:45 : client: [1934] closed +Oct 03 18:46 : client: [1935] opened from 127.0.0.1:45544 +Oct 03 18:46 : client: [1935] closed +Oct 03 18:46 : client: [1936] opened from 127.0.0.1:45548 +Oct 03 18:46 : client: [1936] closed +Oct 03 18:46 : client: [1937] opened from 127.0.0.1:45552 +Oct 03 18:46 : client: [1937] closed +Oct 03 18:46 : client: [1938] opened from 127.0.0.1:45556 +Oct 03 18:46 : client: [1938] closed +Oct 03 18:46 : client: [1939] opened from 127.0.0.1:45560 +Oct 03 18:46 : client: [1939] closed +Oct 03 18:46 : client: [1940] opened from 127.0.0.1:45564 +Oct 03 18:46 : client: [1940] closed +Oct 03 18:46 : client: [1941] opened from 127.0.0.1:45568 +Oct 03 18:46 : client: [1941] closed +Oct 03 18:46 : client: [1942] opened from 127.0.0.1:45572 +Oct 03 18:46 : client: [1942] closed +Oct 03 18:46 : client: [1943] opened from 127.0.0.1:45576 +Oct 03 18:46 : client: [1943] closed +Oct 03 18:46 : client: [1944] opened from 127.0.0.1:45580 +Oct 03 18:46 : client: [1944] closed +Oct 03 18:46 : client: [1945] opened from 127.0.0.1:45584 +Oct 03 18:46 : client: [1945] closed +Oct 03 18:46 : client: [1946] opened from 127.0.0.1:45588 +Oct 03 18:46 : client: [1946] closed +Oct 03 18:46 : client: [1947] opened from 127.0.0.1:45592 +Oct 03 18:46 : client: [1947] closed +Oct 03 18:46 : client: [1948] opened from 127.0.0.1:45596 +Oct 03 18:46 : client: [1948] closed +Oct 03 18:46 : client: [1949] opened from 127.0.0.1:45600 +Oct 03 18:46 : client: [1949] closed +Oct 03 18:46 : client: [1950] opened from 127.0.0.1:45604 +Oct 03 18:46 : client: [1950] closed +Oct 03 18:46 : client: [1951] opened from 127.0.0.1:45608 +Oct 03 18:46 : client: [1951] closed +Oct 03 18:46 : client: [1952] opened from 127.0.0.1:45612 +Oct 03 18:46 : client: [1952] closed +Oct 03 18:46 : ffmpeg/opus: Could not update timestamps for discarded samples. +Oct 03 18:46 : client: [1953] opened from 127.0.0.1:45616 +Oct 03 18:46 : client: [1953] closed +Oct 03 18:46 : client: [1954] opened from 127.0.0.1:45620 +Oct 03 18:46 : client: [1954] closed +Oct 03 18:46 : player: played "Linus Said - Music Parody (Momma Said).webm" +Oct 03 18:46 : client: [1955] opened from 127.0.0.1:45624 +Oct 03 18:46 : client: [1955] closed +Oct 03 18:46 : client: [1956] opened from 127.0.0.1:45628 +Oct 03 18:46 : client: [1956] closed +Oct 03 18:46 : client: [1957] opened from 127.0.0.1:45632 +Oct 03 18:46 : client: [1957] closed +Oct 03 18:46 : client: [1958] opened from 127.0.0.1:45636 +Oct 03 18:46 : client: [1958] closed +Oct 03 18:47 : client: [1959] opened from 127.0.0.1:45640 +Oct 03 18:47 : client: [1959] closed +Oct 03 18:47 : client: [1960] opened from 127.0.0.1:45644 +Oct 03 18:47 : client: [1960] closed +Oct 03 18:47 : client: [1961] opened from 127.0.0.1:45648 +Oct 03 18:47 : client: [1961] closed +Oct 03 18:47 : client: [1962] opened from 127.0.0.1:45652 +Oct 03 18:47 : client: [1962] closed +Oct 03 18:47 : client: [1963] opened from 127.0.0.1:45656 +Oct 03 18:47 : client: [1963] closed +Oct 03 18:47 : client: [1964] opened from 127.0.0.1:45660 +Oct 03 18:47 : client: [1964] closed +Oct 03 18:47 : client: [1965] opened from 127.0.0.1:45664 +Oct 03 18:47 : client: [1965] closed +Oct 03 18:47 : client: [1966] opened from 127.0.0.1:45668 +Oct 03 18:47 : client: [1966] closed +Oct 03 18:47 : client: [1967] opened from 127.0.0.1:45674 +Oct 03 18:47 : client: [1967] closed +Oct 03 18:47 : client: [1968] opened from 127.0.0.1:45678 +Oct 03 18:47 : client: [1968] closed +Oct 03 18:47 : client: [1969] opened from 127.0.0.1:45698 +Oct 03 18:47 : client: [1969] closed +Oct 03 18:47 : client: [1970] opened from 127.0.0.1:45702 +Oct 03 18:47 : client: [1970] closed +Oct 03 18:47 : client: [1971] opened from 127.0.0.1:45710 +Oct 03 18:47 : client: [1971] closed +Oct 03 18:47 : client: [1972] opened from 127.0.0.1:45714 +Oct 03 18:47 : client: [1972] closed +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/14-elastic_oz_band-do_the_oz_(ultimate_mix)-e4dc251b.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/04-john_lennon-its_so_hard_(ultimate_mix)-37b44603.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/23-john_lennon-crippled_inside_(take_3)-70089ef0.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/08-john_lennon-how_do_you_sleep_(ultimate_mix)-b0aac141.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/41-john_lennon-i_dont_wanna_be_a_soldier_mama_i_dont_wanna_die_(take_4__extended__raw_studio_mix)-bfaa1a83.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/12-john_lennon-well_(baby_please_dont_go)_(ultimate_mix)-5de90a76.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/25-john_lennon-jealous_guy_(take_9)-d7a4aadc.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/02-john_lennon-crippled_inside_(ultimate_mix)-57d6b355.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/10-john_lennon-oh_yoko_(ultimate_mix)-c1539fba.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/40-john_lennon-its_so_hard_(take_11__raw_studio_mix)-3ec6cd36.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/55-john_lennon-its_so_hard_(evolution_documentary__mono)-fe60d116.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/58-john_lennon-oh_my_love_(evolution_documentary__mono)-febb31d9.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/17-the_flux_fiddlers-imagine_(elements_mix)-224ea997.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/21-john_lennon-imagine_(demo)-8b0a77da.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/51-john_lennon-how_do_you_sleep_(takes_5_and_6__raw_studio_mix)-b9b3f1db.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/05-john_lennon-i_dont_wanna_be_a_soldier_mama_i_dont_wanna_die_(ultimate_mix)-e29b2711.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/59-john_lennon-how_do_you_sleep_(evolution_documentary__mono)-a3697fe7.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/24-john_lennon-crippled_inside_(take_6__alternate_guitar_solo)-384af0d4.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/28-john_lennon-gimme_some_truth_(take_4)-82b86dab.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/48-john_lennon-jealous_guy_(take_11__raw_studio_mix)-f6cfa1db.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/11-john_lennon-power_to_the_people_(ultimate_mix)-f68dfaf9.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/27-john_lennon-i_dont_wanna_be_a_soldier_mama_i_dont_wanna_die_(take_11)-f331b18c.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/35-john_lennon-do_the_oz_(take_3)-3a907450.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/20-the_flux_fiddlers-how_(elements_mix)-0a0fb973.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/31-john_lennon-how_(take_31)-d40c4244.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/54-john_lennon-jealous_guy_(evolution_documentary__mono)-d0def7ac.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/42-john_lennon-gimme_some_truth_(take_4__extended__raw_studio_mix)-d59539bf.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/06-john_lennon-gimme_some_truth_(ultimate_mix)-a4f05453.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/29-john_lennon-oh_my_love_(take_6)-06d92d71.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/15-john_lennon-god_save_oz_(ultimate_mix)-51393bb6.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/07-john_lennon-oh_my_love_(ultimate_mix)-d5f3419e.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/44-john_lennon-how_do_you_sleep_(take_11__extended__raw_studio_mix)-8184da64.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/49-john_lennon-i_dont_wanna_be_a_soldier_mama_i_dont_wanna_die_(take_21__raw_studio_mix)-8cf746dc.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/01-john_lennon-imagine_(ultimate_mix)-cce46005.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/45-john_lennon-how_(take_40__raw_studio_mix)-35e1b84c.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/19-john_lennon-oh_my_love_(elements_mix)-7498c4a7.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/22-john_lennon-imagine_(take_1)-959e2934.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/60-john_lennon-how_(evolution_documentary__mono)-c65c56d6.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/36-john_lennon_feat_the_harlem_community_choir-happy_xmas_(war_is_over)_(alternate_mix)-8db94993.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/47-john_lennon-imagine_(take_1__raw_studio_mix)-818340b9.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/26-john_lennon-its_so_hard_(take_6)-4388f43a.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/34-john_lennon-god_save_us_(demo)-9fbcd754.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/32-john_lennon-oh_yoko_(bahamas_1969)-ccf3179a.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/56-john_lennon-i_dont_wanna_be_a_soldier_mama_i_dont_wanna_die_(evolution_documentary__mono)-207090b3.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/33-john_lennon-power_to_the_people_(take_7)-323bd323.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/43-john_lennon-oh_my_love_(take_20__raw_studio_mix)-ea117f05.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/57-john_lennon-gimme_some_truth_(evolution_documentary__mono)-bb218c0d.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/39-john_lennon-jealous_guy_(take_29__raw_studio_mix)-b864634c.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/53-john_lennon-crippled_inside_(evolution_documentary__mono)-563f4651.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/30-john_lennon-how_do_you_sleep_(takes_1_and_2)-10082076.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/38-john_lennon-crippled_inside_(take_6__raw_studio_mix)-44ac6ad1.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/37-john_lennon-imagine_(take_10__raw_studio_mix)-7cd51229.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/50-john_lennon-how_do_you_sleep_(take_1__raw_studio_mix)-f9f64056.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/16-john_lennon_feat_the_harlem_community_choir-happy_xmas_(war_is_over)_(ultimate_mix)-064542de.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/46-john_lennon-oh_yoko_(take_1__extended__raw_studio_mix)-79be7f8e.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/18-the_plastic_ono_band-jealous_guy_(elements_mix)-3f94059a.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/09-john_lennon-how_(ultimate_mix)-95c1bbf2.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/61-john_lennon-oh_yoko_(evolution_documentary__mono)-0ecd4191.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/03-john_lennon-jealous_guy_(ultimate_mix)-fa96e351.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/13-bill_elliott-god_save_us_(ultimate_mix)-db2a80df.mp3 +Oct 03 18:47 : update: added John Lennon - Imagine (The Ultimate Collection) (2018) mp3/52-john_lennon-imagine_(evolution_documentary__mono)-5a927343.mp3 +Oct 03 18:47 : exception: Failed to open /home/igor/.config/mpd/playlists: No such file or directory +Oct 03 18:47 : client: [1973] opened from 127.0.0.1:45718 +Oct 03 18:47 : client: [1973] closed +Oct 03 18:47 : client: [1974] opened from 127.0.0.1:45722 +Oct 03 18:47 : client: [1974] closed +Oct 03 18:47 : exception: Failed to open /home/igor/.config/mpd/playlists: No such file or directory +Oct 03 18:47 : exception: Failed to open /home/igor/.config/mpd/playlists: No such file or directory +Oct 03 18:47 : client: [1975] opened from 127.0.0.1:45726 +Oct 03 18:47 : client: [1975] closed +Oct 03 18:47 : client: [1976] opened from 127.0.0.1:45730 +Oct 03 18:47 : client: [1976] closed +Oct 03 18:47 : client: [1977] opened from 127.0.0.1:45734 +Oct 03 18:47 : client: [1977] closed +Oct 03 18:47 : client: [1978] opened from 127.0.0.1:45738 +Oct 03 18:47 : client: [1978] closed +Oct 03 18:47 : client: [1979] opened from 127.0.0.1:45742 +Oct 03 18:47 : client: [1979] closed +Oct 03 18:47 : client: [1980] opened from 127.0.0.1:45746 +Oct 03 18:47 : client: [1980] closed +Oct 03 18:47 : client: [1981] opened from 127.0.0.1:45750 +Oct 03 18:47 : client: [1981] closed +Oct 03 18:47 : client: [1982] opened from 127.0.0.1:45754 +Oct 03 18:47 : client: [1982] closed +Oct 03 18:48 : client: [1983] opened from 127.0.0.1:45760 +Oct 03 18:48 : client: [1983] closed +Oct 03 18:48 : client: [1984] opened from 127.0.0.1:45764 +Oct 03 18:48 : client: [1984] closed +Oct 03 18:48 : client: [1985] opened from 127.0.0.1:45768 +Oct 03 18:48 : client: [1985] closed +Oct 03 18:48 : client: [1986] opened from 127.0.0.1:45772 +Oct 03 18:48 : client: [1986] closed +Oct 03 18:48 : client: [1987] opened from 127.0.0.1:45776 +Oct 03 18:48 : client: [1987] closed +Oct 03 18:48 : client: [1988] opened from 127.0.0.1:45780 +Oct 03 18:48 : client: [1988] closed +Oct 03 18:48 : client: [1989] opened from 127.0.0.1:45784 +Oct 03 18:48 : client: [1989] closed +Oct 03 18:48 : client: [1990] opened from 127.0.0.1:45788 +Oct 03 18:48 : client: [1990] closed +Oct 03 18:48 : client: [1991] opened from 127.0.0.1:45792 +Oct 03 18:48 : client: [1991] closed +Oct 03 18:48 : client: [1992] opened from 127.0.0.1:45796 +Oct 03 18:48 : client: [1992] closed +Oct 03 18:51 : player: played "John Lennon - Imagine (The Ultimate Collection) (2018) mp3/02-john_lennon-crippled_inside_(ultimate_mix)-57d6b355.mp3" +Oct 03 18:55 : player: played "John Lennon - Imagine (The Ultimate Collection) (2018) mp3/03-john_lennon-jealous_guy_(ultimate_mix)-fa96e351.mp3" +Oct 03 19:01 : player: played "John Lennon - Imagine (The Ultimate Collection) (2018) mp3/01-john_lennon-imagine_(ultimate_mix)-cce46005.mp3" +Oct 03 19:05 : player: played "John Lennon - Imagine (The Ultimate Collection) (2018) mp3/02-john_lennon-crippled_inside_(ultimate_mix)-57d6b355.mp3" diff --git a/.config/mpd/mpd.conf b/.config/mpd/mpd.conf new file mode 100644 index 0000000..a200432 --- /dev/null +++ b/.config/mpd/mpd.conf @@ -0,0 +1,23 @@ +db_file "~/.config/mpd/database" +log_file "~/.config/mpd/log" +music_directory "~/Music" +pid_file "~/.config/mpd/pid" +state_file "~/.config/mpd/state" +sticker_file "~/.config/mpd/sticker.sql" +playlist_directory "~/.config/mpd/playlists" + +bind_to_address "127.0.0.1" +restore_paused "yes" +max_output_buffer_size "16384" + +audio_output { + type "pulse" + name "pulseaudio-mpd" +} + +audio_output { + type "fifo" + name "toggle_visualizer" + path "/tmp/mpd.fifo" + format "44100:16:2" +} diff --git a/.config/mpd/pid b/.config/mpd/pid new file mode 100644 index 0000000..72ba6ee --- /dev/null +++ b/.config/mpd/pid @@ -0,0 +1 @@ +30452 diff --git a/.config/mpd/state b/.config/mpd/state new file mode 100644 index 0000000..d4aa67b --- /dev/null +++ b/.config/mpd/state @@ -0,0 +1,136 @@ +sw_volume: 100 +audio_device_state:1:pulseaudio-mpd +audio_device_state:1:toggle_visualizer +state: play +current: 3 +time: 3.995000 +random: 0 +repeat: 0 +single: 0 +consume: 0 +crossfade: 0 +mixrampdb: 0.000000 +mixrampdelay: -1.000000 +playlist_begin +0:Linus Said - Music Parody (Momma Said).webm +1:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/01-john_lennon-imagine_(ultimate_mix)-cce46005.mp3 +2:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/02-john_lennon-crippled_inside_(ultimate_mix)-57d6b355.mp3 +3:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/03-john_lennon-jealous_guy_(ultimate_mix)-fa96e351.mp3 +4:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/04-john_lennon-its_so_hard_(ultimate_mix)-37b44603.mp3 +5:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/05-john_lennon-i_dont_wanna_be_a_soldier_mama_i_dont_wanna_die_(ultimate_mix)-e29b2711.mp3 +6:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/06-john_lennon-gimme_some_truth_(ultimate_mix)-a4f05453.mp3 +7:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/07-john_lennon-oh_my_love_(ultimate_mix)-d5f3419e.mp3 +8:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/08-john_lennon-how_do_you_sleep_(ultimate_mix)-b0aac141.mp3 +9:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/09-john_lennon-how_(ultimate_mix)-95c1bbf2.mp3 +10:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/10-john_lennon-oh_yoko_(ultimate_mix)-c1539fba.mp3 +11:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/11-john_lennon-power_to_the_people_(ultimate_mix)-f68dfaf9.mp3 +12:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/12-john_lennon-well_(baby_please_dont_go)_(ultimate_mix)-5de90a76.mp3 +13:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/13-bill_elliott-god_save_us_(ultimate_mix)-db2a80df.mp3 +14:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/15-john_lennon-god_save_oz_(ultimate_mix)-51393bb6.mp3 +15:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/16-john_lennon_feat_the_harlem_community_choir-happy_xmas_(war_is_over)_(ultimate_mix)-064542de.mp3 +16:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/17-the_flux_fiddlers-imagine_(elements_mix)-224ea997.mp3 +17:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/18-the_plastic_ono_band-jealous_guy_(elements_mix)-3f94059a.mp3 +18:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/19-john_lennon-oh_my_love_(elements_mix)-7498c4a7.mp3 +19:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/20-the_flux_fiddlers-how_(elements_mix)-0a0fb973.mp3 +20:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/21-john_lennon-imagine_(demo)-8b0a77da.mp3 +21:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/22-john_lennon-imagine_(take_1)-959e2934.mp3 +22:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/23-john_lennon-crippled_inside_(take_3)-70089ef0.mp3 +23:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/24-john_lennon-crippled_inside_(take_6__alternate_guitar_solo)-384af0d4.mp3 +24:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/25-john_lennon-jealous_guy_(take_9)-d7a4aadc.mp3 +25:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/26-john_lennon-its_so_hard_(take_6)-4388f43a.mp3 +26:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/27-john_lennon-i_dont_wanna_be_a_soldier_mama_i_dont_wanna_die_(take_11)-f331b18c.mp3 +27:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/28-john_lennon-gimme_some_truth_(take_4)-82b86dab.mp3 +28:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/29-john_lennon-oh_my_love_(take_6)-06d92d71.mp3 +29:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/30-john_lennon-how_do_you_sleep_(takes_1_and_2)-10082076.mp3 +30:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/31-john_lennon-how_(take_31)-d40c4244.mp3 +31:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/32-john_lennon-oh_yoko_(bahamas_1969)-ccf3179a.mp3 +32:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/33-john_lennon-power_to_the_people_(take_7)-323bd323.mp3 +33:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/34-john_lennon-god_save_us_(demo)-9fbcd754.mp3 +34:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/35-john_lennon-do_the_oz_(take_3)-3a907450.mp3 +35:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/36-john_lennon_feat_the_harlem_community_choir-happy_xmas_(war_is_over)_(alternate_mix)-8db94993.mp3 +36:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/37-john_lennon-imagine_(take_10__raw_studio_mix)-7cd51229.mp3 +37:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/38-john_lennon-crippled_inside_(take_6__raw_studio_mix)-44ac6ad1.mp3 +38:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/39-john_lennon-jealous_guy_(take_29__raw_studio_mix)-b864634c.mp3 +39:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/40-john_lennon-its_so_hard_(take_11__raw_studio_mix)-3ec6cd36.mp3 +40:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/41-john_lennon-i_dont_wanna_be_a_soldier_mama_i_dont_wanna_die_(take_4__extended__raw_studio_mix)-bfaa1a83.mp3 +41:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/42-john_lennon-gimme_some_truth_(take_4__extended__raw_studio_mix)-d59539bf.mp3 +42:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/43-john_lennon-oh_my_love_(take_20__raw_studio_mix)-ea117f05.mp3 +43:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/44-john_lennon-how_do_you_sleep_(take_11__extended__raw_studio_mix)-8184da64.mp3 +44:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/45-john_lennon-how_(take_40__raw_studio_mix)-35e1b84c.mp3 +45:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/46-john_lennon-oh_yoko_(take_1__extended__raw_studio_mix)-79be7f8e.mp3 +46:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/47-john_lennon-imagine_(take_1__raw_studio_mix)-818340b9.mp3 +47:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/48-john_lennon-jealous_guy_(take_11__raw_studio_mix)-f6cfa1db.mp3 +48:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/49-john_lennon-i_dont_wanna_be_a_soldier_mama_i_dont_wanna_die_(take_21__raw_studio_mix)-8cf746dc.mp3 +49:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/50-john_lennon-how_do_you_sleep_(take_1__raw_studio_mix)-f9f64056.mp3 +50:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/51-john_lennon-how_do_you_sleep_(takes_5_and_6__raw_studio_mix)-b9b3f1db.mp3 +51:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/52-john_lennon-imagine_(evolution_documentary__mono)-5a927343.mp3 +52:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/53-john_lennon-crippled_inside_(evolution_documentary__mono)-563f4651.mp3 +53:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/54-john_lennon-jealous_guy_(evolution_documentary__mono)-d0def7ac.mp3 +54:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/55-john_lennon-its_so_hard_(evolution_documentary__mono)-fe60d116.mp3 +55:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/56-john_lennon-i_dont_wanna_be_a_soldier_mama_i_dont_wanna_die_(evolution_documentary__mono)-207090b3.mp3 +56:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/57-john_lennon-gimme_some_truth_(evolution_documentary__mono)-bb218c0d.mp3 +57:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/58-john_lennon-oh_my_love_(evolution_documentary__mono)-febb31d9.mp3 +58:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/59-john_lennon-how_do_you_sleep_(evolution_documentary__mono)-a3697fe7.mp3 +59:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/60-john_lennon-how_(evolution_documentary__mono)-c65c56d6.mp3 +60:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/61-john_lennon-oh_yoko_(evolution_documentary__mono)-0ecd4191.mp3 +61:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/01-john_lennon-imagine_(ultimate_mix)-cce46005.mp3 +62:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/02-john_lennon-crippled_inside_(ultimate_mix)-57d6b355.mp3 +63:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/03-john_lennon-jealous_guy_(ultimate_mix)-fa96e351.mp3 +64:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/04-john_lennon-its_so_hard_(ultimate_mix)-37b44603.mp3 +65:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/05-john_lennon-i_dont_wanna_be_a_soldier_mama_i_dont_wanna_die_(ultimate_mix)-e29b2711.mp3 +66:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/06-john_lennon-gimme_some_truth_(ultimate_mix)-a4f05453.mp3 +67:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/07-john_lennon-oh_my_love_(ultimate_mix)-d5f3419e.mp3 +68:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/08-john_lennon-how_do_you_sleep_(ultimate_mix)-b0aac141.mp3 +69:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/09-john_lennon-how_(ultimate_mix)-95c1bbf2.mp3 +70:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/10-john_lennon-oh_yoko_(ultimate_mix)-c1539fba.mp3 +71:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/11-john_lennon-power_to_the_people_(ultimate_mix)-f68dfaf9.mp3 +72:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/12-john_lennon-well_(baby_please_dont_go)_(ultimate_mix)-5de90a76.mp3 +73:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/13-bill_elliott-god_save_us_(ultimate_mix)-db2a80df.mp3 +74:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/15-john_lennon-god_save_oz_(ultimate_mix)-51393bb6.mp3 +75:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/16-john_lennon_feat_the_harlem_community_choir-happy_xmas_(war_is_over)_(ultimate_mix)-064542de.mp3 +76:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/17-the_flux_fiddlers-imagine_(elements_mix)-224ea997.mp3 +77:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/18-the_plastic_ono_band-jealous_guy_(elements_mix)-3f94059a.mp3 +78:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/19-john_lennon-oh_my_love_(elements_mix)-7498c4a7.mp3 +79:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/20-the_flux_fiddlers-how_(elements_mix)-0a0fb973.mp3 +80:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/21-john_lennon-imagine_(demo)-8b0a77da.mp3 +81:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/22-john_lennon-imagine_(take_1)-959e2934.mp3 +82:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/23-john_lennon-crippled_inside_(take_3)-70089ef0.mp3 +83:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/24-john_lennon-crippled_inside_(take_6__alternate_guitar_solo)-384af0d4.mp3 +84:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/25-john_lennon-jealous_guy_(take_9)-d7a4aadc.mp3 +85:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/26-john_lennon-its_so_hard_(take_6)-4388f43a.mp3 +86:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/27-john_lennon-i_dont_wanna_be_a_soldier_mama_i_dont_wanna_die_(take_11)-f331b18c.mp3 +87:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/28-john_lennon-gimme_some_truth_(take_4)-82b86dab.mp3 +88:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/29-john_lennon-oh_my_love_(take_6)-06d92d71.mp3 +89:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/30-john_lennon-how_do_you_sleep_(takes_1_and_2)-10082076.mp3 +90:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/31-john_lennon-how_(take_31)-d40c4244.mp3 +91:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/32-john_lennon-oh_yoko_(bahamas_1969)-ccf3179a.mp3 +92:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/33-john_lennon-power_to_the_people_(take_7)-323bd323.mp3 +93:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/34-john_lennon-god_save_us_(demo)-9fbcd754.mp3 +94:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/35-john_lennon-do_the_oz_(take_3)-3a907450.mp3 +95:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/36-john_lennon_feat_the_harlem_community_choir-happy_xmas_(war_is_over)_(alternate_mix)-8db94993.mp3 +96:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/37-john_lennon-imagine_(take_10__raw_studio_mix)-7cd51229.mp3 +97:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/38-john_lennon-crippled_inside_(take_6__raw_studio_mix)-44ac6ad1.mp3 +98:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/39-john_lennon-jealous_guy_(take_29__raw_studio_mix)-b864634c.mp3 +99:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/40-john_lennon-its_so_hard_(take_11__raw_studio_mix)-3ec6cd36.mp3 +100:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/41-john_lennon-i_dont_wanna_be_a_soldier_mama_i_dont_wanna_die_(take_4__extended__raw_studio_mix)-bfaa1a83.mp3 +101:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/42-john_lennon-gimme_some_truth_(take_4__extended__raw_studio_mix)-d59539bf.mp3 +102:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/43-john_lennon-oh_my_love_(take_20__raw_studio_mix)-ea117f05.mp3 +103:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/44-john_lennon-how_do_you_sleep_(take_11__extended__raw_studio_mix)-8184da64.mp3 +104:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/45-john_lennon-how_(take_40__raw_studio_mix)-35e1b84c.mp3 +105:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/46-john_lennon-oh_yoko_(take_1__extended__raw_studio_mix)-79be7f8e.mp3 +106:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/47-john_lennon-imagine_(take_1__raw_studio_mix)-818340b9.mp3 +107:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/48-john_lennon-jealous_guy_(take_11__raw_studio_mix)-f6cfa1db.mp3 +108:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/49-john_lennon-i_dont_wanna_be_a_soldier_mama_i_dont_wanna_die_(take_21__raw_studio_mix)-8cf746dc.mp3 +109:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/50-john_lennon-how_do_you_sleep_(take_1__raw_studio_mix)-f9f64056.mp3 +110:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/51-john_lennon-how_do_you_sleep_(takes_5_and_6__raw_studio_mix)-b9b3f1db.mp3 +111:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/52-john_lennon-imagine_(evolution_documentary__mono)-5a927343.mp3 +112:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/53-john_lennon-crippled_inside_(evolution_documentary__mono)-563f4651.mp3 +113:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/54-john_lennon-jealous_guy_(evolution_documentary__mono)-d0def7ac.mp3 +114:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/55-john_lennon-its_so_hard_(evolution_documentary__mono)-fe60d116.mp3 +115:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/56-john_lennon-i_dont_wanna_be_a_soldier_mama_i_dont_wanna_die_(evolution_documentary__mono)-207090b3.mp3 +116:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/57-john_lennon-gimme_some_truth_(evolution_documentary__mono)-bb218c0d.mp3 +117:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/58-john_lennon-oh_my_love_(evolution_documentary__mono)-febb31d9.mp3 +118:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/59-john_lennon-how_do_you_sleep_(evolution_documentary__mono)-a3697fe7.mp3 +119:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/60-john_lennon-how_(evolution_documentary__mono)-c65c56d6.mp3 +120:John Lennon - Imagine (The Ultimate Collection) (2018) mp3/61-john_lennon-oh_yoko_(evolution_documentary__mono)-0ecd4191.mp3 +playlist_end diff --git a/.config/ncmpcpp/bindings b/.config/ncmpcpp/bindings new file mode 100644 index 0000000..e7bc15d --- /dev/null +++ b/.config/ncmpcpp/bindings @@ -0,0 +1,467 @@ +# +# _ __ ___ _ __ ___ _ __ ___ _ __ _ __ +# | '_ \ / __| '_ ` _ \| '_ \ / __| '_ \| '_ \ +# | | | | (__| | | | | | |_) | (__| |_) | |_) | +# |_| |_|\___|_| |_| |_| .__/ \___| .__/| .__/ +# |_| |_| |_| +# + + +## Don't forget about updating that database +def_key "u" + update_database + + + +## Navigation + +# basic hjkl - can you live without it? + +def_key "h" + previous_column + +def_key "h" + jump_to_parent_directory + +def_key "j" + scroll_down + +def_key "ctrl-j" + page_down + +def_key "k" + scroll_up + +def_key "ctrl-k" + page_up + +def_key "l" + next_column + +def_key "l" + enter_directory + +def_key "l" + run_action + +def_key "l" + play_item + +# Other keys + +def_key "[" + scroll_up_album + +def_key "]" + scroll_down_album + +def_key "{" + scroll_up_artist + +def_key "}" + scroll_down_artist + +def_key "page_up" + page_up + +def_key "page_down" + page_down + +def_key "home" + move_home + +def_key "end" + move_end + +# Mouse, well whatever. + +def_key "mouse" + mouse_event + +def_key "|" + toggle_mouse + +# Oh and arrow keys, if you are masochist :) + +def_key "left" + previous_column + +def_key "left" + master_screen + +def_key "down" + scroll_down + +def_key "shift-down" + select_item + scroll_down + +def_key "up" + scroll_up + +def_key "shift-up" + select_item + scroll_up + +def_key "right" + next_column + +def_key "right" + slave_screen + + + +## ncmpcpp tabs + +def_key "tab" + next_screen + +def_key "shift-tab" + previous_screen + +def_key "f1" + show_help + +def_key "1" + show_playlist + +def_key "2" + show_browser + +def_key "2" + change_browse_mode + +def_key "3" + show_search_engine + +def_key "3" + reset_search_engine + +def_key "4" + show_media_library + +def_key "4" + toggle_media_library_columns_mode + +def_key "5" + show_playlist_editor + +def_key "6" + show_tag_editor + +def_key "7" + show_outputs + +def_key "8" + show_visualizer + +def_key "@" + show_server_info + + + +## Music modes + +def_key "y" + toggle_single + +def_key "r" + toggle_repeat + +def_key "R" + toggle_random + +def_key "z" + toggle_random + +def_key "C" + toggle_consume + +def_key "x" + toggle_crossfade + +def_key "X" + set_crossfade + + + +## Music control + +def_key "f" + seek_forward + +def_key "b" + seek_backward + +def_key "s" + stop + +def_key "p" + pause + +def_key ">" + next + +def_key "<" + previous + +def_key "ctrl-h" + replay_song + +def_key "=" + volume_up + +def_key "+" + volume_up + +def_key "-" + volume_down + + + +## Lyrics + +def_key "." + show_lyrics + +def_key "space" + toggle_lyrics_update_on_song_change + +def_key "e" + edit_lyrics + + + +## ncmpcpp modes + +def_key "Y" + toggle_replay_gain_mode + +def_key "T" + toggle_add_mode + +def_key "ctrl-s" + toggle_browser_sort_mode + +def_key "ctrl-s" + toggle_media_library_sort_mode + +def_key "w" + toggle_find_mode + +def_key "P" + toggle_display_mode + + + +## Search + +def_key "/" + find + +def_key "/" + find_item_forward + +def_key "?" + find + +def_key "?" + find_item_backward + + + +## Playlists + +def_key "space" + add_item_to_playlist + +def_key "ctrl-s" + sort_playlist + +def_key "ctrl-r" + reverse_playlist + +def_key "delete" + delete_playlist_items + +def_key "delete" + delete_stored_playlist + +def_key "e" + edit_playlist_name + +def_key "c" + clear_playlist + +def_key "c" + clear_main_playlist + +def_key "C" + crop_playlist + +def_key "C" + crop_main_playlist + + + +## Browser + +def_key "e" + edit_directory_name + +def_key "enter" + enter_directory + +def_key "delete" + delete_browser_items + + + +## Other bindings (I will maybe sort them later) + +def_key "insert" + select_item + +def_key "enter" + toggle_output + +def_key "enter" + run_action + +def_key "enter" + play_item + +def_key "space" + toggle_visualization_type + +def_key ":" + execute_command + +def_key "y" + save_tag_changes + +def_key "#" + toggle_bitrate_visibility + +def_key "ctrl-f" + apply_filter + +def_key "ctrl-_" + select_found_items + +def_key "e" + edit_song + +def_key "e" + edit_library_tag + +def_key "e" + edit_library_album + +def_key "i" + show_song_info + +def_key "I" + show_artist_info + +def_key "ctrl-v" + select_range + +def_key "v" + reverse_selection + +def_key "V" + remove_selection + +def_key "B" + select_album + +def_key "a" + add_selected_items + +def_key "M" + move_selected_items_to + +def_key "A" + add + +def_key "S" + save_playlist + +def_key "o" + jump_to_playing_song + +def_key "G" + jump_to_playlist_editor + +def_key "~" + jump_to_media_library + +def_key "E" + jump_to_tag_editor + +def_key "U" + toggle_playing_song_centering + +def_key "\\" + toggle_interface + +def_key "!" + toggle_separators_between_albums + +def_key "F" + fetch_lyrics_in_background + +def_key "alt-l" + toggle_fetching_lyrics_in_background + +def_key "ctrl-l" + toggle_screen_lock + +def_key "`" + toggle_library_tag_type + +def_key "`" + refetch_lyrics + +def_key "`" + add_random_items + +def_key "ctrl-p" + set_selected_items_priority + +def_key "u" + page_up + +def_key "d" + page_down + +def_key "n" + next_found_item + +def_key "N" + previous_found_item + +def_key "J" + move_sort_order_down + +def_key "K" + move_sort_order_up + +def_key "t" + show_tag_editor + +def_key "G" + move_end + +def_key "g" + move_home + +def_key "Z" + shuffle + + +# TO MANY KEYBINDINGS +# * rage quit * +def_key "q" + quit diff --git a/.config/ncmpcpp/config b/.config/ncmpcpp/config new file mode 100644 index 0000000..83394ea --- /dev/null +++ b/.config/ncmpcpp/config @@ -0,0 +1,352 @@ +# +# _ __ ___ _ __ ___ _ __ ___ _ __ _ __ +# | '_ \ / __| '_ ` _ \| '_ \ / __| '_ \| '_ \ +# | | | | (__| | | | | | |_) | (__| |_) | |_) | +# |_| |_|\___|_| |_| |_| .__/ \___| .__/| .__/ +# |_| |_| |_| +# + +## Directory for storing ncmpcpp related files. Changing it is useful if you +## want to store everything somewhere else and provide command line setting for +## alternative location to config file which defines that while launching +## ncmpcpp. +ncmpcpp_directory = ~/.config/ncmpcpp +mpd_music_dir = ~/Music + +## +## Directory for storing downloaded lyrics. It defaults to ~/.lyrics since other +## MPD clients (eg. ncmpc) also use that location. +lyrics_directory = ~/Music/Lyrics + +## Note: To enable spectrum frequency visualization you need to compile ncmpcpp +## with fftw3 support. +## Available values: spectrum, wave, wave_filled, ellipse. +visualizer_type = wave +visualizer_color = blue, green, magenta + +## Time of inactivity (in seconds) after highlighting will be disabled +## (0 = always on). +playlist_disable_highlight_delay = 5 + +## Defines how long messages are supposed to be visible. +message_delay_time = 1 + + +##### song format ##### +## +## For a song format you can use: +## +## %l - length +## %f - filename +## %D - directory +## %a - artist +## %A - album artist +## %t - title +## %b - album +## %y - date +## %n - track number (01/12 -> 01) +## %N - full track info (01/12 -> 01/12) +## %g - genre +## %c - composer +## %p - performer +## %d - disc +## %C - comment +## %P - priority +## $R - begin right alignment +## +## If you want to make sure that a part of the format is displayed only when +## certain tags are present, you can archieve it by grouping them with brackets, +## e.g. '{%a - %t}' will be evaluated to 'ARTIST - TITLE' if both tags are +## present or '' otherwise. It is also possible to define a list of +## alternatives by providing several groups and separating them with '|', +## e.g. '{%t}|{%f}' will be evaluated to 'TITLE' or 'FILENAME' if the former is +## not present. +## +## Note: If you want to set limit on maximal length of a tag, just put the +## appropriate number between % and character that defines tag type, e.g. to +## make album take max. 20 terminal cells, use '%20b'. +## +## In addition, formats support markers used for text attributes. They are +## followed by character '$'. After that you can put: +## +## - 0 - default window color (discards all other colors) +## - 1 - black +## - 2 - red +## - 3 - green +## - 4 - yellow +## - 5 - blue +## - 6 - magenta +## - 7 - cyan +## - 8 - white +## - 9 - end of current color +## - b - bold text +## - u - underline text +## - r - reverse colors +## - a - use alternative character set +## +## If you don't want to use a non-color attribute anymore, just put it again, +## but this time insert character '/' between '$' and attribute character, +## e.g. {$b%t$/b}|{$r%f$/r} will display bolded title tag or filename with +## reversed colors. +## +## If you want to use 256 colors and/or background colors in formats (the naming +## scheme is described below in section about color definitions), it can be done +## with the syntax $(COLOR), e.g. to set the artist tag to one of the +## non-standard colors and make it have yellow background, you need to write +## $(197_yellow)%a$(end). Note that for standard colors this is interchangable +## with attributes listed above. +## +## Note: colors can be nested. + +song_list_format = {$4%a - }{%t}|{$8%f$9}$R{$3(%l)$9} +song_status_format = {$8"%t"}{$5 by }{$6%a{ $3in $7%b{ (%y)}} $3}|{$8%f} +song_library_format = {%n - }{%t}|{%f} +alternative_header_first_line_format = $b$1$aqqu$/a$9 {%t}|{%f} $1$atqq$/a$9$/b +alternative_header_second_line_format = {{$4$b%a$/b$9}{ - $7%b$9}{ ($4%y$9)}}|{%D} +current_item_prefix = $(cyan)$r$b +current_item_suffix = $/r$(end)$/b +current_item_inactive_column_prefix = $(blue)$r +current_item_inactive_column_suffix = $/r$(end) +now_playing_prefix = $b +now_playing_suffix = $/b +browser_playlist_prefix = "$2playlist$9 " +selected_item_prefix = $6 +selected_item_suffix = $9 +modified_item_prefix = $3> $9 + +## +## Note: attributes are not supported for the following variables. +## +#song_window_title_format = {%a - }{%t}|{%f} +## +## Note: Below variables are used for sorting songs in browser. The sort mode +## determines how songs are sorted, and can be used in combination with a sort +## format to specify a custom sorting format. Available values for +## browser_sort_mode are "name", "mtime", "format" and "noop". +## + +#browser_sort_mode = name + +#browser_sort_format = {%a - }{%t}|{%f} {(%l)} + + +##### columns settings ##### +## +## syntax of song columns list format is "column column etc." +## +## - syntax for each column is: +## +## (width of the column)[color of the column]{displayed tag} +## +## Note: Width is by default in %, if you want a column to have fixed size, add +## 'f' after the value, e.g. (10)[white]{a} will be the column that take 10% of +## screen (so the real width will depend on actual screen size), whereas +## (10f)[white]{a} will take 10 terminal cells, no matter how wide the screen +## is. +## +## - color is optional (if you want the default one, leave the field empty). +## +## Note: You can give a column additional attributes by putting appropriate +## character after displayed tag character. Available attributes are: +## +## - r - column will be right aligned +## - E - if tag is empty, empty tag marker won't be displayed +## +## You can also: +## +## - give a column custom name by putting it after attributes, separated with +## character ':', e.g. {lr:Length} gives you right aligned column of lengths +## named "Length". +## +## - define sequence of tags, that have to be displayed in case predecessor is +## empty in a way similar to the one in classic song format, i.e. using '|' +## character, e.g. {a|c|p:Owner} creates column named "Owner" that tries to +## display artist tag and then composer and performer if previous ones are not +## available. +## + +song_columns_list_format = (15)[magenta]{a} (50)[white]{t|f:Title} (7f)[blue]{l} + + +##### various settings ##### + +## Note: Custom command that will be executed each time song changes. Useful for +## notifications etc. +#execute_on_song_change = "" + +## Note: Custom command that will be executed each time player state +## changes. The environment variable MPD_PLAYER_STATE is set to the current +## state (either unknown, play, pause, or stop) for its duration. +#execute_on_player_state_change = "" + +playlist_show_mpd_host = no +playlist_show_remaining_time = no +playlist_shorten_total_times = no +playlist_separate_albums = no + +## Note: Possible display modes: classic, columns. +playlist_display_mode = columns +browser_display_mode = columns +search_engine_display_mode = classic +playlist_editor_display_mode = classic + +discard_colors_if_item_is_selected = no +incremental_seeking = yes +seek_time = 1 +volume_change_step = 2 +autocenter_mode = no +centered_cursor = yes + +## Note: You can specify third character which will be used to build 'empty' +## part of progressbar. +progressbar_look = ―― + +## Available values: database, playlist. +#default_place_to_search_in = database + +## Available values: classic, alternative. +user_interface = classic + +#data_fetching_delay = yes + +## Available values: artist, album_artist, date, genre, composer, performer. +media_library_primary_tag = album_artist + +media_library_albums_split_by_date = no + +## Available values: wrapped, normal. + +#default_find_mode = wrapped + +#default_tag_editor_pattern = %n - %t + +header_visibility = no +statusbar_visibility = yes +titles_visibility = yes +header_text_scrolling = yes +cyclic_scrolling = no +lines_scrolled = 2 + +lyrics_fetchers = tekstowo, lyricwiki, azlyrics, genius, sing365, lyricsmania, metrolyrics, justsomelyrics, jahlyrics, plyrics, internet +follow_now_playing_lyrics = yes +fetch_lyrics_for_current_song_in_background = no + +allow_for_physical_item_deletion = no + +## Note: If you set this variable, ncmpcpp will try to get info from last.fm in +## language you set and if it fails, it will fall back to english. Otherwise it +## will use english the first time. +## +## Note: Language has to be expressed as an ISO 639 alpha-2 code. +## +#lastfm_preferred_language = en +# +#space_add_mode = add_remove +# +#show_hidden_files_in_local_browser = no +# +## +## How shall screen switcher work? +## +## - "previous" - switch between the current and previous screen. +## - "screen1,...,screenN" - switch between given sequence of screens. +## +## Screens available for use: help, playlist, browser, search_engine, +## media_library, playlist_editor, tag_editor, outputs, visualizer, clock, +## lyrics, last_fm. +## +#screen_switcher_mode = playlist, browser + +## Note: You can define startup screen by choosing screen from the list above. +startup_screen = playlist + +jump_to_now_playing_song_at_start = yes +ask_before_clearing_playlists = yes +clock_display_seconds = no +display_volume_level = no +display_bitrate = no +display_remaining_time = no +## Available values: none, basic, extended, perl. +#regular_expressions = perl + +## Note: if below is enabled, ncmpcpp will ignore leading "The" word while +## sorting items in browser, tags in media library, etc. +ignore_leading_the = yes + +ignore_diacritics = yes +#block_search_constraints_change_if_items_found = yes +mouse_support = yes +mouse_list_scroll_whole_page = no +#empty_tag_marker = +#tags_separator = " | " +#tag_editor_extended_numeration = no +#media_library_sort_by_mtime = no +enable_window_title = yes + +## +## Note: You can choose default search mode for search engine. Available modes +## are: +## +## - 1 - use mpd built-in searching (no regexes, pattern matching) +## +## - 2 - use ncmpcpp searching (pattern matching with support for regexes, but +## if your mpd is on a remote machine, downloading big database to process +## it can take a while +## +## - 3 - match only exact values (this mode uses mpd function for searching in +## database and local one for searching in current playlist) +## +# +search_engine_default_search_mode = 1 + +external_editor = nvim +## Note: set to yes if external editor is a console application. +use_console_editor = yes + +##### colors definitions ##### +## +## It is possible to set a background color by setting a color value +## "_", e.g. red_black will set foregound color to red +## and background color to black. +## +## In addition, for terminals that support 256 colors it is possible to set one +## of them by using a number in range [1, 256] instead of color name, +## e.g. numerical value corresponding to red_black is 2_1. To find out if the +## terminal supports 256 colors, run ncmpcpp and check out the bottom of the +## help screen for list of available colors and their numerical values. +## +## What is more, there are two special values for the background color: +## "transparent" and "current". The first one explicitly sets the background to +## be transparent, while the second one allows you to preserve current +## background color and change only the foreground one. It's used implicitly +## when background color is not specified. +## +## Moreover, it is possible to attach format information to selected color +## variables by appending to their end a colon followed by one or more format +## flags, e.g. black:b or red:ur. The following variables support this syntax: +## visualizer_color, color1, color2, empty_tag_color, volume_color, +## state_line_color, state_flags_color, progressbar_color, +## progressbar_elapsed_color, player_state_color, statusbar_time_color, +## alternative_ui_separator_color. +## +## Note: due to technical limitations of older ncurses version, if 256 colors +## are used there is a possibility that you'll be able to use only colors with +## transparent background. + +colors_enabled = yes +empty_tag_color = magenta +header_window_color = blue +volume_color = default +state_line_color = default +state_flags_color = default:b +main_window_color = blue +color1 = blue +color2 = magenta +progressbar_color = black:b +progressbar_elapsed_color = blue:b +statusbar_color = blue +statusbar_time_color = blue +player_state_color = default:b +alternative_ui_separator_color = blue +window_border_color = blue +active_window_border = blue diff --git a/.config/ncmpcpp/error.log b/.config/ncmpcpp/error.log new file mode 100644 index 0000000..e69de29 diff --git a/.config/nvim/autoload/plug.vim b/.config/nvim/autoload/plug.vim new file mode 100644 index 0000000..bfafbfb --- /dev/null +++ b/.config/nvim/autoload/plug.vim @@ -0,0 +1,2526 @@ +" vim-plug: Vim plugin manager +" ============================ +" +" Download plug.vim and put it in ~/.vim/autoload +" +" curl -fLo ~/.vim/autoload/plug.vim --create-dirs \ +" https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim +" +" Edit your .vimrc +" +" call plug#begin('~/.vim/plugged') +" +" " Make sure you use single quotes +" +" " Shorthand notation; fetches https://github.com/junegunn/vim-easy-align +" Plug 'junegunn/vim-easy-align' +" +" " Any valid git URL is allowed +" Plug 'https://github.com/junegunn/vim-github-dashboard.git' +" +" " Multiple Plug commands can be written in a single line using | separators +" Plug 'SirVer/ultisnips' | Plug 'honza/vim-snippets' +" +" " On-demand loading +" Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' } +" Plug 'tpope/vim-fireplace', { 'for': 'clojure' } +" +" " Using a non-master branch +" Plug 'rdnetto/YCM-Generator', { 'branch': 'stable' } +" +" " Using a tagged release; wildcard allowed (requires git 1.9.2 or above) +" Plug 'fatih/vim-go', { 'tag': '*' } +" +" " Plugin options +" Plug 'nsf/gocode', { 'tag': 'v.20150303', 'rtp': 'vim' } +" +" " Plugin outside ~/.vim/plugged with post-update hook +" Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' } +" +" " Unmanaged plugin (manually installed and updated) +" Plug '~/my-prototype-plugin' +" +" " Initialize plugin system +" call plug#end() +" +" Then reload .vimrc and :PlugInstall to install plugins. +" +" Plug options: +" +"| Option | Description | +"| ----------------------- | ------------------------------------------------ | +"| `branch`/`tag`/`commit` | Branch/tag/commit of the repository to use | +"| `rtp` | Subdirectory that contains Vim plugin | +"| `dir` | Custom directory for the plugin | +"| `as` | Use different name for the plugin | +"| `do` | Post-update hook (string or funcref) | +"| `on` | On-demand loading: Commands or ``-mappings | +"| `for` | On-demand loading: File types | +"| `frozen` | Do not update unless explicitly specified | +" +" More information: https://github.com/junegunn/vim-plug +" +" +" Copyright (c) 2017 Junegunn Choi +" +" MIT License +" +" Permission is hereby granted, free of charge, to any person obtaining +" a copy of this software and associated documentation files (the +" "Software"), to deal in the Software without restriction, including +" without limitation the rights to use, copy, modify, merge, publish, +" distribute, sublicense, and/or sell copies of the Software, and to +" permit persons to whom the Software is furnished to do so, subject to +" the following conditions: +" +" The above copyright notice and this permission notice shall be +" included in all copies or substantial portions of the Software. +" +" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +" EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +" MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +" NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +" LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +" OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +" WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +if exists('g:loaded_plug') + finish +endif +let g:loaded_plug = 1 + +let s:cpo_save = &cpo +set cpo&vim + +let s:plug_src = 'https://github.com/junegunn/vim-plug.git' +let s:plug_tab = get(s:, 'plug_tab', -1) +let s:plug_buf = get(s:, 'plug_buf', -1) +let s:mac_gui = has('gui_macvim') && has('gui_running') +let s:is_win = has('win32') +let s:nvim = has('nvim-0.2') || (has('nvim') && exists('*jobwait') && !s:is_win) +let s:vim8 = has('patch-8.0.0039') && exists('*job_start') +let s:me = resolve(expand(':p')) +let s:base_spec = { 'branch': 'master', 'frozen': 0 } +let s:TYPE = { +\ 'string': type(''), +\ 'list': type([]), +\ 'dict': type({}), +\ 'funcref': type(function('call')) +\ } +let s:loaded = get(s:, 'loaded', {}) +let s:triggers = get(s:, 'triggers', {}) + +function! plug#begin(...) + if a:0 > 0 + let s:plug_home_org = a:1 + let home = s:path(fnamemodify(expand(a:1), ':p')) + elseif exists('g:plug_home') + let home = s:path(g:plug_home) + elseif !empty(&rtp) + let home = s:path(split(&rtp, ',')[0]) . '/plugged' + else + return s:err('Unable to determine plug home. Try calling plug#begin() with a path argument.') + endif + if fnamemodify(home, ':t') ==# 'plugin' && fnamemodify(home, ':h') ==# s:first_rtp + return s:err('Invalid plug home. '.home.' is a standard Vim runtime path and is not allowed.') + endif + + let g:plug_home = home + let g:plugs = {} + let g:plugs_order = [] + let s:triggers = {} + + call s:define_commands() + return 1 +endfunction + +function! s:define_commands() + command! -nargs=+ -bar Plug call plug#() + if !executable('git') + return s:err('`git` executable not found. Most commands will not be available. To suppress this message, prepend `silent!` to `call plug#begin(...)`.') + endif + command! -nargs=* -bar -bang -complete=customlist,s:names PlugInstall call s:install(0, []) + command! -nargs=* -bar -bang -complete=customlist,s:names PlugUpdate call s:update(0, []) + command! -nargs=0 -bar -bang PlugClean call s:clean(0) + command! -nargs=0 -bar PlugUpgrade if s:upgrade() | execute 'source' s:esc(s:me) | endif + command! -nargs=0 -bar PlugStatus call s:status() + command! -nargs=0 -bar PlugDiff call s:diff() + command! -nargs=? -bar -bang -complete=file PlugSnapshot call s:snapshot(0, ) +endfunction + +function! s:to_a(v) + return type(a:v) == s:TYPE.list ? a:v : [a:v] +endfunction + +function! s:to_s(v) + return type(a:v) == s:TYPE.string ? a:v : join(a:v, "\n") . "\n" +endfunction + +function! s:glob(from, pattern) + return s:lines(globpath(a:from, a:pattern)) +endfunction + +function! s:source(from, ...) + let found = 0 + for pattern in a:000 + for vim in s:glob(a:from, pattern) + execute 'source' s:esc(vim) + let found = 1 + endfor + endfor + return found +endfunction + +function! s:assoc(dict, key, val) + let a:dict[a:key] = add(get(a:dict, a:key, []), a:val) +endfunction + +function! s:ask(message, ...) + call inputsave() + echohl WarningMsg + let answer = input(a:message.(a:0 ? ' (y/N/a) ' : ' (y/N) ')) + echohl None + call inputrestore() + echo "\r" + return (a:0 && answer =~? '^a') ? 2 : (answer =~? '^y') ? 1 : 0 +endfunction + +function! s:ask_no_interrupt(...) + try + return call('s:ask', a:000) + catch + return 0 + endtry +endfunction + +function! s:lazy(plug, opt) + return has_key(a:plug, a:opt) && + \ (empty(s:to_a(a:plug[a:opt])) || + \ !isdirectory(a:plug.dir) || + \ len(s:glob(s:rtp(a:plug), 'plugin')) || + \ len(s:glob(s:rtp(a:plug), 'after/plugin'))) +endfunction + +function! plug#end() + if !exists('g:plugs') + return s:err('Call plug#begin() first') + endif + + if exists('#PlugLOD') + augroup PlugLOD + autocmd! + augroup END + augroup! PlugLOD + endif + let lod = { 'ft': {}, 'map': {}, 'cmd': {} } + + if exists('g:did_load_filetypes') + filetype off + endif + for name in g:plugs_order + if !has_key(g:plugs, name) + continue + endif + let plug = g:plugs[name] + if get(s:loaded, name, 0) || !s:lazy(plug, 'on') && !s:lazy(plug, 'for') + let s:loaded[name] = 1 + continue + endif + + if has_key(plug, 'on') + let s:triggers[name] = { 'map': [], 'cmd': [] } + for cmd in s:to_a(plug.on) + if cmd =~? '^.\+' + if empty(mapcheck(cmd)) && empty(mapcheck(cmd, 'i')) + call s:assoc(lod.map, cmd, name) + endif + call add(s:triggers[name].map, cmd) + elseif cmd =~# '^[A-Z]' + let cmd = substitute(cmd, '!*$', '', '') + if exists(':'.cmd) != 2 + call s:assoc(lod.cmd, cmd, name) + endif + call add(s:triggers[name].cmd, cmd) + else + call s:err('Invalid `on` option: '.cmd. + \ '. Should start with an uppercase letter or ``.') + endif + endfor + endif + + if has_key(plug, 'for') + let types = s:to_a(plug.for) + if !empty(types) + augroup filetypedetect + call s:source(s:rtp(plug), 'ftdetect/**/*.vim', 'after/ftdetect/**/*.vim') + augroup END + endif + for type in types + call s:assoc(lod.ft, type, name) + endfor + endif + endfor + + for [cmd, names] in items(lod.cmd) + execute printf( + \ 'command! -nargs=* -range -bang -complete=file %s call s:lod_cmd(%s, "", , , , %s)', + \ cmd, string(cmd), string(names)) + endfor + + for [map, names] in items(lod.map) + for [mode, map_prefix, key_prefix] in + \ [['i', '', ''], ['n', '', ''], ['v', '', 'gv'], ['o', '', '']] + execute printf( + \ '%snoremap %s %s:call lod_map(%s, %s, %s, "%s")', + \ mode, map, map_prefix, string(map), string(names), mode != 'i', key_prefix) + endfor + endfor + + for [ft, names] in items(lod.ft) + augroup PlugLOD + execute printf('autocmd FileType %s call lod_ft(%s, %s)', + \ ft, string(ft), string(names)) + augroup END + endfor + + call s:reorg_rtp() + filetype plugin indent on + if has('vim_starting') + if has('syntax') && !exists('g:syntax_on') + syntax enable + end + else + call s:reload_plugins() + endif +endfunction + +function! s:loaded_names() + return filter(copy(g:plugs_order), 'get(s:loaded, v:val, 0)') +endfunction + +function! s:load_plugin(spec) + call s:source(s:rtp(a:spec), 'plugin/**/*.vim', 'after/plugin/**/*.vim') +endfunction + +function! s:reload_plugins() + for name in s:loaded_names() + call s:load_plugin(g:plugs[name]) + endfor +endfunction + +function! s:trim(str) + return substitute(a:str, '[\/]\+$', '', '') +endfunction + +function! s:version_requirement(val, min) + for idx in range(0, len(a:min) - 1) + let v = get(a:val, idx, 0) + if v < a:min[idx] | return 0 + elseif v > a:min[idx] | return 1 + endif + endfor + return 1 +endfunction + +function! s:git_version_requirement(...) + if !exists('s:git_version') + let s:git_version = map(split(split(s:system('git --version'))[2], '\.'), 'str2nr(v:val)') + endif + return s:version_requirement(s:git_version, a:000) +endfunction + +function! s:progress_opt(base) + return a:base && !s:is_win && + \ s:git_version_requirement(1, 7, 1) ? '--progress' : '' +endfunction + +if s:is_win + function! s:rtp(spec) + return s:path(a:spec.dir . get(a:spec, 'rtp', '')) + endfunction + + function! s:path(path) + return s:trim(substitute(a:path, '/', '\', 'g')) + endfunction + + function! s:dirpath(path) + return s:path(a:path) . '\' + endfunction + + function! s:is_local_plug(repo) + return a:repo =~? '^[a-z]:\|^[%~]' + endfunction +else + function! s:rtp(spec) + return s:dirpath(a:spec.dir . get(a:spec, 'rtp', '')) + endfunction + + function! s:path(path) + return s:trim(a:path) + endfunction + + function! s:dirpath(path) + return substitute(a:path, '[/\\]*$', '/', '') + endfunction + + function! s:is_local_plug(repo) + return a:repo[0] =~ '[/$~]' + endfunction +endif + +function! s:err(msg) + echohl ErrorMsg + echom '[vim-plug] '.a:msg + echohl None +endfunction + +function! s:warn(cmd, msg) + echohl WarningMsg + execute a:cmd 'a:msg' + echohl None +endfunction + +function! s:esc(path) + return escape(a:path, ' ') +endfunction + +function! s:escrtp(path) + return escape(a:path, ' ,') +endfunction + +function! s:remove_rtp() + for name in s:loaded_names() + let rtp = s:rtp(g:plugs[name]) + execute 'set rtp-='.s:escrtp(rtp) + let after = globpath(rtp, 'after') + if isdirectory(after) + execute 'set rtp-='.s:escrtp(after) + endif + endfor +endfunction + +function! s:reorg_rtp() + if !empty(s:first_rtp) + execute 'set rtp-='.s:first_rtp + execute 'set rtp-='.s:last_rtp + endif + + " &rtp is modified from outside + if exists('s:prtp') && s:prtp !=# &rtp + call s:remove_rtp() + unlet! s:middle + endif + + let s:middle = get(s:, 'middle', &rtp) + let rtps = map(s:loaded_names(), 's:rtp(g:plugs[v:val])') + let afters = filter(map(copy(rtps), 'globpath(v:val, "after")'), '!empty(v:val)') + let rtp = join(map(rtps, 'escape(v:val, ",")'), ',') + \ . ','.s:middle.',' + \ . join(map(afters, 'escape(v:val, ",")'), ',') + let &rtp = substitute(substitute(rtp, ',,*', ',', 'g'), '^,\|,$', '', 'g') + let s:prtp = &rtp + + if !empty(s:first_rtp) + execute 'set rtp^='.s:first_rtp + execute 'set rtp+='.s:last_rtp + endif +endfunction + +function! s:doautocmd(...) + if exists('#'.join(a:000, '#')) + execute 'doautocmd' ((v:version > 703 || has('patch442')) ? '' : '') join(a:000) + endif +endfunction + +function! s:dobufread(names) + for name in a:names + let path = s:rtp(g:plugs[name]) + for dir in ['ftdetect', 'ftplugin', 'after/ftdetect', 'after/ftplugin'] + if len(finddir(dir, path)) + if exists('#BufRead') + doautocmd BufRead + endif + return + endif + endfor + endfor +endfunction + +function! plug#load(...) + if a:0 == 0 + return s:err('Argument missing: plugin name(s) required') + endif + if !exists('g:plugs') + return s:err('plug#begin was not called') + endif + let names = a:0 == 1 && type(a:1) == s:TYPE.list ? a:1 : a:000 + let unknowns = filter(copy(names), '!has_key(g:plugs, v:val)') + if !empty(unknowns) + let s = len(unknowns) > 1 ? 's' : '' + return s:err(printf('Unknown plugin%s: %s', s, join(unknowns, ', '))) + end + let unloaded = filter(copy(names), '!get(s:loaded, v:val, 0)') + if !empty(unloaded) + for name in unloaded + call s:lod([name], ['ftdetect', 'after/ftdetect', 'plugin', 'after/plugin']) + endfor + call s:dobufread(unloaded) + return 1 + end + return 0 +endfunction + +function! s:remove_triggers(name) + if !has_key(s:triggers, a:name) + return + endif + for cmd in s:triggers[a:name].cmd + execute 'silent! delc' cmd + endfor + for map in s:triggers[a:name].map + execute 'silent! unmap' map + execute 'silent! iunmap' map + endfor + call remove(s:triggers, a:name) +endfunction + +function! s:lod(names, types, ...) + for name in a:names + call s:remove_triggers(name) + let s:loaded[name] = 1 + endfor + call s:reorg_rtp() + + for name in a:names + let rtp = s:rtp(g:plugs[name]) + for dir in a:types + call s:source(rtp, dir.'/**/*.vim') + endfor + if a:0 + if !s:source(rtp, a:1) && !empty(s:glob(rtp, a:2)) + execute 'runtime' a:1 + endif + call s:source(rtp, a:2) + endif + call s:doautocmd('User', name) + endfor +endfunction + +function! s:lod_ft(pat, names) + let syn = 'syntax/'.a:pat.'.vim' + call s:lod(a:names, ['plugin', 'after/plugin'], syn, 'after/'.syn) + execute 'autocmd! PlugLOD FileType' a:pat + call s:doautocmd('filetypeplugin', 'FileType') + call s:doautocmd('filetypeindent', 'FileType') +endfunction + +function! s:lod_cmd(cmd, bang, l1, l2, args, names) + call s:lod(a:names, ['ftdetect', 'after/ftdetect', 'plugin', 'after/plugin']) + call s:dobufread(a:names) + execute printf('%s%s%s %s', (a:l1 == a:l2 ? '' : (a:l1.','.a:l2)), a:cmd, a:bang, a:args) +endfunction + +function! s:lod_map(map, names, with_prefix, prefix) + call s:lod(a:names, ['ftdetect', 'after/ftdetect', 'plugin', 'after/plugin']) + call s:dobufread(a:names) + let extra = '' + while 1 + let c = getchar(0) + if c == 0 + break + endif + let extra .= nr2char(c) + endwhile + + if a:with_prefix + let prefix = v:count ? v:count : '' + let prefix .= '"'.v:register.a:prefix + if mode(1) == 'no' + if v:operator == 'c' + let prefix = "\" . prefix + endif + let prefix .= v:operator + endif + call feedkeys(prefix, 'n') + endif + call feedkeys(substitute(a:map, '^', "\", '') . extra) +endfunction + +function! plug#(repo, ...) + if a:0 > 1 + return s:err('Invalid number of arguments (1..2)') + endif + + try + let repo = s:trim(a:repo) + let opts = a:0 == 1 ? s:parse_options(a:1) : s:base_spec + let name = get(opts, 'as', fnamemodify(repo, ':t:s?\.git$??')) + let spec = extend(s:infer_properties(name, repo), opts) + if !has_key(g:plugs, name) + call add(g:plugs_order, name) + endif + let g:plugs[name] = spec + let s:loaded[name] = get(s:loaded, name, 0) + catch + return s:err(v:exception) + endtry +endfunction + +function! s:parse_options(arg) + let opts = copy(s:base_spec) + let type = type(a:arg) + if type == s:TYPE.string + let opts.tag = a:arg + elseif type == s:TYPE.dict + call extend(opts, a:arg) + if has_key(opts, 'dir') + let opts.dir = s:dirpath(expand(opts.dir)) + endif + else + throw 'Invalid argument type (expected: string or dictionary)' + endif + return opts +endfunction + +function! s:infer_properties(name, repo) + let repo = a:repo + if s:is_local_plug(repo) + return { 'dir': s:dirpath(expand(repo)) } + else + if repo =~ ':' + let uri = repo + else + if repo !~ '/' + throw printf('Invalid argument: %s (implicit `vim-scripts'' expansion is deprecated)', repo) + endif + let fmt = get(g:, 'plug_url_format', 'https://git::@github.com/%s.git') + let uri = printf(fmt, repo) + endif + return { 'dir': s:dirpath(g:plug_home.'/'.a:name), 'uri': uri } + endif +endfunction + +function! s:install(force, names) + call s:update_impl(0, a:force, a:names) +endfunction + +function! s:update(force, names) + call s:update_impl(1, a:force, a:names) +endfunction + +function! plug#helptags() + if !exists('g:plugs') + return s:err('plug#begin was not called') + endif + for spec in values(g:plugs) + let docd = join([s:rtp(spec), 'doc'], '/') + if isdirectory(docd) + silent! execute 'helptags' s:esc(docd) + endif + endfor + return 1 +endfunction + +function! s:syntax() + syntax clear + syntax region plug1 start=/\%1l/ end=/\%2l/ contains=plugNumber + syntax region plug2 start=/\%2l/ end=/\%3l/ contains=plugBracket,plugX + syn match plugNumber /[0-9]\+[0-9.]*/ contained + syn match plugBracket /[[\]]/ contained + syn match plugX /x/ contained + syn match plugDash /^-/ + syn match plugPlus /^+/ + syn match plugStar /^*/ + syn match plugMessage /\(^- \)\@<=.*/ + syn match plugName /\(^- \)\@<=[^ ]*:/ + syn match plugSha /\%(: \)\@<=[0-9a-f]\{4,}$/ + syn match plugTag /(tag: [^)]\+)/ + syn match plugInstall /\(^+ \)\@<=[^:]*/ + syn match plugUpdate /\(^* \)\@<=[^:]*/ + syn match plugCommit /^ \X*[0-9a-f]\{7,9} .*/ contains=plugRelDate,plugEdge,plugTag + syn match plugEdge /^ \X\+$/ + syn match plugEdge /^ \X*/ contained nextgroup=plugSha + syn match plugSha /[0-9a-f]\{7,9}/ contained + syn match plugRelDate /([^)]*)$/ contained + syn match plugNotLoaded /(not loaded)$/ + syn match plugError /^x.*/ + syn region plugDeleted start=/^\~ .*/ end=/^\ze\S/ + syn match plugH2 /^.*:\n-\+$/ + syn keyword Function PlugInstall PlugStatus PlugUpdate PlugClean + hi def link plug1 Title + hi def link plug2 Repeat + hi def link plugH2 Type + hi def link plugX Exception + hi def link plugBracket Structure + hi def link plugNumber Number + + hi def link plugDash Special + hi def link plugPlus Constant + hi def link plugStar Boolean + + hi def link plugMessage Function + hi def link plugName Label + hi def link plugInstall Function + hi def link plugUpdate Type + + hi def link plugError Error + hi def link plugDeleted Ignore + hi def link plugRelDate Comment + hi def link plugEdge PreProc + hi def link plugSha Identifier + hi def link plugTag Constant + + hi def link plugNotLoaded Comment +endfunction + +function! s:lpad(str, len) + return a:str . repeat(' ', a:len - len(a:str)) +endfunction + +function! s:lines(msg) + return split(a:msg, "[\r\n]") +endfunction + +function! s:lastline(msg) + return get(s:lines(a:msg), -1, '') +endfunction + +function! s:new_window() + execute get(g:, 'plug_window', 'vertical topleft new') +endfunction + +function! s:plug_window_exists() + let buflist = tabpagebuflist(s:plug_tab) + return !empty(buflist) && index(buflist, s:plug_buf) >= 0 +endfunction + +function! s:switch_in() + if !s:plug_window_exists() + return 0 + endif + + if winbufnr(0) != s:plug_buf + let s:pos = [tabpagenr(), winnr(), winsaveview()] + execute 'normal!' s:plug_tab.'gt' + let winnr = bufwinnr(s:plug_buf) + execute winnr.'wincmd w' + call add(s:pos, winsaveview()) + else + let s:pos = [winsaveview()] + endif + + setlocal modifiable + return 1 +endfunction + +function! s:switch_out(...) + call winrestview(s:pos[-1]) + setlocal nomodifiable + if a:0 > 0 + execute a:1 + endif + + if len(s:pos) > 1 + execute 'normal!' s:pos[0].'gt' + execute s:pos[1] 'wincmd w' + call winrestview(s:pos[2]) + endif +endfunction + +function! s:finish_bindings() + nnoremap R :call retry() + nnoremap D :PlugDiff + nnoremap S :PlugStatus + nnoremap U :call status_update() + xnoremap U :call status_update() + nnoremap ]] :silent! call section('') + nnoremap [[ :silent! call section('b') +endfunction + +function! s:prepare(...) + if empty(getcwd()) + throw 'Invalid current working directory. Cannot proceed.' + endif + + for evar in ['$GIT_DIR', '$GIT_WORK_TREE'] + if exists(evar) + throw evar.' detected. Cannot proceed.' + endif + endfor + + call s:job_abort() + if s:switch_in() + if b:plug_preview == 1 + pc + endif + enew + else + call s:new_window() + endif + + nnoremap q :if b:plug_preview==1pcendifbd + if a:0 == 0 + call s:finish_bindings() + endif + let b:plug_preview = -1 + let s:plug_tab = tabpagenr() + let s:plug_buf = winbufnr(0) + call s:assign_name() + + for k in ['', 'L', 'o', 'X', 'd', 'dd'] + execute 'silent! unmap ' k + endfor + setlocal buftype=nofile bufhidden=wipe nobuflisted nolist noswapfile nowrap cursorline modifiable nospell + if exists('+colorcolumn') + setlocal colorcolumn= + endif + setf vim-plug + if exists('g:syntax_on') + call s:syntax() + endif +endfunction + +function! s:assign_name() + " Assign buffer name + let prefix = '[Plugins]' + let name = prefix + let idx = 2 + while bufexists(name) + let name = printf('%s (%s)', prefix, idx) + let idx = idx + 1 + endwhile + silent! execute 'f' fnameescape(name) +endfunction + +function! s:chsh(swap) + let prev = [&shell, &shellcmdflag, &shellredir] + if s:is_win + set shell=cmd.exe shellcmdflag=/c shellredir=>%s\ 2>&1 + elseif a:swap + set shell=sh shellredir=>%s\ 2>&1 + endif + return prev +endfunction + +function! s:bang(cmd, ...) + try + let [sh, shellcmdflag, shrd] = s:chsh(a:0) + " FIXME: Escaping is incomplete. We could use shellescape with eval, + " but it won't work on Windows. + let cmd = a:0 ? s:with_cd(a:cmd, a:1) : a:cmd + if s:is_win + let batchfile = tempname().'.bat' + call writefile(["@echo off\r", cmd . "\r"], batchfile) + let cmd = s:shellesc(batchfile) + endif + let g:_plug_bang = (s:is_win && has('gui_running') ? 'silent ' : '').'!'.escape(cmd, '#!%') + execute "normal! :execute g:_plug_bang\\" + finally + unlet g:_plug_bang + let [&shell, &shellcmdflag, &shellredir] = [sh, shellcmdflag, shrd] + if s:is_win + call delete(batchfile) + endif + endtry + return v:shell_error ? 'Exit status: ' . v:shell_error : '' +endfunction + +function! s:regress_bar() + let bar = substitute(getline(2)[1:-2], '.*\zs=', 'x', '') + call s:progress_bar(2, bar, len(bar)) +endfunction + +function! s:is_updated(dir) + return !empty(s:system_chomp('git log --pretty=format:"%h" "HEAD...HEAD@{1}"', a:dir)) +endfunction + +function! s:do(pull, force, todo) + for [name, spec] in items(a:todo) + if !isdirectory(spec.dir) + continue + endif + let installed = has_key(s:update.new, name) + let updated = installed ? 0 : + \ (a:pull && index(s:update.errors, name) < 0 && s:is_updated(spec.dir)) + if a:force || installed || updated + execute 'cd' s:esc(spec.dir) + call append(3, '- Post-update hook for '. name .' ... ') + let error = '' + let type = type(spec.do) + if type == s:TYPE.string + if spec.do[0] == ':' + if !get(s:loaded, name, 0) + let s:loaded[name] = 1 + call s:reorg_rtp() + endif + call s:load_plugin(spec) + try + execute spec.do[1:] + catch + let error = v:exception + endtry + if !s:plug_window_exists() + cd - + throw 'Warning: vim-plug was terminated by the post-update hook of '.name + endif + else + let error = s:bang(spec.do) + endif + elseif type == s:TYPE.funcref + try + let status = installed ? 'installed' : (updated ? 'updated' : 'unchanged') + call spec.do({ 'name': name, 'status': status, 'force': a:force }) + catch + let error = v:exception + endtry + else + let error = 'Invalid hook type' + endif + call s:switch_in() + call setline(4, empty(error) ? (getline(4) . 'OK') + \ : ('x' . getline(4)[1:] . error)) + if !empty(error) + call add(s:update.errors, name) + call s:regress_bar() + endif + cd - + endif + endfor +endfunction + +function! s:hash_match(a, b) + return stridx(a:a, a:b) == 0 || stridx(a:b, a:a) == 0 +endfunction + +function! s:checkout(spec) + let sha = a:spec.commit + let output = s:system('git rev-parse HEAD', a:spec.dir) + if !v:shell_error && !s:hash_match(sha, s:lines(output)[0]) + let output = s:system( + \ 'git fetch --depth 999999 && git checkout '.s:esc(sha).' --', a:spec.dir) + endif + return output +endfunction + +function! s:finish(pull) + let new_frozen = len(filter(keys(s:update.new), 'g:plugs[v:val].frozen')) + if new_frozen + let s = new_frozen > 1 ? 's' : '' + call append(3, printf('- Installed %d frozen plugin%s', new_frozen, s)) + endif + call append(3, '- Finishing ... ') | 4 + redraw + call plug#helptags() + call plug#end() + call setline(4, getline(4) . 'Done!') + redraw + let msgs = [] + if !empty(s:update.errors) + call add(msgs, "Press 'R' to retry.") + endif + if a:pull && len(s:update.new) < len(filter(getline(5, '$'), + \ "v:val =~ '^- ' && v:val !~# 'Already up.to.date'")) + call add(msgs, "Press 'D' to see the updated changes.") + endif + echo join(msgs, ' ') + call s:finish_bindings() +endfunction + +function! s:retry() + if empty(s:update.errors) + return + endif + echo + call s:update_impl(s:update.pull, s:update.force, + \ extend(copy(s:update.errors), [s:update.threads])) +endfunction + +function! s:is_managed(name) + return has_key(g:plugs[a:name], 'uri') +endfunction + +function! s:names(...) + return sort(filter(keys(g:plugs), 'stridx(v:val, a:1) == 0 && s:is_managed(v:val)')) +endfunction + +function! s:check_ruby() + silent! ruby require 'thread'; VIM::command("let g:plug_ruby = '#{RUBY_VERSION}'") + if !exists('g:plug_ruby') + redraw! + return s:warn('echom', 'Warning: Ruby interface is broken') + endif + let ruby_version = split(g:plug_ruby, '\.') + unlet g:plug_ruby + return s:version_requirement(ruby_version, [1, 8, 7]) +endfunction + +function! s:update_impl(pull, force, args) abort + let sync = index(a:args, '--sync') >= 0 || has('vim_starting') + let args = filter(copy(a:args), 'v:val != "--sync"') + let threads = (len(args) > 0 && args[-1] =~ '^[1-9][0-9]*$') ? + \ remove(args, -1) : get(g:, 'plug_threads', 16) + + let managed = filter(copy(g:plugs), 's:is_managed(v:key)') + let todo = empty(args) ? filter(managed, '!v:val.frozen || !isdirectory(v:val.dir)') : + \ filter(managed, 'index(args, v:key) >= 0') + + if empty(todo) + return s:warn('echo', 'No plugin to '. (a:pull ? 'update' : 'install')) + endif + + if !s:is_win && s:git_version_requirement(2, 3) + let s:git_terminal_prompt = exists('$GIT_TERMINAL_PROMPT') ? $GIT_TERMINAL_PROMPT : '' + let $GIT_TERMINAL_PROMPT = 0 + for plug in values(todo) + let plug.uri = substitute(plug.uri, + \ '^https://git::@github\.com', 'https://github.com', '') + endfor + endif + + if !isdirectory(g:plug_home) + try + call mkdir(g:plug_home, 'p') + catch + return s:err(printf('Invalid plug directory: %s. '. + \ 'Try to call plug#begin with a valid directory', g:plug_home)) + endtry + endif + + if has('nvim') && !exists('*jobwait') && threads > 1 + call s:warn('echom', '[vim-plug] Update Neovim for parallel installer') + endif + + let use_job = s:nvim || s:vim8 + let python = (has('python') || has('python3')) && !use_job + let ruby = has('ruby') && !use_job && (v:version >= 703 || v:version == 702 && has('patch374')) && !(s:is_win && has('gui_running')) && threads > 1 && s:check_ruby() + + let s:update = { + \ 'start': reltime(), + \ 'all': todo, + \ 'todo': copy(todo), + \ 'errors': [], + \ 'pull': a:pull, + \ 'force': a:force, + \ 'new': {}, + \ 'threads': (python || ruby || use_job) ? min([len(todo), threads]) : 1, + \ 'bar': '', + \ 'fin': 0 + \ } + + call s:prepare(1) + call append(0, ['', '']) + normal! 2G + silent! redraw + + let s:clone_opt = get(g:, 'plug_shallow', 1) ? + \ '--depth 1' . (s:git_version_requirement(1, 7, 10) ? ' --no-single-branch' : '') : '' + + if has('win32unix') + let s:clone_opt .= ' -c core.eol=lf -c core.autocrlf=input' + endif + + let s:submodule_opt = s:git_version_requirement(2, 8) ? ' --jobs='.threads : '' + + " Python version requirement (>= 2.7) + if python && !has('python3') && !ruby && !use_job && s:update.threads > 1 + redir => pyv + silent python import platform; print platform.python_version() + redir END + let python = s:version_requirement( + \ map(split(split(pyv)[0], '\.'), 'str2nr(v:val)'), [2, 6]) + endif + + if (python || ruby) && s:update.threads > 1 + try + let imd = &imd + if s:mac_gui + set noimd + endif + if ruby + call s:update_ruby() + else + call s:update_python() + endif + catch + let lines = getline(4, '$') + let printed = {} + silent! 4,$d _ + for line in lines + let name = s:extract_name(line, '.', '') + if empty(name) || !has_key(printed, name) + call append('$', line) + if !empty(name) + let printed[name] = 1 + if line[0] == 'x' && index(s:update.errors, name) < 0 + call add(s:update.errors, name) + end + endif + endif + endfor + finally + let &imd = imd + call s:update_finish() + endtry + else + call s:update_vim() + while use_job && sync + sleep 100m + if s:update.fin + break + endif + endwhile + endif +endfunction + +function! s:log4(name, msg) + call setline(4, printf('- %s (%s)', a:msg, a:name)) + redraw +endfunction + +function! s:update_finish() + if exists('s:git_terminal_prompt') + let $GIT_TERMINAL_PROMPT = s:git_terminal_prompt + endif + if s:switch_in() + call append(3, '- Updating ...') | 4 + for [name, spec] in items(filter(copy(s:update.all), 'index(s:update.errors, v:key) < 0 && (s:update.force || s:update.pull || has_key(s:update.new, v:key))')) + let [pos, _] = s:logpos(name) + if !pos + continue + endif + if has_key(spec, 'commit') + call s:log4(name, 'Checking out '.spec.commit) + let out = s:checkout(spec) + elseif has_key(spec, 'tag') + let tag = spec.tag + if tag =~ '\*' + let tags = s:lines(s:system('git tag --list '.s:shellesc(tag).' --sort -version:refname 2>&1', spec.dir)) + if !v:shell_error && !empty(tags) + let tag = tags[0] + call s:log4(name, printf('Latest tag for %s -> %s', spec.tag, tag)) + call append(3, '') + endif + endif + call s:log4(name, 'Checking out '.tag) + let out = s:system('git checkout -q '.s:esc(tag).' -- 2>&1', spec.dir) + else + let branch = s:esc(get(spec, 'branch', 'master')) + call s:log4(name, 'Merging origin/'.branch) + let out = s:system('git checkout -q '.branch.' -- 2>&1' + \. (has_key(s:update.new, name) ? '' : ('&& git merge --ff-only origin/'.branch.' 2>&1')), spec.dir) + endif + if !v:shell_error && filereadable(spec.dir.'/.gitmodules') && + \ (s:update.force || has_key(s:update.new, name) || s:is_updated(spec.dir)) + call s:log4(name, 'Updating submodules. This may take a while.') + let out .= s:bang('git submodule update --init --recursive'.s:submodule_opt.' 2>&1', spec.dir) + endif + let msg = s:format_message(v:shell_error ? 'x': '-', name, out) + if v:shell_error + call add(s:update.errors, name) + call s:regress_bar() + silent execute pos 'd _' + call append(4, msg) | 4 + elseif !empty(out) + call setline(pos, msg[0]) + endif + redraw + endfor + silent 4 d _ + try + call s:do(s:update.pull, s:update.force, filter(copy(s:update.all), 'index(s:update.errors, v:key) < 0 && has_key(v:val, "do")')) + catch + call s:warn('echom', v:exception) + call s:warn('echo', '') + return + endtry + call s:finish(s:update.pull) + call setline(1, 'Updated. Elapsed time: ' . split(reltimestr(reltime(s:update.start)))[0] . ' sec.') + call s:switch_out('normal! gg') + endif +endfunction + +function! s:job_abort() + if (!s:nvim && !s:vim8) || !exists('s:jobs') + return + endif + + for [name, j] in items(s:jobs) + if s:nvim + silent! call jobstop(j.jobid) + elseif s:vim8 + silent! call job_stop(j.jobid) + endif + if j.new + call s:system('rm -rf ' . s:shellesc(g:plugs[name].dir)) + endif + endfor + let s:jobs = {} +endfunction + +function! s:last_non_empty_line(lines) + let len = len(a:lines) + for idx in range(len) + let line = a:lines[len-idx-1] + if !empty(line) + return line + endif + endfor + return '' +endfunction + +function! s:job_out_cb(self, data) abort + let self = a:self + let data = remove(self.lines, -1) . a:data + let lines = map(split(data, "\n", 1), 'split(v:val, "\r", 1)[-1]') + call extend(self.lines, lines) + " To reduce the number of buffer updates + let self.tick = get(self, 'tick', -1) + 1 + if !self.running || self.tick % len(s:jobs) == 0 + let bullet = self.running ? (self.new ? '+' : '*') : (self.error ? 'x' : '-') + let result = self.error ? join(self.lines, "\n") : s:last_non_empty_line(self.lines) + call s:log(bullet, self.name, result) + endif +endfunction + +function! s:job_exit_cb(self, data) abort + let a:self.running = 0 + let a:self.error = a:data != 0 + call s:reap(a:self.name) + call s:tick() +endfunction + +function! s:job_cb(fn, job, ch, data) + if !s:plug_window_exists() " plug window closed + return s:job_abort() + endif + call call(a:fn, [a:job, a:data]) +endfunction + +function! s:nvim_cb(job_id, data, event) dict abort + return a:event == 'stdout' ? + \ s:job_cb('s:job_out_cb', self, 0, join(a:data, "\n")) : + \ s:job_cb('s:job_exit_cb', self, 0, a:data) +endfunction + +function! s:spawn(name, cmd, opts) + let job = { 'name': a:name, 'running': 1, 'error': 0, 'lines': [''], + \ 'batchfile': (s:is_win && (s:nvim || s:vim8)) ? tempname().'.bat' : '', + \ 'new': get(a:opts, 'new', 0) } + let s:jobs[a:name] = job + let cmd = has_key(a:opts, 'dir') ? s:with_cd(a:cmd, a:opts.dir) : a:cmd + if !empty(job.batchfile) + call writefile(["@echo off\r", cmd . "\r"], job.batchfile) + let cmd = s:shellesc(job.batchfile) + endif + let argv = add(s:is_win ? ['cmd', '/c'] : ['sh', '-c'], cmd) + + if s:nvim + call extend(job, { + \ 'on_stdout': function('s:nvim_cb'), + \ 'on_exit': function('s:nvim_cb'), + \ }) + let jid = jobstart(argv, job) + if jid > 0 + let job.jobid = jid + else + let job.running = 0 + let job.error = 1 + let job.lines = [jid < 0 ? argv[0].' is not executable' : + \ 'Invalid arguments (or job table is full)'] + endif + elseif s:vim8 + let jid = job_start(s:is_win ? join(argv, ' ') : argv, { + \ 'out_cb': function('s:job_cb', ['s:job_out_cb', job]), + \ 'exit_cb': function('s:job_cb', ['s:job_exit_cb', job]), + \ 'out_mode': 'raw' + \}) + if job_status(jid) == 'run' + let job.jobid = jid + else + let job.running = 0 + let job.error = 1 + let job.lines = ['Failed to start job'] + endif + else + let job.lines = s:lines(call('s:system', [cmd])) + let job.error = v:shell_error != 0 + let job.running = 0 + endif +endfunction + +function! s:reap(name) + let job = s:jobs[a:name] + if job.error + call add(s:update.errors, a:name) + elseif get(job, 'new', 0) + let s:update.new[a:name] = 1 + endif + let s:update.bar .= job.error ? 'x' : '=' + + let bullet = job.error ? 'x' : '-' + let result = job.error ? join(job.lines, "\n") : s:last_non_empty_line(job.lines) + call s:log(bullet, a:name, empty(result) ? 'OK' : result) + call s:bar() + + if has_key(job, 'batchfile') && !empty(job.batchfile) + call delete(job.batchfile) + endif + call remove(s:jobs, a:name) +endfunction + +function! s:bar() + if s:switch_in() + let total = len(s:update.all) + call setline(1, (s:update.pull ? 'Updating' : 'Installing'). + \ ' plugins ('.len(s:update.bar).'/'.total.')') + call s:progress_bar(2, s:update.bar, total) + call s:switch_out() + endif +endfunction + +function! s:logpos(name) + for i in range(4, line('$')) + if getline(i) =~# '^[-+x*] '.a:name.':' + for j in range(i + 1, line('$')) + if getline(j) !~ '^ ' + return [i, j - 1] + endif + endfor + return [i, i] + endif + endfor + return [0, 0] +endfunction + +function! s:log(bullet, name, lines) + if s:switch_in() + let [b, e] = s:logpos(a:name) + if b > 0 + silent execute printf('%d,%d d _', b, e) + if b > winheight('.') + let b = 4 + endif + else + let b = 4 + endif + " FIXME For some reason, nomodifiable is set after :d in vim8 + setlocal modifiable + call append(b - 1, s:format_message(a:bullet, a:name, a:lines)) + call s:switch_out() + endif +endfunction + +function! s:update_vim() + let s:jobs = {} + + call s:bar() + call s:tick() +endfunction + +function! s:tick() + let pull = s:update.pull + let prog = s:progress_opt(s:nvim || s:vim8) +while 1 " Without TCO, Vim stack is bound to explode + if empty(s:update.todo) + if empty(s:jobs) && !s:update.fin + call s:update_finish() + let s:update.fin = 1 + endif + return + endif + + let name = keys(s:update.todo)[0] + let spec = remove(s:update.todo, name) + let new = empty(globpath(spec.dir, '.git', 1)) + + call s:log(new ? '+' : '*', name, pull ? 'Updating ...' : 'Installing ...') + redraw + + let has_tag = has_key(spec, 'tag') + if !new + let [error, _] = s:git_validate(spec, 0) + if empty(error) + if pull + let fetch_opt = (has_tag && !empty(globpath(spec.dir, '.git/shallow'))) ? '--depth 99999999' : '' + call s:spawn(name, printf('git fetch %s %s 2>&1', fetch_opt, prog), { 'dir': spec.dir }) + else + let s:jobs[name] = { 'running': 0, 'lines': ['Already installed'], 'error': 0 } + endif + else + let s:jobs[name] = { 'running': 0, 'lines': s:lines(error), 'error': 1 } + endif + else + call s:spawn(name, + \ printf('git clone %s %s %s %s 2>&1', + \ has_tag ? '' : s:clone_opt, + \ prog, + \ s:shellesc(spec.uri), + \ s:shellesc(s:trim(spec.dir))), { 'new': 1 }) + endif + + if !s:jobs[name].running + call s:reap(name) + endif + if len(s:jobs) >= s:update.threads + break + endif +endwhile +endfunction + +function! s:update_python() +let py_exe = has('python') ? 'python' : 'python3' +execute py_exe "<< EOF" +import datetime +import functools +import os +try: + import queue +except ImportError: + import Queue as queue +import random +import re +import shutil +import signal +import subprocess +import tempfile +import threading as thr +import time +import traceback +import vim + +G_NVIM = vim.eval("has('nvim')") == '1' +G_PULL = vim.eval('s:update.pull') == '1' +G_RETRIES = int(vim.eval('get(g:, "plug_retries", 2)')) + 1 +G_TIMEOUT = int(vim.eval('get(g:, "plug_timeout", 60)')) +G_CLONE_OPT = vim.eval('s:clone_opt') +G_PROGRESS = vim.eval('s:progress_opt(1)') +G_LOG_PROB = 1.0 / int(vim.eval('s:update.threads')) +G_STOP = thr.Event() +G_IS_WIN = vim.eval('s:is_win') == '1' + +class PlugError(Exception): + def __init__(self, msg): + self.msg = msg +class CmdTimedOut(PlugError): + pass +class CmdFailed(PlugError): + pass +class InvalidURI(PlugError): + pass +class Action(object): + INSTALL, UPDATE, ERROR, DONE = ['+', '*', 'x', '-'] + +class Buffer(object): + def __init__(self, lock, num_plugs, is_pull): + self.bar = '' + self.event = 'Updating' if is_pull else 'Installing' + self.lock = lock + self.maxy = int(vim.eval('winheight(".")')) + self.num_plugs = num_plugs + + def __where(self, name): + """ Find first line with name in current buffer. Return line num. """ + found, lnum = False, 0 + matcher = re.compile('^[-+x*] {0}:'.format(name)) + for line in vim.current.buffer: + if matcher.search(line) is not None: + found = True + break + lnum += 1 + + if not found: + lnum = -1 + return lnum + + def header(self): + curbuf = vim.current.buffer + curbuf[0] = self.event + ' plugins ({0}/{1})'.format(len(self.bar), self.num_plugs) + + num_spaces = self.num_plugs - len(self.bar) + curbuf[1] = '[{0}{1}]'.format(self.bar, num_spaces * ' ') + + with self.lock: + vim.command('normal! 2G') + vim.command('redraw') + + def write(self, action, name, lines): + first, rest = lines[0], lines[1:] + msg = ['{0} {1}{2}{3}'.format(action, name, ': ' if first else '', first)] + msg.extend([' ' + line for line in rest]) + + try: + if action == Action.ERROR: + self.bar += 'x' + vim.command("call add(s:update.errors, '{0}')".format(name)) + elif action == Action.DONE: + self.bar += '=' + + curbuf = vim.current.buffer + lnum = self.__where(name) + if lnum != -1: # Found matching line num + del curbuf[lnum] + if lnum > self.maxy and action in set([Action.INSTALL, Action.UPDATE]): + lnum = 3 + else: + lnum = 3 + curbuf.append(msg, lnum) + + self.header() + except vim.error: + pass + +class Command(object): + CD = 'cd /d' if G_IS_WIN else 'cd' + + def __init__(self, cmd, cmd_dir=None, timeout=60, cb=None, clean=None): + self.cmd = cmd + if cmd_dir: + self.cmd = '{0} {1} && {2}'.format(Command.CD, cmd_dir, self.cmd) + self.timeout = timeout + self.callback = cb if cb else (lambda msg: None) + self.clean = clean if clean else (lambda: None) + self.proc = None + + @property + def alive(self): + """ Returns true only if command still running. """ + return self.proc and self.proc.poll() is None + + def execute(self, ntries=3): + """ Execute the command with ntries if CmdTimedOut. + Returns the output of the command if no Exception. + """ + attempt, finished, limit = 0, False, self.timeout + + while not finished: + try: + attempt += 1 + result = self.try_command() + finished = True + return result + except CmdTimedOut: + if attempt != ntries: + self.notify_retry() + self.timeout += limit + else: + raise + + def notify_retry(self): + """ Retry required for command, notify user. """ + for count in range(3, 0, -1): + if G_STOP.is_set(): + raise KeyboardInterrupt + msg = 'Timeout. Will retry in {0} second{1} ...'.format( + count, 's' if count != 1 else '') + self.callback([msg]) + time.sleep(1) + self.callback(['Retrying ...']) + + def try_command(self): + """ Execute a cmd & poll for callback. Returns list of output. + Raises CmdFailed -> return code for Popen isn't 0 + Raises CmdTimedOut -> command exceeded timeout without new output + """ + first_line = True + + try: + tfile = tempfile.NamedTemporaryFile(mode='w+b') + preexec_fn = not G_IS_WIN and os.setsid or None + self.proc = subprocess.Popen(self.cmd, stdout=tfile, + stderr=subprocess.STDOUT, + stdin=subprocess.PIPE, shell=True, + preexec_fn=preexec_fn) + thrd = thr.Thread(target=(lambda proc: proc.wait()), args=(self.proc,)) + thrd.start() + + thread_not_started = True + while thread_not_started: + try: + thrd.join(0.1) + thread_not_started = False + except RuntimeError: + pass + + while self.alive: + if G_STOP.is_set(): + raise KeyboardInterrupt + + if first_line or random.random() < G_LOG_PROB: + first_line = False + line = '' if G_IS_WIN else nonblock_read(tfile.name) + if line: + self.callback([line]) + + time_diff = time.time() - os.path.getmtime(tfile.name) + if time_diff > self.timeout: + raise CmdTimedOut(['Timeout!']) + + thrd.join(0.5) + + tfile.seek(0) + result = [line.decode('utf-8', 'replace').rstrip() for line in tfile] + + if self.proc.returncode != 0: + raise CmdFailed([''] + result) + + return result + except: + self.terminate() + raise + + def terminate(self): + """ Terminate process and cleanup. """ + if self.alive: + if G_IS_WIN: + os.kill(self.proc.pid, signal.SIGINT) + else: + os.killpg(self.proc.pid, signal.SIGTERM) + self.clean() + +class Plugin(object): + def __init__(self, name, args, buf_q, lock): + self.name = name + self.args = args + self.buf_q = buf_q + self.lock = lock + self.tag = args.get('tag', 0) + + def manage(self): + try: + if os.path.exists(self.args['dir']): + self.update() + else: + self.install() + with self.lock: + thread_vim_command("let s:update.new['{0}'] = 1".format(self.name)) + except PlugError as exc: + self.write(Action.ERROR, self.name, exc.msg) + except KeyboardInterrupt: + G_STOP.set() + self.write(Action.ERROR, self.name, ['Interrupted!']) + except: + # Any exception except those above print stack trace + msg = 'Trace:\n{0}'.format(traceback.format_exc().rstrip()) + self.write(Action.ERROR, self.name, msg.split('\n')) + raise + + def install(self): + target = self.args['dir'] + if target[-1] == '\\': + target = target[0:-1] + + def clean(target): + def _clean(): + try: + shutil.rmtree(target) + except OSError: + pass + return _clean + + self.write(Action.INSTALL, self.name, ['Installing ...']) + callback = functools.partial(self.write, Action.INSTALL, self.name) + cmd = 'git clone {0} {1} {2} {3} 2>&1'.format( + '' if self.tag else G_CLONE_OPT, G_PROGRESS, self.args['uri'], + esc(target)) + com = Command(cmd, None, G_TIMEOUT, callback, clean(target)) + result = com.execute(G_RETRIES) + self.write(Action.DONE, self.name, result[-1:]) + + def repo_uri(self): + cmd = 'git rev-parse --abbrev-ref HEAD 2>&1 && git config -f .git/config remote.origin.url' + command = Command(cmd, self.args['dir'], G_TIMEOUT,) + result = command.execute(G_RETRIES) + return result[-1] + + def update(self): + actual_uri = self.repo_uri() + expect_uri = self.args['uri'] + regex = re.compile(r'^(?:\w+://)?(?:[^@/]*@)?([^:/]*(?::[0-9]*)?)[:/](.*?)(?:\.git)?/?$') + ma = regex.match(actual_uri) + mb = regex.match(expect_uri) + if ma is None or mb is None or ma.groups() != mb.groups(): + msg = ['', + 'Invalid URI: {0}'.format(actual_uri), + 'Expected {0}'.format(expect_uri), + 'PlugClean required.'] + raise InvalidURI(msg) + + if G_PULL: + self.write(Action.UPDATE, self.name, ['Updating ...']) + callback = functools.partial(self.write, Action.UPDATE, self.name) + fetch_opt = '--depth 99999999' if self.tag and os.path.isfile(os.path.join(self.args['dir'], '.git/shallow')) else '' + cmd = 'git fetch {0} {1} 2>&1'.format(fetch_opt, G_PROGRESS) + com = Command(cmd, self.args['dir'], G_TIMEOUT, callback) + result = com.execute(G_RETRIES) + self.write(Action.DONE, self.name, result[-1:]) + else: + self.write(Action.DONE, self.name, ['Already installed']) + + def write(self, action, name, msg): + self.buf_q.put((action, name, msg)) + +class PlugThread(thr.Thread): + def __init__(self, tname, args): + super(PlugThread, self).__init__() + self.tname = tname + self.args = args + + def run(self): + thr.current_thread().name = self.tname + buf_q, work_q, lock = self.args + + try: + while not G_STOP.is_set(): + name, args = work_q.get_nowait() + plug = Plugin(name, args, buf_q, lock) + plug.manage() + work_q.task_done() + except queue.Empty: + pass + +class RefreshThread(thr.Thread): + def __init__(self, lock): + super(RefreshThread, self).__init__() + self.lock = lock + self.running = True + + def run(self): + while self.running: + with self.lock: + thread_vim_command('noautocmd normal! a') + time.sleep(0.33) + + def stop(self): + self.running = False + +if G_NVIM: + def thread_vim_command(cmd): + vim.session.threadsafe_call(lambda: vim.command(cmd)) +else: + def thread_vim_command(cmd): + vim.command(cmd) + +def esc(name): + return '"' + name.replace('"', '\"') + '"' + +def nonblock_read(fname): + """ Read a file with nonblock flag. Return the last line. """ + fread = os.open(fname, os.O_RDONLY | os.O_NONBLOCK) + buf = os.read(fread, 100000).decode('utf-8', 'replace') + os.close(fread) + + line = buf.rstrip('\r\n') + left = max(line.rfind('\r'), line.rfind('\n')) + if left != -1: + left += 1 + line = line[left:] + + return line + +def main(): + thr.current_thread().name = 'main' + nthreads = int(vim.eval('s:update.threads')) + plugs = vim.eval('s:update.todo') + mac_gui = vim.eval('s:mac_gui') == '1' + + lock = thr.Lock() + buf = Buffer(lock, len(plugs), G_PULL) + buf_q, work_q = queue.Queue(), queue.Queue() + for work in plugs.items(): + work_q.put(work) + + start_cnt = thr.active_count() + for num in range(nthreads): + tname = 'PlugT-{0:02}'.format(num) + thread = PlugThread(tname, (buf_q, work_q, lock)) + thread.start() + if mac_gui: + rthread = RefreshThread(lock) + rthread.start() + + while not buf_q.empty() or thr.active_count() != start_cnt: + try: + action, name, msg = buf_q.get(True, 0.25) + buf.write(action, name, ['OK'] if not msg else msg) + buf_q.task_done() + except queue.Empty: + pass + except KeyboardInterrupt: + G_STOP.set() + + if mac_gui: + rthread.stop() + rthread.join() + +main() +EOF +endfunction + +function! s:update_ruby() + ruby << EOF + module PlugStream + SEP = ["\r", "\n", nil] + def get_line + buffer = '' + loop do + char = readchar rescue return + if SEP.include? char.chr + buffer << $/ + break + else + buffer << char + end + end + buffer + end + end unless defined?(PlugStream) + + def esc arg + %["#{arg.gsub('"', '\"')}"] + end + + def killall pid + pids = [pid] + if /mswin|mingw|bccwin/ =~ RUBY_PLATFORM + pids.each { |pid| Process.kill 'INT', pid.to_i rescue nil } + else + unless `which pgrep 2> /dev/null`.empty? + children = pids + until children.empty? + children = children.map { |pid| + `pgrep -P #{pid}`.lines.map { |l| l.chomp } + }.flatten + pids += children + end + end + pids.each { |pid| Process.kill 'TERM', pid.to_i rescue nil } + end + end + + def compare_git_uri a, b + regex = %r{^(?:\w+://)?(?:[^@/]*@)?([^:/]*(?::[0-9]*)?)[:/](.*?)(?:\.git)?/?$} + regex.match(a).to_a.drop(1) == regex.match(b).to_a.drop(1) + end + + require 'thread' + require 'fileutils' + require 'timeout' + running = true + iswin = VIM::evaluate('s:is_win').to_i == 1 + pull = VIM::evaluate('s:update.pull').to_i == 1 + base = VIM::evaluate('g:plug_home') + all = VIM::evaluate('s:update.todo') + limit = VIM::evaluate('get(g:, "plug_timeout", 60)') + tries = VIM::evaluate('get(g:, "plug_retries", 2)') + 1 + nthr = VIM::evaluate('s:update.threads').to_i + maxy = VIM::evaluate('winheight(".")').to_i + vim7 = VIM::evaluate('v:version').to_i <= 703 && RUBY_PLATFORM =~ /darwin/ + cd = iswin ? 'cd /d' : 'cd' + tot = VIM::evaluate('len(s:update.todo)') || 0 + bar = '' + skip = 'Already installed' + mtx = Mutex.new + take1 = proc { mtx.synchronize { running && all.shift } } + logh = proc { + cnt = bar.length + $curbuf[1] = "#{pull ? 'Updating' : 'Installing'} plugins (#{cnt}/#{tot})" + $curbuf[2] = '[' + bar.ljust(tot) + ']' + VIM::command('normal! 2G') + VIM::command('redraw') + } + where = proc { |name| (1..($curbuf.length)).find { |l| $curbuf[l] =~ /^[-+x*] #{name}:/ } } + log = proc { |name, result, type| + mtx.synchronize do + ing = ![true, false].include?(type) + bar += type ? '=' : 'x' unless ing + b = case type + when :install then '+' when :update then '*' + when true, nil then '-' else + VIM::command("call add(s:update.errors, '#{name}')") + 'x' + end + result = + if type || type.nil? + ["#{b} #{name}: #{result.lines.to_a.last || 'OK'}"] + elsif result =~ /^Interrupted|^Timeout/ + ["#{b} #{name}: #{result}"] + else + ["#{b} #{name}"] + result.lines.map { |l| " " << l } + end + if lnum = where.call(name) + $curbuf.delete lnum + lnum = 4 if ing && lnum > maxy + end + result.each_with_index do |line, offset| + $curbuf.append((lnum || 4) - 1 + offset, line.gsub(/\e\[./, '').chomp) + end + logh.call + end + } + bt = proc { |cmd, name, type, cleanup| + tried = timeout = 0 + begin + tried += 1 + timeout += limit + fd = nil + data = '' + if iswin + Timeout::timeout(timeout) do + tmp = VIM::evaluate('tempname()') + system("(#{cmd}) > #{tmp}") + data = File.read(tmp).chomp + File.unlink tmp rescue nil + end + else + fd = IO.popen(cmd).extend(PlugStream) + first_line = true + log_prob = 1.0 / nthr + while line = Timeout::timeout(timeout) { fd.get_line } + data << line + log.call name, line.chomp, type if name && (first_line || rand < log_prob) + first_line = false + end + fd.close + end + [$? == 0, data.chomp] + rescue Timeout::Error, Interrupt => e + if fd && !fd.closed? + killall fd.pid + fd.close + end + cleanup.call if cleanup + if e.is_a?(Timeout::Error) && tried < tries + 3.downto(1) do |countdown| + s = countdown > 1 ? 's' : '' + log.call name, "Timeout. Will retry in #{countdown} second#{s} ...", type + sleep 1 + end + log.call name, 'Retrying ...', type + retry + end + [false, e.is_a?(Interrupt) ? "Interrupted!" : "Timeout!"] + end + } + main = Thread.current + threads = [] + watcher = Thread.new { + if vim7 + while VIM::evaluate('getchar(1)') + sleep 0.1 + end + else + require 'io/console' # >= Ruby 1.9 + nil until IO.console.getch == 3.chr + end + mtx.synchronize do + running = false + threads.each { |t| t.raise Interrupt } unless vim7 + end + threads.each { |t| t.join rescue nil } + main.kill + } + refresh = Thread.new { + while true + mtx.synchronize do + break unless running + VIM::command('noautocmd normal! a') + end + sleep 0.2 + end + } if VIM::evaluate('s:mac_gui') == 1 + + clone_opt = VIM::evaluate('s:clone_opt') + progress = VIM::evaluate('s:progress_opt(1)') + nthr.times do + mtx.synchronize do + threads << Thread.new { + while pair = take1.call + name = pair.first + dir, uri, tag = pair.last.values_at *%w[dir uri tag] + exists = File.directory? dir + ok, result = + if exists + chdir = "#{cd} #{iswin ? dir : esc(dir)}" + ret, data = bt.call "#{chdir} && git rev-parse --abbrev-ref HEAD 2>&1 && git config -f .git/config remote.origin.url", nil, nil, nil + current_uri = data.lines.to_a.last + if !ret + if data =~ /^Interrupted|^Timeout/ + [false, data] + else + [false, [data.chomp, "PlugClean required."].join($/)] + end + elsif !compare_git_uri(current_uri, uri) + [false, ["Invalid URI: #{current_uri}", + "Expected: #{uri}", + "PlugClean required."].join($/)] + else + if pull + log.call name, 'Updating ...', :update + fetch_opt = (tag && File.exist?(File.join(dir, '.git/shallow'))) ? '--depth 99999999' : '' + bt.call "#{chdir} && git fetch #{fetch_opt} #{progress} 2>&1", name, :update, nil + else + [true, skip] + end + end + else + d = esc dir.sub(%r{[\\/]+$}, '') + log.call name, 'Installing ...', :install + bt.call "git clone #{clone_opt unless tag} #{progress} #{uri} #{d} 2>&1", name, :install, proc { + FileUtils.rm_rf dir + } + end + mtx.synchronize { VIM::command("let s:update.new['#{name}'] = 1") } if !exists && ok + log.call name, result, ok + end + } if running + end + end + threads.each { |t| t.join rescue nil } + logh.call + refresh.kill if refresh + watcher.kill +EOF +endfunction + +function! s:shellesc_cmd(arg) + let escaped = substitute(a:arg, '[&|<>()@^]', '^&', 'g') + let escaped = substitute(escaped, '%', '%%', 'g') + let escaped = substitute(escaped, '"', '\\^&', 'g') + let escaped = substitute(escaped, '\(\\\+\)\(\\^\)', '\1\1\2', 'g') + return '^"'.substitute(escaped, '\(\\\+\)$', '\1\1', '').'^"' +endfunction + +function! s:shellesc(arg) + if &shell =~# 'cmd.exe$' + return s:shellesc_cmd(a:arg) + endif + return shellescape(a:arg) +endfunction + +function! s:glob_dir(path) + return map(filter(s:glob(a:path, '**'), 'isdirectory(v:val)'), 's:dirpath(v:val)') +endfunction + +function! s:progress_bar(line, bar, total) + call setline(a:line, '[' . s:lpad(a:bar, a:total) . ']') +endfunction + +function! s:compare_git_uri(a, b) + " See `git help clone' + " https:// [user@] github.com[:port] / junegunn/vim-plug [.git] + " [git@] github.com[:port] : junegunn/vim-plug [.git] + " file:// / junegunn/vim-plug [/] + " / junegunn/vim-plug [/] + let pat = '^\%(\w\+://\)\='.'\%([^@/]*@\)\='.'\([^:/]*\%(:[0-9]*\)\=\)'.'[:/]'.'\(.\{-}\)'.'\%(\.git\)\=/\?$' + let ma = matchlist(a:a, pat) + let mb = matchlist(a:b, pat) + return ma[1:2] ==# mb[1:2] +endfunction + +function! s:format_message(bullet, name, message) + if a:bullet != 'x' + return [printf('%s %s: %s', a:bullet, a:name, s:lastline(a:message))] + else + let lines = map(s:lines(a:message), '" ".v:val') + return extend([printf('x %s:', a:name)], lines) + endif +endfunction + +function! s:with_cd(cmd, dir) + return printf('cd%s %s && %s', s:is_win ? ' /d' : '', s:shellesc(a:dir), a:cmd) +endfunction + +function! s:system(cmd, ...) + try + let [sh, shellcmdflag, shrd] = s:chsh(1) + let cmd = a:0 > 0 ? s:with_cd(a:cmd, a:1) : a:cmd + if s:is_win + let batchfile = tempname().'.bat' + call writefile(["@echo off\r", cmd . "\r"], batchfile) + let cmd = s:shellesc(batchfile) + endif + return system(cmd) + finally + let [&shell, &shellcmdflag, &shellredir] = [sh, shellcmdflag, shrd] + if s:is_win + call delete(batchfile) + endif + endtry +endfunction + +function! s:system_chomp(...) + let ret = call('s:system', a:000) + return v:shell_error ? '' : substitute(ret, '\n$', '', '') +endfunction + +function! s:git_validate(spec, check_branch) + let err = '' + if isdirectory(a:spec.dir) + let result = s:lines(s:system('git rev-parse --abbrev-ref HEAD 2>&1 && git config -f .git/config remote.origin.url', a:spec.dir)) + let remote = result[-1] + if v:shell_error + let err = join([remote, 'PlugClean required.'], "\n") + elseif !s:compare_git_uri(remote, a:spec.uri) + let err = join(['Invalid URI: '.remote, + \ 'Expected: '.a:spec.uri, + \ 'PlugClean required.'], "\n") + elseif a:check_branch && has_key(a:spec, 'commit') + let result = s:lines(s:system('git rev-parse HEAD 2>&1', a:spec.dir)) + let sha = result[-1] + if v:shell_error + let err = join(add(result, 'PlugClean required.'), "\n") + elseif !s:hash_match(sha, a:spec.commit) + let err = join([printf('Invalid HEAD (expected: %s, actual: %s)', + \ a:spec.commit[:6], sha[:6]), + \ 'PlugUpdate required.'], "\n") + endif + elseif a:check_branch + let branch = result[0] + " Check tag + if has_key(a:spec, 'tag') + let tag = s:system_chomp('git describe --exact-match --tags HEAD 2>&1', a:spec.dir) + if a:spec.tag !=# tag && a:spec.tag !~ '\*' + let err = printf('Invalid tag: %s (expected: %s). Try PlugUpdate.', + \ (empty(tag) ? 'N/A' : tag), a:spec.tag) + endif + " Check branch + elseif a:spec.branch !=# branch + let err = printf('Invalid branch: %s (expected: %s). Try PlugUpdate.', + \ branch, a:spec.branch) + endif + if empty(err) + let [ahead, behind] = split(s:lastline(s:system(printf( + \ 'git rev-list --count --left-right HEAD...origin/%s', + \ a:spec.branch), a:spec.dir)), '\t') + if !v:shell_error && ahead + if behind + " Only mention PlugClean if diverged, otherwise it's likely to be + " pushable (and probably not that messed up). + let err = printf( + \ "Diverged from origin/%s (%d commit(s) ahead and %d commit(s) behind!\n" + \ .'Backup local changes and run PlugClean and PlugUpdate to reinstall it.', a:spec.branch, ahead, behind) + else + let err = printf("Ahead of origin/%s by %d commit(s).\n" + \ .'Cannot update until local changes are pushed.', + \ a:spec.branch, ahead) + endif + endif + endif + endif + else + let err = 'Not found' + endif + return [err, err =~# 'PlugClean'] +endfunction + +function! s:rm_rf(dir) + if isdirectory(a:dir) + call s:system((s:is_win ? 'rmdir /S /Q ' : 'rm -rf ') . s:shellesc(a:dir)) + endif +endfunction + +function! s:clean(force) + call s:prepare() + call append(0, 'Searching for invalid plugins in '.g:plug_home) + call append(1, '') + + " List of valid directories + let dirs = [] + let errs = {} + let [cnt, total] = [0, len(g:plugs)] + for [name, spec] in items(g:plugs) + if !s:is_managed(name) + call add(dirs, spec.dir) + else + let [err, clean] = s:git_validate(spec, 1) + if clean + let errs[spec.dir] = s:lines(err)[0] + else + call add(dirs, spec.dir) + endif + endif + let cnt += 1 + call s:progress_bar(2, repeat('=', cnt), total) + normal! 2G + redraw + endfor + + let allowed = {} + for dir in dirs + let allowed[s:dirpath(fnamemodify(dir, ':h:h'))] = 1 + let allowed[dir] = 1 + for child in s:glob_dir(dir) + let allowed[child] = 1 + endfor + endfor + + let todo = [] + let found = sort(s:glob_dir(g:plug_home)) + while !empty(found) + let f = remove(found, 0) + if !has_key(allowed, f) && isdirectory(f) + call add(todo, f) + call append(line('$'), '- ' . f) + if has_key(errs, f) + call append(line('$'), ' ' . errs[f]) + endif + let found = filter(found, 'stridx(v:val, f) != 0') + end + endwhile + + 4 + redraw + if empty(todo) + call append(line('$'), 'Already clean.') + else + let s:clean_count = 0 + call append(3, ['Directories to delete:', '']) + redraw! + if a:force || s:ask_no_interrupt('Delete all directories?') + call s:delete([6, line('$')], 1) + else + call setline(4, 'Cancelled.') + nnoremap d :set opfunc=delete_opg@ + nmap dd d_ + xnoremap d :call delete_op(visualmode(), 1) + echo 'Delete the lines (d{motion}) to delete the corresponding directories' + endif + endif + 4 + setlocal nomodifiable +endfunction + +function! s:delete_op(type, ...) + call s:delete(a:0 ? [line("'<"), line("'>")] : [line("'["), line("']")], 0) +endfunction + +function! s:delete(range, force) + let [l1, l2] = a:range + let force = a:force + while l1 <= l2 + let line = getline(l1) + if line =~ '^- ' && isdirectory(line[2:]) + execute l1 + redraw! + let answer = force ? 1 : s:ask('Delete '.line[2:].'?', 1) + let force = force || answer > 1 + if answer + call s:rm_rf(line[2:]) + setlocal modifiable + call setline(l1, '~'.line[1:]) + let s:clean_count += 1 + call setline(4, printf('Removed %d directories.', s:clean_count)) + setlocal nomodifiable + endif + endif + let l1 += 1 + endwhile +endfunction + +function! s:upgrade() + echo 'Downloading the latest version of vim-plug' + redraw + let tmp = tempname() + let new = tmp . '/plug.vim' + + try + let out = s:system(printf('git clone --depth 1 %s %s', s:shellesc(s:plug_src), s:shellesc(tmp))) + if v:shell_error + return s:err('Error upgrading vim-plug: '. out) + endif + + if readfile(s:me) ==# readfile(new) + echo 'vim-plug is already up-to-date' + return 0 + else + call rename(s:me, s:me . '.old') + call rename(new, s:me) + unlet g:loaded_plug + echo 'vim-plug has been upgraded' + return 1 + endif + finally + silent! call s:rm_rf(tmp) + endtry +endfunction + +function! s:upgrade_specs() + for spec in values(g:plugs) + let spec.frozen = get(spec, 'frozen', 0) + endfor +endfunction + +function! s:status() + call s:prepare() + call append(0, 'Checking plugins') + call append(1, '') + + let ecnt = 0 + let unloaded = 0 + let [cnt, total] = [0, len(g:plugs)] + for [name, spec] in items(g:plugs) + let is_dir = isdirectory(spec.dir) + if has_key(spec, 'uri') + if is_dir + let [err, _] = s:git_validate(spec, 1) + let [valid, msg] = [empty(err), empty(err) ? 'OK' : err] + else + let [valid, msg] = [0, 'Not found. Try PlugInstall.'] + endif + else + if is_dir + let [valid, msg] = [1, 'OK'] + else + let [valid, msg] = [0, 'Not found.'] + endif + endif + let cnt += 1 + let ecnt += !valid + " `s:loaded` entry can be missing if PlugUpgraded + if is_dir && get(s:loaded, name, -1) == 0 + let unloaded = 1 + let msg .= ' (not loaded)' + endif + call s:progress_bar(2, repeat('=', cnt), total) + call append(3, s:format_message(valid ? '-' : 'x', name, msg)) + normal! 2G + redraw + endfor + call setline(1, 'Finished. '.ecnt.' error(s).') + normal! gg + setlocal nomodifiable + if unloaded + echo "Press 'L' on each line to load plugin, or 'U' to update" + nnoremap L :call status_load(line('.')) + xnoremap L :call status_load(line('.')) + end +endfunction + +function! s:extract_name(str, prefix, suffix) + return matchstr(a:str, '^'.a:prefix.' \zs[^:]\+\ze:.*'.a:suffix.'$') +endfunction + +function! s:status_load(lnum) + let line = getline(a:lnum) + let name = s:extract_name(line, '-', '(not loaded)') + if !empty(name) + call plug#load(name) + setlocal modifiable + call setline(a:lnum, substitute(line, ' (not loaded)$', '', '')) + setlocal nomodifiable + endif +endfunction + +function! s:status_update() range + let lines = getline(a:firstline, a:lastline) + let names = filter(map(lines, 's:extract_name(v:val, "[x-]", "")'), '!empty(v:val)') + if !empty(names) + echo + execute 'PlugUpdate' join(names) + endif +endfunction + +function! s:is_preview_window_open() + silent! wincmd P + if &previewwindow + wincmd p + return 1 + endif +endfunction + +function! s:find_name(lnum) + for lnum in reverse(range(1, a:lnum)) + let line = getline(lnum) + if empty(line) + return '' + endif + let name = s:extract_name(line, '-', '') + if !empty(name) + return name + endif + endfor + return '' +endfunction + +function! s:preview_commit() + if b:plug_preview < 0 + let b:plug_preview = !s:is_preview_window_open() + endif + + let sha = matchstr(getline('.'), '^ \X*\zs[0-9a-f]\{7,9}') + if empty(sha) + return + endif + + let name = s:find_name(line('.')) + if empty(name) || !has_key(g:plugs, name) || !isdirectory(g:plugs[name].dir) + return + endif + + if exists('g:plug_pwindow') && !s:is_preview_window_open() + execute g:plug_pwindow + execute 'e' sha + else + execute 'pedit' sha + wincmd P + endif + setlocal previewwindow filetype=git buftype=nofile nobuflisted modifiable + try + let [sh, shellcmdflag, shrd] = s:chsh(1) + let cmd = 'cd '.s:shellesc(g:plugs[name].dir).' && git show --no-color --pretty=medium '.sha + if s:is_win + let batchfile = tempname().'.bat' + call writefile(["@echo off\r", cmd . "\r"], batchfile) + let cmd = batchfile + endif + execute 'silent %!' cmd + finally + let [&shell, &shellcmdflag, &shellredir] = [sh, shellcmdflag, shrd] + if s:is_win + call delete(batchfile) + endif + endtry + setlocal nomodifiable + nnoremap q :q + wincmd p +endfunction + +function! s:section(flags) + call search('\(^[x-] \)\@<=[^:]\+:', a:flags) +endfunction + +function! s:format_git_log(line) + let indent = ' ' + let tokens = split(a:line, nr2char(1)) + if len(tokens) != 5 + return indent.substitute(a:line, '\s*$', '', '') + endif + let [graph, sha, refs, subject, date] = tokens + let tag = matchstr(refs, 'tag: [^,)]\+') + let tag = empty(tag) ? ' ' : ' ('.tag.') ' + return printf('%s%s%s%s%s (%s)', indent, graph, sha, tag, subject, date) +endfunction + +function! s:append_ul(lnum, text) + call append(a:lnum, ['', a:text, repeat('-', len(a:text))]) +endfunction + +function! s:diff() + call s:prepare() + call append(0, ['Collecting changes ...', '']) + let cnts = [0, 0] + let bar = '' + let total = filter(copy(g:plugs), 's:is_managed(v:key) && isdirectory(v:val.dir)') + call s:progress_bar(2, bar, len(total)) + for origin in [1, 0] + let plugs = reverse(sort(items(filter(copy(total), (origin ? '' : '!').'(has_key(v:val, "commit") || has_key(v:val, "tag"))')))) + if empty(plugs) + continue + endif + call s:append_ul(2, origin ? 'Pending updates:' : 'Last update:') + for [k, v] in plugs + let range = origin ? '..origin/'.v.branch : 'HEAD@{1}..' + let cmd = 'git log --graph --color=never '.join(map(['--pretty=format:%x01%h%x01%d%x01%s%x01%cr', range], 's:shellesc(v:val)')) + if has_key(v, 'rtp') + let cmd .= ' -- '.s:shellesc(v.rtp) + endif + let diff = s:system_chomp(cmd, v.dir) + if !empty(diff) + let ref = has_key(v, 'tag') ? (' (tag: '.v.tag.')') : has_key(v, 'commit') ? (' '.v.commit) : '' + call append(5, extend(['', '- '.k.':'.ref], map(s:lines(diff), 's:format_git_log(v:val)'))) + let cnts[origin] += 1 + endif + let bar .= '=' + call s:progress_bar(2, bar, len(total)) + normal! 2G + redraw + endfor + if !cnts[origin] + call append(5, ['', 'N/A']) + endif + endfor + call setline(1, printf('%d plugin(s) updated.', cnts[0]) + \ . (cnts[1] ? printf(' %d plugin(s) have pending updates.', cnts[1]) : '')) + + if cnts[0] || cnts[1] + nnoremap (plug-preview) :silent! call preview_commit() + if empty(maparg("\", 'n')) + nmap (plug-preview) + endif + if empty(maparg('o', 'n')) + nmap o (plug-preview) + endif + endif + if cnts[0] + nnoremap X :call revert() + echo "Press 'X' on each block to revert the update" + endif + normal! gg + setlocal nomodifiable +endfunction + +function! s:revert() + if search('^Pending updates', 'bnW') + return + endif + + let name = s:find_name(line('.')) + if empty(name) || !has_key(g:plugs, name) || + \ input(printf('Revert the update of %s? (y/N) ', name)) !~? '^y' + return + endif + + call s:system('git reset --hard HEAD@{1} && git checkout '.s:esc(g:plugs[name].branch).' --', g:plugs[name].dir) + setlocal modifiable + normal! "_dap + setlocal nomodifiable + echo 'Reverted' +endfunction + +function! s:snapshot(force, ...) abort + call s:prepare() + setf vim + call append(0, ['" Generated by vim-plug', + \ '" '.strftime("%c"), + \ '" :source this file in vim to restore the snapshot', + \ '" or execute: vim -S snapshot.vim', + \ '', '', 'PlugUpdate!']) + 1 + let anchor = line('$') - 3 + let names = sort(keys(filter(copy(g:plugs), + \'has_key(v:val, "uri") && !has_key(v:val, "commit") && isdirectory(v:val.dir)'))) + for name in reverse(names) + let sha = s:system_chomp('git rev-parse --short HEAD', g:plugs[name].dir) + if !empty(sha) + call append(anchor, printf("silent! let g:plugs['%s'].commit = '%s'", name, sha)) + redraw + endif + endfor + + if a:0 > 0 + let fn = expand(a:1) + if filereadable(fn) && !(a:force || s:ask(a:1.' already exists. Overwrite?')) + return + endif + call writefile(getline(1, '$'), fn) + echo 'Saved as '.a:1 + silent execute 'e' s:esc(fn) + setf vim + endif +endfunction + +function! s:split_rtp() + return split(&rtp, '\\\@>>>… +" without selecting again +xnoremap < >gv + +" Tab Managment +map :tabnew +map :tabclose +nnoremap k gT +nnoremap j gt + +" Complete with +inoremap pumvisible() ? "\" : +\ check_back_space() ? "\" : +\ deoplete#mappings#manual_complete() +function! s:check_back_space() abort "{{{ + let col = col('.') - 1 + return !col || getline('.')[col - 1] =~? '\s' +endfunction"}}} + +" Open Ranger, file manager +map :RangerEdit + +" ALE - Asynchronous Lint Engine +map :ALEFix +map g :ALEGoToDefinitionInSplit +map G :ALEGoToDefinition + +" Spell-check (English US and Polish) +map :setlocal spell! spelllang=en_us +map :setlocal spell! spelllang=pl + +" Toggle Pencil, wrapping text +map :PencilToggle + +" fzf, fuzzy finder +nnoremap :Files +nnoremap :GFiles +let g:fzf_action = { + \ 'ctrl-t': 'tab split', + \ 'ctrl-x': 'split', + \ 'ctrl-v': 'vsplit' } + +" UltiSnips +let g:UltiSnipsExpandTrigger='' +let g:UltiSnipsJumpForwardTrigger='' +let g:UltiSnipsJumpBackwardTrigger='' + + +"==Encoding== +scriptencoding utf-8 diff --git a/.config/nvim/spell/pl.utf-8.spl b/.config/nvim/spell/pl.utf-8.spl new file mode 100644 index 0000000..0ef7079 Binary files /dev/null and b/.config/nvim/spell/pl.utf-8.spl differ diff --git a/.config/polybar/config b/.config/polybar/config new file mode 100644 index 0000000..e24b243 --- /dev/null +++ b/.config/polybar/config @@ -0,0 +1,344 @@ +; +; ____ _ _ +; | _ \ ___ | |_ _| |__ __ _ _ __ +; | |_) / _ \| | | | | '_ \ / _` | '__| +; | __/ (_) | | |_| | |_) | (_| | | +; |_| \___/|_|\__, |_.__/ \__,_|_| +; |___/ +; + + +;~~~~~~~~~~~~~~~~~~~ +; Colors & Settings +;~~~~~~~~~~~~~~~~~~~ + +[colors] +background = ${xrdb:background} +foreground = ${xrdb:color4} +;foreground = ${xrdb:foreground} +moderate = ${xrdb:color3} +urgent = ${xrdb:color1} + +black = ${xrdb:color0} +darkgrey = ${xrdb:color8} +red = ${xrdb:color1} +green = ${xrdb:color2} +yellow = ${xrdb:color3} +blue = ${xrdb:color4} +magenta = ${xrdb:color5} +cyan = ${xrdb:color6} +white = ${xrdb:color7} + +[settings] +throttle-output = 5 +throttle-output-for = 10 +throttle-input-for = 30 +compositing-background = source +compositing-foreground = source +compositing-overline = source +compositing-underline = source +compositing-border = source +screenchange-reload = true +format-foreground = ${colors.foreground} +format-background = ${colors.background} + + +;~~~~~~~~~~~~~~~~~~ +; Top Bar Settings +;~~~~~~~~~~~~~~~~~~ + +[bar/topbar] + +monitor = ${env:MONITOR} +monitor-fallback = HDMI1 +monitor-strict = false + +modules-left = i3 +modules-right = wireless-network | wired-network | battery | pulseaudio | clock + +;tray-position = right +;tray-padding = 2 + +width = 100% +height = 28 +border-size = 0 +border-top-size = 0 +border-bottom-size = 0 +radius = 0 +bottom = false +overline-size = 2 + +font-0 = "DejaVu Sans Mono:pixelsize=10:antialias=true;3" +font-1 = "Font Awesome 5 Brands:pixelsize=13:antialias=true;3" +font-2 = "Font Awesome 5 Free:style=Solid:pixelsize=12:antialias=true;3" + +background = ${colors.background} +foreground = ${colors.foreground} + +fixed-center = false +module-margin = 0 +padding-right = 2 +padding-left = 1 +offset-x = 0 +offset-y = 0 +cursor-click = pointer + + +;~~~~~~~~~~~~~~~ +; i3 Workspaces +;~~~~~~~~~~~~~~~ +[module/i3] +type = internal/i3 +pin-workspaces = true +strip-wsnumbers = true +index-sort = true +enable-click = true +fuzzy-match = true +format = +label-mode = %mode% +label-mode-padding = 2 + +label-focused = %index% %name% +label-focused-padding = 2 +label-focused-background = ${colors.darkgrey} +label-focused-foreground = ${colors.foreground} +label-focused-underline = ${colors.foreground} +label-focused-overline = ${colors.foreground} + +label-unfocused = %index% %name% +label-unfocused-padding = 1 + +label-visible = %index% %name% +label-visible-padding = 1 + +label-urgent = %index% %name% +label-urgent-padding = 1 + + +;~~~~~~~~~ +; CPU use +;~~~~~~~~~ +[module/coreuse] +type = internal/cpu +interval = 3 +format-padding = 1 +format =